Chris Kim

Results 14 comments of Chris Kim

`?ref` is also used by the Steam support website: https://support.steampowered.com/kb_article.php?ref=1558-AFCM-4577

I think you may be able to use the `animEnd` events: https://github.com/cykod/Quintus/blob/master/lib/quintus_anim.js#L51-L52 I haven't tried this myself however.

I am having this issue in Chrome when using translate and scale. http://i.imgur.com/dUd8b.png

You are right, it is a rendering bug in the current (v21) version of Chrome. Hopefully they fix it soon! Thanks.

A [createWriteStream issue](https://github.com/nodejs/node/issues/51993) has just been fixed in node.js, but it still exists in deno. It might be related to this issue. Repro: ```js import fs from 'node:fs'; import process...

Also note that `fstream` can write file contents out-of-order, because of a [node.js bug in v18.16+](https://github.com/nodejs/node/issues/51993). This is the source of these corrupted file issues: - https://github.com/ZJONSSON/node-unzipper/issues/271 - https://github.com/ZJONSSON/node-unzipper/issues/286 The...

A simplified version of this fix, without `ENOTDIR` handling, was merged: https://github.com/streamich/unionfs/pull/787/files

I've just noticed that `unionfs` iterates backwards through the `this.fss` array for most operations, **except** when using `createWriteStream`/`createReadStream`. This seems like a mistake, and I'll address it in ~this PR...

Due to this? https://code.google.com/p/chromium/issues/detail?id=421695