[ClojureScript] [ANN] re-com v0.5.3 - New Interactive Demo for h-box

2015-04-29 Thread Mike Thompson
In this release, there's a shinny new interactive demo for h-box. Edit the hiccup and see the changes in realtime. Its like an amusement ride for your re-com knowledge: http://re-demo.s3-website-ap-southeast-2.amazonaws.com/#/h-box Release Notes:

[ClojureScript] Websocket Sente and Python Tornado

2015-04-29 Thread Cesare
Hi all, I'm trying to use Sente (https://github.com/ptaoussanis/sente) with Tornado websockets (http://www.tornadoweb.org/en/branch2.1/websocket.html). Tornado side, I published the sample EchoWebSocket on /echows. ClojureScript side: (let [{:keys [chsk ch-recv send-fn state]}

Re: [ClojureScript] [ANN] re-com v0.5.3 - New Interactive Demo for h-box

2015-04-29 Thread Jamie Orchard-Hays
This looks fantastic. If it worked in all browsers, I'd be tempted to use it. What are the ultimate goals of the re-com project? Jamie On Apr 29, 2015, at 7:31 AM, Mike Thompson m.l.thompson...@gmail.com wrote: In this release, there's a shinny new interactive demo for h-box. Edit the

[ClojureScript] Re: Blackjack in ClojureScript

2015-04-29 Thread Thomas
Thank you for publishing this. Good source for learning. Thomas -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups ClojureScript group. To unsubscribe from this group and

Re: [ClojureScript] [ANN] re-com v0.5.3 - New Interactive Demo for h-box

2015-04-29 Thread Marc Fawzi
That was our original trajectory as well. I had mentioned it to Google's lead on Web Components and he pointed me to the Facebook presentation. I tried selling it to the team but the CSS people educated me about a simpler approach: namespace your CSS and have user and default classes where user

Re: [ClojureScript] [ANN] re-com v0.5.3 - New Interactive Demo for h-box

2015-04-29 Thread Colin Fleming
Any other comments about re-com aside, the documentation is really lovely - excellent work. Cheers, Colin On 30 April 2015 at 02:19, Mike Thompson m.l.thompson...@gmail.com wrote: On Wednesday, April 29, 2015 at 11:11:47 PM UTC+10, Jamie Orchard-Hays wrote: This looks fantastic. If it

Re: [ClojureScript] [ANN] re-com v0.5.3 - New Interactive Demo for h-box

2015-04-29 Thread Mike Thompson
On Thursday, April 30, 2015 at 6:55:37 AM UTC+10, marc fawzi wrote: It's actually very refined work. My issue with it is the number of configuration params and the approach to styling. Could be far simpler using default-stylesheet along with a user-stylesheet to override the defaults.

Re: [ClojureScript] [ANN] re-com v0.5.3 - New Interactive Demo for h-box

2015-04-29 Thread Marc Fawzi
It's actually very refined work. My issue with it is the number of configuration params and the approach to styling. Could be far simpler using default-stylesheet along with a user-stylesheet to override the defaults. This way users can overlay their changes on top, using normal Designer-friendly

[ClojureScript] Re: where do you put your animation logic?

2015-04-29 Thread Mike Thompson
On Wednesday, April 29, 2015 at 5:21:05 AM UTC+10, marc fawzi wrote: Hi, I'm still processing the revolution in front end architecture that brought me here and to Reactive CLojureScript! :)  One part is this whole thing about putting ALL logic outside of the component/view. 

Re: [ClojureScript] [ANN] re-com v0.5.3 - New Interactive Demo for h-box

2015-04-29 Thread Mike Thompson
On Wednesday, April 29, 2015 at 11:11:47 PM UTC+10, Jamie Orchard-Hays wrote: This looks fantastic. If it worked in all browsers, I'd be tempted to use it. What are the ultimate goals of the re-com project? We use it to develop apps in Electron (aka atom shell). So it's already pretty

[ClojureScript] Re: [reagent] Re: Multi-methods and Reagent Cursor-As-a-Function ...

2015-04-29 Thread Marc Fawzi
Yeah both in and out transforms are useful in this case. Out transforms for what you stated and in transforms for cases where you might want to transform data from the server to store into a particular data structure within the atom. We keep app state in one place but have not implemented the

Re: [ClojureScript] Re: Blackjack in ClojureScript

2015-04-29 Thread Marc Fawzi
Indeed. Reagent should have an examples page and this and other great examples should be part of it. It can be as humble as a github page with links. On Wed, Apr 29, 2015 at 3:17 AM, Thomas th.vanderv...@gmail.com wrote: Thank you for publishing this. Good source for learning. Thomas --