Dmitri Zaitsev
Dmitri Zaitsev
Just wanted to comment on this: ```js const view = ({ fahren, celsius }) => div([ div([ label("Fahrenheit"), input({ props: { value: fahren }, output: { fahrenInput: "input" } })...
Thanks @JAForbes for chiming in, just wanted to recommend @paldepind unpublished blog post, where many questions from our discussion have been answered, in particular, the`scan` is defined to return behaviors...
@paldepind > Don't use virtual DOM. Instead, the created view listens directly to streams and updates the DOM accordingly. This avoids the overhead of virtual DOM and allows for a...
@paldepind > >Of course, it plays out the trick I mentioned above, that the view can be treated as pure, even if streams are mutated at the run time. >...
@jayrbolton ```js , h('button', {streams: {click: ['add', 1]}}, 'increment') ``` I like this way too :) There is a downside here, unfortunately, which is to reference the stream by the...
@jayrbolton > Finally, I invited you to a repo called `Uzu`, where I am in the process of implementing these ideas. I would like `Uzu` to be the next generation...
@jayrbolton > Regarding continous vs discrete: Could you all give a real-world application example where a discrete-focused system (like flyd) will cause you significant engineering trouble, whereas if you switched...
Have you included the viewport meta-tag? ``` ```
Why is this an improvement?
Not to me. If arg is cached and nothing is to do, I'd like to get it out of my way first. That makes it more scalable as all changes...