gaidica command??

2011-11-10 Thread jayvandal
I tried this command but can't find how to execute it. $ lein run -m gaidica.core What folder do I execute this ? (Vista windows ) Probably simple but it's difficult for me Thanks # gaidica Example Seesaw application. Display weather data from weatherunderground.com ## Usage $ lein deps

Re: JavaScript `debugger' statement

2011-11-10 Thread Matt Hoyt
try (js* "debugger()")   Matt Hoyt From: Stuart Campbell To: Clojure Sent: Thursday, November 10, 2011 9:16 PM Subject: JavaScript `debugger' statement I'm trying to enter the Firebug debugger when an exception is caught: (try   ; ...   (catch js/Error e    

JavaScript `debugger' statement

2011-11-10 Thread Stuart Campbell
I'm trying to enter the Firebug debugger when an exception is caught: (try ; ... (catch js/Error e js/debugger)) This doesn't work, because js/debugger compiles to debugger$; per cljs.compiler/munge. Any ideas how I can get around this? Thanks, Stu -- You received this message because

Re: Clojure Conj extracurricular activities spreadsheet

2011-11-10 Thread Chas Emerick
CORRECTION: The Clojure tooling BoF will *now* be in the Oak Forest room (main ballroom) tonight, 10pm - 11pm. I guess we weren't going to fit in the boardroom… - Chas On Nov 10, 2011, at 3:02 PM, Chas Emerick wrote: > The Clojure tooling BoF will be in the President's Boardroom tonight, > 1

Re: Clojure Conj extracurricular activities spreadsheet

2011-11-10 Thread Gary Trakhman
confirmed tonight -- 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 from this group, s

Re: Clojure Conj extracurricular activities spreadsheet

2011-11-10 Thread Benny Tsai
Does anyone know if the "Web and Clojure" session will be taking place tonight or another night? -- 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 modera

Re: Looking for example code and other learning resources

2011-11-10 Thread Christian Romney
On Nov 10, 12:03 pm, Base wrote: > Hi - > > I have found this site *very* useful. > http://clojuredocs.org/quickref/Clojure%20Core Thanks for your reply. I am familiar with Clojure docs and have found it helpful on occasion. On a separate note, I've been studying the SQL Korma source which makes

Re: Clojure Conj extracurricular activities spreadsheet

2011-11-10 Thread Daniel Solano Gomez
The Clojure development with Android BoF session will be in the Willow Oak room from 6-7 this evening. On Fri Oct 28 12:41 2011, blcooley wrote: > > > On Oct 27, 5:41 pm, Daniel Solano Gomez wrote: > > > > I'd like to propose a new activity: Android.  It'd be more of a hack and > > chat about d

Re: Clojure Conj extracurricular activities spreadsheet

2011-11-10 Thread Chas Emerick
The Clojure tooling BoF will be in the President's Boardroom tonight, 10pm - 11pm. - Chas On Nov 10, 12:33 pm, Chas Emerick wrote: > In the interests of helping with scheduling (and, mostly, common sense > given the obvious significant overlap in likely interested parties), > I've merged the Cou

Re: Clojure Conj extracurricular activities spreadsheet

2011-11-10 Thread Chas Emerick
In the interests of helping with scheduling (and, mostly, common sense given the obvious significant overlap in likely interested parties), I've merged the Counterclockwise-specific tooling BoF into the general- purpose Clojure tooling BoF. If you want to talk about Counterclockwise specifically,

Re: Looking for example code and other learning resources

2011-11-10 Thread Base
Hi - I have found this site *very* useful. http://clojuredocs.org/quickref/Clojure%20Core On Nov 10, 9:50 am, Christian Romney wrote: > Hi all, > > As part of my effort to learn Clojure, I'm looking for examples of > good (open) source that makes use of STM and other concurrency > features. I

Looking for example code and other learning resources

2011-11-10 Thread Christian Romney
Hi all, As part of my effort to learn Clojure, I'm looking for examples of good (open) source that makes use of STM and other concurrency features. I was wondering if any of you would be kind enough to point me at interesting, idiomatic examples of code that leverages any of the following: - atom

Re: smallest unit of code requiring a CA

2011-11-10 Thread Chris Gray
Charlie Griefer wrote: > Chris Gray wrote: >> I have a patch to the clojure compiler that I would like to submit. I >> haven't signed a CA, but the patch is quite small. Would it be possible >> to submit it without a CA? I have no objection to signing one; it would >> just be slightly embarassing

Re: Must PersistentQueue be stored in ref not atom?

2011-11-10 Thread Takahiro
Hi, Meikel I didn't know there is a lower level operation. Thanks. !paws is a tony name :) > However, my suspicion is, that you don't clearly divide the state handling > from the program logic. The peek should happen in the update function you > pass to swap!. If this is not side-effect free, it