Results 256 comments of Dannii Willis

I don't think this is waiting on an electron fix because it happens when I use electrofs.js in pure Node.

ZVM prints a single "\n". A little more clarity on how you saw this error would help. Which file format? Are you trying to load a command list created by...

So I6lib correctly opens a textmode fileref for the command stream. It writes a single `\n` after each command. The VM can't know what OS is in use and nor...

https://mathiasbynens.be/notes/javascript-unicode#accounting-for-astral-symbols Assuming you can't move to ES6 yet, using [punycode.js](https://github.com/bestiejs/punycode.js) is probably your safest and easiest option. The minified version is only 2.74kb.

Probably easiest to use DataViews. I [made an extension to DataView](https://github.com/curiousdannii/ifvms.js/blob/master/src/common/utils.js#L50) which also has support for getting and setting a block of data too.

Does it support a `Uint8Array` being provided directly? GlkApi would also need to support typed arrays for the full benefits to be apparent. I couldn't see you make any changes...

I found for Z-Machine that it was really nice to store the stack in the Quetzal format, except for needing to swap the bytes before saving. The locals could then...

The URL api will help with the first, it's a global in both browsers and Node. Actually also for making URLs for images - using blobs should make it basically...

Do you mean through the Web History API (history.pushState)? That's an odd use case, but okay. I'd like to be able to use GiLoad in Parchment without modification and be...

You wrote at the intfiction.org forum: >So far, I think a key factor is that when the keyboard pops up it resizes the window / HTML5 canvas area, and GlkOte...