Results 310 comments of Fabian

> It's likely that they interfere badly with each other. This should be fixed in js_of_ocaml, shouldn't it? @viebel I don't think so, but maybe we can summon @bobzhang. I'd...

Invalid radices might be a problem: ``` > (42).toString(99) Uncaught RangeError: toString() radix argument must be between 2 and 36 at Number.toString () ```

There is a bug in v86 related to the interrupt mask in the pic. I'll push a fix soon.

This has been fixed in v86. I've added a profile here: https://copy.sh/v86/?profile=mu You can download it from here: https://github.com/copy/v86/releases Note that to get it to work, you need the v86.wasm...

@broten15 Sure! (note that not all url parameters are implemented yet, so that would also be useful)

> Hi, I'm also a student at UT Austin looking for projects related to virtualization for a class project. Is this issue up for grabs? Sure! I'd suggest virtio-tablet or...

@ktye For FreeDOS, I suggest adding `IDLEHALT=1` to config.sys ([source](https://freedos-user.narkive.com/UGrcO8wU/does-freedos-make-cpu-sleep-when-idle)), which makes CPU usage go to almost zero. For other OSes, I've create a new issue to improve idling: https://github.com/copy/v86/issues/877...

Redox 0.8 released with i686 support, and it works out of the box in v86, when acpi is enabled: https://copy.sh/v86/?profile=redox It's very laggy though, and some investigation is needed why...

Seems to be rendering. Two things on Redox's side: - VGA memory is written byte-wise. On v86, this is much slower than word-wise (or even better, 128-bit SSE writes), since...

@nklayman That sounds like a good approach, although there seems to be some confusion around *which* class to implement: `File` is a browser API that can be read using `FileReader`,...