Sergey "Shnatsel" Davidoff

Results 943 comments of Sergey "Shnatsel" Davidoff

The company that has providing the server is no longer in a position where they can provide them for free, and I'm not in a position to actually rent a...

At about a gigabyte of disk storage for pbuilder chroots. It does need root privileges for chroot to work, although it might be possible to work around that. CPU requirements...

I've published the scripts I've written for the repo to https://github.com/Shnatsel/cjdns-daily-build It has occurred to me that we can get away with just the cronjob to preprocess source code and...

Yes. But before that I'll try hooking into Launchpad from my personal machine. That's gonna get us more transparency and result in a simpler, more secure setup. We can move...

Progress report: I have a prototype script that prepares the source code and uploads it to a repository on Launchpad. You can check out the (experimental) result at https://launchpad.net/~shnatsel/+archive/ubuntu/staging, so...

The repository on a custom server should be now superseded by this PPA: https://launchpad.net/~cjdns-ppa/+archive/ubuntu/ppa To anyone interested in seeing this through: please test that the packages from that PPA and...

The AVX fuzz target is slow if run with both debug assertions and address sanitizer. You have to use either `cargo +nightly fuzz --release avx` or `cargo +nightly fuzz --sanitizer=none...

I wrote this before I actually dove into the implementations of FFT. I tend to agree that if the execution path isn't dependent on the data, there isn't a whole...

I can make a skeleton implementation of this, but since I'm familiar with fuzzing but not FFT, I will likely need help from someone who understands FFT. The motivation is...

> - The FFT operations and IFFT operations are inverses. One fuzz test could be to assert this fact. Keep in mind the constant factor that rustfft introduces. > -...