Re: Clojure cheat sheet now links to ClojureDocs.org for things added since Clojure 1.4

2014-10-01 Thread Sergey Didenko
Great news! Thank you for your efforts. On Tue, Sep 30, 2014 at 2:48 AM, zk wrote: > Hey, thanks for the kind words, Andy. > > I'd like to apologize to everybody here, I know it's been very frustrating > having such a visible project like ClojureDocs behind for so long. With this > rewrite bumpin

[Very newbie] invocation of java code.

2014-10-01 Thread paracomunicacionesinformales
hi I'm running clojure REPL ( I think ), in its lein-less version ( no lein at all, raw clojure.jar): java -cp clojure-1.6.0.jar clojure.main Then I try to create an object of class java.util.TimerTask by: user=> (new java.util.TimerTask (new java.lang.Boolean 1)) CompilerException java.lang

Re: [ANN] A guide to setup test driven workflow for Clojure

2014-10-01 Thread tao.zhou2009
Thanks for James Reeves’s great project: https://github.com/weavejester/ns-tracker -- tao.zhou2009 Sent with Sparrow (http://www.sparrowmailapp.com/?sig) On Tuesday, September 30, 2014 at 5:13 AM, suvash wrote: > ns-tracker seems to be pretty neat too. Thanks for letting me know. > > On Mo

Re: [Very newbie] invocation of java code.

2014-10-01 Thread Tobias Kortkamp
java.util.TimerTask is an abstract class, which you cannot instantiate directly. You can use proxy to create a subclass: (proxy [java.util.TimerTask] [] (run [] ...)) Instead of (new java.lang.Boolean ...) use true or false directly. There is syntactic sugar for new, just append a dot to the

Clojure User Group Mannheim / Rhein-Neckar erstes Treffen 08.10.2014 ab 18:00 Uhr

2014-10-01 Thread Andreas Klein
Liebe Clojurianer, wir möchten gerne in Mannheim und Umgebung eine neue Clojure User Group aufbauen. Unsere Ziel ist ein regelmäßiger Erfahrungsaustausch ca. ein mal im Monat. Wir sind vor allem auch an Clojure Usern aus dem professionellen Umfeld interessiert. Das erste Treffen findet am 08.10.

Re: [ANN] Clojure Videos (with options for Linux users)

2014-10-01 Thread Jethro Kuan Sheng Yuan
Seems like there's quite a bit of assumed clojure familiarity >< On Tuesday, 30 September 2014 07:11:18 UTC+8, Michael Wood wrote: > > You're in luck! > > Check the link at the bottom of this page: > https://tbaldridge.pivotshare.com/ > > -- > Michael Wood > On 29 Sep 2014 4:05 PM, "Luis Matoso

Re: [ANN] Clojure Videos (with options for Linux users)

2014-10-01 Thread Jethro Kuan Sheng Yuan
I just got a subscription, and was expecting some lower level intros to the topics first. For example core.async's first episode dived into using go blocks without explaining how they worked ... CSP etc. Would these videos be produced in the future? Great demonstration of your knowledge of clo

Re: [ANN] Clojure Videos (with options for Linux users)

2014-10-01 Thread Timothy Baldridge
For simpler starting tutorials I suggest starting with Rich's intro talk: http://www.infoq.com/presentations/clojure-core-async Then perhaps check out my Conj talk from about a year ago: https://www.youtube.com/watch?v=enwIIGzhahw Those two should give you a foundation that the tutorial videos wi

Re: Clojure cheat sheet now links to ClojureDocs.org for things added since Clojure 1.4

2014-10-01 Thread John Louis Del Rosario
Looks great! Question, what is the relationship between this[1] and the Grimoire[2] cheatsheet? [1]: http://jafingerhut.github.io/cheatsheet/grimoire/cheatsheet-tiptip-cdocs-summary.html [2]: http://grimoire.arrdem.com/ On Tuesday, September 30, 2014 5:52:14 AM UTC+8, Andy Fingerhut wrote: > >

Re: Re: Handling java streams..

2014-10-01 Thread José Ricardo
By nicer I meant something like being able to use, for example, map and filter, just like I can do on a java.util.ArrayList (in clojure) and on a Stream (in java). On Saturday, September 27, 2014 1:47:38 AM UTC-4, Sean Corfield wrote: > > On Fri, Sep 26, 2014 at 11:51 AM, José Ricardo > wrote:

Re: Clojure cheat sheet now links to ClojureDocs.org for things added since Clojure 1.4

2014-10-01 Thread Andy Fingerhut
[1] is the original Clojure cheat sheet that I have maintained for a while now, that has links to ClojureDocs, except with the links to Grimoire instead. Grimoire's creator, Reid McKenzie, submitted code for creating the Grimoire-linked variant, and I decided to publish both it and the ClojureDocs

[Cash for Clojure] Clojure{Script} in Durham, NC USA

2014-10-01 Thread Alan Dipert
Hi all, I work at Adzerk [1] and we're hiring! We'd require relocation to Durham, NC but I can vouch for the town and office. It's a nice, affordable place to live and work. We have some Clojure services in production and hope to do most new development with some combination of Clojure, Clojure

Re: [Cash for Clojure] Clojure{Script} in Durham, NC USA

2014-10-01 Thread Alan Dipert
Oops I forgot the Adzerk URL, which is: http://adzerk.com Alan On Wednesday, October 1, 2014 2:36:56 PM UTC-4, Alan Dipert wrote: > > Hi all, I work at Adzerk [1] and we're hiring! We'd require relocation to > Durham, NC but I can vouch for the town and office. It's a nice, affordable > place to

Help me make this fn better/prettier

2014-10-01 Thread Nicolás F .
I'm a clojure noob and im playing around with the language; made this fn to have a taste of a couple of features. I think it's pretty concise but i'm probably doing something "not the clojure way", So if you can teach me a couple of things please go ahead ;D (defn say_hello ([names] (say_he

Re: Help me make this fn better/prettier

2014-10-01 Thread john walker
Hi! Here's another way you could do it: (defn say-hello ([names] (say-hello names #{})) ([names saluted] (reduce (fn [saluted name] (if (saluted name) (do (println "Hello" name "!") (conj saluted name)) (do (println "W

Re: Help me make this fn better/prettier

2014-10-01 Thread john walker
Sorry, the if should be if-not. The gist is corrected. On Wednesday, October 1, 2014 5:20:28 PM UTC-7, john walker wrote: > > Hi! > > Here's another way you could do it: > > (defn say-hello > ([names] (say-hello names #{})) > ([names saluted] > (reduce (fn [saluted name] >

[ANN] Compojure 1.2.0

2014-10-01 Thread James Reeves
Compojure 1.2.0 has been released, marking the first new minor version in quite some time. There aren't many major changes, but the code base has been polished and modernised, and some new functions and macros added. The minimum Clojure version has been u

Re: Help me make this fn better/prettier

2014-10-01 Thread James Reeves
You could write it: (defn say-hello ([names] (say-hello names #{})) ([[name & names] saluted] (if name (do (if (saluted name) (println "Welcome back" name) (println "Hello" name)) (recur names (conj saluted name))) (println "Goodbye" - Jam

[ANN] ring.middleware.logger - Easy Ring Request Logging

2014-10-01 Thread Paul Legato
I'm happy to announce ring.middleware.logger , which logs details of each Ring request to a file, or to arbitrary functions you provide. The emphasis is on simplicity -- you can plug it in and go with sane out-of-the-box defaults, without any

[JOB] - Clojure job in Melbourne, Australia - IOOF

2014-10-01 Thread cameron
Apologies for the job spam, there are still relatively few Clojure jobs so I hope people don’t mind. We're currently recruiting for an experienced polyglot developer familiar with Clojure (no commercial experience necessary) and Java in Melbourne, Australia. We have grand plans to transit