Re: Not using dependency injection - how do I share services around?

2013-05-11 Thread Jimmy
Do any of the clojure books cover this topic? -- -- 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. T

Re: Not using dependency injection - how do I share services around?

2013-05-11 Thread Jimmy
Do any of the clojure books cover this topic? -- -- 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. T

Re: Clojure Course on Coursera

2012-09-21 Thread Jimmy Zelinskie
I'm enrolled in example course. This course is attempting to teach functional constructs regardless of language, but the homework and examples are done in Scala. If there were to be a Clojure course available, I would prefer it to be more directly about Clojure than generalizations. Currently,

Re: clj-http and boundary in the POST request

2012-04-03 Thread Jimmy
Hi Lee, Thanks for the suggestion, will try that approach. regards, Jimmy On Tuesday, April 3, 2012 4:30:10 PM UTC+1, Lee Hinman wrote: > > On Apr 3, 12:55 am, Jimmy wrote: > > Hi all, > > > > The REST endpoint I need to call requires multiple boundaries in the >

clj-http and boundary in the POST request

2012-04-02 Thread Jimmy
h multiple boundaries such as - --the_message_boundary Content-Type: application/json {"Subject":"this is a subject", "Secure":true} --the_message_boundary Content-Type: application/json {"Recipient": "y...@you.com"]} ..etc etc Thanks, Jimmy --

Re: Creating map from string

2012-03-19 Thread Jimmy
Ok, those sugggestions work great. Thanks for the help. -- 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

Creating map from string

2012-03-18 Thread Jimmy
{ :@key1 "this is a value", :@another-key "and another value" , :@test1 "and other value"} What's the best way to do this? Thanks, Jimmy -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this

Re: Quartz and Clojure

2011-12-08 Thread Jimmy
Great stuff, thanks. On Dec 8, 6:23 am, Lars Rune Nøstdal wrote: > You've probably found this by now, but > there's:https://github.com/mdpendergrass/quartz-clj -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clo

Quartz and Clojure

2011-12-06 Thread Jimmy
Hi, Is there any know Clojure wrapper for the Quartz scheduling service? thanks, Jimmy -- 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

Re: Silly Chat: Clojure, ClojureScript and WebSockets

2011-08-12 Thread Jimmy
Whats handling the serverside websockets connections? -- 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 pos

JavaScript is Assembly Language for the Web

2011-07-25 Thread Jimmy
/JavaScriptIsAssemblyLanguageForTheWebPart2MadnessOrJustInsanity.aspx Regards, Jimmy -- 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

Re: Documentation and examples (and where is the documentation on reduce)?

2010-06-29 Thread Jimmy
s have some examples in the reference docs and i think it helps a lot. Regards, Jimmy -- 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 - pl

Re: State of Clojure web development

2010-06-24 Thread Jimmy
Hi James, For me the big missing item is Comet/Websockets support. More and more of the web development I do requires near real time communication and to have that feature integrated in the framework (like lift) would be great. thanks Jimmy -- You received this message because you are subscribed

Re: Clojure on Android

2010-05-21 Thread Jimmy
Android 2.2 will have a JIT added to the VM which is reportedly improving performance anywhere between 2x to 5x. Lets hope Clojure get this type of speed improvement on Android. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, s

Clojure and Comet

2010-05-21 Thread Jimmy
Hi all, Is any one aware of a Clojure web framework that has built in support for Comet or BOSH? Thanks, Jimmy -- 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 post

Re: Architecting a large multi-threaded process

2009-09-24 Thread Jimmy
>From Mark Volkmann tutorial - http://java.ociweb.com/mark/clojure/article.html "The send function uses a "fixed thread pool" (see the newFixedThreadPool method in java.util.concurrent.Executors) where the number of threads is the number of processors plus two. If all of those threads are busy,