Jari Pennanen
Jari Pennanen
Did any of you try the fix in this: https://github.com/Ciantic/DisableFlashingTaskbarButtons/pull/7/files I don't have Window 10 anymore, it's hard to try. I guess I could try with some Hyper-V image.
I merged the pull request, I don't have way to verify, but hope it works?
I'm using Windows 11, I don't experience the same lag in resizing at the moment. I know that others are encountering it in Windows 11... but here is what it...
Here is same project with Bun for comparison: https://github.com/Ciantic/bun-solid-project
I have investigated more, it comes from vite's ESM Module importer in here: https://github.com/vitejs/vite/blob/main/packages/vite/src/module-runner/esmEvaluator.ts#L32-L38 ```typescript const initModule = new AsyncFunction( ssrModuleExportsKey, ssrImportMetaKey, ssrImportKey, ssrDynamicImportKey, ssrExportAllKey, // source map should already...
Ahaa! Found the culprit! Vite has whitelisted what are Deno/Bun imports here: https://github.com/vitejs/vite/blob/fce3b09dcf405072b0e992fc55800e0a58aa88b7/packages/vite/src/node/utils.ts#L91-L98 It is missing **jsr**! **NOTICE** also very important comment: ```typescript // Supported by Node, Deno, Bun const...
I made a pull request to support `jsr:` imports in vite: https://github.com/vitejs/vite/pull/18479 It is not fully resolved yet, I get more errors
I'm starting to think this is not possible, because `jsr:` imports are not possible in Deno's node compatibility mode. With pure deno mode I have test repo: https://github.com/Ciantic/deno-pure-solid-start But it...
Sounds great that the physics engine already supports it! I remember playing Jimmy White Snooker on Amiga and swerving the ball the most fun I had with the game: https://www.youtube.com/watch?v=jqoLOs_tp_Q...
@wcampbell0x2a it makes the structure odd looking, because I want to use the *lengths* as well, e.g. ```Rust #[derive(Debug, Clone, PartialEq, Eq, DekuRead, DekuWrite)] #[deku(id_type = "u8")] pub enum LeMeta...