ccQpein

Results 41 comments of ccQpein

@quicklisp Sorry about this failure. I fix the `(asdf:compile-system github-api-cl)` in my local. Hope it also works on your side.

Looks like `dexador` `keep-alive` default is `nil` now. Is this still a issue anymore? https://github.com/fukamachi/dexador/blob/master/README.markdown#functions

I have read [doc](https://docs.projectile.mx/projectile/projects.html#adding-custom-project-types) and play around a bit with `projectile`. If, first I manually add ```elisp (projectile-register-project-type 'go '("go.mod") :project-file "go.mod") ``` secondly, change `projectile-project-root-functions` to ```elisp '(projectile-root-local projectile-root-top-down...

I give several `(message)` inside source code and looks like it runs `projectile-project-root` right after I open my `main.go`. Then, put the `/A` inside `projectile-project-root-cache` because `projectile-root-bottom-up` gonna return `/A`....

To be honest, I am not sure if it is a problem or be designed this way. Because `projectile-root-bottom-up`'s pair custom value `projectile-project-root-files-bottom-up` are all the folders. And the `projectile-project-root-files`...

@isoboroff @jimeh I just met the same issue yesterday, and I use the same command to fix the issue. Instead of manually codesigning the `.app`, is it possible that the...

Just check the `test.ml` and found the `List.range`. Do we have `Range` in module List? [ref](https://v2.ocaml.org/api/List.html)

I just encountered the same issue where Redis doesn't return any results when I provide the "document_id" in the filter: + `/upsert` endpoints call is successful + Results are returned...

> @ccqpein I think I have a fix for your issue. Hi @tylerhutcherson , I just pull the latest main branch and run the test. Unfortunately, this time redis doesn't...

I have the same ideas about improving the `str:split` today. Instead of using the `regex`, I think separator can be a list that contains all the separators. Like `(str:split '(";"...