Immediately after switching the page, it will work with CSR.
Please reload your browser to see how it works.

Source:https://github.com/SoraKumo001/next-streaming

⬅️ Fedora change aims for 99% package reproducibility
barotalomey 35 daysReload
The real treasure was the friend I found along the way

https://github.com/keszybz/add-determinism


apatheticonion 35 daysReload
Another thing I'd love to see is more statically linked binaries. Something like Python, for instance, is a nightmare to install and work with

nimish 35 daysReload
As a user of fedora what does this actually get me? I mean I understand it for hermetic builds but why?

trod1234 35 daysReload
Can someone provide a brief clarification about build reproducibility in general?

The stated aim is that when you compile the same source, environment, and instructions the end result is bit identical.

There is, however; hardware specific optimizations that will naturally negate this stated aim, and I don't see how there's any way to avoid throwing out the baby with the bathwater.

I understand why having a reproducible build is needed on a lot of fronts, but the stated requirements don't seem to be in line with the realities.

At its most basic, there is hardware, where the hardware may advertise features it doesn't have, or doesn't perform the same instructions in the same way, and other nuances that break determinism as a property, and that naturally taints the entire stack since computers rely heavily on emergent design.

This is often hidden in layers of abstraction and/or may be separated into pieces that are architecture dependent vs independent (freestanding), but it remains there.

Most if not all of the beneficial properties of reproducible builds rely on the environment being limited to a deterministic scope, and the reality is manufacturers ensure these things remain in a stochastic scope.