On Apr 9, 9:00 pm, Rich Hickey 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
--~--~-~--~~~---~--~~
You received
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 those
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.
- Cha
On Apr 11, 6:13 pm, "John D. Hume" 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 wrote:
>
>
>
> > Currently it does this:
> > (try
> > the good stuff ...
> > (catch Exception e
>
On Apr 9, 2009, at 4:20 PM, Rich Hickey wrote:
> On Apr 9, 2:55 pm, Chas Emerick 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 determinations.
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 and
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 wrote:
> Got a Clojure user group, meetup etc?
>
> Reply to this message and let me know, I'll add them to
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 th
I'd love to meet some other Clojure folks. Is anyone else in Florida?
On Sun, Apr 12, 2009 at 9:22 AM, atreyu wrote:
>
> 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 A
>
> > 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
--~--~
Hi,
2009/4/12 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
> >
>
>
(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)
[fa
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 fo
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 environm
On Mon, Apr 13, 2009 at 12:53 AM, chris wrote:
>
> 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
15 matches
Mail list logo