This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-12-12
Channels
- # adventofcode (135)
- # announcements (1)
- # beginners (192)
- # boot (5)
- # calva (130)
- # cider (42)
- # cljdoc (4)
- # cljs-dev (6)
- # cljsrn (3)
- # clojure (222)
- # clojure-europe (2)
- # clojure-greece (5)
- # clojure-italy (24)
- # clojure-nl (23)
- # clojure-russia (1)
- # clojure-spec (6)
- # clojure-uk (67)
- # clojurescript (35)
- # cursive (39)
- # datomic (61)
- # emacs (17)
- # figwheel (3)
- # figwheel-main (2)
- # fulcro (12)
- # hyperfiddle (10)
- # juxt (3)
- # leiningen (10)
- # nrepl (35)
- # off-topic (34)
- # onyx (3)
- # pathom (6)
- # quil (5)
- # re-frame (29)
- # reitit (6)
- # ring (1)
- # ring-swagger (8)
- # shadow-cljs (37)
- # spacemacs (9)
- # sql (9)
- # tools-deps (24)
- # unrepl (1)
- # vim (1)
a user could trigger a sorting action on the atom and that would also update the ui according to what the new result was.
interesting idea to sort posts by more than just rating, like post length, or some blend of timestamp delta and score
in 2013 dnolen wrote: https://stackoverflow.com/a/16670400/6264 is the currently an API for this to get the macro caller’s namespace?
Just posted massive braindump about clojure and graphs and UI if anyone has thoughts or contributions: https://www.reddit.com/r/Clojure/comments/a576pp/clojure_graphs/
~(str *ns* #_(ns-name *ns*))
also seems to work, but that’s maybe because toString on ns just does ns-name?
https://github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/Namespace.java#L27
I think that’s an implementation detail I don’t want to rely on, so I’ll keep ns-name
hi all, newbie here. I am working on lein / figwheel /clsjs / reagent codebase and would like to include some npm-lib. I got it to work, except the last thing I need to do is make sure the corresponding css gets loaded. I have found this piece of documentation: https://github.com/cljsjs/packages/wiki/Non-JS-Assets The project doesn't currently use sass, but it looks like that is my only option to make sure I can pull the css out of the clojar. Am I correct or have other options come up since that document was written? (circa 2016)
I'm having the same problem and found the same doc. I'm using cljsjs/codemirror
under lein and figwheel. its docs give a couple of Boot tasks, but I'm not using Boot and it's entirely unclear what the analogue should be in Leiningen.
I suppose I can just grab the CSS from CDNJS, but that's unsatisfying 😄
i use webpack for css pipeline
And npm deps, also, don't really care about cljs npm support
otherwise those CLJSJS docs should be accurate for any tool, as long your dep is from there and has those assets
Trying to build a single page app with a login. I have a user pool set up in AWS cognito and I know how to handle the form, but not sure how to best make the calls to cognito. Seen references to using aws-amplify, but not sure how to use a react library in my app. Using lein and reagent. Anyone have experience with cljs serverless and cognito?
To be more specific, should I be doing this through :npm-deps since aws-amplify is available via npm, or directly through :foreign-libs?