HackerTrans
TopNewTrendsCommentsPastAskShowJobs

benno128

no profile record

Submissions

Git-reabsorb: Reorganize Git commits with new structure using an LLM

github.com
6 points·by benno128·8 miesięcy temu·2 comments

MCP Servers are surprisingly easy. I made one that runs code in a sandbox

runno.dev
1 points·by benno128·12 miesięcy temu·1 comments

Runno/Sandbox: A WebAssembly Sandbox for Running Code in Node (etc)

runno.dev
4 points·by benno128·w zeszłym roku·0 comments

Show HN: MCP Server for secure code execution (Python, Ruby, C, and more)

github.com
7 points·by benno128·w zeszłym roku·0 comments

Runno: The Web Component for Code

runno.dev
2 points·by benno128·w zeszłym roku·0 comments

Show HN: I made a Python package for sandboxing code

runno.dev
2 points·by benno128·w zeszłym roku·0 comments

Crashing your production app with iteration

shiplog.nspain.dev
1 points·by benno128·2 lata temu·0 comments

Running WASI binaries from your HTML using Web Components

runno.dev
165 points·by benno128·3 lata temu·72 comments

comments

benno128
·w zeszłym roku·discuss
Yeah for sure: run it inside a virtual machine, or do some sort of docker magic.

You kind of need to pretend you are a whole computer for a programming language to be happy. There's built in assumptions they're running on a "real" computer. They assume they've got full access to network and disk. Installing packages often requires compiling C extensions, or running native binaries. All that stuff means the best way to sandbox is to virtualise a whole computer.

It's fun to do it with WebAssembly though, you get a lot of guarantees and it's quite light weight.
benno128
·w zeszłym roku·discuss
I've got one that uses WebAssembly to run Python, Ruby, C/C++, JS: https://runno.dev/articles/sandbox/
benno128
·w zeszłym roku·discuss
Thanks! Yeah I'm very aware of Pyodide and interested in adopting some of their techniques.

A big difference between my approach and their approach is that Runno is generic across programming languages. Pyodide only works for Python (and can only work for Python).

Big interesting development in this space is the announcement of Endor at WASM IO which I'd like to try out: https://endor.dev/
benno128
·w zeszłym roku·discuss
Working on Runno (https://runno.dev/) as a side project. It's a tool for running code in the browser for educational use.

[Edit]: I wrote a re-introduction to Runno: The WebComponent for Code over the weekend (https://runno.dev/articles/web-component/)

I've been playing around with turning it into a sandbox for running code in Python (https://runno.dev/articles/sandbox-python/). This would allow you to safely execute AI generated code.

Generally thinking about more ways to run code in sandbox environments, as I think this will become more important as we are generating a lot of "untrusted" code using Gen AI.
benno128
·w zeszłym roku·discuss
Sounds really interesting. Where can I try it out? I struggled to find a link in the article.
benno128
·3 lata temu·discuss
Really impressed by the depth and breadth of this project, well done!

A particularly interesting part is the socket layer inside the browser. Other people solving this problem have previously used a proxy to a server that does the real socket implementation. This means you can't have a "browser-only" solution.

The author has solved this (for HTTP/S only) by proxying HTTP requests and then re-creating them as fetch requests (details here: https://github.com/ktock/container2wasm/tree/main/examples/n...). I'm very interested in using this approach for my own project Runno (https://runno.dev).
benno128
·3 lata temu·discuss
This is the use case I've been tackling with Runno (https://runno.dev), it's more performant than OP's approach but not as flexible.
benno128
·3 lata temu·discuss
There is support in Docker to run wasm-wasi binaries directly (see: https://wasmlabs.dev/articles/docker-without-containers/). The downside compared to OP's approach is that whatever you're running has to have already been compiled to wasm-wasi. The upside would be much faster execution time (no emulation overhead for x86).
benno128
·3 lata temu·discuss
I'm working on this problem as well and would be happy to sling you some thoughts and notes. Check my website https://runno.dev and send an email to the address on that website!
benno128
·3 lata temu·discuss
Snapshot Preview 1 is the standard all tools are building to right now. The specification is available here: https://github.com/WebAssembly/WASI/blob/main/legacy/preview...

It's pretty unreadable though!

Preview 2 looks like it will be a big change, and is just being finalised at the moment. I'd expect that when preview 2 is available there will be an improvement in the quality of documentation. I'm not sure how long it will take after release for tools to start switching to it. I'd expect Preview 1 will still be the main target at least for the rest of this year.
benno128
·3 lata temu·discuss
Yeah of course! They've got STDIN/STDOUT/STDERR and I've built a Virtual Filesystem. But if you're using WASI binaries locally they don't have that restriction.

You might be interested in WAGI: https://github.com/deislabs/wagi

And to catch up on WASI: https://xeiaso.net/talks/unix-philosophy-logical-extreme-was...
benno128
·3 lata temu·discuss
Thanks for the feedback! It’s also cost me about $15 so far. I don’t think I’ll do that again, but it was fun as a demo!
benno128
·3 lata temu·discuss
SPA sense. It’s cobbled together because I just have fun with it. Not sure why it’s temperamental, haven’t bothered investigating.
benno128
·3 lata temu·discuss
I wouldn't put it in prod, but it would be possible. You'd need a JS binding layer that dealt with the output and wrote it to the page, but it could be minimal.

There are other projects that are targeted more at this kind of thing if you want dynamic access to the DOM from Web Assembly (sorry I don't know them off the top of my head).
benno128
·3 lata temu·discuss
Might be this particular build of Python, or might be that I implemented one of the `fd` functions in a way Python/SQlite is surprised by. I'll have a look into it some time!
benno128
·3 lata temu·discuss
Thanks! Yeah WebAssembly has an exciting future ahead of it.
benno128
·3 lata temu·discuss
Looking forward to it!
benno128
·3 lata temu·discuss
You just need to create the file first!

    >>> open("data.db", "w+").close()
    >>> db = sqlite3.connect("/data.db")
    >>> db
    <sqlite3.Connection object at 0x8b3fd8>
benno128
·3 lata temu·discuss
Sorry! It is running ffmpeg in your browser on page load, which might not make it happy.
benno128
·3 lata temu·discuss
Is this on the blog post, or are you trying it out yourself?

If it's on the blog post, it sounds like your browser doesn't support `SharedArrayBuffer` (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...) or you've disabled Cross Origin Isolation somehow. It might be because you have an old browser (there was a period where it was disabled) or you have disabled Cross Origin Isolation yourself (maybe a security setting?).