Re: Clojure-CLR, CLASSPATH, clojure.load.path and Cygwin

2011-08-21 Thread Alan D. Salewski
On Thu, Aug 18, 2011 at 08:05:05PM -0700, dmiller spake thus: Several comments: (c) It could be changed to something like CLOJURE_LOAD_PATH instead. Would that cause a problem for anyone? -David +1 -Al -- - a l a n d.

Re: Clojure-CLR, CLASSPATH, clojure.load.path and Cygwin

2011-08-21 Thread Alan D. Salewski
On Fri, Aug 19, 2011 at 05:53:59AM -0700, dmiller spake thus: I would be concerned about this group, if there was any evidence of existence. Same here, but even with such evidence I would not be so concerned that I would not make the change. This calls to mind Stuart Feldman's explanation as

Re: Clojure-CLR, CLASSPATH, clojure.load.path and Cygwin

2011-08-21 Thread Alan D. Salewski
On Thu, Aug 18, 2011 at 06:40:50PM -0400, Ken Wesson spake thus: On Thu, Aug 18, 2011 at 4:56 PM, D L lio...@gmail.com wrote: On Thu, Aug 18, 2011 at 7:34 PM, Ken Wesson kwess...@gmail.com wrote: On Wed, Aug 17, 2011 at 4:25 PM, Dimitre Liotev lio...@gmail.com wrote:      you can not set

Re: Clojure-CLR, CLASSPATH, clojure.load.path and Cygwin

2011-08-21 Thread Colin Yates
Nothing to add to this discussion, but please *please* realise how destructive these type of posts are. They significantly increase the noise and make us all look like muppets. I respect most of the usual suspects in these threads, but please - let's keep this on topic. Alternatively maybe this

Recursion for nested comments

2011-08-21 Thread Thorsten Wilms
Hi! For a blogging software, I want to support nested comments. Rendered as nested divs, to not have to define per level CSS classes. My data-gathering function calls itself to deliver a nested structure. On IRC I've been told that, since it happens via map, there is not necessarily a

Re: ClojureQL Postgres question

2011-08-21 Thread David Jagoe
On 19 August 2011 17:25, Herwig Hochleitner hhochleit...@gmail.com wrote: This is a bug in `rename`. That needs to be worked on, thanks for pointing it out. In the meantime, please use    (- (table nil :users)         (project [[:id :as :idx]                     :name])         to-sql) in

Re: Clojure-CLR, CLASSPATH, clojure.load.path and Cygwin

2011-08-21 Thread Ken Wesson
On Sun, Aug 21, 2011 at 3:14 AM, Alan D. Salewski salew...@att.net wrote: That presumption is at least partially incorrect. Native apps (cmd.exe, for instance) launched from a cygwin bash command prompt can see environment variables exported by the parent bash process. I never claimed there

Thoughts on the Mapping Dilemma - Matching from Objects all the way down to Bits

2011-08-21 Thread David Nolen
Based on my current work adding support to match for primitive arrays and bit level pattern matching. http://dosync.posterous.com/solving-the-mapping-dilemma David -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to

Re: Prisoner's Dilemma in Clojure

2011-08-21 Thread Base
Very very nice! On Aug 18, 10:34 pm, Christian Romney xmlb...@gmail.com wrote: Hi all, As part of my attempt to learn Clojure, I've cooked up a simple Prisoner's Dilemma simulation. I'd love any feedback the group would care to provide about my implementation, as I'm eager to improve. I've

Re: Video Slides on Pattern Matching and Predicate Dispatch in Clojure

2011-08-21 Thread Brent Millare
I have a question about the presentation. You mention that you can't achieve the same dispatching performance in the open case compared to the closed space. Lets ignore the namespace issue (maybe by restricting ourselves to only one namespace). Also lets assume the predicate ordering is solved.

Re: Video Slides on Pattern Matching and Predicate Dispatch in Clojure

2011-08-21 Thread David Nolen
On Sun, Aug 21, 2011 at 11:27 PM, Brent Millare brent.mill...@gmail.comwrote: I have a question about the presentation. You mention that you can't achieve the same dispatching performance in the open case compared to the closed space. I meant to say that the problem is hard. No completely

Re: Another ClojureScript app in the wild

2011-08-21 Thread Stuart Campbell
Ha! I was considering doing this exact same thing. I'm working on a vanilla js version that I was considering porting to cljs. It might be interesting to compare implementations: https://github.com/harto/pacman Thanks for sharing, Stuart On 18 August 2011 08:00, Matthew Gilliard