YihaoPeng
YihaoPeng
Consider the following text: ``` Link with IPv6 address: https://[2408:400a:d:a300::1]/ Link with IPv6 address and port: https://[2408:400a:d:a300::1]:443/ ``` The parsing result on https://parsedown.org/demo is:  ``` Link with IPv6 address:...
Currently, the new Share structure of `deveth` can already save IPv6 addresses. However, the `sserver` is still only used the IPv4 protocol stack. The code needs some changes to listen...
You know, this refers to the 32-bit unix timestamp overflow problem. [Wikipedia](https://en.wikipedia.org/wiki/Year_2038_problem) Although 64-bit timestamps are used in `deveth`'s new Share structure, some places in the project are still using...
https://github.com/btccom/btcpool/blob/c656fd7a08927abb7300f7af86e458be60929a4e/src/ShareLogParser.inl#L950 该字段采用以下函数进行哈希速率运算,只适用于比特币及pdiff与其相同的DCR,并不适用于以太坊。 ```cpp // we use G, so never overflow inline double share2HashrateG(uint64_t share, uint32_t timeDiff) { // G: 1000000000.0 // 2^32: 4294967296.0 return share * (4294967296.0 / 1000000000.0 /...
https://github.com/nicehash/nheqminer/blob/b9900ff8e3c6f8e5a46af18db454f2a2082d9f46/cpu_tromp/equi.h#L56 ``` blake2b_param P[1]; P->digest_length = HASHOUT; P->key_length = 0; P->fanout = 1; P->depth = 1; P->leaf_length = 0; P->node_offset = 0; P->node_depth = 0; P->inner_length = 0; memset(P->reserved, 0,...
When Lutris downloads runtime files in the background, the user will wonder: Why can't my game installation continue? When the user clicks the "Run" button of a DXVK enabled Wine...