The thing with appimages is that they expect the developer to have full knowledge of what libraries need to be bundled with their app, which makes it difficult to make truly universal appimages. In flatpak you just select one of a set list of runtimes and add any additional dependencies on top of it. Flatpak also re-uses the files for each runtime in between the different apps that use it, which saves a lot of disk space.
renzev
Why not containerise everything? You need libreoffice? No problem, here is a docker or podman container.
Flatpak is basically GUI-optimized containers. It uses the same technology (namespaces) as docker and podman, just with some extra tools to make GUI-related things work properly. That's why flatpak apps don't use the system's gtk version -- they're running in a sandbox with a different rootfs. You can spawn a shell into the sandbox of a specific app with flatpak run --command=sh com.yourapp.YourApp
and poke around it if you want to.
Oh, what the fuck!?
TBH I wouldn't mind it that much. The whole point of flatpak is that the developer can do whatever demented satanic rituals they want inside of the sandbox, and it won't contaminate the rest of the system.
Thanks. Lemmy.world should get a bot going for this or something.
Sorry, but in my book, actions speak louder than words. And the actions here are very clear: they made a useful service that benefited people. They paid for it out of their pocket and suffered major inconveniences in their personal lives to keep the service operational and to uphold their ideals of transparency. It's a net positive contribution to the world, even if you account for the offensive/hurtful jokes they made along the way.
You can spend hours talking about what people should or should not have done. Critiquing others from your high horse is easy, but it gets you nowhere. As another example, take Lemmy's developers. You could go on for hours denouncing their tankie/authoritarian views, but it won't change the fact that they created an anti-authoritarian and censorship-resistant platform that benefits many people.
What I value personally is a consistent moral framework. What someone thinks on isolated issues or what kind of offensive humor they like is a lot less relevant to me. Do I disapprove of it? Yes. But do I condemn them for it? No. Because actions speak louder than words.
are also used by fringe organisations to push their ideologies and discuss wild conspiracy theories and plots.
Might Discord be, potentially, in some way related to the notorious hacker known as 4chan 🤣
It's probably good that a free and private email service might shut down because... they registered a few edgy domains that they no longer use? Wow
Thanks for sharing this. Never really used cockli that much, but still appreciate their service. Nothing makes the glowies seethe harder than a privacy-friendly email service, I hope it stays afloat. Donated!
A lot of "hardware raid" is just a separate controller doing software raid. I thought I lost access to a bunch of data when my raid controller died, before I realized that I could just plug the disks directly into the computer and mount them with mdadm. But yes, hardware raid seems a bit pointless nowadays.
It’s going to confuse everyday users
Call me a conspiracy theorist, but I believe this is the intention. I think big companies deliberately put in confusing and bad design to "test the waters" and see if people will still buy their products. It's the same with the apple mouse charging on the bottom, or why companies keep making their logos uglier with each iteration. It's a psy-op to condition the masses into accepting worse products without complaining.
If you're interested in another approach to containerizing GUI applications, also checkout out x11docker. It's a small independent project maintained by one guy, nothing big like flatpak, but also pretty cool. The name is actually a bit limiting -- it supports both docker and podman, and can run wayland apps as well. One of the coolest features, in my opinion, is the ability to run a separate X server inside every sandbox and forward individual windows to the "host" X server. That way you can prevent apps from spying on your keyboard or other apps' windows.