Re: Contrib for Clojure 1.3

2012-02-01 Thread Sean Corfield
On Tue, Jan 31, 2012 at 6:33 PM, kohyama wrote: > If I want to use the "contrib compiled against 1.3" with Leiningen, does > anyone know what entry I should specify at :dependencies in project.clj? If you follow that link, you'll see the github repo that Allen maintains and if you scroll down, yo

Re: EuroClojure 2012: CfP open

2012-02-01 Thread Daniel Kwiecinski
What's the promo code? -- λambder -- 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 - please be patient with your first post. To unsubscribe f

Re: Contrib for Clojure 1.3

2012-02-01 Thread kohyama
Sun, Thank you for your information. If I want to use the "contrib compiled against 1.3" with Leiningen, does anyone know what entry I should specify at :dependencies in project.clj? Regards, Yoshinori Kohyama -- You received this message because you are subscribed to the Google Groups "Cloju

Re: WebSockets with Clojure

2012-02-01 Thread Moritz Ulrich
There's also aleph[1] which also uses netty. I'd suggest trying it, as it encapsulates websockets and other means of transportation in a clean way. (Although I have no idea how well aleph scales) [1]: https://github.com/ztellman/aleph Cheers, Moritz On Wed, Feb 1, 2012 at 23:52, Jay Fields wrot

Leiningen survey results

2012-02-01 Thread Phil Hagelberg
I just finished up summarizing the results for the Leiningen survey I posted a few weeks ago. We ended up with just over 300 answers, so if you're interested in getting a snapshot of usage you can see it at http://lein-survey.herokuapp.com/results -Phil -- You received this message because you

Re: SoftCaching in core.cache

2012-02-01 Thread Bill Caputo
On Feb 1, 2012, at 1:25 PM, Fogus wrote: > Oddly enough it was leaking memory, but suspect it had to do with the > queue reaper. I'd think that what's in Clache needs only a little > work. Patches welcomed. Thanks, we'll likely take a look at it then. If we patch it, we'll send something alon

Re: WebSockets with Clojure

2012-02-01 Thread Jay Fields
I haven't hooked up that many clients, but I can recommend Webbit (https://github.com/webbit/webbit) based on experience. Cheers, Jay On Wed, Feb 1, 2012 at 5:05 PM, blais wrote: > Hi Clojurians, > > Does anyone have experience with serving WebSockets from Clojure, in > particular w.r.t. scalabi

WebSockets with Clojure

2012-02-01 Thread blais
Hi Clojurians, Does anyone have experience with serving WebSockets from Clojure, in particular w.r.t. scalability? I'm evaluating server-side options for handling a large number of simultaneous web clients (>100) and wondering how well this scales. I already hooked up Clojure to Netty and built a

Clojure/West "friend of attendee" discount and Stu H's talk

2012-02-01 Thread Alex Miller
1) I updated the Clojure/West site today with Stuart Halloway's talk: __Evident Code, at Scale__ According to Webster, evident means "clear to the vision or understanding." In this talk, I will present specific practices that you can apply to make your code more evident, particularly on larger pr

Re: Literate programming in emacs - any experience?

2012-02-01 Thread Hugo Duncan
Fogus writes: > I would love to see your .emacs setup around these tools. I'll put together a blog post - my .emacs files could do with a cleanup, so this sounds like a good excuse to get it done. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To

Re: SoftCaching in core.cache

2012-02-01 Thread Fogus
Oddly enough it was leaking memory, but suspect it had to do with the queue reaper. I'd think that what's in Clache needs only a little work. Patches welcomed. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to cloj

Re: Literate programming in emacs - any experience?

2012-02-01 Thread Fogus
I would love to see your .emacs setup around these tools. -- 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 - please be patient with your first

Re: Literate programming in emacs - any experience?

2012-02-01 Thread Hugo Duncan
Mark Engelberg writes: > On Wed, Feb 1, 2012 at 5:38 AM, Hugo Duncan wrote: >> SLIME works fully within the code blocks. For example C-x C-e can be >> used to evaluate expressions. Paredit also works. > > My understanding is that unless you use C-c C-k to evaluate the entire > file (which I don'

Re: Literate programming in emacs - any experience?

2012-02-01 Thread Mark Engelberg
On Wed, Feb 1, 2012 at 5:38 AM, Hugo Duncan wrote: > SLIME works fully within the code blocks. For example C-x C-e can be > used to evaluate expressions. Paredit also works. My understanding is that unless you use C-c C-k to evaluate the entire file (which I don't think works in a literate progra

SoftCaching in core.cache

2012-02-01 Thread Bill Caputo
Hello All, Looking at the docs for core.cache: https://github.com/clojure/core.cache There is mention that support for SoftCache (caching using soft references) is not supported as the clache implementation was buggy and so not (yet) brought over. We are looking to add soft-reference based cac

Re: Accessing vals in clojure.lang.PersistentVector

2012-02-01 Thread Simon Holgate
I missed your reply, Raek. Sorry. Your solution is very helpful. Cheers, Simon > From what I can tell, you want to list the values and extract the > value associated with :time for a map. The problem is that res is not > a map, but a vector of maps. If you want to do these operations on > ever

Re: Literate programming in emacs - any experience?

2012-02-01 Thread Hugo Duncan
Colin Yates writes: > Has anybody got any "real world usage reports" regarding using literate > programming in emacs? In particular, does paredit and slime work inside > the clojure "fragments" when using org.babel for example? For the update in Pallet docs [1], we've been using Jekyll with m

Re: Literate programming in emacs - any experience?

2012-02-01 Thread daly
On Wed, 2012-02-01 at 10:43 +, Sam Aaron wrote: > On 30 Jan 2012, at 17:07, daly wrote: > > > > The key result was that I discovered what I call my personal > > "irreducible error rate". If I do 100 things I will make 3 errors. > > This was independent of the task. So typing 100 characters has

Re: ForkJoin updates

2012-02-01 Thread pron
This is exactly what I meant. :) -- 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 - please be patient with your first post. To unsubscribe fro

Re: Literate programming in emacs - any experience?

2012-02-01 Thread Sam Aaron
On 30 Jan 2012, at 17:07, daly wrote: > > The key result was that I discovered what I call my personal > "irreducible error rate". If I do 100 things I will make 3 errors. > This was independent of the task. So typing 100 characters has > 3 wrong letters which were mostly caught while typing. Wri