I take my shitposts very seriously.

  • 39 Posts
  • 3.02K Comments
Joined 2 years ago
cake
Cake day: June 24th, 2023

help-circle
  • losing integration because “containerized”

    Bollocks. I’ve seen that many times with Flatpak (can’t speak for Snap), and every single time it was either because the packager failed to set up permissions or because the user messed with permissions that the application needed. Break off the tip of a screwdriver and it will no longer function as a screwdriver.

    And I know you’re talking out of your ass because AppImage isn’t even sandboxed.

    taking GBs of space

    That part is true and accurate, and for a very good reason: dependency pinning. System packages can break if they don’t have the correct versions of shared libraries. If a package requires a very old version of a library, and doesn’t link it statically or supply it with the package, it can misbehave, have missing features, or refuse to even start. Flatpak (and probably Snap too, can’t speak for it) solves that by letting the packager specify (pin) the exact version of a dependency. If five separate packages require five different versions of the GNOME application framework, then they will download five separate packages of the correct version. AppImage solves it by being monolithic: everything is packaged together into a single executable.




  • rtxn@lemmy.worldto196@lemmy.blahaj.zoneFood is literally rule
    link
    fedilink
    English
    arrow-up
    75
    arrow-down
    10
    ·
    2 days ago

    People for the last twelve thousand years: “Hunting and gathering cannot support the needs of a growing population. We should create a system where crops can be grown efficiently and in high quantities, and animals can be bred and raised. It will be labour-intensive and require specialized knowledge, skills, and equipment, it will lead to the economic stratification of society, but it’s the best way to not have most of our people starve to death.”

    One guy who recently read the Communist Manifesto (abridged version): “But food is literally free!”


  • rtxn@lemmy.worldto196@lemmy.blahaj.zoneSuffering is not rule
    link
    fedilink
    English
    arrow-up
    37
    arrow-down
    1
    ·
    edit-2
    2 days ago

    Regular or long-term use of over-the-counter painkillers will fuck up your liver and kidneys. Acetaminophen/paracetamol harms the liver, and ibuprofen and aspirin harm the kidneys.

    (edit) What I mean to say is, if you need pain medication several times a week to get through the day, talk to a real physician because there are likely more serious underlying issues, and destroying your body for temporary relief will not solve them. Don’t just pop the pill because an internet stranger says it’s okay.



  • Not at a loss. We still don’t know the prices of the new wave of hardware, but some Valve spokesperson has said that they wouldn’t subsidize the price of the hardware with future game sales. They’ve also said, when the Steam Deck was launched, that affordability was a massive factor in the design, and that some of the decisions to make that happen were “painful”.










  • Uh… kinda? Powershell has many POSIX aliases to cmdlets (equivalent to shell built-ins) of allegedly the same functionality. rmdir and rm are both aliases of Remove-Item, ls is Get-ChildItem, cd is Set-Location, cat is Get-Content, and so on.

    Of particular note is curl. Windows supplies the real CURL executable (System32/curl.exe), but in a Powershell 5 session, which is still the default on Windows 11 25H2, the curl alias shadows it. curl is an alias of the Invoke-WebRequest cmdlet, which is functionally a headless front-end for Internet Explorer unless the -UseBasicParsing switch is specified. But since IE is dead, if -UseBasicParsing is not specified, the cmdlet will always throw an error. Fucking genius, Microsoft.