Thomas Cort

Results 18 comments of Thomas Cort

I'm considering switching from needle to [got](https://www.npmjs.com/package/got) which supports caching and a ton of other features.

Still waiting on the next needle release. The pull request was merged after the last release... ![image](https://user-images.githubusercontent.com/216720/224157122-a92873c1-77ca-4867-b72e-cfc3fd927e8f.png)

It looks like you're trying to run this on Microsoft Windows. That operating system isn't supported by this module at the moment. I don't have access to a computer running...

Reverted. The changes don't work with the latest `marked` (v12.0.1).

I'm primarily using this on FreeBSD. According to the FreeBSD manpage for [random(3)](https://www.freebsd.org/cgi/man.cgi?query=random&apropos=0&sektion=3&manpath=FreeBSD+11.0-RELEASE+and+Ports&arch=default&format=html): ``` The functions described in this manual page are not secure. Applications which require unpredictable random numbers...

It looks like `getrandom(2)` is a good choice for the following reasons: * it doesn't need to open any files (e.g. `/dev/random` nor `/dev/urandom`). * it doesn't need to be...

It looks like the `my_bool` type was removed from the MySQL headers in MySQL 8.0 (See [compilation notes](https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-1.html#mysqld-8-0-1-compiling)). I'll see if I can fix this in a way that is...