Jake Goulding

Results 616 comments of Jake Goulding

> in the embedded widget we do not provide such a tool; what do you mean by this? is using your browser’s font size control (e.g. control-plus) insufficient?

An interesting idea! Allow me to respond inline with a stream of consciousness... --- > Publishing some light library and reusing it in multiple pastes. Believable, but it's hard to...

Seems reasonable. Will want a version for the frontend (JS) and the backend (Rust) code. I've used [vergen](https://crates.io/crates/vergen) for the Rust side before; I'm sure there's a straight-forward JS (maybe...

Have you attempted to navigate to that URL? From the output posted, it looks like the logger isn't enabled so nothing is being output. For example, I have `RUST_LOG=ui=debug,access=debug,tower_http=trace` in...

Thanks! A fair warning, but we are doing some UI rework in another branch (haven't gotten to a PR yet) which will probably get merged first, so there might end...

My understanding is that the web-based version of Rustlings is effectively unmaintained, so even if someone were to add such a feature to the playground, Rustlings wouldn't be updated to...

The playground is not attempting to be a terminal emulator, so this behavior is expected. Likewise, if you output ANSI escape codes, those will not take effect either. The output...

Yes, the current implementation expects to communicate with the Docker instance in part by writing files to disk from the server and then reading them inside the container (and vice-versa...

The `ExitStatusExt` is trickier. The container definitely runs Linux commands and we get the Linux exit code. We smuggle that through the Docker layer and re-attach it to propagate upwards....

As a workaround, we created our own `Box` wrapper: ```rust #[derive(Debug)] pub struct MyBox(pub Box); impl FromNapiValue for MyBox where T: FromNapiValue, { unsafe fn from_napi_value( env: napi::sys::napi_env, napi_val: napi::sys::napi_value,...