Michiel Borkent

Results 367 issues of Michiel Borkent

https://twitter.com/borkdude/status/1390415105276395526 https://gist.github.com/borkdude/bbc78b34e77ef91510ace75862d23aeb https://gist.github.com/borkdude/4e66410b09894b544d4d26483014815b - [ ] add kern tests to CI - [ ] add kern to projects.md - [x] add jasentaa tests to CI - [ ] add jasentaa...

We might be able to get the go macro working now that tools.analyzer seems compatible with graalvm. Liz apparently uses this in GraalVM: https://github.com/dundalek/liz. Things to watch: - Increase in...

low priority

I just tried out asami locally: https://github.com/threatgrid/asami ``` $ ./asami (["Explorers"] ["Demolition Man"] ["Johnny Mnemonic"] ["Toy Story"]) ``` Worked great, memory consumption during compilation is far more reasonable than datascript....

This unsets all environment variables that start with `BABASHKA_`. Maybe this is a better example in the README than the `ls | bb ...` examples. ``` clojure bb -o '(->>...

``` clojure (alter-var-root #'client/*default-client* (constantly client/default-client)) ```

``` (reify Object (toString [_] "foo") clojure.lang.IDeref (deref [_this] :foo)) ``` ``` (reify IPending (-realized? [_] (not (identical? @atm obj))) IDeref (-deref [_] (let [val @atm] (assert (not (identical? val...

This script translates an English word to another language using Wikipedia. It was shared by Janne Himanka on Clojurians Slack. I set it to use Dutch (original was in Finnish)...

There is an excellent User Guide here: https://github.com/funcool/promesa/blob/master/doc/user-guide.md But this is not clear from the README. I think you should link to the User Guide as one of the first...

Hey @weavejester, I sometimes find myself in the need of this: ``` (defn split-when [pred coll] (lazy-seq (when-let [s (seq coll)] (let [fst (first s) f (complement pred) run (cons...