Re: [ANN][Book] Clojure Recipes published and for sale on Amazon

2015-10-25 Thread Julian
Thanks everyone. On Thursday, 22 October 2015 22:52:25 UTC+11, Torsten Uhlmann wrote: > > Congratulations, Julian! > > Leonardo Borges schrieb am Do., 22. > Okt. 2015 um 13:10 Uhr: > >> Congratulations Julian! I'll share this around! >> >> On Thu, Oct 22, 2015 at 9:51

[ANN] edn-java 0.4.6 released

2015-10-25 Thread Ben Smith-Mannschott
edn-java [1] is a parser and printer for edn [2]. This release: * Teaches the default parser to produce values that can participate in Java serialization. [3] It should be appearing on Maven Central shortly. // Ben [1] http://edn-java.bpsm.us [2] https://github.com/edn-format/edn [3]

Re: ArithmeticException while using unchecked-multiply

2015-10-25 Thread Gary Fredericks
Maybe even not warn unless that one var where you can get boxed-math-warnings is set appropriately. On Sunday, October 25, 2015 at 2:04:36 PM UTC-5, Fluid Dynamics wrote: > > On Saturday, October 24, 2015 at 8:01:05 PM UTC-4, Gary Fredericks wrote: >> >> I've always thought this is bad behavior,

Re: [ANN] prismatic/schema 1.0 adds automatic test data generation

2015-10-25 Thread Jason Wolfe
FYI -- we just released Schema 1.0.2, which adds `s/constrained` for postconditions. -Jason On Thursday, September 3, 2015 at 3:05:29 PM UTC-3, Jason Felice wrote: > > > On Wed, Sep 2, 2015 at 9:56 PM, Jason Wolfe > wrote: >> >> Outside of that, I can still potentially see

Re: ArithmeticException while using unchecked-multiply

2015-10-25 Thread Gary Fredericks
Half of the time that I use the unchecked functions it's for the math, not the speed, so getting the wrong behavior when I don't care enough about perf to do the work for primitives is pretty annoying. On Sunday, October 25, 2015 at 7:49:47 PM UTC-5, Gary Fredericks wrote: > > Maybe even not

[ANN] a HugSQL adapter for postgres.async

2015-10-25 Thread Robin Heggelund Hansen
You can now have async communication with your postgres database and HugSQL over plain core.async channels. https://github.com/Skinney/hugsql-async -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to

Re: [ANN]Nginx-Clojure 0.4.3 is out.

2015-10-25 Thread Xfeep
Freshports upgraded Nginx-Clojure from 0.4.2 to 0.4.3 about 11 hours ago. If freebsd users want to try this latest release please enable it when installing nginx from freebsd ports. On Monday, October 26, 2015 at 1:39:39 AM UTC+8, Xfeep wrote: > > 0.4.3 (2015-10-25) > >1. New Feature: Add

[ANN]Nginx-Clojure 0.4.3 is out.

2015-10-25 Thread Xfeep
0.4.3 (2015-10-25) 1. New Feature: Add directive jvm_classpath which supports wildcard character * (issue #95 ) 2. New Feature: Add directive

Re: [ANN] Neanderthal, a fast, native matrix and linear algebra library for Clojure released + call for help

2015-10-25 Thread Dragan Djuric
WRT their documentation, I do not think it means much for me now, since I do not need that library and its functionality. So I guess the integration depends on whether 1) it is technically viable 2) someone needs it I will support whomever wants to take on that task, but have no time and need

Re: ArithmeticException while using unchecked-multiply

2015-10-25 Thread Fluid Dynamics
On Saturday, October 24, 2015 at 8:01:05 PM UTC-4, Gary Fredericks wrote: > > I've always thought this is bad behavior, since it's blatantly doing the > opposite of what the name advertises. I think either the boxed versions > should return the same result as the unboxed version, or (if the