Fork me on GitHub
#announcements
<
2020-08-07
>
Vincent Cantin05:08:05

Today I released the Diffuse library. https://github.com/green-coder/diffuse

👍 18
Vincent Cantin12:08:20

I will fill it up after I am done experimenting the thing for which I built it.

Adam Helins12:08:29

A small but useful CLJS library for scheduling various type of async operations hits 1.1.0 https://github.com/dvlopt/timer.cljs Notably, it circumvents problems often encountered, for instance when using vanilla .setInterval

👍 15
👏 9
Joe Lane14:08:57

I’ve been enjoying your other libs too. Nice work!

💯 12
Adam Helins15:08:15

@U0CJ19XAM It's good to hear that, thanks!

Alex Miller (Clojure team)20:08:35

A new prerelease version of the Clojure tools (`clj`) is now https://github.com/clojure/homebrew-tools#version-archive-tool-releases: 1.10.1.636 • Fixes for Windows scripts with clj -X (thanks @vlaaad!) • Fix for ssh compression on git lib deps (https://clojure.atlassian.net/projects/TDEPS/issues/TDEPS-160) - thanks to @donavan for the report • Fix for the possibility of including child deps of unused versions of libs in classpath (https://clojure.atlassian.net/projects/TDEPS/issues/TDEPS-159)

🎉 51
vlaaad20:08:20

Not sure if there is a jira issue for that, but having no :args makes clj-exec fail:

PS C:\Users\Vlaaad\Projects\tdeps> cat .\deps.edn
{:aliases {:prn {:fn clojure.core/prn}}}
PS C:\Users\Vlaaad\Projects\tdeps> clj -X:prn :a 1 :b 2
Invalid :args for exec, must be map or alias keyword: nil

Alex Miller (Clojure team)21:08:56

Oh yeah, that was reported and I forgot to fix it