Re: Got a Clojure user group?

2009-04-12 Thread Krukow
On Apr 9, 9:00 pm, Rich Hickey richhic...@gmail.com wrote: Got a Clojure user group, meetup etc? Reply to this message and let me know, I'll add them to the Clojure site. Danish Clojure Users' Group http://www.clojure.dk Thanks. -- Karl

Re: Has anyone on this group ever tried Forth?

2009-04-12 Thread Tom Ayerst
Obtuse, maybe, then again many people say the same of Lisps (and pretty much any Functional language, and APL...). it depends on the objectives of the author and familiarity of the reader. IMHO The Forth sweet spot has always been near or on the metal; it has an extremely small footprint in

Re: Got a Clojure user group?

2009-04-12 Thread Chas Emerick
There are a number of people who at least tinker with clojure (and jruby, and scala, and F#, and mad-scientist experimental PHP hacks, etc) at the Western Mass. Developer's Group: http://wmassdevs.com though we are welcoming of all software developers, entrepreneurs, consultants, etc. -

Re: clojure.main always exits with code 0

2009-04-12 Thread Rich Hickey
On Apr 11, 6:13 pm, John D. Hume duelin.mark...@gmail.com wrote: Rich, Can I submit an issue and patch for this? I have a CA on file. Sure, thanks. Rich On Sun, Apr 5, 2009 at 8:15 PM, John D. Hume duelin.mark...@gmail.com wrote: Currently it does this: (try the good

Re: Transparent delays

2009-04-12 Thread Chas Emerick
On Apr 9, 2009, at 4:20 PM, Rich Hickey wrote: On Apr 9, 2:55 pm, Chas Emerick cemer...@snowtide.com wrote: I recently came across a situation where I very much wanted to delay the calculation of some values, but where I also wanted those delays to use their calculated values for equality

Re: Java 6 dependency in clojure-contrib ok?

2009-04-12 Thread Chas Emerick
Agreed. We'll be supporting Java 1.4 for some time to come still (obviously not using clojure there). However, we do hope to use clojure for many years to come on Java 1.5 -- I suspect our customers won't be moving off of it for a very long time. That said, there's lots of stuff in 1.6

Re: Got a Clojure user group?

2009-04-12 Thread atreyu
A group for share bookmarks (and comments) about clojure and functional programming: http://groups.diigo.com/groups/clojure_dev thanks for clojure! it rocks! On Apr 9, 9:00 pm, Rich Hickey richhic...@gmail.com wrote: Got a Clojure user group, meetup etc? Reply to this message and let me

Re: clojure.main always exits with code 0

2009-04-12 Thread John D. Hume
Submitted as http://code.google.com/p/clojure/issues/detail?id=106 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com To unsubscribe from

Re: Got a Clojure user group?

2009-04-12 Thread Jeffrey Straszheim
I'd love to meet some other Clojure folks. Is anyone else in Florida? On Sun, Apr 12, 2009 at 9:22 AM, atreyu atreyu_...@yahoo.es wrote: A group for share bookmarks (and comments) about clojure and functional programming: http://groups.diigo.com/groups/clojure_dev thanks for clojure! it

Re: Transparent delays

2009-04-12 Thread Allen Rohner
user= (= {:a 5 :b (delay 12)} {:a 5 :b 12}) false user= (= {:a 5 :b (tdelay 12)} {:a 5 :b 12}) true You shouldn't ignore your nervousness in this case: user= (= {:a 5 :b 12} {:a 5 :b (tdelay 12)}) false Out of curiosity, why are those different? Allen

Re: Transparent delays

2009-04-12 Thread Laurent PETIT
Hi, 2009/4/12 Allen Rohner aroh...@gmail.com user= (= {:a 5 :b (delay 12)} {:a 5 :b 12}) false user= (= {:a 5 :b (tdelay 12)} {:a 5 :b 12}) true You shouldn't ignore your nervousness in this case: user= (= {:a 5 :b 12} {:a 5 :b (tdelay 12)}) false Out of

Re: update-in wildcards?

2009-04-12 Thread Mitch
(use '[clojure.contrib.generic.functor :only (fmap)]) (defn update-in-wildcard Like update-in, but with :* as a wildcard matcher ([m [k ks] f args] (condp = [(= k :*) (boolean ks)] [true true] (fmap #(apply update-in-wildcard % ks f args) m) [true false] (fmap f m) [false

How to compile in AquaMacs without slime? classpath problem for classes

2009-04-12 Thread billh04
I can compile in NetBeans with enclojure and I can compile in AquaMacs with slime. However, I prefer to use AquaMacs without slime. But, I cannot compile my application using the (compile 'my.namespace.main) invocation. The classes are generated except for main__init.class (I believe). I can

Re: How to compile in AquaMacs without slime? classpath problem for classes

2009-04-12 Thread chris
If you could set up emacs to be a little bit more project based it would really make things easier. For instance, I like to have jars required for just my project in a lib dir. Right now I add them to the global CLASSPATH and have emacs parse that and set its internal classpath from the