Nim Sadeh
Nim Sadeh
@djx314 turns out I had a small typo in a function composed with my query that caused an unrelated but very similar error (Caused by: java.util.NoSuchElementException: None.get). It works quite...
See https://github.com/langchain4j/langchain4j/pull/437 for a fix suggestion
If you mean query parameters (https://en.wikipedia.org/wiki/Query_string), you can use :query-params and pass in string key/value pairs
After playing around for a while I suspect the issue is with an old minifier. I tried updating but ran into a bunch of npm dependency hell errors :(
Adding this advice is a workaround: ``` (defun my-cider-format-before-save () "Function to run `cider-format-buffer` before `super-save-command`." (when (and (bound-and-true-p cider-mode) (derived-mode-p 'clojure-mode 'clojurescript-mode 'clojurec-mode)) (cider-format-buffer))) (advice-add 'super-save-command :before #'my-cider-format-before-save) ```...
Thank you for commenting so fast. The strange interaction is actually between cider-format-buffer and check-excursion. You can test it by creating an improperly formatted clojure file and running the evaluate...
This fixes it: https://www.reddit.com/r/emacs/comments/15trd1p/stuck_on_trying_to_install_emacs_config_on_emacs/?rdt=63681. Should I make a PR? I am not sure this will work for older versions of Emacs.
I think I have a similar problem. I have a recorder per WebSocket connection in a setup, and I can't seem to clean up the recorder. recorder.shutdown() hangs forever, and...
So I actually tried this in a shell to make sure: ``` output = asyncio.Queue() audio = RealtimeAudio(output) audio.shutdown() ``` the last call hangs
@KoljaB I know this isn't directly related to this issue, but now that my code is up, would you be able to speak to the scalability of this approach? I...