hoplon

2023-11-07T03:12:47.915639Z

https://www.reddit.com/r/Clojure/comments/17p50yu/reframe_has_a_new_feature_in_alpha_flows_derived/ Anyone know enough about re-frame to speak to how cellular this is?

2023-11-07T11:52:52.044939Z

I'm not sure about what you mean by cellular. My understanding is that flows are like cell= for re-frame. They will react to declared inputs on db and recalculate when those change and store the output on a path on the db.

borkdude 2023-11-10T12:59:39.572769Z

Reagent itself is already cell-like? The ratom (reagent atom) is the cell to which you can subscribe with make-reaction. Isn't this similar to what javelin does?

borkdude 2023-11-10T13:00:39.351279Z

re-frame on top of reagent just solves the additional problem of "having everything in one global mutable places" vs scattered mutability

borkdude 2023-11-10T13:07:08.802899Z

maybe I'm wrong about reagent, I haven't looked deep enough in the implementation

2023-11-08T15:40:44.911999Z

Interesting, thanks. By cellular just meant "cell-like". Can't disagree with Ken on boilerplate, although javelin doesn't automatically support conditional dependencies either

2023-11-11T14:01:30.417829Z

I agree about ratom, was curious about flow

2023-11-11T14:06:03.182119Z

Imo the reason javelin doesn't demand something like reagent is, javelin cells compose in ways ratoms don't