Re: Best way to include dev-only functions?

2018-01-17 Thread Patrik Sundberg
I tend to add a path to my :resource-paths in boot for dev-only things. You can do the same with lein (and hopefully any other build tool you use). I'm not sure I got your question fully. My interpretation is that you want to have a different version of the "same" fn, so that other parts of the

[ANN] Datomic Cloud

2018-01-17 Thread Stuart Halloway
Datomic Cloud is now available! http://blog.datomic.com/2018/01/datomic-cloud.html -- 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

Re: [ANN] Datomic Cloud

2018-01-17 Thread Jeroen van Dijk
Congrats! On Wed, Jan 17, 2018 at 3:06 PM, Stuart Halloway wrote: > Datomic Cloud is now available! http://blog.datomic.com/2018/01/datomic- > cloud.html > > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to c

Re: [ANN] Datomic Cloud

2018-01-17 Thread Alan Thompson
Cool. On Wed, Jan 17, 2018 at 6:25 AM, Jeroen van Dijk wrote: > Congrats! > > On Wed, Jan 17, 2018 at 3:06 PM, Stuart Halloway < > stuart.hallo...@gmail.com> wrote: > >> Datomic Cloud is now available! http://blog.datomic >> .com/2018/01/datomic-cloud.html >> >> -- >> You received this message b

Re: [ANN] Datomic Cloud

2018-01-17 Thread Nando Breiter
Is it / how is it possible to develop locally against the cloud version (or close enough to the cloud version) of datomic? My Datomic Pro Starter Edition license expired some 8 months ago. I don't remember if local development is allowed for subsequent versions released. thanks, Nando Aria Me

Re: [ANN] Datomic Cloud

2018-01-17 Thread Stuart Halloway
Hi Nando, Datomic Cloud is deeply integrated with AWS. Our recommended approach for dev is to provision a Solo system and enable the bastion server [1], then you can use it directly from your dev/staging/CI environment [2]. Cheers, Stu [1] https://docs.datomic.com/cloud/getting-started/configuri

numeric-tower versus clojure 1.9

2018-01-17 Thread Andrew Dabrowski
Is clojure.math.numeric-tower incompatible with clojure 1.9? The numeric tower is still at version 0.0.4, 4 years old. WHen I try to use I get the error 1. Caused by java.io.FileNotFoundException Could not locate clojure/math/numeric_tower__init.class or clojure/math/numeric_tower.clj on

Re: numeric-tower versus clojure 1.9

2018-01-17 Thread Mark Engelberg
Did you put [org.clojure/math.numeric-tower "0.0.4"] in your leiningen project.clj file? On Wed, Jan 17, 2018 at 2:26 PM, Andrew Dabrowski wrote: > Is clojure.math.numeric-tower incompatible with clojure 1.9? The numeric > tower is still at version 0.0.4, 4 years old. WHen I try to use I ge

Re: numeric-tower versus clojure 1.9

2018-01-17 Thread Andrew Dabrowski
Yes. On Wednesday, January 17, 2018 at 5:44:18 PM UTC-5, puzzler wrote: > > Did you put > > [org.clojure/math.numeric-tower "0.0.4"] > > in your leiningen project.clj file? > > > On Wed, Jan 17, 2018 at 2:26 PM, Andrew Dabrowski > wrote: > >> Is clojure.math.numeric-tower incompatible with cloju

Re: numeric-tower versus clojure 1.9

2018-01-17 Thread Mark Engelberg
It does use the underscore naming convention: https://github.com/clojure/math.numeric-tower/tree/master/src/main/clojure/clojure/math So I suspect there's something strange about your classpath or the dependencies haven't been downloaded, or something along those lines. On Wed, Jan 17, 2018 at 2:

Re: Russ olsen's Clojure Book

2018-01-17 Thread William Swaney
Thanks Sean. On Tuesday, January 16, 2018 at 8:08:22 PM UTC-8, Sean Corfield wrote: > > https://pragprog.com/book/roclojure/getting-clojure -- “This title will > be available on or about 2018-08-10.” > > > > I’m a bit surprised it wasn’t available under their Beta program… > > > > Sean Corfie

[ANN] Datomic Cloud

2018-01-17 Thread Alan Moore
Yes! Thanks for your hard work on this. I was looking for the AMI after your Conj talk but couldn’t find it... thought my mad search skills had degraded. Good timing too, looking to provision very soon. Alan -- You received this message because you are subscribed to the Google Groups "Clojure"

Clojure career advise?

2018-01-17 Thread Leandro Doctors
Hi, all, My name is Leandro Doctors. I am a member of ClojureBA, currently based in Buenos Aires, Argentina. I write you for some career advise on getting my first (paid) Clojure job. I have been wondering about this for some time now... *How do we break the circle?* (lack of jobs -> lack of dev

Re: numeric-tower versus clojure 1.9

2018-01-17 Thread Alex Miller
I can't reproduce that locally. Checking with the new clojure 1.9 clj tool: $ echo '{:deps {org.clojure/math.numeric-tower {:mvn/version "0.0.4"}}}' > deps.edn $ clj Clojure 1.9.0 user=> (require '[clojure.math.numeric-tower :as n]) nil user=> (dir n) MathFunctions abs ceil ... On Wednesday, Ja