Jeremy Rubin

Results 86 comments of Jeremy Rubin

@ethanheilman is probably a good person to look at this.

The banscore stuff in Bitcoin sucks and isn't actually really used -- if Bitcoin Core could get rid of it easily, we would. In general it's a binary thing at...

testing this it's not quite right, data-uri expects the actual file contents (annoying), looking for a file path type that would work instead...

I think a better alternative is to do as follows: ``` oneOf: [ { "type": { "type": "string", "const": "VariantA" }, { "type": { "type": "string", "const": "VariantB" }, ]...

tag @GREsau since this is an old issue and he might miss it. this sort of representation works a tad better because you keep the docs associated with the actual...

This issue comes up after version 0.8.3

slight newbie question, but the Send but not Sync behavior leads to some pretty confusing behavior around async code because when a task wakes up we basically need to reconnect...

@trevyn I'm aware of how spawn_blocking works, but the issue here is more around being able to store Connection instances into the Future's suspended state, which lacking Sync I think...

That line in particular doesn't matter as the functions arguments are all public data :)

yeah I guess I think you want both behaviors. For a full example you can see https://rubin.io/bitcoin/2021/12/22/advent-25/ (LOL). Basically I want to compute all the minimal subsets of members that...