An analysis of Clojure open-source codebase

2015-01-19 Thread zirkonit
Just a fun project in my downtime – analysis of Clojure open-source code, with REPL snippets used in an accompanying Github repo. What other analysis could be done to this code, what would be of the most illustrative use to the community? http://zirkonit.svbtle.com/clojure-opensource-code-metri

Properly parse clojure source code?

2015-01-15 Thread zirkonit
I'm thoroughly confused. If I want to parse clojure code from string without evaluating or caring a lot about its context, I'm out of luck. EDN tools choke on reader macros ( #(blah % blah) is not valid EDN ), yet more context-aware tools like read-string with *read-eval* set to false choke on

Re: Clojure for Desktop UI Design Application

2015-01-13 Thread zirkonit
What about node-webkit + Clojurescript? I think it would be ideal environment for desktop GUI? On Tuesday, January 13, 2015 at 7:05:40 PM UTC+3, tbc++ wrote: > > I've long thought that the Clojure world needs a JavaFX/React hybrid. > JavaFX2's API is extremely consistent, making it quite easy to

[ANN] dformat 0.1.0

2015-01-12 Thread zirkonit
t date "12/31/99");; "06/09/11" (dformat date "DOB: 12/31/2000") ;; "DOB: 06/09/2011" (dformat date "March 15, 1999") ;; "June 09, 2011" https://github.com/zirkonit/dformat All comments are welcome! -- You rece