clojure

New to Clojure? Try the #beginners channel. Official docs: https://clojure.org/ Searchable message archives: https://clojurians-log.clojureverse.org/
dominicm 2020-11-26T07:55:51.227800Z

It definitely messes with the class loader of clojure very early

2020-11-26T12:22:30.228100Z

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?

2020-11-26T12:26:18.228200Z

Found it! https://github.com/nextjournal/lazo Glad I starred it 🙂

Pradeep B 2020-11-26T15:13:53.232400Z

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.

Pradeep B 2020-11-26T15:14:51.232500Z

Clj-http, Cheshire, clj json, maybe ring, what about other?

scknkkrer 2020-11-26T18:43:44.234600Z

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.

scknkkrer 2020-11-26T18:44:11.235200Z

(forgotten-fn + {:a 1} {:b 2}) ;; => {:a 3}

dpsutton 2020-11-26T18:44:25.235600Z

Merge-with?

🦜 1
🙏 1
scknkkrer 2020-11-26T18:44:31.235800Z

OMG, thank you!

p-himik 2020-11-26T18:54:08.236300Z

Should probably be {:a 2}?

borkdude 2020-11-26T18:54:29.236800Z

@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

4
gcaban 2020-11-27T12:39:24.257Z

so like https://hoogle.haskell.org for Clojure? Really cool!

scknkkrer 2020-11-27T19:19:04.259300Z

Black magic, I love it!

Sergio 2020-11-26T20:54:31.237Z

pretty cool, didn’t know about it, thanks!

reefersleep 2020-11-26T23:38:57.239600Z

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?