James Liu

Results 428 comments of James Liu

This is a design error, the fetched binary shouldn't depend on the local launcher binary's name.

Should be fixed as of 014a54b64bfbdbae478f4325d23399ac9ff1ef66, does this still occur?

We'll probably resolve this by creating a *.app instead of a standalone launcher. Apparently not using --onefile on PyInstaller will do so.

Gettext has been implemented. Translations for each language need to be added.

Note that the blocker on getting async-executor to properly initialize on multithreaded wasm should be resolved with https://github.com/smol-rs/async-executor/pull/108.

Trying to understand the model here. 1. `ThreadLocal: Send` if and only if `T: Send` 2. `ThreadLocal: Sync` if and only if `T: Send`, which makes sense since it hands...

For those following this issue, this is upstreamed at https://github.com/gfx-rs/wgpu/issues/4247. Marking this as blocked on a wgpu release to fix.

This might need to be moved to the website repo instead, since that's where the introduction/book is kept.

I can see that blocking the finalization of tasks might be an issue, though arguably the contention from constantly acquiring and releasing the lock while tasks are finalizing is also...

StaticExecutor is designed with the idea that it would never be dropped and is 'static in every sense, so a task that never wakes would permanently leak until the end...