[ANN] 20th tutorial of the modern-cljs series

2016-01-11 Thread Mimmo Cosenza
Hi all, I just published the 20th tutorial of the modern-cljs series. It talks about publishing a lib to clojars by using the boot build tool. https://github.com/magomimmo/modern-cljs/blob/master/doc/second-edition/tutorial-20.md

Re: [ANN] Clojure 1.8.0-RC5

2016-01-11 Thread James Elliott
I’ve done some testing and Afterglow appears to work fine with this latest release candidate as well. On Monday, January 11, 2016 at 8:52:11 AM UTC-6, Alex Miller wrote: > > Clojure 1.8.0-RC5 is now available. > > *This is likely the final "release candidate" for 1.8. Please test this > build

[ANN] Trapperkeeper 1.2.0

2016-01-11 Thread Nathaniel Smith
Greetings, Today, Puppet Labs released Trapperkeeper[1] v1.2.0. It contains a single new feature: support for optional service dependencies. Previously, referencing a service from another service created a hard dependency on it. Trapperkeeper would not start unless every service mentioned as

ANN Monger 3.0.2 is released

2016-01-11 Thread Michael Klishin
Monger [1] is a Clojure MongoDB driver for a more civilized age. Release notes: http://blog.clojurewerkz.org/blog/2016/01/11/monger-3-dot-0-2-is-released/ 1. http://clojuremongodb.info -- MK http://github.com/michaelklishin http://twitter.com/michaelklishin -- You received this message

ANN Elastisch 2.2.1 is released

2016-01-11 Thread Michael Klishin
Elastisch [1] is a minimalistic feature complete Clojure client for ElasticSearch. Release notes: http://blog.clojurewerkz.org/blog/2016/01/12/elastisch-2-dot-2-1-is-released/ 1. http://clojureelasticsearch.info -- MK http://github.com/michaelklishin http://twitter.com/michaelklishin -- You

Using map inc fails on windows

2016-01-11 Thread Igwe Ogba
Hello. I'm still a Clojure newbie and had a bit of code return what seems to be the wrong value.

[ANN] Clojure 1.8.0-RC5

2016-01-11 Thread Alex Miller
Clojure 1.8.0-RC5 is now available. *This is likely the final "release candidate" for 1.8. Please test this build with your libraries and applications and provide feedback as soon as possible. If we have not heard any critical issues, we expect to make this the final release in about a week.*

Re: Using map inc fails on windows

2016-01-11 Thread Jason Felice
I would expect what you expect. Are you sure there's nothing in the clojure-noob.core namespace which redefines map? If not, try restarting the REPL in case map got clobbered somehow. On Mon, Jan 11, 2016 at 12:08 PM, Igwe Ogba wrote: > > >

Re: Using map inc fails on windows

2016-01-11 Thread gildraug
I'm not really expert in Windows, but it looks like some output problem, because REPL prints not the real result, but last element of the previously entered form: map should return sequence (e. g., (1 2 3 4)) and not vector ([0 1 2 4]). Also, REPL stores result of the last evaluated expression

Re: Using map inc fails on windows

2016-01-11 Thread David Powell
this doesn't happen for me, it looks like you have something weird going on with your environment. how are you starting your repl? what does (clojure-version) return? has map somehow been redefined? is your namespace importing something that clobbers map? does (doc map) print the standard

Re: Using map inc fails on windows

2016-01-11 Thread Igwe Ogba
Hi everyone, Just tested it in another command prompt. It works perfectly now Also running (doc map) returns nil in the console which outputs the wrong answer The program clojure-noob (core.clj) only prints out one line so it is hard to see how it could change the definition of map.