Re: La Clojure plugin for IntelliJ IDEA moved to Git

2009-10-17 Thread Kurman Karabukaev
Hi Ilya, it is asking for password for git.labs.intellij.net:idea/clojure-plugin URL. Kurman On Sat, Oct 17, 2009 at 12:19 PM, Ilya Sergey wrote: > Ok, try this: > > g...@git.labs.intellij.net:idea/clojure-plugin > > Cheers! > Ilya > > 2009/10/17 B Smith-Mannschott >> >> On Sat, Oct 17, 2009 a

Re: How to Keep Clojure Server From Quitting

2016-06-08 Thread Kurman Karabukaev
In both of your solutions you are stopping main thread from exiting, you could j.c.u CountDountLatch that could have same number of lines as the second solution but has clearer intent. BTW, aleph.http/start-server returns closable object if you are planning to do something fancy. Kurman On Wed,

Re: when to be lazy

2012-10-23 Thread Kurman Karabukaev
Hi Brian, Laziness (and first class functions) can help with code modularity, I would suggest reading paper by John Hughes on the topic: www.cs.kent.ac.uk/people/staff/dat/miranda/whyfp90.pdf Kurman On Tue, Oct 23, 2012 at 11:38 AM, Brian Craft wrote: > I don't yet understand how laziness help