This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-11-17
Channels
- # admin-announcements (9)
- # beginners (96)
- # boot (77)
- # cljs-dev (23)
- # cljsrn (18)
- # clojure (206)
- # clojure-austin (7)
- # clojure-conj (5)
- # clojure-japan (7)
- # clojure-poland (13)
- # clojure-russia (130)
- # clojure-taiwan (1)
- # clojurescript (125)
- # cursive (13)
- # data-science (2)
- # datascript (3)
- # datomic (2)
- # hoplon (24)
- # immutant (5)
- # jobs (4)
- # ldnclj (3)
- # ldnproclodo (2)
- # off-topic (2)
- # om (70)
- # onyx (12)
- # re-frame (6)
- # vim (2)
Cool to see a mention of cycle.js, it’s a very powerful looking framework I think. It’s interesting to compare different solutions (like zelkova, re-frame, and cycle.js), although sometimes it’s really difficult to see how different they are, in the end.
Hi just a quick silly ? regarding subscriptions.. do they need to be named uniquely for when deploying (adv compilation) e.g. (register-sub :name ...)
in an app.drivers
namespace and (register-sub :name ...)
in a app.salesmen namespace?
They need to be different
Use namespaced keywords
(register-sub :drivers/name ...