Re: Clojure application in the wild, to learn beautiful Clojure technique(s) from

2010-11-03 Thread Sergey Didenko
Try ants demo - https://github.com/krukow/ants-demo. It's an updated version of the original Rich Hickey demo. On Sun, Oct 31, 2010 at 9:13 PM, Alex Baranosky < alexander.barano...@gmail.com> wrote: > Thanks for these applications to look at. These look nice, but don't have > much use for STM.

Re: Clojure application in the wild, to learn beautiful Clojure technique(s) from

2010-11-01 Thread Alex Baranosky
Thanks for these applications to look at. These look nice, but don't have much use for STM. Do you know of any applications that make a lot of use of Software Transactional Memory? Thanks, Alex -- You received this message because you are subscribed to the Google Groups "Clojure" group. To pos

Re: Clojure application in the wild, to learn beautiful Clojure technique(s) from

2010-10-31 Thread zkim
Enlive (also Christophe Grand's) is definitely a project you'll want to check out: http://github.com/cgrand/enlive Pairing enlive with David Nolan's tutorial (http://github.com/ swannodette/enlive-tutorial/) allows you to consume the codebase in bite-sized pieces (read about a feature in the tutor

Re: Clojure application in the wild, to learn beautiful Clojure technique(s) from

2010-10-31 Thread Daniel Werner
I'd consider the following projects: Compojure is written in an almost purely functional style and demonstrates well how Clojure values can act almost as their own DSLs while keeping the semantics clear and concise. http://github.com/weavejester/compojure Christophe's Regex lib shows how to use D

Re: Clojure application in the wild, to learn beautiful Clojure technique(s) from

2010-10-31 Thread Quzanti
The Compojure project interacts with templating languages and web servers (presumably). Don't know about databases. The design is elegant and idiomatic. http://github.com/weavejester/compojure/wiki On Oct 31, 3:49 am, Alex Baranosky wrote: > Hi all, > > I've read Programming Clojure, and written

Re: Clojure application in the wild, to learn beautiful Clojure technique(s) from

2010-10-31 Thread Eric Lavigne
This application was created as a teaching example for the Pragmatic Studio Clojure workshops, taught by Stuart Halloway and Rich Hickey. It includes examples of all the issues you are talking about. http://github.com/relevance/labrepl As far as real applications go, this is a small applicat

Clojure application in the wild, to learn beautiful Clojure technique(s) from

2010-10-30 Thread Alex Baranosky
Hi all, I've read Programming Clojure, and written a toy app in it to get my feet wet. I also listen in on this Google group from time to time as well, to get more of a sense of the language. I enjoyed "Programming Clojure" by Stuart Halloway, but it didn't leave me with a clear idea of how to g