> the most influential political club during the French Revolution of 1789. The period of its political ascendancy includes the Reign of Terror, during which well over 10,000 people were put on trial and executed in France, many for "political crimes".
This is a pretty terrible misrepresentation of original sin. I see you managed to copy it straight out of the Wikipedia page and completely ignore the sentence before it:
> In Christian theology, original sin is the condition of sinfulness that all humans share, which they inherit from the the Fall of Adam and Eve.
> https://en.wikipedia.org/wiki/Original_sin
> Green Revolution techniques also heavily rely on agricultural machinery and chemical fertilizers, pesticides, herbicides, and defoliants; which, as of 2014, are derived from crude oil, making agriculture increasingly reliant on crude oil extraction.
I am extremely out of the loop, but I believe until somewhat recently it still used nix-daemon and the corresponding drv format, but it may have since been rewritten.
> "what I have is so valuable that other people want to take it!"
While I do agree this may apply somewhat to the original topic, your dig at suburbanites seems like a mischaracterization. Perhaps the upper/upper-middle classes feel this way. I would expect most other folks are primarily worried about being murdered during the event.
> FWIW JS does not have a similar capability so I can't add a note there
This example on MDN seems to indicate that you can, am I misunderstanding it?
const bigJSON = '{"gross_gdp": 12345678901234567890}';
const bigObj = JSON.parse(bigJSON, (key, value, context) => {
if (key === "gross_gdp") {
// Ignore the value because it has already lost precision
return BigInt(context.source);
}
return value;
});