This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-02-15
Channels
- # aatree (23)
- # admin-announcements (13)
- # announcements (3)
- # beginners (49)
- # boot (50)
- # braid-chat (1)
- # braveandtrue (37)
- # cider (72)
- # cljs-dev (25)
- # cljsjs (6)
- # cljsrn (37)
- # clojure (78)
- # clojure-berlin (8)
- # clojure-greece (1)
- # clojure-ireland (2)
- # clojure-madison (14)
- # clojure-new-zealand (2)
- # clojure-poland (10)
- # clojure-russia (149)
- # clojured (2)
- # clojurescript (49)
- # community-development (6)
- # core-async (37)
- # cursive (1)
- # data-science (1)
- # datomic (30)
- # emacs (4)
- # euroclojure (1)
- # funcool (1)
- # graclj (1)
- # hoplon (17)
- # jobs (2)
- # jobs-rus (45)
- # ldnclj (6)
- # mount (12)
- # off-topic (124)
- # om (270)
- # onyx (131)
- # parinfer (70)
- # perun (2)
- # proton (168)
- # re-frame (32)
- # reagent (29)
- # ring-swagger (8)
- # testing (9)
- # yada (39)
@raywillig Thanks!
@raywillig: cool so looks like that woked, thanks again
[ANN] aatree/aaworker release 0.1.2 Supports multiple requests/states for a given rpc. Optional request completion counter cell.
I keep thinking aaworker is done. But then I keep finding itches that it should but can't scratch.
[ANN] aatree/durable-cells release 0.1.0 A radically simplified API. The ready cell now signals when the database has been opened AND the cells loaded.
Durable-cells runs in a web worker and uses IndexedDB to minimize the impact of disk operations on your web client. And with hoplon, all the complexities of asynchronous operation are completely masked.
Forgot to give the links... https://github.com/aatree/aaworker https://github.com/aatree/durable-cells
Duracell - awesome name
It is short, too: (page "index.html" (:require [durable-cells.core :refer [open-durable-cells! error ready]])) (set! cljs.core/print-fn #(.log js/console %)) (def clear-error! #(reset! error nil)) (defc txt nil) (open-durable-cells! {"txt" txt}) (html (head (title "duracell demo") (link :href "main.css" :rel "stylesheet")) (body :css {:display "none"} :toggle ready (div :id "error" :click clear-error! :slide-toggle error :css {:display "none"} (text "~{error}")) (h2 (text (str "Local Storage Demo"))) (p (input :type "text" :value txt :keyup #(reset! txt @%))) (p (text "Type something and then refresh the page--nothing is lost."))))