Ximin Luo

Results 108 issues of Ximin Luo

First, pin and install whitequark/ppx_deriving@8705088 (or later) as that is the first commit that supports 4.05. Then pin and install nocrypto. However, it fails with: ~~~~ # + ocamlfind ocamldep...

It would be good to have a pure interface for the RNG, such as what the Haskell [crypto-api library](https://www.stackage.org/haddock/lts-8.4/crypto-api-0.13.2/Crypto-Random.html) provides. This would be useful for composing with pure code as...

I am trying to use my openwrt router with my IPv6-supporting ISP. I am running 19.07.3 on a netgear WNDR3700v4. As I understand, DHCPv6 is supposed to go something like:...

This comes from the main part of #428, except I've made the following changes: - renamed the concept to "endpoint" which hopefully is less confusing than "name" - added some...

pretty self-explanatory IMO. useful for backing up your disks via bittorrent. (only implemented this in the case of a single file, not where block devices are inside a directory tree,...

[lightning uses noise-with-secp256k1](https://github.com/lightningnetwork/lightning-rfc/blob/master/08-transport.md#noise-protocol-instantiation) even though this instantiation is not explicitly mentioned in the [noise protocol spec](https://noiseprotocol.org/noise.html). Are there any plans to add this to cacophony, or would you be happy...

If you have a TBQueue of size 2, you can put 3 times on it, then the 3rd call will block until you read from the queue (from another thread)....

Hardware is OnePlus 5T dumpling, running microG lineageOS 16. The default value for "moved threshold" is 1250m which feels a bit excessive. Fairly often, I've run into situations where my...

Hi, I see this library was forked from an older version of quinn. Would you be interested in updating it to the latest version? If not, could you provide a...

git-hg stores the same objects under both `.git/objects` and `.git/hgremote/objects`, wasting space by 2x. A workaround is to [share objects](https://git.wiki.kernel.org/index.php/Git_FAQ#How_to_share_objects_between_existing_repositories.3F): ~~~~ $ du -sh 2.1G . $ echo ../hgremote/objects/ >>...