Doug Hoyte
Doug Hoyte
In the docs it says Feersum currently passes undef for psgi.input when there is no body to avoid unnecessary work. Which makes sense, except it causes HTTP::Entity::Parser to throw an...
Hi, neat looking project! I was wondering if you could weigh in a bit on how this compares to the lmdbxx library by Arto Bendiken (@artob): https://github.com/drycpp/lmdbxx The automatic conversion...
I have a file of links with stuff you don't have, hope it helps: * malloc debuggers: * the classic: libefence * http://www.nongnu.org/failmalloc/ * https://github.com/andrewrk/malcheck/ * https://github.com/d99kris/heapusage * timing: *...
It looks like mincore() may be crippled in new linux kernels to protect against side-channel attacks: see [this linux kernel commit](https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=134fca9063ad4851de767d1768180e5dede9a881) Unfortunately, on kernel versions 5.2+, you'll need to run...
When locking files into memory, we could use inotify (or other interfaces for different OSes) to discover when a file's size or inode changes, and re-map and re-lock the new...
Feature request from private email: -p should accept a list of ranges, ie "-p 5-10,500k-600k,3G-"
This was noticed when integrating into Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=874145
@maq123 shows in #30 that touching block devices can be slower than expected.
Out of curiosity I hacked up part of the [liburkel benchmark](https://github.com/chjj/liburkel/blob/master/test/bench.c) to work with Quadrable. Inserting 100k records took about 3 times longer with quadrable compared to liburkel. Same with...
Although UniswapV2Library itself accepts solidity `>=0.5.0`, it pulls in `contracts/libraries/SafeMath.sol` which depends on `=0.6.6`. Compiling with solidity 0.6.11 works as expected after applying this pull request: https://github.com/Uniswap/uniswap-v2-periphery/pull/53