Re: how to get good at clojure?

2012-05-14 Thread Bill Allen
Sam, thanks for the pointer to quilt. Looks really cool. I'm starting to imagine a project with quilt and overtone together! Regards, Bill On May 11, 2012 3:34 PM, Sam Aaron samaa...@gmail.com wrote: In addition to following up on all the great suggestions above, I'd hack about with Quil; it's

Re: how to get good at clojure?

2012-05-11 Thread Daniel Gagnon
On Mon, May 7, 2012 at 8:48 PM, toan kidn...@gmail.com wrote: Hi folks, I've been trying to learn clojure for a while. I've read the clojure section of seven languages... and currently trying to get through joy of clojure. I've been practicing with the prompt a bit and trying to learn emacs

Re: how to get good at clojure?

2012-05-11 Thread Sam Aaron
In addition to following up on all the great suggestions above, I'd hack about with Quil; it's a lot of fun and you'll get instant feedback. You'll also very quickly run into the fun that is juggling pure fns, lazy sequences and orchestrating side effects (to sketch stuff).

Re: how to get good at clojure?

2012-05-09 Thread Alex Baranosky
In addition to what has already been said. There are a few approaches I take: 1) re-implement in Clojure some smallish project that you already have in another language practice seeing how to solve the same kinds of problems but using idiomatic Clojure approaches. Since the project is

Re: how to get good at clojure?

2012-05-09 Thread Ambrose Bonnaire-Sergeant
On Wed, May 9, 2012 at 2:08 PM, Alex Baranosky alexander.barano...@gmail.com wrote: 3) read through core.clj, like a fine classic novel. You'll get all sorts of good stuff through this process. I can't express deeply enough how important this is. Just DO IT. It's a fascinating read, but

Re: how to get good at clojure?

2012-05-09 Thread Meikel Brandmeyer (kotarak)
Hi, Am Mittwoch, 9. Mai 2012 08:08:10 UTC+2 schrieb Alex Baranosky: 3) read through core.clj, like a fine classic novel. You'll get all sorts of good stuff through this process. I can't express deeply enough how important this is. Just DO IT. I throw in a warning here. core.clj

Re: how to get good at clojure?

2012-05-09 Thread Alex Baranosky
Ambrose and Meikel, Those are excellent points, but IMO to really be a great clojure developer you really can't get away with not having read the classic goodness that is core.clj. :) And after that having read through the Java code at the core of Clojure: the interfaces and the reader etc. On

Re: how to get good at clojure?

2012-05-09 Thread Ambrose Bonnaire-Sergeant
+1 On Wed, May 9, 2012 at 2:38 PM, Alex Baranosky alexander.barano...@gmail.com wrote: Ambrose and Meikel, Those are excellent points, but IMO to really be a great clojure developer you really can't get away with not having read the classic goodness that is core.clj. :) And after that

Re: how to get good at clojure?

2012-05-09 Thread Bill Allen
This is the ticket. You can read all the books you want (and they do help), but working through 4clojure (and observing the solutions by others) will teach you more and better than anything else you can do. On Tue, May 8, 2012 at 4:08 PM, Bill Caputo logos...@gmail.com wrote: On May 7, 2012, at

how to get good at clojure?

2012-05-08 Thread toan
Hi folks, I've been trying to learn clojure for a while. I've read the clojure section of seven languages... and currently trying to get through joy of clojure. I've been practicing with the prompt a bit and trying to learn emacs that came with clojurebox. I have 2 questions, 1. does anyone have

Re: how to get good at clojure?

2012-05-08 Thread Mark Rathwell
1. does anyone have advice on getting somewhat competent for a newb? (alternatively, how did you get good?) - Think of some (smaller) project you've had on your mind for a while, and try to implement it using clojure - Read all of the incoming questions on this list, or StackOverflow if you

Re: how to get good at clojure?

2012-05-08 Thread David Nolen
The new Clojure book from O'Reilly looks like a great start for people coming from more mainstream languages. On Mon, May 7, 2012 at 8:48 PM, toan kidn...@gmail.com wrote: Hi folks, I've been trying to learn clojure for a while. I've read the clojure section of seven languages... and

Re: how to get good at clojure?

2012-05-08 Thread Bill Caputo
On May 7, 2012, at 7:48 PM, toan wrote: 1. does anyone have advice on getting somewhat competent for a newb? (alternatively, how did you get good?) Can't recommend 4clojure ( http://www.4clojure.com/ ) highly enough; work through each one, turn on the code golf feature, and subscribe (at

Re: how to get good at clojure?

2012-05-08 Thread Murtaza Husain
In addition to the things mentioned above the following will help - Clojure Koans (https://github.com/functional-koans/clojure-koans) and Clojure labrepl are good resources too (https://github.com/relevance/labrepl) Planet Clojure is also a good collection of blogs. Lastly start reading