Chris Zheng

Results 73 comments of Chris Zheng

@JordanMartinez: I'll be happy to maintain this project is there is still a need.

@JordanMartinez: thanks for the invite. I'm working on a (hopefully open source) javafx virtual dom for clojure and both richtextfx and flowless are brilliant libraries. Still very much learning and...

It'll be great if you can link to the documentation (other than javadoc) for both flowless and reactfx

I'm curious if there are any plans/roadmap for an upgrade to 5.3+ in the near future

@oranagra oh this is awesome. thanks for the update.

I managed to figure out how to do it without the `cr` macro. I didn't really know what ssa was, watched the Tim Baldridge talk on core.async and then compared...

okay. I see what you are saying. In that example, it does the expected thing (sleeps for 20ms) are there some counter examples of the behaviour not working?

as in, currently `b` runs after `a` instead of waiting within the async block. but when would this affect the actual time taken?

haha. gotcha. so is this the reason why the ssa transform is needed?

one other way I can see is that the async block walks through the code and wrap each non-macro form with an additional `consume` semantic so it becomes: ```clojure @(async...