Fork me on GitHub
#clojure
<
2020-11-26
>
nha12:11:30

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?

nha12:11:18

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

Pradeep B15:11:53

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 B15:11:51

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

scknkkrer18:11:44

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.

scknkkrer18:11:11

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

p-himik18:11:08

Should probably be {:a 2}?

dpsutton18:11:25

Merge-with?

parrot 3
🙏 3
scknkkrer18:11:31

OMG, thank you!

Sergio20:11:31

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

gcaban12:11:24

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

scknkkrer19:11:04

Black magic, I love it!

reefersleep23:11:57

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?