• 0 Posts
  • 4 Comments
Joined 9 days ago
cake
Cake day: March 30th, 2026

help-circle
  • I don’t use such terms, but I’ll try a possible explanation: There is indeed a certain tendency. Articles are mostly written by speakers of that language. For example English articles by English-spreading editors tend to be influenced by western ideology. If you’d look at, I dunno, Russian Wikipedia, I’d assume it’s a similar situation.

    It’s known that there are indeed paid government agents editing Wikipedia. But even those that are not are influenced by the Zeitgeist, which itself is informed by state propaganda. So we don’t need to assume intentional malice.

    Ideally, people complaining about Wikipedia would have the time and skill to improve it. But that’s easier said than done.



  • At work I use kubernetes and quite like that (upgrading containers without downtime FTE), but I didn’t bother trying to set up the infrastructure myself. Some argue, it’s not with the efford for self hosting, I dunno.

    What I do like to use is Dockge, to keep docker but also keep your sanity. It even offers a single button for “docker compose pull”, which is great of you don’t have to many compose files / stacks. Combine with a simple shell script to batch pull/build all stacks in one go, plus some backup solution, and it’s actually nice to use and does all that I need. I love CLIs, but I’ve had situations where the GUI came in very handy.

    #! /bin/bash
    # note: this will update and START all dockge stacks, even if you stopped them before
    shopt -s nullglob
    for proj in /opt/dockge /opt/stacks/*/; do
      echo "> $proj"
      docker compose -f "$proj/compose.yaml" up --pull always --build --detach
      echo ""
    done