Sergey "Shnatsel" Davidoff

Results 943 comments of Sergey "Shnatsel" Davidoff

https://github.com/rust-lang/rust/pull/105389 has added profiler support on `powerpc64le-unknown-linux-gnu`. This change is already available on current nightly, and will reach stable in Rust 1.67. So platform-independent code can also be tested on...

@aldanor could you publish a new release of `fast-float` to crates.io with the fix for https://github.com/aldanor/fast-float-rust/issues/28? I understand the fix is already merged and you just need to `cargo publish`.

> this is what cargo does, it doesn't set any extra env, only invokes the binary with `cargo-tool tool ` This is not entirely true - [Cargo does set one...

Nice, thanks! The general framework looks workable. You said this is unfinished - what's left to be done? I see the Vorbis target erroneously specifies the format as MP3, but......

I've run the MP3 fuzzer for a bit and it didn't find any crashes. If my previous experience fuzzing multimedia libraries in C and Rust is anything to go by,...

By the way, we should do away with the mutexes in tests, now that proper locking is in place.

It seems that such system will have account decay/expiry in an IRC-like manner. This may not be a good idea for authentication to third party entities via OpenID-like mechanisms, at...

> This lightweight version would work by connecting to full node-clients (which have the full blockchain) The main problem with this is trust. The naive solution makes lightweight clients completely...

> Would it be faster to not open multiple file handles, I don't think so. If you have a single file descriptor for everything, that means you cannot issue parallel...

> Right now, memory mapping is supported by the library implicitly by allowing the user to pass any `Read` trait. Would memory mapping also benefit from parallel reading? Yes, but...