Daniel Huang

Results 9 comments of Daniel Huang

Just decoding the claims can be done by decoding base64. Using this library is probably not necessary.

Windows support is a planned feature. Unfortunately, I do not have access to a development environment on Windows at this moment. In the meantime, using WSL (Windows Subsystem for Linux)...

I believe the open file limit has been reached. Usually, for large projects (especially when using file watchers), the limit needs to be increased. I'm not too familiar with macOS,...

NPM and Yarn both run on Node.js, which uses a separate blocking I/O threadpool where async operations are offloaded. The reason they do not have a "too many open files"...

Initial support has been implemented. To use custom registries, save them into `cotton.toml`. For example: ```toml [[registry]] scope = "@example/" url = "https://registry.example.com" auth = { token = "insert_token_here" }...

Registries can now be used with usernames and passwords: ```toml [[registry]] url = "https://registry.npmjs.org" auth = { username = "user", password = "password" } ``` It can also come from...

Can you run the current package manager with verbose output to find the actual metadata URLs? There might be a mismatch between how the URL is resolved.

Maybe 0.1 is not a good number to have it disappear after.

I've fixed it by adding `if (particle.alpha < 0.1) particle.alpha = 0;` in `_drawFrame`.