Skip to content

Instantly share code, notes, and snippets.

View jameslittle230's full-sized avatar

James Little jameslittle230

View GitHub Profile

James Little's Programming Stream

Hi! Thanks for checking out my stream. I'm James Little.

On stream, I work on Stork Search, an open-source web search tool I wrote. It's written in Rust that compiles to WebAssembly. Feel free to ask questions or just say hi!

You can use the following commands in chat: !today, !stork, !desk, or !commands to see a list of all the commands.

All historical streams have been uploaded to Youtube, under this playlist.

let wasm;
const heap = new Array(32).fill(undefined);
heap.push(undefined, null, true, false);
function getObject(idx) { return heap[idx]; }
let heap_next = heap.length;