Ricardo Fernández Serrata
Ricardo Fernández Serrata
[](https://gitpod.io/from-referrer/) [know more](https://www.gitpod.io/docs/pull-requests/) ### Describe your change: - [ ] Add an algorithm? - [x] Fix a bug or typo in an existing algorithm? - [x] Documentation change? ###...
### Describe your change: Now the `n31` algorithm has been extended to support negative integers, and has protection against infinite looping by checking for 0. The algorithm is still simple...
Closes #889. The bitwise approach isn't mathematically correct, because it only works for 32bit ints, therefore it should be exclusive to the `math/bits` directory. I also added info about the...
Neither the README nor the src files explicitly say that the bitwise approach is only correct for 32bit ints. The way it's worded implies that the bitwise approach is always...
# Current plan Big and "medium" (relatively) sections from the `README.md` will be moved to the `/docs/` directory. Categories will have dedicated inner folders where files will be placed, other...
The `` element supports `image/svg+xml` value at the `type` attribute, why is this information not present in the `README.md`? Modern browsers already support SVG icons, although they're not recommended for...
Since this has a big focus on Linux shells, POSIX is something that should be talked about, because it's a standard specification aiming at portability and compatibility. Perhaps POSIX has...
I added 2 variants because I don't know which is better
# Conditionally-typed zero ```js const zeros = ([undefined, null, true, 5, 5n, 'txt', {}, []]).map(x => x ^ x) console.log(zeros.every(z => z === 0)) // "false" ``` Explanation: The caret...
I did some refactoring on that file. I haven't tested it yet, so I don't know if it compiles correctly lol. There shouldn't be any runtime bugs added by these...