Fork me on GitHub
#beginners
<
2016-09-28
>
jeremyraines01:09:29

@adrien I would recommend checking out Sente for handling websockets. I think one issue with the posted code is that if that when condition isn’t hit the first time, the code exits — the recur is never hit. when executes its whole body iff its condition is true; the recur is not in an “else” position as it would be if this was an if.

adrien06:09:13

thank you @jeremyraines I'll try playing witht the recur, and see what really happens I can also start with a library in parallel to get more familiar with these concepts then move to a more bare metal solution without the magic to really understand what's going on and explain it as well

dorianc.b23:09:32

Hello I wanted to build a project to learn Clojure and I was wondering what the best approach would be. Basically it would an an Anki clone with the ability to create screen shots and caption them all from within the app.

dorianc.b23:09:27

I was thinking about doing a webapp but that would mean I would have to use Clojurescript right?