Re: Clojure Sticker

2012-07-06 Thread Jerry
+1. Can it be shipped to China? On Thu, Jul 5, 2012 at 9:40 AM, David Della Costa wrote: > +1, wants sticker. > > 2012/7/4 Eric Scrivner : > > +1 I was just looking for this the other day and was disappointed to > find I > > could only get a t-shirt. > > > > > > On Saturday, June 9, 2012 6:03:46

Re: Java 7 & GC Settings

2012-07-06 Thread Jerry
chieve Goal #1, application must be written and configured so that all objects are not living in memory for long time. This means that, # of objects coming into old generation pool should be minimal. Thanks. -Jerry. On Wed, Jul 4, 2012 at 3:33 PM, Niels van Klaveren < niels.vanklave...

Re: Building School Seating Charts in Clojure and ClojureScript: Part 1

2012-08-29 Thread Jerry
very good article for beginners like me. thanks for sharing. On Aug 29, 2012 4:38 PM, "Evan Mezeske" wrote: > I finally got around to writing the first installment in what is going to > be a series of articles about my experiences with building a commercial web > app in Clojure and ClojureScript

Re: Debugging support for clojure?

2009-03-11 Thread Jerry K
s also thinking about throwing together an interval arithmetic package that would have been useful to me on a now concluded project, but never got around to it. Are there Clojurers out there doing math-intensive stuff with regularity? Jerry On Mar 11, 5:41 am, Jeffrey Straszheim wrote: > Probably

Re: Miller-Rabin pseudo-primality test (was: Debugging support for clojure?)

2009-03-12 Thread Jerry K
On Mar 12, 2:45 pm, Tassilo Horn wrote: > Mark Engelberg writes: > > Hi Mark, > > >> For number theory you often need things like > > >>    (mod (expt n exp) m) > > > Yes, and to make things like this fast, the trick is to perform the > > mod at each multiplication step, rather than waiting unti

Issue of protocol methods with names starting with "->"

2012-08-10 Thread Jerry Peng
The following code fails with a strange exception "No matching field found: _GT_foobar for class user.MyFoobar": > (defprotocol Foobar > (->foobar [this])) > (defrecord MyFoobar [value] > Foobar > (->foobar [this] (str "Foobar:" value))) > (extend-protocol Foobar > String > (->foobar