> Canonical isn’t making 6GB memory a hard requirement for Ubuntu 26.04. It will still install on machines that fall below the minimum requirement, but users will have to deal with slower performance.
I think we have quite different definition of "minimum requirement", then.
I think the author is too quick to dismiss the impact of the plugboard.
> IC attacks only the rotor settings [...] Once you’ve found the right rotors and positions, you can solve the plugboard separately using frequency analysis.
So two steps: first solve for rotor settings with IC analysis, then solve the plugboard.
But IC analysis can't find the solution, just propose a lot of candidates among which a human can spot the correct one by looking for intelligible German text. And how can you spot intelligible German text if some letters are swapped by the plugboard?
The choice of countries seems arbitrary. I thought the list was limited to EU nations, but Iceland and Norway are there. Then I thought it was EFTA countries, but Switzerland is missing. Then noted Belgium is also missing... I give up!
It wasn't actually that exact amount. It was "about 12 tons", and somebody did the 12000 kg / 29g calculation and used the answer with way too many significant digits. Probably the reporter trying to make the 12 ton number relatable.
(You might object that KitKats usually weigh 40g. So these were probably the new KitKat Icon F1 chocolates, which weigh exactly 29g.)
My brain went here too. I'm guessing that one box missed the truck (either it was damaged during loading or had a manufacturing defect), so a full shipment is 3 x 3 x 23 x 2000. So my SWAG:
The kind of meters we used to install 50 years ago would turn backwards if electricity flowed backwards.
So if you spent a week with the meter connected normally, then you swapped the input and output cables around for a week, the meter would be back at zero. Free electricity!
They used anti-tamper seals to make it more detectable, but there are ways around that sort of thing.
Apparently they stopped making the Developer Edition which came with Ubuntu in 2022-2023 (which was definitely cheaper by 100-200 bucks or so than the Windows version with exact same hardware, I recall the developer edition os discount very clearly)
Now the XPS line has fallen as well, as apparently even the SSD now gets soldered to the motherboard, no longer possible to service with basic tools really once it starts failing.
My old 2018-ish XPS has an M.2 slot and a battery that is relatively simple by modern standards to replace with some screwdrivers and careful handling (something I think is vital for a workhorse computer, as batteries 'decimate' in capacity within 2-3 years or so in my experience)
I don't even know what's left out there anymore among major makers...
when I have to look again, maybe framework... Been hearing about them for a bit now and they seem quite relevant to the discussion - haven't seen one live yet to be fair
It might sound easy to fix just a little detail that disturbs you and keep the rest as it is, but it's rarely feasible.
If we ban side effects from expressions, we must change the "for" syntax too, because the third "argument" currently is an expression. It should be a statement instead. Let's see...
for (int i=0; i<n; ++i) // old
for (int i=0; i<n; i+=1;) // new
What about the typical 2-variable loop?
for (int i=0,j=n; i<j; ++i,--j) // old
for (int i=0,j=n; i<j; {i+=1;j-=1;}) // maybe?
Or we simply forbid all this and force the increment and decrement in the body:
for (int i=0,j=n; i<j; ;) {
...
i+=1;
j-=1;
}
This is throwing the baby out with the bathwater!
And finally, if the third argument is a statement, would a break or continue be accepted there as well? A nested for? Sure, these are examples of abusing the syntax, but so is using x and ++x in the same expression.
My conclusion is that some constructs are so powerful that they can both simplify our code and make it unreadable. The choice how to use them is ours.
I think we have quite different definition of "minimum requirement", then.
reply