ForkJoin updates

2012-01-29 Thread pron
This has been posted to the concurrency-interest mailing list.http://cs.oswego.edu/pipermail/concurrency-interest/2012-January/008987.html Apparently there have been some nice improvements to ForkJoin: ...This also greatly improves throughput when all tasks are async and submitted to the pool

Re: Documenting Clojure Design without UML

2012-01-29 Thread Manuel Paccagnella
On 01/19/2012 02:12 PM, Adam Markham wrote: I have always used UML to document the design of software projects I have worked on in object-oriented languages. I am now working on a Clojure project and am required to document the design so anyone reading these documents will understand the design

Re: Looking for parser generator library

2012-01-29 Thread Roman Perepelitsa
Thanks for all the suggestions! They'll keep me going for a weekend. Roman Perepelitsa. -- 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 moderated -

Re: ForkJoin updates

2012-01-29 Thread Stuart Sierra
There was some excellent work on ForkJoin in Clojure by David Liebke and others last year, but it never made it into the main Clojure branch. It's waiting for someone else to finish it. Search the wiki and mailing list for notes. -S -- You received this message because you are subscribed to

ANN - Boston Clojurians interested in coming to our group?

2012-01-29 Thread Alex Baranosky
Our little band of programmers, BAZNEX, meets every other Wednesday in Somerville, Davis Sq (right outside of Boston) Next will be this Wednesday Feb 1. We are a lighthearted bunch, who really like Clojure, but who don't limit ourselves to any language. If you're in the area we'd love to have

Re: Looking for parser generator library

2012-01-29 Thread Meikel Brandmeyer (kotarak)
Hi, parsley by Christophe hasn't been mentioned, yet. https://github.com/cgrand/parsley Sincerely Meikel -- 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

Re: problems with meta

2012-01-29 Thread Meikel Brandmeyer (kotarak)
Hi, Am Samstag, 28. Januar 2012 19:48:23 UTC+1 schrieb raschedh: Maybe the meta info is attached to (quote a) and not to the symbol, because that is the next form read ? Exactly. When I say (def z1 (with-meta [] {})) and (def z2 ^{} []) again, only (meta z1) gives me my