Milan Raj
Milan Raj
> Whatever wask-sdk does, I would recommend explicitly stripping your release binaries using strip/llvm-strip, on all platforms. Sorry, I'm certainly doing something silly and would appreciate some pointers. On sdk...
Gotcha, I see the difference. I'll create a separate issue to discuss the import behavior. Thanks for clarifying! In the context of this issue, is there an expected workflow for...
Appreciate it! On the clang cli ``` clang.exe --sysroot=.\wasi-sdk-24.0-x86_64-windows\share\wasi-sysroot --target=wasm32-wasip2 -Wl,--strip-debug -O3 hw.c -o hw2.wasm ``` Stripping out the debug sections reduced the size quite a bit: ``` -rw-rw-rw- 1...
> Noted. Is there a document somewhere that lays out the recommended developer flow? I'm used to invoking a compiler and that being it :) I've been trying to find...
> Hmm, browsers don't seem to [respect the element's language](https://html.spec.whatwg.org/multipage/input.html#input-impl-notes:language) when it comes to ``. Kinda related, something we went around circles in was trying to understand the difference between:...
Maybe language / locale could be made a CSS property (if it makes sense for direction then why not?) and we can have [ComputedStyleObserver](https://github.com/w3c/css-houdini-drafts/issues/1010) handle those and more.
Another difficult to track ancestor influenced state that would be useful to observe for changes would be [`isContentEditable`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/isContentEditable) based on [`contenteditable`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/contenteditable) configuration. Recently ran into an issue where we would...
@rth know if this issue is still moving forward? I'm really interested in the Deno server side sandboxing use case as well.
I experimented with a different direction and it looks really promising! Deno has been adding [npm package support](https://deno.com/[email protected]/node/npm_specifiers) so I tried loading pyodide in Deno as a CommonJS module. I...
Tried [applying that patch to main](https://github.com/pyodide/pyodide/compare/pyodide:24957ac...rajsite:758a755) and I think the [esbuild change](https://github.com/pyodide/pyodide/pull/3720) is causing Deno to treat the export from `pyodide.js` as a default export instead of a named export....