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