Absolutely incredible video about visual effects.
@pyroboyee finally!
Why has the most influential RISC-V company just fired everyone? https://youtube.com/watch?v=l0DUHZ1e48U&si=qbVcRdX1JvsxRQeV
It's well known that trains are more efficient at moving people than passenger cars, but it's amazing to see it quantified. The throughput difference is absolutely massive.
I end up explaining over and over again that #rustfmt is not good for being applied unconditionally to human-maintained code.
Unlike gofmt-like tools that correct bad formatting, rustfmt forces a canonical form of everything. It replaces all human direction with its own primitive heuristics. It doesn't have common sense, and does not allow to be corrected. This frequently leads to absurdly misformatted code, and pointless changes for the worse.
I'm going to snap and write my own formatter…
I just realized that `let _ = ...` and `let _foo = ...` behave differently in #rust.
The former drops the value immediately while the latter drops it at the end of the scope. This almost never matters due to the borrow checker but this was resulting in my tracing context being broken because I was calling `let _ = span.enter()` and the guard was being dropped right away.
Another month has passed, time for another update to our overview of F-Droid apps published with Reproducible Builds (now featuring a list of all RB apps as well): September saw 10 new RB apps added, 1 existing app switch to RB, 2 RB apps archived, and 1 disabled, making 199 RB apps in total.
https://gitlab.com/obfusk/fdroid-misc-scripts/-/blob/master/reproducible/overview.md
Precompiled binaries removed from serde v1.0.184
https://github.com/serde-rs/serde/releases/tag/v1.0.184
Discussions: https://discu.eu/q/https://github.com/serde-rs/serde/releases/tag/v1.0.184
Serde has started shipping precompiled binaries with no way to opt out
http://web.archive.org/web/20230818200737/https:/github.com/serde-rs/serde/issues/2538
Discussions: https://discu.eu/q/http://web.archive.org/web/20230818200737/https:/github.com/serde-rs/serde/issues/2538
Когда я открываю проекты спустя несколько месяцев то задаюсь вопросом, а какой идиот это написал? Ах, да. Это же был я...