David Komer
David Komer
Thanks! Related discussion fyi: https://github.com/webpack-contrib/worker-loader/issues/144
Nice! Wasn't aware of Seed either, added it to "Prior Art" :)
Thanks @emk - that does seem to work! Though now Typescript is having trouble loading some other modules... any clue how to fix that? Here's some specific examples: ``` import...
Ah - `moduleResolution: node` seemed to do the trick :)
Wow, did not know this project existed! I was doing a [similar thing](https://github.com/dakom/awsm/tree/archive/crates/webgl) as my first Rust project - and getting help from some of y'all in various issues along...
fwiw I've been continuing with that project mentioned above, and it's also been a great way to learn Rust... Some barebones demos: https://awsm.netlify.com/ WebGL code: https://github.com/dakom/awsm/tree/master/src/webgl The overall approach I...
Fwiw below is what I'm currently using for a cancellable rAF loop. At a high level it takes a closure (which gets the timestamp) and gives back a function that...
Now that work has been done to bring the other crates in line with std::Future, perhaps this can be resurrected... rAF could give a Stream?
Btw looking at @Pauan 's [Raf struct here](https://github.com/Pauan/rust-dominator/blob/30c38251978fadcdac92dc89e25d866bee8b077d/src/animation.rs#L29) it looks like it would be really straightforward to bring as-is into gloo... any reason not to do this now?
RFC here: https://github.com/rustwasm/gloo/pull/107