This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-06-25
Channels
- # beginners (33)
- # cider (40)
- # clara (28)
- # cljs-dev (38)
- # cljsrn (5)
- # clojure (197)
- # clojure-greece (1)
- # clojure-italy (7)
- # clojure-losangeles (1)
- # clojure-nl (10)
- # clojure-spec (32)
- # clojure-uk (154)
- # clojurescript (48)
- # core-async (33)
- # cursive (32)
- # datomic (19)
- # duct (1)
- # fulcro (10)
- # graphql (6)
- # jobs (1)
- # lumo (1)
- # mount (6)
- # off-topic (48)
- # onyx (12)
- # other-languages (2)
- # re-frame (77)
- # reagent (19)
- # reitit (4)
- # ring (5)
- # ring-swagger (18)
- # rum (4)
- # shadow-cljs (52)
- # specter (12)
- # tools-deps (47)
how can i get bidi to recognize a # prefix in the browser? this doesn't seem to work...
(def routes ["#/" {"" :home
"about" :about}])
@joshkh Just a guess since i don't use bidi, but maybe you have to add a slash before the #
?
(def routes ["/#/" {"" :home
"about" :about}])
hmm, there's a long standing issue without a resolution https://github.com/juxt/bidi/issues/120
I’m trying to create a simple re-frame SPA and I’m having a problem with binding input fields to database values. It works fine on load, but when I modify one field, then modify the next, the first loses it’s value.
I’m also using figwheel and if i print the “db” in the repl it doesn’t look like it is getting updated.
Qq: How would I filter
by a type
?
e.g., PersistentArrayMap?
oh wait, yep!
Thank you @dpsutton!!
that's a good idea!
doc
and source
are fantastic ways to get up to speed with language idioms pretty quickly. happy coding 👍
I didn't even think of that. Thank you for the super friendly and quick reply!
You guys are the best
false
user> \u2013
\–
user> (= \u2013 \-)
false
user> (= \- \-)
true
user>
why doesn’t \u2013
equal \-
? and, what comparison function should i use to get the equality i want?