Daniel Lemire
Daniel Lemire
[File path URL conversion is not standardised](https://github.com/whatwg/fetch/issues/1338). @karwa created a [comprehensive test suite](https://github.com/karwa/swift-url/blob/main/Sources/WebURLTestSupport/TestFilesData/file_url_path_tests.json) and they are proposing [a Swift implementation.](https://github.com/karwa/swift-url/blob/main/Sources/WebURL/WebURL%2BFilePaths.swift) We could collaborate with @karwa in making this more standard.
The entire code base assumes UTF-8. To support UTF-16, we simply need to transcode (easy!).
https://github.com/lemire/despacer (From Hacker News comments.)
We should create a benchmark that focuses on number parsing... https://github.com/simdjson/simdjson/discussions/2185
# Description Chrome and Firefox are built with Clang under Windows. @targos made it possible to build Node.js using clang under Windows, see https://github.com/nodejs/node/pull/35433 At least in some tests, this...
Windows 11 version 24H2, Rocky Linux 9, RedHat Linux 9, all defaults on x86-64-v2 which means that we have SSSE3, SSE4.1, SSE4.2 and POPCNT. We might be able to include...
In C, the `malloc` function (and similar memory allocation functions) may 'fail' by returning a NULL pointer, or by some other means. Currently, CRoaring does not have a policy regarding...
Might help with https://github.com/RoaringBitmap/CRoaring/issues/630 This is likely not a perfect fix.
### SUMMARY Correct the documentation, thus fixing issue https://github.com/RoaringBitmap/RoaringBitmap/issues/730 When using a BatchIterator, hasNext may return true even if the iterator is exhausted. The user will get back 0 values...
This Java code can be 'fast' but not nearly at the speed of a C implementation. I believe that the reason is this code section: ``` ByteVector byte1High = prev1.lanewise(LSHR,...