John P Mayer, Jr

Results 27 comments of John P Mayer, Jr

Yeah... I need to learn how to properly profile JavaScript. I have confirmed that all of the caching is working correctly. On May 30, 2014 1:09 PM, "Evan Czaplicki" [email protected]...

Looks like a lot of time is spent recalculating the height of the overlaid plaintext On May 30, 2014 2:21 PM, "John Mayer" [email protected] wrote: > Yeah... I need to...

Similar to this, there could be a wasm-pack example (which, because it uses wasm-bindgen, would allow for use of more of the web-sys libraries).

I think there are still some examples in #12 (specifically, a task which is like a stream that creates many events, and a task which is started in response to...

Mostly stream of consciousness: The `app` can initialize a `futures_util::stream::FuturesUnordered`, and the main loop can select on either `Stream.poll_next()` or `EventStream.next_event()`. In the case of responding to a "service event",...

Yeah, I'm stuck. How would you implement something like tick_loop without having access to the executor? I just discovered that you can't start one LocalPool inside another.

Sorry, I didn't mean other cross-platform libraries. I'm new to async in Rust and am trying to reconcile all the combinators against more direct control over the event loop. The...

I've started working on this on my fork. It basically replaces String with a sum type which includes String, Blob, and ArrayBuffer. The current challenges is that I need to...

👍 I've stopped maintaining stdweb in https://github.com/johnpmayer/quicksilver-utils I have a not-too-large, but complete and documented example that should run with web-sys. https://github.com/johnpmayer/quicksilver-utils/tree/master/examples/project

How about something like: ``` Elm fromRows : Vec4 -> Vec4 -> Vec4 -> Vec4 -> Mat4 ```