TheIronBorn

Results 28 issues of TheIronBorn

I'm curious how you chose LFSR113 for your PRNG? Note that the LFSR113 32-bit version can also be SIMD accelerated: ```rust pub struct Lsfr113 { u: u32x4, } impl RngCore...

`mum-prng` passes NIST STS but that's not the state-of-the-art for PRNG testing. Do you have info on the performance of `mum-prng` in [TestU01](http://simul.iro.umontreal.ca/testu01/tu01.html) or [PractRand](http://pracrand.sourceforge.net/)? PractRand is probably the more...

Throughput often provides more precision when the benchmarks take a couple of nanoseconds for example, there's a difference between these two hidden just by the ns/iter: ``` test bench_fx64_003 ......

k-combinations *with repetition* would be useful. See https://en.wikipedia.org/wiki/Combination#Number_of_combinations_with_repetition

enhancement

I don't think this is actually an issue, just putting it here in case other people are hit with this. I've run across this twice after reinstalling. Windows Defender quarantines...

help wanted

Each time Noti runs, it adds a new terminal icon to the taskbar overflow. In regular use the overflow can sometimes fill beyond Window's ability to display them all. Windows...

bug
help wanted

### Summary allowing `unsafe_removed_from_name` on imports produces a false positive on `useless_attribute` ### Lint Name useless_attribute ### Reproducer I tried this code: ```rust #![allow(unused_imports)] #[allow(clippy::unsafe_removed_from_name)] use std::cell::UnsafeCell as Cell; ```...

C-bug
good-first-issue
I-false-positive

I'm unclear if Wunderline even has this feature, but in that case I suppose this is a UX issue. ```bash $ wunderline add test-offline { "code": "ENOTFOUND", "errno": "ENOTFOUND", "syscall":...

feature