Re: Transducers are Coming

2014-08-07 Thread Scott Thoman
I doubt I can answer this as clearly as Rich or others but... I think the answer to this lies in the fact that composing transducers is composing reducer-transformers not reducer functions themselves. When composing reducer-transformers, the result is another transformer. When this new transfo

Re: How to apply multiple values to a function

2018-03-28 Thread Scott Thoman
On Wednesday, March 28, 2018 at 7:52:06 PM UTC-4, Renata Soares wrote: > > Good night, > > I have this function: > > (defn treat-requests [input key-request collection] > (let [selecteds (select-keys input key-request)] > (swap! collection conj selecteds))) > > and I want to execute that 3 times w

Re: [ANN] Instaparse 1.3.0

2014-03-12 Thread Scott Thoman
Excellent! I've actually been using instaparse on a small "filter expression" compiler that looks headed for production now. It has worked *very* well and has been a pleasure to use! Thanks for a great tool. /stt On Wed, Mar 12, 2014 at 8:53 PM, Mark Engelberg wrote: > Instaparse is a lightwe

Re: Instaparse - thank you!

2014-06-11 Thread Scott Thoman
+1 ! I'm about to use it in a production deployment. It has been a pleasure to use! -- 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 - pleas

Re: Any interest in Compojure/Ring screencasts?

2013-10-31 Thread Scott Thoman
On Thursday, October 31, 2013 7:28:39 PM UTC-4, Amr Malik wrote: > > Yes please, I'd be interested :) > > -A > > On Tuesday, 29 October 2013 18:39:05 UTC-4, James Reeves wrote: >> >> I'm considering putting together a screencast, or a series of >> screencasts, based on my Functional Web >> Arch

FileNotFoundException when running lein droid new

2013-03-25 Thread Scott Thoman
All, I figured I'd give the leiningen droid plugin a shot now that I've got a few spare moments to mess around with clojure for an android app. However, when I attempt to bootstrap a new project, I get the following: - $ lein --version

Re: FileNotFoundException when running lein droid new

2013-03-25 Thread Scott Thoman
Perfect! I'll grab master for now. > > Thanks! /stt -- -- 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

Re: ClojureCLR startup times...

2011-03-18 Thread Scott Thoman
On Fri, Mar 18, 2011 at 11:46 AM, Timothy Baldridge wrote: >> I'm open to suggestions on improving this.  In particular, more >> detailed profiling information would be of interest. > > Hrm...we have some fairly detailed profilers through my work, so I'll > have to fire it up over lunch and see wh

Re: ClojureCLR startup times...

2011-03-19 Thread Scott Thoman
On Fri, Mar 18, 2011 at 3:57 PM, dmiller wrote: > No signed assemblies. > > What got you below the reported JIT activity into the real problem? > > On Mar 18, 11:37 am, Scott Thoman wrote: > >> I've had a similar issue unrelated to clojure.  In my case we had some

Re: ClojureCLR Build Error

2012-11-12 Thread Scott Thoman
On Wednesday, April 18, 2012 9:59:34 PM UTC-4, dmiller wrote: > We discovered this was due to building on the beta of .Net 4.5. > ClojureCLR has not been updated to 4.5 yet. > > In this case, a new method was introduced in an interface, causing the > proxy to have a missing method. > > 4.5 supp

Re: [ANN] Tower, simple i18n library for Clojure

2013-01-03 Thread Scott Thoman
On Thursday, June 14, 2012 8:23:43 AM UTC-4, Peter Taoussanis wrote: > > Hi all, > > Just put up an early release of a little i18n library that some of you > might find useful. > > It's on Github (https://github.com/ptaoussanis/tower) and Clojars ( > https://clojars.org/tower). > > Features (tak

Re: [ANN] Tower, simple i18n library for Clojure

2013-01-04 Thread Scott Thoman
On Friday, January 4, 2013 3:37:49 AM UTC-5, Peter Taoussanis wrote: > > Just pushed 1.2.0 with `merge-config!` and dictionary merging (rather than > resetting) on dev-mode changes. I will update and give the code a try. Thanks for the fast turnaround! As far as your first and last questions

Re: [ANN] Tower, simple i18n library for Clojure

2013-01-05 Thread Scott Thoman
On Saturday, January 5, 2013 3:12:43 PM UTC-5, Peter Taoussanis wrote: > > >> I will update and give the code a try. Thanks for the fast turnaround! >> > > No problem. > > >> As far as your first and last questions, they both sort of came from the >> same scenario I was pondering. I was thi