Why not wait for a random bit flip to increment it?
int i = 0;
while (i != i + 1);
//i is now incremented
Why not wait for a random bit flip to increment it?
int i = 0;
while (i != i + 1);
//i is now incremented
Agreed, this seems more like a preference shaped by which layout you’re used to. That would make it somewhat generational as younger users wouldn’t be starting with the old layout, but some older users would also be affected if they started after the new layout became the default.
To add another anecdote, I’m Gen Z but started using Reddit 12 years ago. I prefer the old layout on desktop and even use mlmym to get a similar layout for Lemmy, but I prefer card layouts on mobile. I dislike the new layout due to what I would consider as excessive whitespace and the fact that it shows fewer comments by default, but I want to see image posts inline and use “Show Images” from RES for that.
I agree with the headphone jack, but the only Nexus with a microSD slot was first one, the Nexus One.
I haven’t tried it myself but LOOT has a native Linux version on Flathub. https://flathub.org/apps/io.github.loot.loot
There’s two display options, 2256x1504 60Hz without rounded coners and 2880x1920 120Hz with rounded corners.
Specs are identical to the Surface Pro 11 and Framework said they are using an existing panel so they might be using the same panel, which makes it cheaper to develop since M$ would have paid for the development.
I’ve had the opposite experience between Logitech and Razer, at least when it comes to mice. Every modern Logitech mouse I’ve had (3) has had the right and left click switches replaced as they started double clicking right after the warranty expired.
Logitech are actually using the wrong switches as they’re running them below their design voltage and is causing premature failure. I swapped them out with appropriately rated switches and they are still in service, now for much longer than the original switches.
When the failure started though I switched my main mouse to a Razer with optical switches and have had zero problems with the hardware. Software wise, Polychromatic + OpenRazer on Linux works better than Razer’s software on Windows. Razer’s software leaves a lot to be desired, but Logitech’s software is only marginally better.
I didn’t really dig too deep into it. It might be interesting to see what it actually compiles to.
From what I can remember result of i+1 would have to be stored before it can be compared thus it would be possible for i to experience a bit flip after the result of i+1 is stored.