Re: Cursive IntelliJ working on multiple Leiningen projects & require - refer :as not working

2013-11-04 Thread Colin Fleming
Hi Niels, I've just released Cursive 0.1.05 which fixes this issue. Documentation for the Leiningen support is here. Basically you should be able to just import your project wholesale and it will automatically work out all the dependencies. Check

Re: recommended: "Java: The Good Parts"

2013-11-04 Thread Marcus Blankenship
Rich, that is a favorite of mine as well. Highly recommended. Thanks for posting this! On Nov 4, 2013, at 8:03 PM, Rich Morin wrote: > When I first started looking into Clojure, I was dismayed to find that > it is deeply entangled with Java (which I had successfully avoided for > some decade

recommended: "Java: The Good Parts"

2013-11-04 Thread Rich Morin
When I first started looking into Clojure, I was dismayed to find that it is deeply entangled with Java (which I had successfully avoided for some decades. You mean I have to learn FP, Lisp, _and_ Java ?!?!? I got some Java books, looked them over, and decided to hope that I could mostly ignore t

Re: question about let

2013-11-04 Thread shlomivaknin
hey, you could simply use do: (do (f1) (f2) (f3)) On Tuesday, November 5, 2013 2:18:56 AM UTC+2, julius wrote: > > Hi, > > I have a question, if there are a sequence of fn like (f1) (f2) (f3) ,I > just want to return the evaluation of last fn, for example > > ((f1) > (f2) > (f3)) > > now I

Re: question about let

2013-11-04 Thread Mikera
You can also use (do ) e.g. (do (f1) (f2) (f3)) On Tuesday, 5 November 2013 08:18:56 UTC+8, julius wrote: > > Hi, > > I have a question, if there are a sequence of fn like (f1) (f2) (f3) ,I > just want to return the evaluation of last fn, for example > > ((f1) > (f2) > (f3)) > > now I ca

question about let

2013-11-04 Thread julius
Hi, I have a question, if there are a sequence of fn like (f1) (f2) (f3) ,I just want to return the evaluation of last fn, for example ((f1) (f2) (f3)) now I can do it by (let [] (f1) (f2) (f3)) I am not sure if there is another solution for it. Thanks

Re: [ANN] Parkour: Hadoop MapReduce in idiomatic Clojure

2013-11-04 Thread Marshall Bockrath-Vandegrift
ronen writes: > Thanks for releasing this, I personally had to re-invent such > functionality over clojure-hadoop Glad to do so. If you’ve been exploring a similar software space, would be very interested in additional specific feedback. And PRs :-). > Did you happen to test this over AWS EMR

Re: [ANN] Parkour: Hadoop MapReduce in idiomatic Clojure

2013-11-04 Thread ronen
Thanks for releasing this, I personally had to re-invent such functionality over clojure-hadoop Did you happen to test this over AWS EMR? On Monday, November 4, 2013 3:55:23 PM UTC+2, Marshall Bockrath-Vandegrift wrote: > > I’m pleased to announce the first public release of Parkour, a librar

[ANN] clojure.java.jdbc 0.3.0 beta 1 released

2013-11-04 Thread Sean Corfield
What? Clojure contrib wrapper for JDBC operations. Where? https://github.com/clojure/java.jdbc Dependency? [org.clojure/java.jdbc "0.3.0-beta1"] Details? The clojure.java.jdbc library has finally hit "feature complete" for the upcoming 0.3.0 release and so the first beta release has been made a

Re: Clojars "Could not transfer artifact... ReasonPhrase: Forbidden"

2013-11-04 Thread Mihnea Dobrescu-Balaur
Makes perfect sense! Thanks for confirming. On Mon, Nov 4, 2013 at 8:53 PM, Nelson Morris wrote: > Correct, clojars stopped allowing uploads of the same version of an artifact > earlier this year. It is incorrect to allow as a user might have already > downloaded the original version and maven/le

Re: Clojars "Could not transfer artifact... ReasonPhrase: Forbidden"

2013-11-04 Thread Nelson Morris
Correct, clojars stopped allowing uploads of the same version of an artifact earlier this year. It is incorrect to allow as a user might have already downloaded the original version and maven/lein will not re-download cached files. On Mon, Nov 4, 2013 at 12:32 PM, Mihnea Dobrescu-Balaur wrote: >

Re: Clojars "Could not transfer artifact... ReasonPhrase: Forbidden"

2013-11-04 Thread Mihnea Dobrescu-Balaur
Thanks. Might there also be a problem when you try to reupload the same version of a jar? On Mon, Nov 4, 2013 at 8:29 PM, Nelson Morris wrote: > Clojars has a 20mb limit on jar files. The file trying to be transfered was >>100mb, This gets caught and sent back as a 403. It should probably be >

Re: Clojars "Could not transfer artifact... ReasonPhrase: Forbidden"

2013-11-04 Thread Nelson Morris
Clojars has a 20mb limit on jar files. The file trying to be transfered was >100mb, This gets caught and sent back as a 403. It should probably be something else. - Nelson Morris On Sun, Nov 3, 2013 at 5:47 PM, Mihnea Dobrescu-Balaur wrote: > What was the problem? > > > On Monday, August 5,

[ANN] Parkour: Hadoop MapReduce in idiomatic Clojure

2013-11-04 Thread Marshall Bockrath-Vandegrift
I’m pleased to announce the first public release of Parkour, a library for writing Hadoop MapReduce applications in idiomatic Clojure. Parkour takes your Clojure code’s functional gymnastics and sends it free-running across the urban environment of your Hadoop cluster. https://github.com/damb