Is clojars down?

2014-07-29 Thread Yves Parès
Hi, it seems than clojars is down. Lein refuses to start, and apparently it won't download jars from maven central either... Am I the only one with this problem? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clo

Re: Is clojars down?

2014-07-29 Thread Yves Parès
s from clojars. Assuming >>> it's a network issue on your side, and if you don't need any new jars right >>> now (b/c it's just looking for updates), you can try the -o (for offline) >>> option. >>> >>> >>> >>> On Tue

Very strange behaviour in reducers

2014-01-14 Thread Yves Parès
Hello! When mapping and reducing a map, it seems arguments are passed differently to the function that is mapped depending on whether you reduce with r/reduce or r/fold: (r/fold + (r/map (fn [k v] (inc v)) {:a 4 :b 5})) But: (r/reduce + (r/map (fn [[k v]] (inc v)) {:a 4 :b 5})) The func

Re: Very strange behaviour in reducers

2014-01-17 Thread Yves Parès
di 14 janvier 2014 18:20:45 UTC+1, Filip Štaffa a écrit : > > Hi Yves, > > I guess it is because r/reduce calls r/reduce-kv (which is specific for > map), while r/fold it does not have such special handling > > Filip > > On Tuesday, January 14, 2014 4:43:10 PM UTC+1, Yves P

Profiling, VisualVM & random-pause

2014-01-21 Thread Yves Parès
Hi! I'm trying to profile my Clojure code with VisualVM, and I would have 3 questions: 1) The method that always take an awful amount of time is sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run. This is the profiler itself, right? It has nothing to do with REPL connection (I'm not usin

Re: help choosing dev environment for clojure

2012-11-27 Thread Yves Parès
Did you look at what vimclojure (+ nailgun server + lein vimclojure plugin) currently provides? It doesn't use nrepl yet, but I'd be curious to know how its features relate to emacs' clojure plugins, and also how their features may be valuable when it comes to working with noir/compojure/ring. T