This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-02-10
Channels
- # beginners (140)
- # boot (18)
- # cider (4)
- # cljs-dev (28)
- # clojure (191)
- # clojure-greece (51)
- # clojure-russia (1)
- # clojure-spec (13)
- # clojure-uk (2)
- # clojurescript (38)
- # community-development (26)
- # core-logic (16)
- # cursive (6)
- # datomic (3)
- # defnpodcast (9)
- # editors (1)
- # emacs (1)
- # fulcro (10)
- # immutant (3)
- # jobs-discuss (2)
- # leiningen (17)
- # lumo (24)
- # off-topic (30)
- # quil (12)
- # re-frame (11)
- # reagent (103)
- # remote-jobs (2)
- # shadow-cljs (157)
- # spacemacs (4)
- # unrepl (18)
- # yada (2)
This is good writing and interesting observations:
https://cambium.consulting/articles/2018/2/8/the-power-of-clojure-debugging
I'm happy to say they appear to have been partially influenced by the philosophy in the re-frame-trace
README (they reference it). Maybe. I might be over reading it.
Do you know where to find re-frame project examples featuring multiples 'components' in a may that keep large codebase organized? I am looking for an example of https://github.com/Day8/re-frame/blob/master/docs/Basic-App-Structure.md#larger-apps
/docs/ExternalResources.md
I am wondering how exactly the query functions get 'automatically called' when the state of the app-db is changed. Are they all called and their result diff-ed with their previous result? (I mean the ones which are extracting values from the db)
Does re-frame have some ways of calling only the query functions it knows will be affected by a db-state change?
@vincent.cantin they are all tracked via the reagent reaction mechanism.
@mikethompson thanks, we put a lot of effort into that article so I'm happy to hear that. I think re-frame-trace is an indispensable tool but I can't honestly say it influenced my debugging philosophy. I can say that re-frame has very much influenced me. Thanks for all your amazing contributions!
anybody have suggestions with how to deal with a canvas element that needs some of itself redrawn when a subscription fires? I'm going a little crazy with this.....