Fork me on GitHub
#clojure
<
2018-12-22
>
cjsauer03:12:22

@lwhorton I’ve used a library called “condensation” for automating AWS stacks. It’s essentially CF templates in EDN.

👍 4
isaac11:12:36

how to use defrecord with docstring?

bronsa11:12:50

there's no support for that

phill13:12:20

Why is Emacs telling me "WARNING: CIDER requires cider-nrepl to be fully functional." I have tried putting [cider/cider-nrepl "0.18.0"] everywhere I can think of. :dependencies, :plugins, still the same problem

narendraj915:12:14

Try cider-jack-in instead of cider-connect to an already running repl. cider-jack-in will inject its Clojure side dependencies.

slipset15:12:05

@phill you might want to ask in #cider, but in general, these days, CIDER fixes this by itself, so you shouldn’t have to specify this anywhere, quite the contrary.

borkdude16:12:37

What’s the clojure alternative for python -m SimpleHTTPServer from within a program? I want to start a local webserver to serve a directory for browser testing

borkdude16:12:14

I could pull together some ring stuff, but maybe there is something out of the box I can re-use

borkdude17:12:20

cool, this works:

(def s (simpleton/new-server 8000 "/" (simpleton/fs-handler "/path")))
(.stop s 0)