[ANN][Book] Clojure for the Brave and True published, web site updated

2015-10-22 Thread Alex Miller
Daniel, thanks for writing a great and fun book! -- 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

[ANN][Book] Clojure for the Brave and True published, web site updated

2015-10-22 Thread Daniel Higginbotham
Clojure for the Brave and True is now available in print and ebook form , and the web site has been updated to incorporate all the changes that went into the print book. The web site remains 100% free :) In case you'd like to know more abou

ThreatGRID/Cisco Looking for Clojure Developers

2015-10-22 Thread Alex Baranosky
I'm a senior Clojure developer on the Advanced Threat Integration Team in Cisco's Security Business Group. We have a fully remote team, with people spread all across the US. The Advanced Threat Integration Team in Cisco's Security Business Group is building a global scale, multi-product security p

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

2015-10-22 Thread Torsten Uhlmann
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 PM Julian wrote: > >> My book Clojure Recipes just got published and is for sale on Amazon! >> http://clojurerecipes.net/ >> >>

Re: Could not locate ring/adapter/jetty__init.class or ring/adapter/jetty.clj on classpath although it's there

2015-10-22 Thread Timur
Ok this time, it works for sure. The problem was because of transitivie dependencies. Thanks and regards, Timur On Thursday, October 22, 2015 at 12:17:07 PM UTC+2, Colin Yates wrote: > > Maybe a sample project might help? > > On 22 Oct 2015, at 10:49, Timur > wrote: > > > Nope false positive

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

2015-10-22 Thread Leonardo Borges
Congratulations Julian! I'll share this around! On Thu, Oct 22, 2015 at 9:51 PM Julian wrote: > My book Clojure Recipes just got published and is for sale on Amazon! > http://clojurerecipes.net/ > > http://www.amazon.com/Clojure-Recipes-Developers-Library-Julian/dp/0321927737/ > > I've been work

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

2015-10-22 Thread Julian
My book Clojure Recipes just got published and is for sale on Amazon! http://clojurerecipes.net/ http://www.amazon.com/Clojure-Recipes-Developers-Library-Julian/dp/0321927737/ I've been working on it for about 2.5 years - I hope you find it useful! (Or even better - I hope you know a friend that

Re: Could not locate ring/adapter/jetty__init.class or ring/adapter/jetty.clj on classpath although it's there

2015-10-22 Thread Colin Yates
Maybe a sample project might help? > On 22 Oct 2015, at 10:49, Timur wrote: > > > Nope false positive, it did not work :( > > On Thursday, October 22, 2015 at 11:40:08 AM UTC+2, Timur wrote: > > Okay that resolved the issue project B was providing some communication > functionality and did no

Re: Could not locate ring/adapter/jetty__init.class or ring/adapter/jetty.clj on classpath although it's there

2015-10-22 Thread Timur
Nope false positive, it did not work :( On Thursday, October 22, 2015 at 11:40:08 AM UTC+2, Timur wrote: > > > Okay that resolved the issue project B was providing some communication > functionality and did not declare any explicit dependeny on jetty-adapter. > After defining it worked. > > Th

Re: Could not locate ring/adapter/jetty__init.class or ring/adapter/jetty.clj on classpath although it's there

2015-10-22 Thread Timur
Okay that resolved the issue project B was providing some communication functionality and did not declare any explicit dependeny on jetty-adapter. After defining it worked. Thanks for the tip!! On Thursday, October 22, 2015 at 11:26:52 AM UTC+2, Colin Yates wrote: > > Not sure why that isn’t

Re: Could not locate ring/adapter/jetty__init.class or ring/adapter/jetty.clj on classpath although it's there

2015-10-22 Thread Colin Yates
Not sure why that isn’t working but it is highly recommended not to depend on transitive dependencies. If you need a lib for :compile scope (rather than :provided) then you should (must?) declare that; projectC should depend directly on ring-jetty-adapter in this case. > On 22 Oct 2015, at 10:2

Second Call for Contributions: BOB 2016 - Berlin, Feb 19, 2016 (Deadline Oct 30)

2015-10-22 Thread Michael Sperber
Clojure contributions very welcome - also note that :clojureD will be on the next day, also in Berlin! BOB Conference 2016 "What happens when we use what's best for a change?" http://bobkonf.de/2016/en/cfp.html Berlin, February 19 Call for Cont

Could not locate ring/adapter/jetty__init.class or ring/adapter/jetty.clj on classpath although it's there

2015-10-22 Thread Timur
Hi all, I have a multi-project set-up. Base project A depends on [ring/ring-jetty-adapter "1.4.0"], a project B depends on this project A which is included in project C. So in simple words dependency graph: [ring/ring-jetty-adapter "1.4.0"] -> project A -> project B -> project C When I run r

Re: How to tell buffy which file to read?

2015-10-22 Thread Alex P
Hi Amith, Alex from clojurewerkz/buffy here. There are actually 2 options: first one is to slice the buffer and then feed it to buffy, which means that you have to implement streaming yourself. The other option is something I really wanted to implement for quite some time already is continua

Re: State Change Listener in Clojure on a Database

2015-10-22 Thread Adrian Cooley
Thank you guys so much for all the helpful information. I'll have a look at each suggestion and figure out the best approach, thanks again, much appreciated, Adrian. On Monday, 19 October 2015 16:06:01 UTC+1, Adrian Cooley wrote: > > Hi all, > > I'm new to Clojure and I've been exploring the po

Re: State Change Listener in Clojure on a Database

2015-10-22 Thread Adrian Cooley
Thanks Ole, will check that out, On Wednesday, 21 October 2015 10:30:32 UTC+1, Ole Krüger wrote: > > Check out https://github.com/relaynetwork/irmgard > > On Monday, October 19, 2015 at 5:06:01 PM UTC+2, Adrian Cooley wrote: >> >> Hi all, >> >> I'm new to Clojure and I've been exploring the possi