Re: ritz-nrepl starts up slowly?

2013-05-14 Thread Chris Ford
You could try lein -o to make sure that your startup isn't blocking on network. On 14 May 2013 01:50, yizhen wei yizhenwe...@gmail.com wrote: I heard using a sdd can reduce the time a lot. Maybe 5x? Can someone confirm on that? On Monday, May 13, 2013 6:17:38 PM UTC-4, Warren Lynn wrote:

Re: Calling a java function with multiple implementations based on type

2013-05-14 Thread Korny Sietsma
Thanks - I'd missed that, looked at the Java method but not the Clojure type signature :) - Korny On 13 May 2013 16:24, Meikel Brandmeyer (kotarak) m...@kotka.de wrote: Hi, Am Montag, 13. Mai 2013 02:25:03 UTC+2 schrieb Korny: If I call (add-identity agent {:private-key-path foo

[ANN] Instaparse 1.1.0

2013-05-14 Thread Mark Engelberg
Instaparse is an easy-to-use, feature-rich parser generator for Clojure. The big idea behind instaparse is to make it simple to convert grammars to parsers without needing to know the idiosyncrasies of LL1, LALR, and other esoteric grammar restrictions imposed by most parser generators. When I

[ANN] Incremental Vectors

2013-05-14 Thread Mark Engelberg
As part of the instaparse library, I created a wrapper around Clojure's vectors that keeps the hashcode updated as the vector is modified. In scenarios where you take a vector and then hash, then modify, then hash, then modify, then hash, etc., this strategy of incremental hashing is essential to

Re: unusual question: how do you get morale?(or moral support)

2013-05-14 Thread Phillip Lord
Zack Maril thewitzb...@gmail.com writes: I'm obviously on a futile crusade fueled by my youth and naiveté, but for the moment, that's why I program. Yes, you are. Long may it last, and good luck to you! Phil -- -- You received this message because you are subscribed to the Google

Re: unusual question: how do you get morale?(or moral support)

2013-05-14 Thread Phillip Lord
Thanks a funny piece, although I'd debate his self-deserving description of best minds. People who cannot distinguish between important and well-paid are not the best minds. Phil Armando Blancas abm221...@gmail.com writes: Zack, you've probably come across this profile on Jeff Hammerbacher,

Re: Utility libraries and dependency hygiene

2013-05-14 Thread Phillip Lord
Stuart Sierra m...@stuartsierra.com writes: On Tue, May 14, 2013 at 3:25 AM, Phil Hagelberg p...@hagelb.org wrote: It's really not difficult to do if you limit yourself to Clojure since Clojure namespaces are first-class and easy to manipulate at run-time. We implemneted a prototype of this

Re: [ANN] Incremental Vectors

2013-05-14 Thread Jim
many thanks for this! :) btw, is there any place where one can find your discussion between you and Christophe? I'd love to know more about equiv...alternatively, do you plan on making public what you've learned in some sort of demo/tutorial? Jim On 14/05/13 09:29, Mark Engelberg wrote: As

Re: Utility libraries and dependency hygiene

2013-05-14 Thread Dave Kincaid
This thread seems to have gotten way off track and I think that Stuart made a very important point in the original post that's getting lost. It would help all of us out if library authors stopped making their libraries dependent on 10+ other libraries. This issue does have the potential to

Re: Meta-eX: Hacking Overtone on the Stubnitz - Thurs 16th May

2013-05-14 Thread Chris Ford
Wish I could be there... On 14 May 2013 15:45, BERYANN PARKER beryann.par...@gmail.com wrote: Hi Sam, thanks for the link, good project and good ! I like very much your philosophy: The source code is our instrument and we play it live i follow it now! Cheers! Beryann Le lundi 13 mai

Re: [ANN] Instaparse 1.1.0

2013-05-14 Thread JeremyS
Hi Puzzler, Instaparse seems to be a wonderful piece of software congrats ! I haven't had the time to test it yet but it's on the top of my to do list. Cheers Jeremy. PS This is kind of a fan boy message but congratulations really seem to be in order nonetheless :) On Tuesday, May 14, 2013

Re: [ANN] Instaparse 1.1.0

2013-05-14 Thread Laurent PETIT
2013/5/14 JeremyS jschoffen@gmail.com: Hi Puzzler, Instaparse seems to be a wonderful piece of software congrats ! I haven't had the time to test it yet but it's on the top of my to do list. Cheers Jeremy. PS This is kind of a fan boy message but congratulations really seem to be in

Re: unusual question: how do you get morale?(or moral support)

2013-05-14 Thread Joel Ericson
My life is mostly about music and playing with structure. Programming falls into the second category. Right now, I'm having difficulty getting a job since it's much more fun to play the violin and program than to apply for jobs. If I were to get a programming job where I were to do mundane tasks

Re: Utility libraries and dependency hygiene

2013-05-14 Thread Dave Sann
It may be pragmatic currently but *manually* copying code is a bad solution. Not depending on libraries is not a good solution either. The premise that there are only 3 levels of composition - clojure - library - application - I think is wrong, even if it works and is useful in some cases.

[ANN] core.typed 0.1.15

2013-05-14 Thread Ambrose Bonnaire-Sergeant
Hi, A brief but highly visible release of core.typed: types and forms in error messages are abbreviated where possible. See the changelog and check-ns docstring for details. In a nutshell: fire.main= (check-ns 'fire.simulate) ... Type Error (fire.simulate:72) Expected type: Grid Actual:

Re: [ANN] Clojars policy change

2013-05-14 Thread Phil Hagelberg
Phil Hagelberg writes: I've rolled this back briefly due to a bug surrounding deploying SNAPSHOT versions over scp. The bug is fixed, and the fix is deployed. -Phil pgpRuN5qASLVY.pgp Description: PGP signature

[ANN] Himilsbach 0.1.0 is released

2013-05-14 Thread Jan Stępień
Dear Clojurians, I'm very happy to announce Himilsbach 0.1.0. Get it from Clojars: [himilsbach 0.1.0] Himilsbach is a tiny actor library for intra-process messaging inspired by Erlang. The main highlight of this release is a considerable performance improvement achieved by adoption of a

Re: [ANN] Incremental Vectors

2013-05-14 Thread Mark Engelberg
On Tue, May 14, 2013 at 3:56 AM, Jim jimpil1...@gmail.com wrote: many thanks for this! :) btw, is there any place where one can find your discussion between you and Christophe? I'd love to know more about equiv...alternatively, do you plan on making public what you've learned in some sort of

Re: [ANN] Instaparse 1.1.0

2013-05-14 Thread Mark Engelberg
On Tue, May 14, 2013 at 6:17 AM, Laurent PETIT laurent.pe...@gmail.comwrote: Mark, the combined qualities of the code, the documentation, the communication, is inspiring ! Aw shucks. I'm blushing. Thanks guys. --Mark -- -- You received this message because you are subscribed to the

Re: Understanding boxing

2013-05-14 Thread Trevor Bernard
If you want to be 100% sure, AOT-compile your code and look at the emitted Java classes with `javap`. Some observations I found about autoboxing and Clojure. If you typehint a deftype/defrecord with a primitive, the generated class will store it as it's primitive type but this is not the