Re: CCW bug [SEVERE]

2014-10-26 Thread Dave Della Costa
Here's the counterclockwise project home page, as far as I can tell: https://code.google.com/p/counterclockwise/ Issue tracker: https://code.google.com/p/counterclockwise/issues/list Users google group: https://groups.google.com/forum/#!forum/clojuredev-users I think you'd get a lot more

Re: CljOS - An OOP system on Clojure

2014-10-26 Thread Divyansh Prakash
Thank you! Clojure is a brilliant language, and this project was supposed to prove (mostly to myself) that it deserves the attention I'm devoting to it. I cannot even imagine doing something similar in any other language I know. I'm not saying it wouldn't be possible, but it certainly won't fit

Re: CCW bug [SEVERE]

2014-10-26 Thread Jony Hudson
You should demand your money back. Oh, wait ... Jony On Sunday, 26 October 2014 02:38:11 UTC, Fluid Dynamics wrote: Would somebody mind explaining to me why I just had CCW 0.28.1.STABLE001 hang with 100% CPU usage when I edited this line: := (= v cr to this:

Re: CCW bug [SEVERE]

2014-10-26 Thread john walker
All of those are google pages, so you don't have to create another username or password combination. On Saturday, October 25, 2014 11:19:12 PM UTC-7, Fluid Dynamics wrote: On Sunday, October 26, 2014 2:07:16 AM UTC-4, David Della Costa wrote: Here's the counterclockwise project home page, as

Clojure and concurrency

2014-10-26 Thread Øyvind Teig
I have been reading myself up on Clojure concurrency, starting at [1]. In [2] I read that The Clojure STM uses multiversion concurrency control with adaptive history queues for snapshot isolation, and provides a distinct commute operation but it still needs some explanation to me. Software

Leiningen setup for modifying a library the project is depending on

2014-10-26 Thread Stephen Wakely
I need to make some modifications to a library that my project is depending on.  Currently Leiningen downloads the lib from clojure and uses that lib.  Can I set things up so it uses the files I have cloned from github instead?  I have searched the docs but can't find any ideas how to do this. 

Re: CCW bug [SEVERE]

2014-10-26 Thread Ed Maphis
Notepad is relatively bug free. -- 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

Re: Leiningen setup for modifying a library the project is depending on

2014-10-26 Thread Andy Fingerhut
Stephen: Take a look at the checkouts Leiningen feature described here to see if it does what you want: https://github.com/technomancy/leiningen/blob/master/doc/TUTORIAL.md#checkout-dependencies Andy On Sun, Oct 26, 2014 at 8:39 AM, Stephen Wakely fungus.humun...@gmail.com wrote: I need to

testing platform , midje or specjl ?

2014-10-26 Thread Roelof Wobben
Hello, Im learning clojure as the beginnner. When im googeling for a testing platform there seems to be two major choices midje and specjl. Now I see that my learning course from github uses midje. Can I better learn midje and it this one still active maintained or can I better learn specjl.

Re: testing platform , midje or specjl ?

2014-10-26 Thread Brian Marick
On Oct 26, 2014, at 12:51 PM, Roelof Wobben rwob...@hotmail.com wrote: Can I better learn midje and it this one still active maintained or can I better learn specjl. I've fallen behind on Midje maintenance (and, indeed, many things other than work). I'm gradually ramping up again with ideas

Re: Clojure and concurrency

2014-10-26 Thread Gary Verhaegen
Transactions themselves are not queued (besides the obvious queueing of threads when you have more threads than cores). What gets adaptively queued is the historical values of refs involved in transactions. So if you have three concurrent transactions running, and three refs are involved in two

processing large text files

2014-10-26 Thread Brian Craft
The java overhead for Strings is incredible. Even moderate-sized input files will consume all memory. Are there good existing solutions? I found iota, which looks like a good solution for the read portion of the problem. However I also need to process the data in the file. If I start with an

processing large text files

2014-10-26 Thread Patrick Logan
The JVM on most platforms has good support for memory-mapped files. -- 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

Re: processing large text files

2014-10-26 Thread Alan Busby
On Mon, Oct 27, 2014 at 7:10 AM, Brian Craft craft.br...@gmail.com wrote: I found iota, which looks like a good solution for the read portion of the problem. However I also need to process the data in the file. If I start with an iota/vec and need to sort it, something like (sort (iota/vec

Re: testing platform , midje or specjl ?

2014-10-26 Thread Reid McKenzie
Have another +1 for clojure.test. It’s packaged with Clojure and while it’s not especially shiny I find that it gets the job done most of the time in addition to having the best tooling support. In my latest project, I’ve been enjoying using org.clojure/test.check

[ANN] Clojure 1.7.0-alpha3 now available

2014-10-26 Thread Alex Miller
Clojure 1.7.0-alpha3 is now available. Try it via - Download: http://central.maven.org/maven2/org/clojure/clojure/1.7.0-alpha3/ - Download securely: https://repo1.maven.org/maven2/org/clojure/clojure/1.7.0-alpha3/ - Leiningen: [org.clojure/clojure 1.7.0-alpha3] For users of Clojure 1.7.0-alpha2,

Re: processing large text files

2014-10-26 Thread Brian Craft
On Sunday, October 26, 2014 6:51:18 PM UTC-7, TheBusby wrote: On Mon, Oct 27, 2014 at 7:10 AM, Brian Craft craft...@gmail.com javascript: wrote: I found iota, which looks like a good solution for the read portion of the problem. However I also need to process the data in the file. If I

Re: processing large text files

2014-10-26 Thread Alan Busby
On Mon, Oct 27, 2014 at 12:52 PM, Brian Craft craft.br...@gmail.com wrote: Makes sense, but not an option for this application. What about something similar to iota, backed with byte arrays, or something? As Patrick pointed out, if you're working directly with byte array's you might want to

Expanding The Use Of Transducers To Atoms?

2014-10-26 Thread Mike Thompson
I've been reading about transducers with interest. The official docs at http://clojure.org/transducers say *Because transducers are decoupled from input or output sources, they can be used in many different processes - collections, streams, channels, observables, etc.* At this stage,