• 0 Posts
  • 25 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle

  • The early Lenovo period W series were (imho) very good as well, still have my W500 series which is built like a tank. Survived years of college, years of lugging it around to customers and data centres and having somebody spill a full cup of coffee over it (yes, the drain holes do work!). It only required replacing of the monitor cable once, which was a pretty easy thing to do. Unfortunately the CCFL backlight has lost quite some luminance by now, but guess after 16 years that is to be expected. Can’t get myself to part from it though, so many memories attached to it.



  • Aganim@lemmy.worldtoTechnology@lemmy.world*deleted by creator*
    link
    fedilink
    English
    arrow-up
    12
    arrow-down
    5
    ·
    8 months ago

    I work with Linux on a daily basis, both as a server OS and a desktop OS. Unpopular observation perhaps, but I’ve yet to find a distro which provides a more stable desktop experience than Windows 11 does for me. I do enough Linux troubleshooting during the day, after work I just want something that works.




  • Aganim@lemmy.worldtoSelfhosted@lemmy.worldSelf Hosting Fail
    link
    fedilink
    English
    arrow-up
    3
    ·
    8 months ago

    Isn’t dendrite formation and the shorts they can cause a much bigger concern when dealing with old batteries that are being charged 24/7? Asking a genuine question here, so please don’t shoot me if I’m wrong. 🙂 I’d love to hear more about the most common failure modes and causes for li-po/ion batteries.








  • To each their own, after having had the ‘pleasure’ of maintaining a fleet of Macs I’m personally quite happy with Windows these days. I’m never touching anything running MacOS ever again, that bullshit OS almost made me want to practice my frisbee skills on more than one occasion. Stability issues galore, that stupid single menubar that changes depending on which window has focus, crap like ‘sudo rm somefile’ failing with a ‘not enough disk space remaining to remove file’ error message when the disk is full, and many many other issues that were such a pita to solve. MacOS feels like having to work with one hand tied behind your back and a hammer in the other. Never again.




  • That’s a trip down memory lane, I once (probably a decade ago by now) had to fix a website built by an unknown developer for a customer. Was wondering why I was missing all kinds of variable assignments, until the word ‘register_globals’ floated up from the depths of my mind. And indeed, they enabled that setting in .htaccess, which broke the website after PHP 5.4 did away with it permanently. But to defend the PHP developers a bit: they turned it off by default in 4.2, which came out in 2002, because they recognised it as a security vulnerability. You can debate if that setting should have sticked around for 13 more years, but at least it required a manual action to actually be able to use it from 4.3. Although I cannot help but wonder how many shared hosting companies turned it on just to prevent all kinds of sites from breaking of course.

    And yes, oh boy, the MySQL driver… That one wasn’t great as it didn’t support parameterization, but I guess at least the documentation for mysql_query was clear that any data in your query should be escaped with mysql_real_escape_string. To be fair, if you execute a query containing unescaped data with MySQLi or PDO directly you are going to get Bobby Table’d just as hard.