• 0 Posts
  • 6 Comments
Joined 1 month ago
cake
Cake day: August 26th, 2025

help-circle
  • The body is not designed to keep effort going at all costs. You will be informed when you have a cramp, because you should slow down and wait it out before continuing. The whole point of pain is to react to broken stuff, usually by stopping using it.

    It will however keep life going at all costs, sometimes digesting replaceable muscles into energy for non-replaceable elements. But it’s more about starvation resistance than about chasing. It could also be the case if we were a specie of static filter feeders

    A lot of the human body has been affected by long walks and runs, and we do have (well, not me in particular) over-average stamina developped presumably for hunting. It’s just the specific exemple of muscle digestion that I’m going after here

    this knowledge comes from, uh… idk :3




  • Hey so, is this a normal thing in meta analyses ?

    We identified 46 studies for inclusion in our analysis. Of these, 27 studies reported positive associations (significant links to NDDs), 9 showed null associations (no significant link), and 4 indicated negative associations (protective effects).

    27+9+4 is 40 I think ? What happened to the 6 other papers ? I’m always confused by the whole “we ignored half of the studies and we won’t tell you why”, if they can also ignore some of the 46 studies they selected, what does the 46 number mean ?



  • 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.