Matt Joiner
Matt Joiner
There's a common theme in some issues around a bunch of nodes bootstrapping themselves copies of some data, often from an original source that's a webseed. This would make a...
Indeterminate is handled as a DOM property not as an attribute. I'm not sure if this covers the case where we need to set it back to false when going...
When running a Windows x64 binary on Windows ARM, I get this error during startup: ``` panic: regexp: Compile(`[_\p{L}][_\p{L}\p{N}]*$`): error parsing regexp: invalid character class range: `\p{L}` goroutine 1 [running]:...
On Darwin, quitting the systray terminates the current process. That's always been a pain. This stops the event loop, and systray.Run should return after calling systray.Quit.
From https://github.com/anacrolix/cove/issues/10#issuecomment-2260581015. Filter what gets added to the DHT index. @barolo
@barolo From https://github.com/anacrolix/cove/issues/10#issuecomment-2258257405. It might be possible to expose the search API over JSON as part of cove, since the rest of it sits idle unless you use it anyway,...
Add the examples from the README. This makes it much easier to get up and running. Perhaps the README could refer to the examples directly in a later change.
By using windows-sys we can entirely remove the need for bindgen, and Windows.h enabling cross compilation to Windows. Additionally we relax the use of the Format trait to be ?Sized...
Addresses https://github.com/ethereum-optimism/optimism/issues/10936#issuecomment-2176330084. * Stops the sequencer before stopping p2p so it can communicate any last work. * Reworks the p2p enabled logic so it's behaving like p2p is disabled when...
This was a fix that came out of fixing the shutdown handling when testing various services. Mainly I made the signal use for interrupting contexts consistent, it was using different...