• 0 Posts
  • 15 Comments
Joined 2 months ago
cake
Cake day: August 26th, 2025

help-circle




  • The old bugs will not send your ssh keys to an unknown network address. If they did, they would get patched or not published. These bugs are known in advance, they are not risks, they are issues. You can make a decision to use them or not, and then you’re set for 5 years. Like, they are both bugs, but they work out very differently if you want to rely on your system.

    The thing is that Fedora or Debian testing (and derivatives) bring the latest version fast-enough for the vast majority of people. They don’t make bugs last longer like Debian stable does. When an app is bugged for two weeks, you encounter the bug one month after Arch users, then you get the fix two weeks later. The total bugged time stays the same, but the risks of something really bad happening is much lower. The downside is being one or two month late, and most people don’t care about this kind of delay. (obviously when bugs are found, it can be much more than one or two months)


  • I mean, they distributed the xz attack, and then rolled it back when a debian sid user signaled it. This is just not a viable way to do things, especially if the number of users increases. You need a stronger testing policy before the update hits the users, you shouldn’t just assume everything can be fixed by further updates. Debian stable is a bit on the extreme side of that, but Debian testing or Fedora feel much more reasonable long term to me





  • They might disinherit you for being disrespectful? That’s insane. Did they threaten you to do that? If the relation is that bad I can understand why you would care. My parents would just think I’m being weird.

    I hadn’t thought about a DNA test, but I definitely don’t see how it could help me with my life. If it comes positive, nothing changes. If it comes negative, I don’t see the administration doing anything about it. They won’t even know you passed a test, even if they had procedures for these cases. You or your parents would need to bring up the issue in a legal procedure for the administration to consider it.

    What I mean is that if you have issues with your parents or tutors, knowing what they are exactly does not fix the issues by itself (surely there is a better angle to think about it?). I understand that you would think about it, but if you don’t like thinking about it, I think you usually don’t need to invest yourself into it. Like, you can keep the obsessive thought without worrying about it. And that will make it stop over time. I don’t know how much sense this makes, it made sense to me back then :shrug:






  • If you already have the correct version of the flatpak installed, you can try flatpak build-bundle.

    flatpak build-bundle LOCATION FILENAME NAME where

    • LOCATION is the path of the repo on disk. Run flatpak info -l org.kde.arianna, and copy the part before /app
    • FILENAME is the output file name, preferably .flatpak. Eg: arianna.flatpak
    • NAME is the name of the app, here org.kde.arianna

    The generated file can be installed with a double-click, or with flatpak install <file>

    This is the equivalent of an Android .apk. It contains the app but depends on a runtime. If you want to install it in a few years, odds are the runtime will no longer be available. You can backup the runtime the same way with the --runtime option.

    flatpak build-bundle --runtime LOCATION FILENAME NAME where

    • LOCATION same as earlier
    • FILENAME eg arianna-runtime.flatpak
    • NAME is the name of the runtime, which you can get with flatpak info --show-runtime org.kde.arianna

    This takes a while, for some reason. Maybe it’s compressing stuff?

    The runtime is installed the same way as the app: double click or flatpak install.


    Note: I only did this once, and not specifically on Arianna. Hope it works.