Tim Caswell
Tim Caswell
Right, that's why I call it another mode. Currently dat desktop (and most the dat ecosystem) assume the hypercore contains a hyperdrive archive (which in turn references a second hypercore...)...
Yep, it crashes hard.  
At a mimimum, there could be a default viewer that just showed the raw hypercore data as a log of binary data (hex encoded with optional ASCII dump)
It's a different feature for sure, but the design constraints are almost identical. You still want hypercore-log viewers to run in a webview and be secure. The only difference is...
I love how the tcp test uses luv directly. Can we add another test using coro-http or weblit instead of the http library in luvit? I could even write a...
@rgrinberg [Weblit](https://github.com/creationix/weblit) uses [http-codec](https://github.com/luvit/luvit/blob/master/deps/http-codec.lua) under the hood. As does [luvit's http](https://github.com/luvit/luvit/blob/master/deps/http.lua) and [coro-http](https://github.com/luvit/lit/blob/master/deps/coro-http.lua) Between the 3 usages, you should have a good idea of how to use http-codec. The basic...
Also there is this which I wrote a while back when I was benchmarking luvit. https://github.com/luvit/luvit/tree/master/bench/http-cluster I'm not sure if it still works, but the basic idea is to bind...
It appears that vmbench wants single-core comparisons. That's fine, just combine worker and master into the same process (bind, listen, and accept all in one process) and otherwise the code...
I guess another option is to change the data format to store as little-endian since most machines in my use case have that already (and wasm always is). I just...
> Btw Wasm MVP supports popcnt ops Good to know which builtins are available, but as you see in my code, it did correctly detect the pattern and generated the...