Re: RIncater

2011-05-23 Thread Edmund Jackson
Hey Ulises, Sortof. The original author is updating thing so that they work more cleanly. In the interim if you want to get it to work modify the project.clj to look like this: https://gist.github.com/962673. Then comes the hard bit. The JRI uses native libraries that upon

Re: Where's incanter chrono?

2011-05-08 Thread Edmund Jackson
I think the code has been under development and is now here: https://github.com/getwoven/clj-time as clj-time. On 8 May 2011, at 05:53, Andreas Kostler wrote: Hello all, Has incanter.chrono disappeared? (use '(incanter core chrono)) results in Could not locate incanter/chrono__init.class

Re: Simple things should be simple

2010-09-09 Thread Edmund Jackson
Hi Mike, Could you perhaps present a counter-example of greater simplicity ? Edmund On Thu, Sep 9, 2010 at 4:03 PM, Mike Meyer mwm-keyword-googlegroups.620...@mired.org wrote: On Thu, 9 Sep 2010 07:46:22 -0700 (PDT) Meikel Brandmeyer m...@kotka.de wrote: Hi, I don't know what the

Re: Simple things should be simple

2010-09-09 Thread Edmund Jackson
pointedly not going to compare that to /etc/apache/conf.d) I think its a low price. On Thu, Sep 9, 2010 at 4:47 PM, Mike Meyer m...@mired.org wrote: On Thu, 9 Sep 2010 16:28:48 +0100 Edmund Jackson edmundsjack...@gmail.com wrote: Hi Mike, Could you perhaps present a counter-example

Re: Trying to write idiomatic clojure to create vector of vectors

2010-07-23 Thread Edmund Jackson
Hi, Some time back Lau Jensen blogged something like this. Its starts here http://www.bestinclass.dk/index.clj/2009/10/brians-functional-brain.html but there are at least two follow ups. It might spark inspiration if you've not yet read it. Edmund On 22 Jul 2010, at 13:37,

Re: Getting Clojure into the workplace, how do you do it?

2010-07-06 Thread Edmund Jackson
An exercise in declarative programming... On 6 Jul 2010, at 17:15, Wilson MacGyver wrote: my story isn't a very interesting one. I simply told everyone on the team to learn it, because we are going to use it :) On Tue, Jul 6, 2010 at 4:50 AM, Nick Mudge mud...@gmail.com wrote: One of the

Re: bioinformatics toolkit in clojure: what would that look like?

2010-06-29 Thread Edmund Jackson
Hi Jan, Perhaps R's excellent bioconductor project could be mapped nicely into Incanter (Clojure's R) ? Edmund On 27 Jun 2010, at 23:15, jandot wrote: Hi all, I have been a ruby user for several years and have contributed to the bioruby toolkit for bioinformatics. Lately however

Re: Understanding lazy-seq

2010-04-13 Thread Edmund Jackson
Wow - thanks everybody. On 13 Apr 2010, at 14:32, Rich Hickey wrote: On Apr 12, 7:53 pm, Stuart Halloway stuart.hallo...@gmail.com wrote: Hi Edmund, This is a regression since last Tuesday's commit f81e612cc9ff91ddefc1d86e270cd7f018701802. Thanks for catching it! Stu Dear

Understanding lazy-seq

2010-04-12 Thread Edmund Jackson
Dear Clojurians, I have been trying to get a proper grip on the operation of lazy-seq and hope somebody will have the time to clarify a point for me. The references indicate that you should not hold onto the head of a lazy sequence as it blocks the GC. This has lead to me to believe

Re: Why I have chosen not to employ clojure

2010-03-22 Thread Edmund Jackson
I'd agree with that, I've setup Clojure on Linux, Mac and Windows and I found Windows the most difficult. Granted, I virtually never use Windows, but it felt like I was fighting it by being at the command line, but had no choice but to be there. On 22 Mar 2010, at 11:31, Luc Préfontaine

Re: Name suggestions

2010-03-18 Thread Edmund Jackson
I love the reference, but I dunno dude, the word itself sounds venereal ! On 18 Mar 2010, at 14:36, Alexandre Patry wrote: On Wed, Mar 17, 2010 at 3:08 AM, mac markus.gustavs...@gmail.com wrote: After just a little more test and polish I plan on calling clj-native 1.0. But clj-native

Re: Full Disclojure - I Need Topics!

2010-01-26 Thread Edmund Jackson
+1 defprotocol, deftype, reify On 26 Jan 2010, at 00:24, Jeff Rose wrote: Thanks a lot for the videos you've done so far. I watch them all. Here are some ideas for shows, from more Clojure centric to just interesting: * defprotocol, deftype, reify, ... * data-flow programming * pattern

Re: Clojure/SLIME/Emacs questions

2010-01-01 Thread Edmund Jackson
and FWIW I got the whole thing going without ELPA by using the instructions here: http://learnclojure.blogspot.com/2009/11/installing-clojure-on-ubuntu-910-karmic.html but on OSX. On 1 Jan 2010, at 11:30, Stefan Kamphausen wrote: FWIW I have never touched ELPA but got a setup with SLIME

Re: newbie question

2009-11-09 Thread Edmund Jackson
Here's something based on a similar question I asked in #clojure the other day, based on the code Chousuke answered with (all ugliness is my fault). (defn cond [f pred] (fn [coll acc outp] (if (empty? coll) (conj outp acc) (if