Basilisk • Re: ZIG (e.g.) documentation page not rendered
Pale Moon forum - Forum index [Unofficial]
June 23, 2026
This is what I used.
CODE:
// ==UserScript==// @name Zig instantiateStreaming// @namespace adoxa// @include https://ziglang.org/documentation/*// @version 1// @grant none// @run-at document-start// ==/UserScript==(function () { window.WebAssembly.instantiateStreaming = function(promise, imports) { return promise .then(response => response.arrayBuffer()) .then(bytes => WebAssembly.instantiate(bytes, imports)); }})()
The example in the issue (lesswrong) doesn't seem to use it (any more?); not sure where the other reported site (app.cinny.in) needs it, login shows up.
Discussion in the ATmosphere