Arne Brasseur

Results 158 comments of Arne Brasseur

I haven't looked at analects in a while, it certainly isn't considered stable or production ready, so you'll have to be willing to tie up the loose ends.

Hi Andreas, Thank you for the suggestions. Pull requests for these issues would be mightily appreciated!

Thank you @benedekfazekas! Observing a little with `jstack` I noticed a lot of clojure-agent-send-off-pool threads, over 200, with up to ~100 RUNNABLE at once. Perhaps worth looking at how futures...

Thanks for the great library! I just want to mention that H2 or SQLite support would be really valuable, not just for testing but for small or embedded applications that...

There is actually a project that solves this exact problem: [Virgil](https://github.com/ztellman/virgil), it watches java files, and re-compiles and hot-reloads them when they change. Virgil then also reloads the Clojure sources...

Yup, something I've wanted for a long time. I decided to do it as a proxy to prevent middleware ordering issues. This way you're sure you get the messages as...

I've been following this conversation with some trepidation, as it reminds me of how the web has struggled to improve because of everyone doing user agent checks. Instead of checking...

Looking at what we have to offer I think such a guide should be organized by use case/stack. "Traditional" http/html backend, CLI app, React-based frontend, etc. ---- Some submissions we...

Related: https://clojure.atlassian.net/browse/CLJ-889

Here's a starting point: https://github.com/plexus/procflow/blob/master/src/procflow/http/websocket.clj It assumes you're using reitit like this ``` clojure ["/ws" {:websocket {:on-connect procflow.http/on-connect :on-receive procflow.http/on-receive :on-close procflow.http/on-close :on-error procflow.http/on-error}}] ``` Not optimized at all, probably...