• 0 Posts
  • 10 Comments
Joined 11 months ago
cake
Cake day: August 9th, 2023

help-circle


  • This may have been true historically but I’m not sure it still holds up. I switched to Linux Mint as my regular OS a while back and the only driver issue I’ve had was that the installer didnt properly install my wifi card’s proprietary driver (which was working during live boot from usb), so I had to tether to my phone to download the driver through the driver manager. It even installed Nvidia drivers just fine.

    It might still be an issue for more barebones or heavily customisable systems but I’m fairly certain nobody’s recommending people switch to Arch for their first Linux experience.







  • That’s because they’re not necessarily mutually exclusive. The function is being called twice so there’s no way to guarantee the result will be the same both times without knowing what it does under the hood.

    Consider a case where isalpha performs a coin flip, 50% chance each call to return true. The first call returns false so the first condition fails, then the second call returns true so the second condition fails; in 25% of cases neither code block executes.

    You could store the result of the first call in a local variable and reuse it if you really wanted to, but the smart solution is to either use if/else properly or switch to early returns instead.