Re: User Map

2009-02-02 Thread Robert Lally
Thanks Meikel, that's the answer. R. 2009/2/2 Meikel Brandmeyer > Hi Mark, > > Am 02.02.2009 um 21:42 schrieb Mark Volkmann: > >> >>> http://maps.google.com/maps/ms?ie=UTF&msa=0&msid=112691912540601337884.00045972a1deb8de0d96b >>> >> >> How do you add a pin? >> > > You have to be logged in with

Re: User Map

2009-02-02 Thread Robert Lally
Just so you don't feel alone Mark, I can't figure it out either. Rob Lally. 2009/2/2 Mark Volkmann > > On Mon, Feb 2, 2009 at 12:02 PM, Meikel Brandmeyer wrote: > > Dear Clojurians, > > > > the questions of the various locations, which were recently > > posted, reminded me of Graham Fawcett'

Generating classes with annotations

2009-02-23 Thread Robert Lally
Hi, Is it possible to add annotations to classes generated with clojure? There seems to be an AnnotationWriter class in the source, but I've not had any luck tracing it back to anything useable. Thanks, Rob. --~--~-~--~~~---~--~~ You received this message because

Re: Clojure plugin for IntelliJ IDEA published

2009-02-25 Thread Robert Lally
I've been using this since yesterday, and it really is very good. Up until now, I've been thrashing between aquamacs, vim and textmate for my clojure programming, all have been unsatisfying to me in some way. This is certanly a step up. Ilya, I noticed that you posted from a gmail address. Is thi

Re: function rebinding and logging

2009-10-21 Thread Robert Lally
I'd be a little concerned about wholesale wrapping of functions, purely from the perspective that you'll be wrapping mostly side-effect free functions with functions that do have side-effects. That sounds like something you'd want to do consciously, where you know it will be safe, and where the res

Re: Introduction + question re. diff between 'Programming Clojure'

2010-03-23 Thread Robert Lally
On 23 March 2010 12:31, Meikel Brandmeyer wrote: > Hi, > > one difference which shows up everywhere, is the method and > constructor notation. While in the book the old is used - (. obj > (method args ...)) - one should stick to the new one - (.method obj > args ...). Similar for Contructors. (no

Re: Introduction + question re. diff between 'Programming Clojure'

2010-03-23 Thread Robert Lally
On 23 March 2010 20:16, ataggart wrote: > > > On Mar 23, 1:04 pm, Robert Lally wrote: > > On 23 March 2010 12:31, Meikel Brandmeyer wrote: > > > > > Hi, > > > > > one difference which shows up everywhere, is the method and > > > constructo

Re: Introduction + question re. diff between 'Programming Clojure'

2010-03-23 Thread Robert Lally
On 23 March 2010 20:57, Meikel Brandmeyer wrote: > Hi, > > On Tue, Mar 23, 2010 at 08:04:34PM +0000, Robert Lally wrote: > > > I ask because I found that every time I wanted to change my code from > > (.method1 object) to (.. object method1 method2) it would have been

Re: Tree vaadin?

2011-06-26 Thread Robert Lally
First problem: In Java: new Object[]{"Venus"} On 26 June 2011 18:46, .Bill Smith wrote: > Can you describe the problem you are having? > > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to clojure@googlegro

Re: Tree vaadin?

2011-06-26 Thread Robert Lally
ojure Vector. This isn't going to work. Look at http://clojure.github.com/clojure/clojure.core-api.html#clojure.core/object-arrayinstead. R. On 26 June 2011 21:08, Robert Lally wrote: > First problem: > > In Java: > new Object[]{"Venus"} > > > > On 26 J

Re: FleetDB or other "NoSQL" store for Clojure?

2011-07-18 Thread Robert Lally
I've been using OrientDB [ http://www.orientechnologies.com/ ] recently, and although it isn't quite ready for primetime, it has a structure that would map quite well onto Clojure. R, On 15 July 2011 08:17, Marko Kocić wrote: > Hi all, > I would like to try out some of those "no-sql" datastores

Re: The ant simulation

2008-08-30 Thread Robert Lally
2008/8/30 Parth Malwankar <[EMAIL PROTECTED]> > > vector takes individual elements as arguments and map > returns a list. If we simply (vector (map ..)) the entire > list returned by map is seen as a single element. Hence > 'apply'. > > user=> (vector 1 2 3) > [1 2 3] > user=> (map inc [1 2 3]) >

Re: The ant simulation

2008-08-30 Thread Robert Lally
Thanks Rich. 2008/8/30 Rich Hickey <[EMAIL PROTECTED]> > > > > On Aug 30, 10:52 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> > wrote: > > In the ant simulation the world function looks like this > > > > (def world > > (apply vector > > (map (fn [_] > >(apply ve

Readable names

2008-11-10 Thread Robert Lally
One of the many things that I really like about Clojure is that it abandoned Lisp tradition where it was pragmatic to do so. One of the prime examples for me was the use of first and rest rather than car and cdr. Sure, I can read code with car and cdr but it never really communicated that well; I a

Re: Readable names

2008-11-10 Thread Robert Lally
I appreciate the answers that everyone has given to my post, and I thought I'd send a single response before ceasing my bleating; I do realise that this discussion has the potential to devolve into multiple different religious wars, and I appreciate everyone's tolerance and forbearance so far. I th

Re: loss of gen-and-load-class functionality

2008-11-21 Thread Robert Lally
I'm not entirely clear how the new AOT compilation works, or how I convert old code to use the new mechanism. As an example - I had a call to gen-and-save-class in a file that created a custom exception type just before the function that would throw it was defined. I've changed that to just gen-cl