Arne Brasseur
Arne Brasseur
Comparing Java 11 to Java 16, it seems on the latter MrAnderson is an order of maginitude slower than on the former. Using [sdkman](https://github.com/sdkman/sdkman-cli) ``` $ sdk use java 11.0.10.hs-adpt...
We just ran into an interesting case, there's code that uses `const_get(foo, false)`. The false prevents lookup in ancestors. Replacing `false` with `nil` also works, but is undocumented. It is...
Figwheel core/main/repl all make use of `goog.log` for their logging, with loggers named "Figwheel", "Figwheel REPL", and "Figwheel CSS Reload". However `goog.log` loggers are hierarchical, based on the dotted segments...
nREPL now has [dynamic insertion of middleware](https://github.com/nrepl/nrepl/pull/185), as well a [sideloader](https://github.com/nrepl/nrepl/pull/162) for requesting resources from the client. CIDER has [basic support for sideloading](https://github.com/clojure-emacs/cider/commit/ac4fedf8b29519f4b4ccac4aa40770d0090810e6), so it would seem that all the...
As part of #3037 I'm trying to get a better sense of how classloaders are used across nREPL, Orchard, `clojure.main`, and elsewhere. I've been doing some [deep diving](https://lambdaisland.com/blog/2021-08-25-classpath-is-a-lie) into this...
While Emacs and clojure-mode have good support for "lisp-style" indentation, and provided fine-grained customization via indent-specs, some prefer "dumb" indentation where every single form gets the same level of indent,...
Macros seem to actually be interpreted as regular functions, see https://www.maria.cloud/gist/aee5dfdb9418c4f0ebc306369facc793?eval=true ### Environment: - Browser: Firefox, Chrome - Platform: Linux
### Issue: Code with | indicating cursor. ``` clojure (+ 10 (+ 20 30)|) ``` - press C-enter => shows result 50 - press C-enter again => shows result 60...
When a code block ends with a trailing comment, e.g. ``` (load-gist "c7d5ab0dad5d4343561cff39b8d5d6c1") ;; this loads cljs-bach ``` Then after reloading this comment has become a separate paragraph.
### Issue: On Firefox Nightly, I open e.g. https://dev.maria.cloud/gist/bba60540e714b31dcac02eb7cdf02fbc - click on a code block to put the cursor there - hold Ctrl and move the mouse -> it correctly...