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

help-circle


  • space@lemmy.dbzer0.comto196@lemmy.blahaj.zoneSerious rule
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    4 months ago

    The post argues how jews occupied the land and are treating Palestinians poorly and the proposed solution is to ‘make every country safe for jews’ and ‘stop creating an ethnostate’. The past is past, you can’t undo all the things that already happened. The “ethnostate” already exists. Other countries stopping from being antisemitic won’t solve anything now. So what I understand is being proposed, between the lines, is for other countries to stop being antisemitic, so the Israelis can go to those other countries instead of their own and give the land back.


  • You could say the same thing about the US, it’s been under european occupation for 250 years.

    Most jews living in Israel were born there. Like it or not, that is their home now. They can’t go back to their country because they don’t have another one.

    What can be changed is only what they do from now on. The right thing is to make peace and make ammends with the Palestinian people. The wrong thing to do is the genocide they are doing right now.


  • Much better. SSDs and HDDs do monitor the health of the drives (and you can see many parameters through SMART), while pen drives and SD cards don’t.

    Of course, they have their limits which is why raid exists. File systems like ZFS are built on the premise that drives are unreliable. It’s up to you if you want that redundancy. The most important thing to not lose data is to have backups. Ideally at least 3 copies, 1 off site (e.g. on a cloud, or on a disk at some place other than your home).





  • I have a Surface Laptop 5 as my work laptop. I hate it with passion, it’s one of the worst laptops I ever used.

    Beyond the lack of IO (not even a fucking hdmi port) and the piss poor cooling, the USB C display isn’t connected to the integrated GPU, it uses a different display adapter that is so bad the mouse stutters on high res displays.

    The built-in display has a 3:2 aspect ratio. I wanted to use a lower resolution so I could disable scaling (having different scaled monitors is annoying to use), none of the “supported” lower resolutions are 3:2 and they all have ugly black bars.

    It has a touch screen, but the lid only opens about 120 degrees, making it completely useless.

    And it uses “special” locked down hardware that is very hostile to other operating systems like Linux.



  • While in this particular case I agree with you, I’ve noticed a frustrating trend that just keeps getting worse. On one hand, search engines are failing to adapt to content farms. On pretty much any topic, you will find these generic sites that have poorly written articles that are hard to distinguish from AI. Try searching for “best linux distro” to see what I mean. Even on programming topics, you will find many sites that simply copy the content from stackoverflow and github.

    On the other hand, people aren’t making websites and blogs anymore. More and more people are only using social media platforms, which aren’t being indexed by search engines. I hate seeing that so many discussions are now on Discord instead of forums. How many Twitter threads have you seen that should have been blog posts?






  • Containers are very useful because they isolate the application from the rest of your server.

    This solves a lot of problems: no dependency conflicts with your operating system, you can upgrade/downgrade any time you want, no state gets stored on your main system which makes resetting the application when it misbehaves as easy as deleting and recreating the container.

    Before containers, changing my host OS (e.g. because ZFS wasn’t properly supported on the distro I was using) meant reinstalling and configuring a lot of shit, which could take days. With docker, I can migrate in 1-2 hours… Just install docker on the new OS, copy over the files, docker compose up a few times and done. The only things left to setup are samba, ssh and a few cron jobs.