Re: Reading clojure code of larger domain specific projects

2011-05-11 Thread Christian Schuhegger
Thanks, that sound good! I'll have a look at the clojars project and yours once it is in the right state for that. On 10 Mai, 18:04, Paul deGrandis paul.degran...@gmail.com wrote: I'm also working on a project to augment clojars called clopi (Clojure Package Index), that will let you filter

Re: Reading clojure code of larger domain specific projects

2011-05-10 Thread Paul deGrandis
You might want to take a look at the clojars project: https://github.com/ato/clojars-web It's not quite to the scale you're looking for, but it's a start. Also keep in mind that a lot of business apps in Clojure look more like libraries (for a specific domain problem) than applications, so

Re: Reading clojure code of larger domain specific projects

2011-05-09 Thread Chris Perkins
On May 9, 2:21 am, Christian Schuhegger christian.schuheg...@gmail.com wrote: Hello list, I have a question that perhaps may be relevant for more people. I strongly believe that reading code of other people is an undervalued discipline of all developers. Typically it just happens as a side

Re: Reading clojure code of larger domain specific projects

2011-05-09 Thread Jonathan Fischer Friberg
I'm interested! The clojure source code is a pretty good read, hehe Jonathan https://github.com/clojure/clojure/tree/master/src/clj/clojure On Mon, May 9, 2011 at 12:24 PM, Chris Perkins chrisperkin...@gmail.comwrote: On May 9, 2:21 am, Christian Schuhegger christian.schuheg...@gmail.com

Re: Reading clojure code of larger domain specific projects

2011-05-09 Thread Meikel Brandmeyer
Hi, Am 09.05.2011 um 17:36 schrieb Jonathan Fischer Friberg: I'm interested! The clojure source code is a pretty good read, hehe Jonathan https://github.com/clojure/clojure/tree/master/src/clj/clojure Although the code in the preamble of core there is explicitly *not* recommended to

Re: Reading clojure code of larger domain specific projects

2011-05-09 Thread gaz jones
compojure is often put forward as an example of good idiomatic clojure code: https://github.com/weavejester/compojure On Mon, May 9, 2011 at 10:55 AM, Meikel Brandmeyer m...@kotka.de wrote: Hi, Am 09.05.2011 um 17:36 schrieb Jonathan Fischer Friberg: I'm interested! The clojure source

Re: Reading clojure code of larger domain specific projects

2011-05-09 Thread Stuart Sierra
The code is somewhat out-of-date by now (pre-1.0 Clojure) but I wrote much of AltLaw.org in Clojure: https://github.com/stuartsierra/altlaw-template https://github.com/stuartsierra/altlaw-clojure-restlet https://github.com/stuartsierra/altlaw-crawler

Re: Reading clojure code of larger domain specific projects

2011-05-09 Thread Paul deGrandis
I really like the code in Stuart Sierra's lazytest: https://github.com/stuartsierra/lazytest/tree/master/modules/lazytest/src/main/clojure/lazytest The code in Enlive is also a really great read: https://github.com/cgrand/enlive I also would recommend going through compojure. Pau On May 9,

Re: Reading clojure code of larger domain specific projects

2011-05-09 Thread Ken Wesson
On Mon, May 9, 2011 at 6:06 PM, Paul deGrandis paul.degran...@gmail.com wrote: I really like the code in Stuart Sierra's lazytest: https://github.com/stuartsierra/lazytest/tree/master/modules/lazytest/src/main/clojure/lazytest The code in Enlive is also a really great read:

Re: Reading clojure code of larger domain specific projects

2011-05-09 Thread Mike Meyer
On Mon, 9 May 2011 03:24:44 -0700 (PDT) Chris Perkins chrisperkin...@gmail.com wrote: I have been thinking for while that it would be great to have something equivalent to book clubs for reading code. A group could meet weekly, all having read the same moderate-sized project, and discuss. I

Re: Reading clojure code of larger domain specific projects

2011-05-09 Thread Ken Wesson
On Mon, May 9, 2011 at 6:43 PM, Mike Meyer m...@mired.org wrote: One thing that happens to such posts is they turn into threads of best way to solve this problem - where best varies by author. I'm not sure if you intended this as a criticism of the idea, or if you are thinking the same thing I

Re: Reading clojure code of larger domain specific projects

2011-05-09 Thread Christian Schuhegger
Many thanks for all of your contributions so far! I definitely will (and already have to some extent) go through the recommended links. One additional project I came across that looks interesting is midje: https://github.com/marick/Midje/wiki I see the point of having a forum to discuss best