Bobby Powers
Bobby Powers
Today, webpack will fail if `.wasm` files are referenced that are built with support for exceptions in the following way: ``` Creating an optimized production build... Failed to compile. Module...
Related to #37 and #40, we write the 32-bit `MiniHeapID` into `_mhIndex` -- for a 28 GB allocation, that is 3 MB of metadata. When large allocations like this are...
Find is super useful. Full documentation is [here](http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man1/find.1?query=find&sec=1&arch=amd64). For our implementation we need at least the following flags implemented: - `-name $NAME` - `-iname $NAME` - `-type [df]` For details...
We currently have a few typescript errors like: ``` src/kernel/kernel.ts(16,28): error TS2307: Cannot find module './http_parser'. ``` This is due to the way I've mixed in JS from the node...
Deleting `.deletedFiles.log` causes OverlayFS problems. The file is removed, but internally it seems to assume it is never removed. Revisit this when we've updated to latest BrowserFS to see if...
Currently, `dash` is a checked-in artifact built on my machine. The issue is that it needs a custom emscripten toolchain with Browsix support, and that is a much larger dependency...
It is confusing that after you've started executing a command, you can't send additional input to the command's `stdin`. This causes things like ``` $ cat ``` To effectively hang...
on a normal unix-like OS, if you write to a pipe more than can be appended to its internal buffer, your write block until the other end of the pipe...
I'm not exactly sure what the protocol should be, but @shivamkakkar brought up the good point that the error handling in spawn isn't complete. Right now we eagerly try to...