It definitely messes with the class loader of clojure very early
A while back on this slack someone shared a Clojure project to share folders as other git directories. I can’t seem to find that back, did I dream it?
Found it! https://github.com/nextjournal/lazo Glad I starred it 🙂
Want to implement a simple http based web application - which can do following: - google oauth login - read some db say mongo and render output on html page - write to some db say mongo Need suggestion on libraries and reference. Please help.
Clj-http, Cheshire, clj json, maybe ring, what about other?
Guys, I lost a function name. Can you help me ? I have two hash-maps and I just wanted to apply functions by thier keys.
(forgotten-fn + {:a 1} {:b 2}) ;; => {:a 3}
Merge-with?
OMG, thank you!
Should probably be {:a 2}
?
@scknkkrer This is a tool which can help you find it: https://borkdude.github.io/re-find.web/?args=%2B%20%7B%3Aa%201%7D%20%7B%3Aa%202%7D&ret=%7B%3Aa%203%7D
so like https://hoogle.haskell.org for Clojure? Really cool!
Black magic, I love it!
pretty cool, didn’t know about it, thanks!
Say I want to make a simple cljc
library of pure functions which I want to test in both clj
and cljs
to prove their cljc
-ness. Does anyone know an example of such a project? A template, maybe?