This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-01-23
Channels
- # arachne (3)
- # aws (1)
- # bangalore-clj (2)
- # beginners (19)
- # boot (151)
- # cider (72)
- # cljs-dev (9)
- # cljsjs (7)
- # cljsrn (37)
- # clojure (215)
- # clojure-austin (1)
- # clojure-denmark (2)
- # clojure-dev (68)
- # clojure-india (1)
- # clojure-ireland (2)
- # clojure-italy (4)
- # clojure-mke (1)
- # clojure-nl (4)
- # clojure-russia (4)
- # clojure-serbia (1)
- # clojure-spec (29)
- # clojure-uk (23)
- # clojurescript (23)
- # cursive (24)
- # datomic (71)
- # emacs (5)
- # events (1)
- # gsoc (11)
- # hoplon (20)
- # klipse (4)
- # lambdaisland (2)
- # leiningen (3)
- # luminus (3)
- # off-topic (30)
- # om (40)
- # om-next (1)
- # onyx (15)
- # pedestal (19)
- # perun (7)
- # planck (23)
- # proton (1)
- # protorepl (2)
- # re-frame (35)
- # reagent (21)
- # ring-swagger (38)
- # rum (19)
- # spacemacs (9)
- # untangled (11)
- # vim (5)
- # yada (4)
Hello. is it possible to access ring session data from within cljs?
@lockdownz um... how do I edit a wiki page with a PR?
github : repos as code : data
hmm... seem like github doesn't support PRs to the wiki repo and the main repo doesn't take PRs.
Anyone here tried the latest chestnut template? I can't get it to work on a windows machine
been trying to update an old project to use the latest versions of clojurescript, and figwheel, and ran into the same issues
@bhauman Loving figwheel, but ran into some issues with the latest version. Are there any breaking configuration changes between figwheel 0.5.1 and 0.5.8? Trying to update an old web app.
Going to look into it a bit more, it might have something to do with the clojurescript version, I updated from 1.7.228 to 1.9.293
@benzap a ticket on https://github.com/plexus/chestnut would be appreciated. I would like Chestnut to work on windows just the same, it's where many beginners are. I can help figure out and report the problem upstream.
@akiroz you want to send a PR to the clojurescript-site repo. Eventually the wiki will go away in favor of the new site.
This is a pretty basic question, but how do I inspect the contents of a vector? Even if I force evaluation of a lazy sequence by using (vec
I don’t get something useful from (js/console.log
.
@talexxx https://github.com/binaryage/cljs-devtools or (js/console.log (pr-str thing))
@talexxx for the simplest cases just use println
instead of console.log