Re: OSGi manifest creation for Clojure projects

2012-03-16 Thread Mark Derricutt
Awesome. I see you're using the dependency plugin to only copy your specific AOT classes, I should really update the clojure-maven-plugin to only copy the discovered namespaces along. I remember Chas raised a bug years ago to fix this in the actual clojure compiler but I don't think it ever g

Re: OSGi manifest creation for Clojure projects

2012-03-16 Thread Laurent PETIT
Hi Patrick, great news to see more work in the Clojure + OSGi territory ! And very cool initiative to having created a maven clojure osgi plugin ! 2012/3/16 Patrick Moriarty > Oops, forgot the reply-to! > > On 16 Mar 2012, at 21:48, Patrick Moriarty wrote: > > Hi, > > I've spent quite a lot of

Re: OSGi manifest creation for Clojure projects

2012-03-16 Thread Patrick Moriarty
Oops, forgot the reply-to! On 16 Mar 2012, at 21:48, Patrick Moriarty wrote: > Hi, > > I've spent quite a lot of time with Clojure and OSGi lately and have had some > success in using Bnd and tools.namespace to generate a manifest for my mixed > Clojure/Java project. I'm using clojure.osgi suc

OSGi manifest creation for Clojure projects

2012-03-16 Thread Patrick Moriarty
Hi, I've spent quite a lot of time with Clojure and OSGi lately and have had some success in using Bnd and tools.namespace to generate a manifest for my mixed Clojure/Java project. I'm using clojure.osgi successfully to handle using requiring and loading clojure namespaces and to register and t

Clojure/core accepted as a Google Summer of Code 2012 Mentoring Organization!

2012-03-16 Thread David Nolen
http://www.google-melange.com/gsoc/accepted_orgs/google/gsoc2012 Congratulations to the entire Clojure community, we have a lot to look forward to this summer. David -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email t

ot: another layer of language abstraction

2012-03-16 Thread Raoul Duke
hi, http://www.shenlanguage.org/Download/download.html Shen compiles to Clojure as well, now. -- 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 Note that posts from new members are moderate

Re: Parallel SSH and system monitoring in Clojure

2012-03-16 Thread Chris McBride
Wow thats surprisingly similar, I didn't realize this existed. Thanks. On Mar 15, 10:11 pm, dennis zhuang wrote: > There is a clojure-control:https://github.com/killme2008/clojure-control > > 2012/3/16 Chris McBride > > > > > > > > > > > Hi, > > >   I releases two simple clojure libraries to hel

Re: Recursive anonymous functions in the call position

2012-03-16 Thread JuanManuel Gimeno Illa
Thanks !!! It's wonderful how much time can be wasted because a bad copy&paste :-) Juan Manuel On Friday, March 16, 2012 9:39:09 AM UTC+1, Meikel Brandmeyer (kotarak) wrote: > > Hi, > > there is no 6th element in your example. That's why you get nil. > > Clojure 1.3.0 > user=> ((fn [[f & r] n]

Re: Recursive anonymous functions in the call position

2012-03-16 Thread Meikel Brandmeyer (kotarak)
Hi, there is no 6th element in your example. That's why you get nil. Clojure 1.3.0 user=> ((fn [[f & r] n] (if (zero? n) f (recur r (dec n [4 5 6 7 8 9] 2) 6 Sincerely Meikel -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group

Recursive anonymous functions in the call position

2012-03-16 Thread JuanManuel Gimeno Illa
Problem 21 is: Write a function which returns the Nth element from a sequence. My solution is: (fn [[f & r] n] (if (zero? n) f (recur r (dec n) but it is marked as incorrect. Opening a REPL, and defining it with defn: (defn mynth [[f & r] n] (if (zer