[ANN] Stu: a lib for understanding CLJS builds via CI

2018-04-29 Thread Steve Buikhuizen
It's the first version so lots more work to do: https://github.com/stevebuik/Stu It's also a good example of how to use "react-faux-dom" with D3 in CLJS. It's a useful technique. Comments and contributions are welcome. -- You received this message because you are subscribed to the Google Grou

Re: Clojure/flutter

2018-04-29 Thread Gregg Reynolds
On Sun, Apr 29, 2018, 5:24 PM Didier wrote: > Honestly, I doubt any project will have more backing then Graal's native > image. > Looking at Graal. Indistinguishable from magic AFAIK. > > So I think its the best shot at Clojure native we've ever had, and > probably the ideal one at that, since

Re: Clojure/flutter

2018-04-29 Thread Didier
Honestly, I doubt any project will have more backing then Graal's native image. So I think its the best shot at Clojure native we've ever had, and probably the ideal one at that, since it'll boast all existing libraries. What could help is to then look at compiler options for Clojure that could

Re: [Q] Transparently call functions remotely via nREPL?

2018-04-29 Thread henrik42
Hi, I ended up using https://github.com/technomancy/robert-hooke -- like this: ,,,(:require [clojure.tools.nrepl :refer :all]) (defn remote-eval [conn code] (let [{:keys [value err]} (-> (client conn 1000) (message {:op :eval

Re: Clojure/flutter

2018-04-29 Thread Estevo U. C. Castro
This was apropos two points made in this thread: - Clojure needing X from the runtime; my point here is that some Schemes may provide the things you'd demand from a native implementation: fast startup time, smallish binaries, etc., and even tail call optimization as a bonus, but also the drawba

Re: Key must be integer error

2018-04-29 Thread Tim Visher
Hi Renata, ``` user=> (clojure.pprint/pprint (swap! accounts #(map (fn [a] (if (= (:id a) "3136860d-ab7f-4814-8f3b-2d18048db9b9") (assoc a :operations :foo) a)) %))) ({:id "7512a15b-0770-4a9b-a74b-389374b46461", :balance 0.0, :operations nil, :blocked false} {:id "7446cfe6-882c-4f25-bad1-5e

Re: Key must be integer error

2018-04-29 Thread Axel Katerbau
Hi Renata, > How can I update the atom accounts in the field of operations? > > (def accounts (atom [{:id "7512a15b-0770-4a9b-a74b-389374b46461", :balance > 0.0, :operations nil, :blocked false} > {:id "7446cfe6-882c-4f25-bad1-5ed8c9aea994", :balance 0.0, :operations nil, > :blocked false}

Key must be integer error

2018-04-29 Thread Renata Soares
Hi, How can I update the atom accounts in the field of operations? (def accounts (atom [{:id "7512a15b-0770-4a9b-a74b-389374b46461", :balance 0.0, :operations nil, :blocked false} {:id "7446cfe6-882c-4f25-bad1-5ed8c9aea994", :balance 0.0, :operations nil, :blocked false} {:id "3136860d-ab

Re: Understanding GraalVM and Clojure

2018-04-29 Thread Khalid Jebbari
I've read it, it's really interesting. Alex Miller mentioned on Twitter that they'll work on removing some limitations over time. @Alex, can you confirm and expand a bit more ? Le sam. 28 avr. 2018 à 23:14, Nathan Fisher a écrit : > Another interesting post on Clojure and Graal > > https://www.i