Re: [ClojureScript] ANN: ClojureScript 0.0-3196, Conditional Reading, REPLs, and Code Motion

2015-04-10 Thread Ravindra Jaju
You're right. Thanks!! cider-nrepl is pulling in an older version. Even though I tried narrowing down and updating all dependencies (including lein plugins) to their snapshot versions, my assumptions about versions and dependencies and how updated they may have been were, obviously, so wrong! :) A

Re: [ClojureScript] ANN: ClojureScript 0.0-3196, Conditional Reading, REPLs, and Code Motion

2015-04-10 Thread Julien Eluard
Hi, that looks like a tools.reader version conflict. You can get more details about all your project dependencies using `lein deps :tree`. Make sure the only tools.reader is the one coming from ClojureScript. Julien Le vendredi 10 avril 2015 23:42:35 UTC-3, Ravindra Jaju a écrit : > Hi. > >

Re: [ClojureScript] ANN: ClojureScript 0.0-3196, Conditional Reading, REPLs, and Code Motion

2015-04-10 Thread Ravindra Jaju
Hi. I need some help here to understand some errors I see after switching to 0.0-3196 Top-level exception message: clojure.lang.ArityException: Wrong number of args (2) passed to: reader/read This was working okay with 0.0-3169 The change commit-id 6d4ee9c0f938ac62147ecda6a2a47fcb2cca69e4 has t

Re: tool.namespace reload not working

2015-04-10 Thread JPatrick Davenport
Apparently this is due to me calling reset when nothing had changed. I did that just to see things cycle. So not really sure why it happens, but there it is. On Friday, April 10, 2015 at 9:42:22 PM UTC-4, JPatrick Davenport wrote: > > Some more diagnostic information: 1) merging the profles into

Re: tool.namespace reload not working

2015-04-10 Thread JPatrick Davenport
Some more diagnostic information: 1) merging the profles into the project.clj didn't seem to do much; 2) setting the *:repl-options {:init-ns user} *changed the message to can't load deusdatsolutions.handler; 3) the user ns is in an optional source location of env/dev/clj/user.clj. If I move th

Re: tool.namespace reload not working

2015-04-10 Thread Andy Fingerhut
This may not find any relevant problems, but if you try running the latest version of Eastwood on your project [1], it can detect the following kinds of issues that might be causing problems: * mismatches between namespace names, and the file names they are stored in [2] * :require or :use clauses

Re: Scanners suitable for syntax highlighting?

2015-04-10 Thread Bill Cohagan
How about Clojure's LispReader.Java at https://github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/LispReader.java. Don't know if it'd do #3 (saving state for restart) Bill On Friday, April 10, 2015 at 5:11:31 PM UTC-5, Jason Felice wrote: > Are there any Clojure or EDN scanners which

tool.namespace reload not working

2015-04-10 Thread JPatrick Davenport
Hello, I'm trying to implement the Component ideology. When run something manually with component/start-system and stop, it works fine. The main method calls component/start-system works fine too. But sadly when I try to get the user reflow to work (I copied user namespace from the README on Git

Re: [ANN] Clojure Applied: From Practice to Practitioner

2015-04-10 Thread Alex Miller
Great to hear! -- 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 from this group, send

ANN: ClojureScript 0.0-3196, Conditional Reading, REPLs, and Code Motion

2015-04-10 Thread David Nolen
ClojureScript, the Clojure compiler that emits JavaScript source code. README and source code: https://github.com/clojure/clojurescript Leiningen dependency information: [org.clojure/clojurescript "0.0-3196"] This release is intended to coincide with Clojure 1.7.0-beta1. Besides conditional

Re: [ANN] Baum - Extensible EDSL in EDN for configuration files

2015-04-10 Thread Geoff Salmon
Hi Ryo Thanks for releasing this. I've started using it for a configuration file that was previously an edn file. I was mainly interested in the import and include features but have now started using the eval macro to replace some repetitive parts of the file with for loops. I'll admit that usi

Re: [ClojureScript] Re: [ANN] Silk, an isomorphic routing library for Clojure and ClojureScript

2015-04-10 Thread Daniel Jomphe
This thread over Silk, Bidi and Secretary has been very interesting. I looked at the three projects to see how they evolved after this thread started. Any cross-pollination or progress worth sharing now that I've missed? >From what I could gather: * Secretary is evolving towards a conservative

Scanners suitable for syntax highlighting?

2015-04-10 Thread Jason Felice
Are there any Clojure or EDN scanners which are useful for syntax highlighting? What would make it useful: 1. It reads '(foo) as left-paren, symbol "foo", right-paren rather than '(foo) (this is because brackets are highlighted independently). 2. It keeps line number and column number informatio

Dynamically Parallel Sequence Operations

2015-04-10 Thread Karan Sagar
Hi everyone, I'm fairly new to writing services in Clojure, but I recently encountered a situation where I wasn't sure whether to use map/pmap. The mapping function was approaching the point where pmap might make more sense, but I was often editing that mapping function. Moreover, my production

Re: [ANN] Clojure Applied: From Practice to Practitioner

2015-04-10 Thread Shaun Mahood
Alex, I'm on page 9 of the book and if I stopped reading now I think it would have been worth the purchase price. That's a pretty spectacular value and I'm really looking forward to the rest of it. Thanks to you and Ben for writing something like this! -- You received this message because you

Re: [ANN][book] Clojure Reactive Programming

2015-04-10 Thread Shaun Mahood
Finished my first read-through last night, I really enjoyed the book and thought it was an excellent and informative read. Best resource I've read yet for understanding reactive programming as a whole. Thanks for writing it! -- You received this message because you are subscribed to the Google