Re: NW UK Clojurians?

2011-12-09 Thread Simon Holgate
I guess that strictly I should have said NW England rather than NW UK since I don't think may of our Scottish friends would be able to make a regular trip south either... If it's of interest, there's a Clojure Dojo on the 2nd Monday of every month at Manchester's

Re: Idiomatic pmap for side-effects ?

2011-12-09 Thread Thomas
Stuart Any idea when the Fork/Join frame work will be included in Clojure proper? I have seen the presentation somewhere on the web and it looks very promising. Thomas On Dec 8, 9:37 pm, Stuart Sierra the.stuart.sie...@gmail.com wrote: doall + pmap will work, but be aware that pmap is not

Re: java reflection during macro

2011-12-09 Thread Razvan Rotaru
Thanks. I was missing the call to resolve. (let [klass (resolve c)] ) With it it works. Razvan On Dec 8, 11:39 pm, Stuart Sierra the.stuart.sie...@gmail.com wrote: Not sure if it helps, but here's my example of using reflection in a macro:

Re: Idiomatic pmap for side-effects ?

2011-12-09 Thread Stuart Sierra
I don't think the fork/join branch is currently active, but the work is there waiting for someone to pick it up again. -S -- 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

Re: Counterclockwise nREPL multiple commands

2011-12-09 Thread Chas Emerick
On Dec 6, 2011, at 11:27 PM, jlhouchin wrote: As I work through the Programming Clojure book, I play with the code I enter into the REPL. I just want to say that I am infinitely enjoying using the REPL in Counterclockwise. It does make multi-line code so much nicer. Awesome job guys.

Re: Ending or closing malformed line in REPL

2011-12-09 Thread Chas Emerick
On Dec 6, 2011, at 11:31 AM, jlhouchin wrote: This biggest issue I see in this context, is that the REPL is tied to the editor. Yes, I can detach the REPL, but it is still a part of the editor. I can't have the pdf of my book side by side with the REPL. As soon as I click on the REPL, the

Re: Ending or closing malformed line in REPL

2011-12-09 Thread jlhouchin
On 12/9/2011 1:34 PM, Chas Emerick wrote: On Dec 6, 2011, at 11:31 AM, jlhouchin wrote: This biggest issue I see in this context, is that the REPL is tied to the editor. Yes, I can detach the REPL, but it is still a part of the editor. I can't have the pdf of my book side by side with the

Re: Counterclockwise nREPL multiple commands

2011-12-09 Thread jlhouchin
On Dec 9, 1:27 pm, Chas Emerick cemer...@snowtide.com wrote: On Dec 6, 2011, at 11:27 PM, jlhouchin wrote: As I work through the Programming Clojure book, I play with the code I enter into the REPL. I just want to say that I am infinitely enjoying using the REPL in Counterclockwise. It

Re: Trying to use CDT on 1.3.0

2011-12-09 Thread Richard Tiger Melville
New to lein, coming from SBCL where slime setup is effortless! Any ideas why this fundamental step is failing? bash-4.1$ lein version Leiningen 1.6.1 on Java 1.6.0_25 Java HotSpot(TM) Client VM bash-4.1$ lein swank That's not a task. Use lein help to list all tasks. bash-4.1$ -- You received

My first clj project: A re-ranking twitter client

2011-12-09 Thread werg
Hi, a while ago I wrote a basic twitter client for Compojure and CoffeeScript using adamwynne's twitter-api library. Now that I have the time to revisit Clojure again I noticed that I never managed to show it to anyone. So here it is: https://github.com/werg/simple-twitter-rerank If you're

Lein not resolving?

2011-12-09 Thread Richard Tiger Melville
bash-4.1$ lein search swank-clojure ... == Results from clojars - Showing page 1 / 1 total ... [swank-clojure 1.4.0-SNAPSHOT] Swank server connecting Clojure to Emacs SLIME bash-4.1$ lein plugin install swank-clojure 1.4.0-SNAPSHOT [INFO] Unable to find resource

Re: Lein not resolving?

2011-12-09 Thread Phil Hagelberg
On Fri, Dec 9, 2011 at 12:38 PM, Richard Tiger Melville melvilleti...@gmail.com wrote: bash-4.1$ lein plugin install swank-clojure 1.4.0-SNAPSHOT [INFO] Unable to find resource 'swank-clojure:swank-clojure:jar:1.4.0- SNAPSHOT' in repository central (http://repo1.maven.org/maven2) [INFO] Unable

Re: Trying to use CDT on 1.3.0

2011-12-09 Thread Linus Ericsson
Swank is not built in by default. Have you added a :dev-dependencies [[swank-clojure 1.4.0-SNAPSHOT]] map entry to project.clj and runned lein deps and the lein swank? (1.4.0-SNAPSHOT worked for me a few days ago, maybe 1.4.0 is out sooner or later) /Linus 2011/12/9 Richard Tiger Melville