Alex Zenla

Results 15 issues of Alex Zenla

Hello! I would like to ask what is planned for medusa. I am a strong user of Dart, so I was very interested in how this could bring more to...

If you want speed, you should use snapshots to store pre-parsed Dart Code. It's much more efficient, but it does take slightly more space to store it. https://www.dartlang.org/articles/snapshots/

You should consider using the brand new Isolate APIs. This includes `Isolate.kill` and `Isolate.addOnExitListener`. Also, you should probably handle plugin errors via `Isolate.addErrorListener` https://api.dartlang.org/apidocs/channels/stable/dartdoc-viewer/dart:isolate.Isolate

This PR will bring HVM support via PVH. We get to keep all of the PV goodies with HVM support. Notably, this PR implements that functionality interchangeably, so that we...

Most, if not all of the components within krata use a controller / processor strategy, where a background green thread performs processing and another component can interact with that processor...

enhancement
help wanted

Create a contributing guide (CONTRIBUTING.md) to describe how developers can get involved with krata.

documentation

Implement support for exec'ing into a guest, with stdin/stdout/stderr proxied over IDM.

enhancement

Create a Getting Started guide that makes it clear how to start using krata as a user.

documentation

- tty support for exec NOTE: in draft until tty allocation works

``` % ./hack/debug/kratactl.sh exec debian-test sh -c 'apt-get update; apt-get install -y git' Finished dev [unoptimized + debuginfo] target(s) in 0.19s Hit:1 http://deb.debian.org/debian bookworm InRelease Hit:2 http://deb.debian.org/debian bookworm-updates InRelease Hit:3...

bug