This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-12-08
Channels
- # adventofcode (240)
- # beginners (87)
- # boot (4)
- # cider (27)
- # cljs-dev (20)
- # cljsrn (24)
- # clojure (365)
- # clojure-argentina (1)
- # clojure-brasil (4)
- # clojure-dev (12)
- # clojure-greece (65)
- # clojure-india (1)
- # clojure-italy (15)
- # clojure-japan (1)
- # clojure-losangeles (1)
- # clojure-madison (4)
- # clojure-poland (3)
- # clojure-russia (5)
- # clojure-spec (3)
- # clojure-uk (105)
- # clojurescript (27)
- # core-async (1)
- # core-logic (3)
- # cursive (61)
- # datomic (68)
- # devcards (4)
- # docs (27)
- # duct (67)
- # emacs (15)
- # events (1)
- # fulcro (8)
- # graphql (50)
- # lein-figwheel (1)
- # lumo (15)
- # numerical-computing (1)
- # off-topic (77)
- # om (3)
- # onyx (5)
- # parinfer (3)
- # planck (2)
- # portkey (5)
- # re-frame (4)
- # reagent (16)
- # ring (14)
- # rum (3)
- # shadow-cljs (17)
- # vim (1)
@ghsgd2 i'd hazard a guess that the reason is that angular doesn't fit that well with the clojure(script) mentality
it is:
- heavily OO
- monolithic framework rather than composed of smaller utility libs
@josh774 checkout hoplon too, http://hoplon.io/
Thank you @thedavidmeister!
i have to pass a async function to a javascript library. how would I go about doing this?
would I be able to write that in clojurescript to pass to a javascript function?
@atticmaverick async functions are normal functions that return a js Promise when called. so the simplest example would be (fn [arg] (js/Promise.resolve arg))
@thheller that makes sense and it works. thanks a bunch!
any emacs (specifically spacemacs) users in the house? and, if so, have you managed to get a cljs repl working in a mixed clj / cljs project?
when i execute cider-jack-in-clojurescript
i only get a clojure repl, although the documentation tells me that i should be getting 2 repl buffers
anyone know of a way to make cljs-ajax or some other clojure library return a raw blob of the response? cljs ajax raw-response-format seems to be a string. I want to save the response as a file, and it seems somehow the formatting is getting corrupted
@adamvh You could try posting this question in #emacs too. I'm emacs user but I don't use cljs.
question for the IntelliJ/Cursive users doing web development. Do you typically have a second monitor? I'm having a hard time managing screen real estate with an editor window, the repl, and a browser. Not sure what's different given that I need those in my emacs workflow as well.
I do generally have 2 monitors, but my second monitor is just for Slack
I use Cmd-Tab to switch to/from the browser window so I can keep the IDE full screen.
Using figwheel I like to be able to glance over to see what's changed and get right back to editing.
Yeah, that’s definitely easier with a dual monitor setup
That's what I'm leaning towards as well. I use a 15-inch laptop, sometimes connected to an external monitor.