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
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
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
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
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
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