This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-12-05
Channels
- # adventofcode (419)
- # aleph (8)
- # aws (6)
- # beginners (148)
- # boot (9)
- # cider (24)
- # cljs-dev (37)
- # cljsjs (8)
- # clojure (134)
- # clojure-android (6)
- # clojure-brasil (15)
- # clojure-dev (8)
- # clojure-dusseldorf (2)
- # clojure-greece (67)
- # clojure-italy (8)
- # clojure-japan (3)
- # clojure-russia (3)
- # clojure-spec (8)
- # clojure-uk (13)
- # clojurescript (54)
- # clojurex (6)
- # cursive (5)
- # data-science (12)
- # datomic (15)
- # defnpodcast (11)
- # emacs (25)
- # fulcro (95)
- # graphql (3)
- # lein-figwheel (1)
- # leiningen (27)
- # luminus (1)
- # lumo (6)
- # mount (2)
- # off-topic (112)
- # om (3)
- # onyx (24)
- # perun (3)
- # re-frame (20)
- # reagent (1)
- # reitit (2)
- # ring-swagger (13)
- # rum (10)
- # shadow-cljs (45)
- # spacemacs (24)
- # sql (2)
- # unrepl (78)
- # yada (1)
Has anyone made an electron app with re-frame?
@suskeyhose yes. I gave a talk about it at last year’s clojureX (the video may still be online). The code would need some love and I haven’t touched it since April, but you can find the source here https://github.com/bru/clockwork-electron
how can I be explicit about the order of fx-handlers. Say handler-b is dependent on handler-a to finish before it starts doing work on that same datom?
@bru they are grouped, but since they all do work over the wire, I have no guarantee that they return in the same order as I execute them
@hkjels I think this looks like something that would help: https://github.com/Day8/re-frame-async-flow-fx
this problem occurred because I re-factored to a more deeply nested structure in order to get more elements cached. However, I’m starting to think that the added complexity isn’t worth it
Thanks very much @bru
Hey re-framers I was working on a real-world-example-app (medium clone) in re-frame. Still some things to do/refactor ... but most of the functionality is done. I tired to keep as close as possible to todomvc example with style/comments and find it very difficult to bead @danielcompton in his poetic comments https://github.com/jacekschae/conduit
@U8A5NMMGD very cool! I guess in order for it to appear as a front end at https://github.com/gothinkster/realworld lots of us have to star your repo.
Thank you @U0EP0D9FE. I tried to get in touch with the guys from thinkser but i guess they are a bit buys :thinking_face:. I'll try to get in touch with them again in a couple of days. The stars will definitely help to boost the credibility 🌟
hello everyone, using hiccup
how can I generate this html ?
<input type="radio" name="imgsel" value="" checked="checked" />
`
[:input {:type "radio"
:name "channel"
:value "Email"
:checked "checked"}]
this isnt working