djugei

Results 17 issues of djugei

currently benchmarks within the same benchmark group may use different time units for displaying, this makes it a bit harder to compare at a glance. for example one may use...

works on light mode but if you switch to dark mode (menu on the top right) the addon completely breaks video pages (/watch). their basic layout still loads, but neither...

there is probably some escaping missing.

=== Test | proj:test === *[ ] testtask and === Test | proj:test | proj:test === *[ ] testtask both create the task, but do not assign the proj: tag...

I am trying to generate bit idential binaries to the zstd command line tool. specifically for the following invocation: `cat file | zstd -c -T0 --ultra -20 > file.zst` pipes...

to my best understanding zstd has an optional header field telling us how big the uncompressed size is, alternatively you could sum up all frames? it would be nice to...

```rust let response = gen_504_response(); let response = response.error_for_status().map_err(|e| e.is_timeout()) assert_eq!(response, Result::Err(true)); ``` this currently panics, i would expect a gateway timeout to be a timeout.

closes #82 some thougts: this is mainly useful for the hash_proxy so maybe it should just be implemented on that type specifically in addition to the generic Filter::contains()? the code...

https://github.com/ayazhafiz/xorf/blob/108d67903f2df6db6dcd1c05c571594c529413d6/src/lib.rs#L119 it would be cool if one could query a `Filter` using `.contains(&T)` instead of `.contains(&Box)`. [std ](https://doc.rust-lang.org/std/collections/struct.HashMap.html#method.contains_key) achieves this by using the Borrow Trait. this is a breaking change...

**Description and reproduction** equal: sha1sum libnghttp2-1.62.0-1-x86_64.pkg.tar.zst zstdcat libnghttp2-1.62.0-1-x86_64.pkg.tar.zst | zstd-1.5.6 -c -T0 --ultra -20 - | sha1sum different: sha1sum libnghttp2-1.62.0-1-x86_64.pkg.tar.zst zstdcat libnghttp2-1.62.0-1-x86_64.pkg.tar.zst | zstd-1.5.5 -c -T0 --ultra -20 - |...