Re: Namespace Problems org-mode/org-babel

2014-02-21 Thread Maik Schünemann
That is really strange. The location of the org file doesn't matter as long as it is in the right project so that cider can find the project.clj could it be that you have conflicting versions of org mode? Make sure that you have the new version of ob-clojure loaded. It should look like this

Want a game? let's refactor in the functional way

2014-02-21 Thread bob
Hi, I have a lab project called raiseup https://github.com/weejulius/raiseup to play clojure , event though I have used clojure more than one year, but I still do not know how to write functional program,how to change my mind, therefore I plan to make a feature branch to refactor the project

Re: Want a game? let's refactor in the functional way

2014-02-21 Thread bob
I make a changehttps://github.com/weejulius/raiseup/commit/dfd15d0f0af007bc2899573e63e144620b12b432#commitcomment-5449992to refactor, is it more functional? -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to

Re: Do you recommend the book: Web Development with Clojure

2014-02-21 Thread dcwhatthe
You're right, Adrian. Brian did a nice job on this. He talks to the reader, like a normal person trying to share his passion, not an academic. On Thursday, February 20, 2014 3:00:15 AM UTC-5, Adrian Mowat wrote: Hi Laurent If you are making the switch from OO then I recommend

ANN: Reagent 0.4.0

2014-02-21 Thread Dan Holmsand
Reagent, a minimalistic interface between React.js and ClojureScript, is now at 0.4.0. The new release has a breaking change: Reagent now lets you call component functions exactly like ordinary functions (albeit with square brackets). This is obviously a breaking change, but behaviour is

Re: Do you recommend the book: Web Development with Clojure

2014-02-21 Thread Stefan Kanev
On 19/02/14, Erlis Vidal wrote: Hi all, Have any of you read the book *Web Development with Clojure*? http://www.amazon.com/Web-Development-Clojure-Build-Bulletproof/dp/1937785645 There's only one review on amazon, and it's a fantastic review but I'm wondering if this is the book I

Junior or Senior Clojure Developer wanted - Banking, London

2014-02-21 Thread Jonny Kaye
Hi All, I have a role within a leading Investment Bank based in London, looking for an experienced Clojure developer. If you have a knowledge or commercial experience with Scala or Java then that would be desirable. If you have worked on a Grid computing platform, this will also put you at an

Re: core.async over websocket + cljs + clojure

2014-02-21 Thread Sean Corfield
My priority to work on turning David's codebase into a library changed as I was originally planning to do it for conference presentations in May and June, but for personal reasons I've had to pull out of both conferences. So this is still on my radar but it's moved down my list some way. Sean

Re: 'Reduced' and logic functions

2014-02-21 Thread Sean Corfield
Isn't this a more fundamental problem tho'...: (def x 0) (or (zero? x) (/ 100 x)) ;; true (alt-or (zero? x) (/ 100 x)) ;; java.lang.ArithmeticException: Divide by zero Sean On Feb 20, 2014, at 4:58 AM, Niels van Klaveren niels.vanklave...@gmail.com wrote: The result wouldn't return

Re: Namespace Problems org-mode/org-babel

2014-02-21 Thread Volker Strobel
Here is the link to my org-mode post: http://article.gmane.org/gmane.emacs.orgmode/82549 -- 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 -

[ANN] lein-fruit, native iOS apps in Clojure.

2014-02-21 Thread Jean Baro
Wow! Congrats for the amazing job!! -- 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 unsubscribe

ANN: ClojureScript 0.0-2173

2014-02-21 Thread David Nolen
ClojureScript, the Clojure compiler that emits JavaScript source code. README and source code: https://github.com/clojure/clojurescript New release version: 0.0-2173 Leiningen dependency information: [org.clojure/clojurescript 0.0-2173] Changes Enhancements: * IAtom marker protocol *

Re: [ANN] lein-fruit, native iOS apps in Clojure.

2014-02-21 Thread Colin Fleming
Note that you can work around the compilation problem by using a version of Clojure patched with http://dev.clojure.org/jira/browse/CLJ-1315. Cursive now uses and ships with such a patched version, and it works great. On 22 February 2014 11:31, Jean Baro jfb...@gmail.com wrote: Wow! Congrats