This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-11-06
Channels
- # admin-announcements (59)
- # announcements (1)
- # beginners (67)
- # boot (140)
- # cljsrn (8)
- # clojure (70)
- # clojure-berlin (18)
- # clojure-dev (7)
- # clojure-russia (53)
- # clojurescript (124)
- # clojurescript-ios (3)
- # clojurewerkz (2)
- # clojurex (10)
- # code-reviews (42)
- # cursive (9)
- # datomic (2)
- # editors-rus (2)
- # emacs (5)
- # events (1)
- # hoplon (35)
- # jobs (8)
- # ldnclj (7)
- # lein-figwheel (34)
- # luminus (1)
- # om (410)
- # onyx (22)
- # overtone (19)
- # portland-or (6)
- # re-frame (1)
- # yada (4)
is anyone aware of a tool for stubbing externs automatically provided some e.g. jq plugin?
i remember running across one but i can't find it now
thanks
i'm gonna try and make that thing a task
http://charbelrami.me/math-elements/ looks really cool, i can imagine a nice hoplon version easily
@alandipert: enjoyed the talk - got the Simple idea across - firebase mention got me thinking so going to play with a hoplon firebase app and see what happens
@tbrooke: cool, i'm glad you liked! yeah i have a firebase experiment going, it's fun so far
@tmtwd: thanks for the kind words, glad you enjoy
when i compile for prod i see this
`
WARNING: Required namespace not provided for hoplon.app-pages.-index-DOT-html null
WARNING: Required namespace not provided for hoplon.app-pages.-style-guide-DOT-html null
`any idea what would be causing that?
i noticed at the top it looks like:
(page "index.html"
(:require
with no (ns foo)
is that normal?
this is when running
(cljs :optimizations :advanced)
in boot, fyi
(def clicks (cell 0))
(def history (cell []))
(add-watch clicks :foo #(swap! history conj %3))
(cell= (print history))
When you have this, how come you don’t need to use add-watch
on history like this
(add-watch history :bar #(print history))
or something like that?cell=
is different to cell
cell=
watches based on the function for you
that’s what javelin does