Hi!
I'm writing a server-side (S1) function that initiates an action on another
server (S2) and regularly checks if the action has finished
(failed/completed). It should also be possible for a client to ask S1 for
the status of the action performed by S2.
My idea is to create an uid on S1 that re
I was interested to see if a native-image binary could be run on AWS
Lambda, and a superficial example does at least:
https://github.com/uwcpdx/clombda
On Tuesday, May 1, 2018 at 12:22:41 AM UTC-7, Khalid Jebbari wrote:
>
> The ClojureScript unit tests pass in the JavaScript engine that comes wi
*- Github link: https://github.com/robertluo/fun-map*
>From the project's README:
In clojure, code is data, the fun-map turns value fetching function call into
map value accessing.
For example, when we store a delay as a value inside a map, we may want to
retrieve the value wrapped inside,
*Github Link: https://github.com/robertluo/fun-map*
It is a lazy map:
(def m (fun-map {:a 4 :b (delay (println "accessing :b") 10)}))
and can also be a future map:
(def m (fun-map {:a (future (do (Thread/sleep 1000) 10))
:b (future (do (Thread/sleep 1000) 20))}))
or mixed:
On 7 May 2018 at 23:07, Gregg Reynolds wrote:
> Looks awesome!
>
> Any idea when 1.0 will be out?
>
Not really. Most likely when the internal improvements section of the
roadmap is completed
https://github.com/clojure-emacs/cider/blob/master/ROADMAP.md, but work is
progressing slowly.
>
> On M