Christopher Brown

Results 19 comments of Christopher Brown

Agreed. I'm new-ish to Java/Scala logging, but I get the impression that it's bad form to specify a concrete logging implementation in a library meant for public use — kind...

I hadn't come across the debug trace view; the first time I tried `(wrap-trace :header :ui)` it didn't work (`Exception in thread "main" java.io.FileNotFoundException: Could not locate compojure/core__init.class or compojure/core.clj...

Thanks for your reminder, @cch1; the change I made works just fine (i.e., the updated graph _does_ also work correctly in the debug trace view). Presumably, the blocker — de-duplicating...

FWIW I hit this on macOS 13.6 (Ventura) using iTerm2, and samGbos's solution fixed it :)

Here's a one-liner shot in the dark that happened to work for me in my env (M2, btw): ```sh pip install 'git+https://github.com/letmaik/[email protected]#egg=rawpy' ``` You may want to update the tag.

Chiming in with a bit more context — I'm pretty sure I'm running into the same issue — I get the same error in Console.app, and closing Übersicht then re-opening...

It was also giving me the error, `Undefined symbols for architecture x86_64:` Updating setup.py made the `python setup.py install` command work for me: ``` python # add '-framework' and 'CoreFoundation'...

It's most likely the `http.async.client` library leaving around an open client / channel. My repo is currently an unstaged WIP mess so I haven't tested the following, but try something...

You might also be able to call `(http/close (twitter.core/default-client))` manually, at the end, but that seems less Clojurish. See also [discussion](https://www.google.com/search?q=%22http.async.client%22+hangs+clojure). Particularly [this](http://neotyk.github.io/http.async.client/docs.html#sec-2-6-13) in the old `http.async.client` docs. Do you...

> expect everything to be as side effect free and clean as possible. That's a very good point. I think you're right about creating a new client and then closing...