Charles Samborski

Results 105 comments of Charles Samborski

They open sourced the ActionScript VM which is part of the Flash Player. It is a good starting point but this is not enough.

@pakastin See the first message, there are two repos: > - [adobe-flash/avmplus](https://github.com/adobe-flash/avmplus) > - [adobe/avmplus](https://github.com/adobe/avmplus) (latest) The second one was updated last year.

Okay, I found the issue: - When using a typed image buffer, the encoding goes through `PngEncoder::write_image` which fixes the ordering before calling `encode_inner`. - When using a dynamic image,...

Thank you for your quick feedback. First of all, I'm happy that the feature is deemed interesting, but I agree that the PR needs more work. 1. I'll rework the...

Hi, Could I suggest an alternative solution? Parsing the cookies could return an array of parsed cookies instead of a dictionary from names to sometimes cookies/sometimes collections of cookies. This...

Thank you for your quick reply. > A regex is really just the wrong tool for this. It would be soooo much faster to just do s.chars().count()

@trollkotze I encountered the same issue as you. When investigating the stack trace, the buffer is introduced by Node where recursing over child items: https://github.com/nodejs/node/blob/01408a5aa8d4ed4b486bb8e3d9607f3e342c78b4/lib/internal/fs/rimraf.js#L251 Yarn version: `4.0.0-rc.4` Stack trace:...

You should use a typings.json with the `npm:` module resolution. **main-project/typings.json** ``` json { "dependencies": { "flickr": "npm:flickr" } } ``` This will tell `typings` to look into `node_modules/flickr`, search...

I followed your steps and was unable to reproduce your issue. (The files were installed successfully). Could you provide more context about your environment ? I tested on a Windows...