• 0 Posts
  • 27 Comments
Joined 2 years ago
cake
Cake day: June 10th, 2023

help-circle

  • Trying too hard to get a reaction by threatening to load Windows, the hardware hog? Way too low to even be believable.

    First thing that comes to mind with a thrifted laptop is that you need to use an older distro compiled for 32bit cpu. But honestly, modern laptops are cheap and the overall experience regardless of OS is that very old hardware is going to look bad by comparison with anything on a store shelf so unless you are familiar with Linux already and committed to rehab old hardware (e.g. for standalone use) then it probably isn’t worth your time.


  • That is not an ideal experience. However, hardware gremlins are not a universal experience either.

    Others have pointed out that getting a slightly older laptop to put Linux on can give the tinkerers time to get the key drivers working, and avoiding bleeding edge revisions of your distro can help.

    It is quite possible that my comfortable experience with Mint and Ubuntu over the years have been influenced by my low expectations of getting all the bells and whistles working the way they would in Windows. I like the software environment that typically comes on Linux and I don’t stress when Windows software (esp games) doesn’t work (though Steam makes a lot of games work anyway).

    I did have to spend more time getting the bios and fingerprint reader straightened out on my latest laptop (Dell Inspiron), but Google and blogs walked me through it and the only remaining problem is that sometimes when the fingerprint prompt times out I have to use the password until I reboot.








  • Stick with Windows. Microft will deliver paradigm shifts and you will have no say in the matter. They are already removing options for disabling Copilot, and for all the promised backward compatibility they are letting go of features that lots of old Windows software depended on, as they introduce features similar to ones in Linux. I cannot really fault them for all of these changes, but the difference is actually one of choice and privacy, and not really the one you seem to think it is.





  • Bash is always there, and bash scripts and snippets are precise. Describing gui manipulations when the GUI keeps changing is also quite hard… what if the person you are interacting with has a 2-yo system and you have the bleeding edge? Even knowing which menu the settings are in can be frustrating for the helper.

    Windows users (e.g. me at work) get grumpy when Microsoft starts changing the menu structure after keeping it consistent for 20 years and start thinking of powershell scripts to create consistency between our engineering workstations.


  • They are text files. If there is anything weird about them it is that they are indented with spaces and if you are inconsistent with indentation they won’t read into the yaml import function, but I can’t imagine why vim or nano would have a problem with opening them. Maybe the ones you were using were not actually yaml.





  • When you come across some Python code for something written 5 years ago and they used four contributed packages that the programmers have changed the API on three times since then, you want to set up a virtual environment that contains those specific versions so you can at least see how it worked at that time. A small part of this headache comes from Python itself mutating, but the bulk of the problem is the imported user-contributed packages that multiply the functionality of Python.

    To be sure, it would be nice if those programmers were all dedicated to updating their code, but with hundreds of thousands of packages that could be imported written by volunteers, you can’t afford to expect all of them them to stop innovating or even to continue maintaining past projects for your benefit.

    If you have the itch to fix something old so it works in the latest versions of everything, you have that option… but it is really hard to do that if you cannot see it working as it was designed to work when it was built.