Fork me on GitHub
#beginners
<
2015-08-19
>
rishat09:08:48

Another great source of structured knowledge of newbie-level Clojure: http://iloveponies.github.io/120-hour-epic-sax-marathon/index.html

rishat09:08:17

@pxlpnk: may, too, be useful for you

pxlpnk09:08:21

rishat: thank you I put it into my notes

adlermedrado14:08:23

Hello. Is http://atom.io a good editor to code clojure?

roberto14:08:48

don’t know, never tried it. I wouldn’t use clojure(or any lisp) in an editor that doesn’t have support for a repl.

adlermedrado14:08:23

Thats the problem, it lacks a good support for REPL.

adlermedrado14:08:40

I think I’ll need to learn how to use Emacs… simple_smile

roberto14:08:10

you can also use IntelliJ + Cursive.

sveri14:08:15

adlermedrado: No need to, there is cursive in intellij which is beta and free for now and lighttable which remains free

sveri14:08:35

I'd strongly advise against learning clojure and emacs at the same time

adlermedrado14:08:11

Great. I’ll look this stack (IntelliJ+Cursive).

adlermedrado14:08:16

Thanks for the advise simple_smile

adlermedrado14:08:57

I already use PHPStorm (based on IntelliJ) to code in PHP, so I think it’ll be easier for me if I choose IntelliJ+Cursive.

sveri14:08:08

Definitly

sveri14:08:28

OTOH I have to admit I am very biased against emacs

adlermedrado14:08:56

lot of people are… simple_smile

surreal.analysis15:08:14

If you’re looking for an interface more similar to Atom (slimmed down, GUI based text-editor) LightTable and NightCode both focus on Clojure integration and fall into that category

sveri15:08:22

and for learning I found Lighttable to be the most useful tool with it's editor evaluation

sveri15:08:42

I still fire it up from time to time instead of using the repl, helps me somehow figuring maps and reduce out

curtosis16:08:45

is there a simple library for handling tcp client duties? I was looking at aleph, but I don't need codecs. Just send and receive a string, hopefully dealing with chunking behind the scenes.

adlermedrado16:08:30

Thank you all.