This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-12-06
Channels
- # adventofcode (99)
- # announcements (9)
- # aws (3)
- # babashka (22)
- # beginners (90)
- # boot (2)
- # calva (22)
- # cider (8)
- # clj-kondo (14)
- # cljsrn (20)
- # clojure (24)
- # clojure-europe (4)
- # clojure-italy (3)
- # clojure-losangeles (1)
- # clojure-nl (83)
- # clojure-spain (1)
- # clojure-spec (46)
- # clojure-uk (43)
- # clojuredesign-podcast (70)
- # clojurescript (40)
- # cursive (25)
- # datomic (9)
- # duct (3)
- # emacs (14)
- # figwheel-main (2)
- # fulcro (61)
- # graalvm (8)
- # juxt (7)
- # kaocha (2)
- # leiningen (19)
- # luminus (5)
- # malli (58)
- # off-topic (4)
- # re-frame (11)
- # reitit (5)
- # rewrite-clj (3)
- # shadow-cljs (63)
- # sql (5)
- # testing (5)
- # tools-deps (26)
- # uncomplicate (2)
- # vim (4)
Hello, why https://github.com/day8/re-frame/blob/master/docs/CodeWalkthrough.md out of the box displays "Not found. Missing index.html." in the browser? Is there any bug reported on this or do I miss some dependencies?
Looks like an error in the documentation. Add example.html
after the trailing /
in the URL.
Thanks. I've updated the docs
I’m trying to work through using cofx to do async processing.
Is the rationale:
1) Create a function data-process
which takes [f queue chunk-size]
, where f can be mapped over (take queue chunk-size)
.
2) Create a reg-cofx
with a custom keyword :data-process
which takes a map with keywords :f :queue :chunk-size :on-chunk-success :on-chunk-failure :on-complete
or something to that effect?
Are you talking about using effects perhaps? Because coeffects are supposed to just transform the context for event handlers and for coeffects next in the coeffect queue.
Perhaps? I’m trying to basically create a effect handler where I can send some queue of work, and then it fires an event once it’s done, but the results can be cached at a subscription level and the app itself doesn’t lock. Now according to the performance section I should ensure that each unit of work can be done in 16ms, but I want to just have a way of sending a big queue of work without having to worry about it.