Andrew Wilcox
Andrew Wilcox
Meteor has support for .coffee.md on the devel branch but it hasn't been released yet. (Meteor 0.6.5 and 0.6.5.1 don't support it).
But we can leave this open for a future version of Meteor :)
Thanks! But sadly a key-value store abstraction isn't enough for what offline data needs.
Thanks for the detailed description! offline-data has two mechanisms for communicating across windows: it will use a shared web worker if it is supported by the browser, or it will...
Let's try using browser-msg instead of the shared web worker, as that will tell us if the problem is with the shared web worker. First run the https://github.com/awwx/meteor-browser-msg/tree/v1.1.0/test/consecutive-messages test and...
Good, now we know the problem is somewhere with the shared web worker. Try the first example in http://www.w3.org/TR/workers/#shared-workers-introduction (Live at http://www.whatwg.org/demos/workers/shared/001/test.html) This will tell you whether shared web workers...
Right, it's possible that node-webkit might be single-threaded (as well as something broken with their shared web worker implementation). Is it possible to detect the node-webkit environment? For example, by...
Should we add ":import" to https://shadow-cljs.github.io/docs/UsersGuide.html#js-provider ? Perhaps something like, if I understand correctly: > `:import` > > Maps requires to the JS `import * from "thing";` statement. The referenced...
I was curious if this might be related (or not)... ```clojure (defn take-none [f] (m/eduction (take 0) f)) (defn echo [f] (m/ap (let [v (m/?> f)] (prn 'produce v) v)))...