mastodon.zunda.ninja is one of the many independent Mastodon servers you can use to participate in the fediverse.
Zundon is a single user instance as home of @zundan as well as a test bed for changes of the code.

Administered by:

Server stats:

1
active users

zunda

JavaScriptにバイナリデータをダウンロードさせるのにはデータを文字列じゃなくてUInt8Arrayに持たせなきゃいけないんだって。ふえー。
(Prawnさんの作ってくれるPDFの2行目の0xFFが0xC30xBFに変換されて困ってた。いあ、これ自体はコメント行だから困らないんだけど日本語は化ける)

https://stackoverflow.com/a/40493956

stackoverflow.comKeep javascript blob from editing data when saving fileI want to move data generated in javascript to a file I am using function saveTextAsFile(textToWrite,FileName){ var textFileAsBlob = new Blob([textToWrite], {type:'text/plain'}); var