Earlier quoted context omitted.
How is this any different than getting ads from minified blobs of javascript?
i can usually block those scripts and still have a functioning page
WebAssembly
11–20 of 98 posts
Re: WebAssembly
#12i am not looking forward to having ads delivered by binary blobs. say farewell to the age of client-side scripting.
Re: WebAssembly
#13Something that I've been looking for as I try to learn more about WebAssembly is good examples of tasks that, when converted from Javascript to WebAssembly, would be good uses of WebAssembly for performance or memory or other reasons. Does anybody have a link to a blog post or good documentation like that?
In my case, that would be anything written in Python that targets WebAssembly.
If Javascript is obviated, that's one less programming language mouth to feed.
Re: WebAssembly
#14Something that I've been looking for as I try to learn more about WebAssembly is good examples of tasks that, when converted from Javascript to WebAssembly, would be good uses of WebAssembly for performance or memory or other reasons. Does anybody have a link to a blog post or good documentation like that?
Determinism! [0] I'm switching a browser game side project from Typescript to WebAssembly because determinism enables a simpler style of multiplayer. Instead of relying on a server to manage state, I can just send inputs p2p like a modern fighting game (with rollback [1]). Then the game acts just like singleplayer! For a hobbyist like me, WebAssembly makes the minefield of multiplayer so much easier to navigate. [0]:…
Re: WebAssembly
#15Earlier quoted context omitted.
i can usually block those scripts and still have a functioning page
You can still block those blobs, as they too are loaded by URL.
Re: WebAssembly
#16Earlier quoted context omitted.
You can still block those blobs, as they too are loaded by URL.
what i am envisioning here is the content of a webpage compiled with ads therein. it would be desirable by the googles of the world for this very reason.
Re: WebAssembly
#17Earlier quoted context omitted.
You can still block those blobs, as they too are loaded by URL.
what i am envisioning here is the content of a webpage compiled with ads therein. it would be desirable by the googles of the world for this very reason.
You can think of WebAssembly as another mechanism for executing code in the browser in the context of a web page. JavaScript is still required to (1) load the wasm binary, (2) evaluate it and (3) connect it to DOM APIs or really anything outside of the isolated wasm execution context.
Re: WebAssembly
#18Earlier quoted context omitted.
You can still block those blobs, as they too are loaded by URL.
what i am envisioning here is the content of a webpage compiled with ads therein. it would be desirable by the googles of the world for this very reason.
Re: WebAssembly
#19Something that I've been looking for as I try to learn more about WebAssembly is good examples of tasks that, when converted from Javascript to WebAssembly, would be good uses of WebAssembly for performance or memory or other reasons. Does anybody have a link to a blog post or good documentation like that?
Re: WebAssembly
#20Earlier quoted context omitted.
Determinism! [0] I'm switching a browser game side project from Typescript to WebAssembly because determinism enables a simpler style of multiplayer. Instead of relying on a server to manage state, I can just send inputs p2p like a modern fighting game (with rollback [1]). Then the game acts just like singleplayer! For a hobbyist like me, WebAssembly makes the minefield of multiplayer so much easier to navigate. [0]:…
What's nondeterministic about TypeScript / JavaScript?
[1] https://stackoverflow.com/a/30919039/225272
[2] https://www.linux.com/training-tutorials/math-v8-broken-how-...