Re: [ANN] modern-cljs - 17th tutorial - REPLing with Enlive

2015-12-23 Thread Sven Richter
Hi, While I appreciate everyones work and also like boots approach to building clojure libs I want to remind you that boot still does not work on windows. Therefore you are excluding every windows user from your tutorial. I am not sure if I was into clojure as I am today if some of the tutorials

Re: ClojureScript compiler says "No such namespace" ?

2015-12-23 Thread Stephen Gilardi
The namespace name is not the same as the dep name. ‘require' clauses use namespace names, for example: [cljs-time.format :as something] You can get the namespace name from the ns form at the top of its file, e.g., https://github.com/andrewmcveigh/cljs-time/blob/master/src/cljs_time/for

ClojureScript compiler says "No such namespace" ?

2015-12-23 Thread fahptv
Noob question -- what am I doing wrong? 1. lein new mies hello-world ...builds fine 2. add the following to project.clj's dependencies, lein deps, builds fine 1. [com.andrewmcveigh/cljs-time "0.3.14"] 3. add the following to src/hello_world

Re: how to signal failure to start in Stuart Sierra's Component lib?

2015-12-23 Thread Stuart Sierra
This is an application design decision that will depend on how you want to handle failure in general. If the application cannot run without being able to start the component, then it is appropriate to throw an exception from the component's `start` method. This will abort the system start. The

how to signal failure to start in Stuart Sierra's Component lib?

2015-12-23 Thread fahptv
If a component discovers it cannot start successfully (e.g. some necessary bit of data is badly formatted), how can it tell the system that it's hosed and therefore all dependents are hosed? Should it throw an exception to stop everything? -- You received this message because you are subscribe

[ANN] data.xml 0.1.0-beta1

2015-12-23 Thread Ryan Senior
data.xml is a Clojure contrib library that parses and emits XML. Github: https://github.com/clojure/data.xml Changelog: https://github.com/clojure/data.xml/blob/master/CHANGES.md Information on updating the dependency is here . The key fea

Re: CIDER 0.10 is out!

2015-12-23 Thread Andrea Russo
Fantastic Work! Thank you very much! -- 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

Re: [ANN] modern-cljs - 17th tutorial - REPLing with Enlive

2015-12-23 Thread Andrea Russo
Very nice work! Thank you! -- 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

[ANN] clj-bosonnlp 0.1.2 release

2015-12-23 Thread m00nlight
clj-bosonnlp is a Chinese natural language processing API wrapper for BosonNLP (http://bosonnlp.com/) Github: https://github.com/m00nlight/clj-bosonnlp Clojars: https://clojars.org/clj-bosonnlp This release add the new functionality of single document summary API recently development by BosonNL

Re: [Q] default decimal of Clojure is IEEE double, not BigDecimal

2015-12-23 Thread burrownn
Hmm... Okay. Actually, I think I was confused with auto promotion of integer types. I was quite impressed that Clojure automatically add 'N' when I type big integer like '69487463928746987124659827635827'. However, I was suprised when I type '6.9487463928746987124659827635827', because the resul

gen-class: override only 1 method of an arity-overloaded method of a (Java) superclass

2015-12-23 Thread Kurt Sys
When using gen-class and arity-overloaded methods of a superclass seems not very obvious, or I am missing something... There's a (java) superclass 'some.Superclass' (which is from a library, so I can't change this one): public abstract class Superclass { public void method() { } publi

gen-class and overriding only 1 (arity-)overloaded method of superclass

2015-12-23 Thread Kurt Sys
When using gen-class and arity-overloaded methods of a superclass seems not very obvious, or I am missing something :p. There's a (java) superclass 'some.Superclass' (which is from a library, so I can't change this one): public abstract class Superclass { public void method() { } publ