Re: State & GUIs

2017-12-02 Thread Moe Aboulkheir
It may make sense to familiarise yourself with the architecture of a Clojurescript + React web application, if that's not something you've recently investigated. Regardless of whether the techniques are directly applicable to your problem, I think the relationship between the state and the UI is

State & GUIs

2017-12-02 Thread Owen
Hey all. I'm looking for hints on how to put GUIs together in Clojure. Any thoughts appreciated. The two themes that stick out for me in Clojure are considered attention to the default data structures and the radical approach to minimising state. But it seems to me that GUIs are inherently

Re: State & GUIs

2017-12-02 Thread Nathan Fisher
Also take a look at re-frame (cljs) redux (js) libraries. On Sat, 2 Dec 2017 at 10:18, Moe Aboulkheir wrote: > It may make sense to familiarise yourself with the architecture of a > Clojurescript + React web application, if that's not something you've > recently investigated.

[ANN] clj-embed | segmented clojure runtimes inside a single JVM process

2017-12-02 Thread Alex Miller
Cool! -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email

Re: State & GUIs

2017-12-02 Thread Timothy Baldridge
I think the major leap functional languages (esp. CLJS because that's where it started) have made in the UI world is in the area of React-style virtual DOM setups. The overall view is this: datamodel -> view generation -> dom differ -> UI -> events -> datamodel The idea being that you can code

[ANN] clj-embed | segmented clojure runtimes inside a single JVM process

2017-12-02 Thread Paul Rutledge
I've been looking for something that would let me create REPL sessions that couldn't easily mess with the namespaces already being used by the process that's hosting the REPL server. That eventually led me to look at https://github.com/projectodd/shimdandy but the readme told me I couldn't

Re: State & GUIs

2017-12-02 Thread Alexis
Owen writes: Can anyone point me in the direction of any authoritative recommendations (particularly academic literature) on how to balance GUI state and functional programming? More generally, in addition to the specific libraries already mentioned, perhaps you

Re: State & GUIs

2017-12-02 Thread Raoul Duke
random tangential food for thought: https://groups.google.com/forum/#!searchin/elm-discuss/Discussion$20on$20saying$20farewell$20to$20FRP$20|sort:relevance/elm-discuss/6U74_aNXC04/UY8dIIh-CQAJ -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post