Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)I
Posts
1
Comments
65
Joined
11 mo. ago

  • This is new:

    https://github.com/dkorecko/PatchPanda

    Self-hostable Docker Compose stack update manager.

    And

    when you choose to update, PatchPanda edits compose/.env files and runs docker compose pull and docker compose up -d for the target stack. You can also view live log.

    Discovered in the latest Self Host Weekly:

    https://selfh.st/weekly/2025-11-28/

    I have not tried it myself tho.

  • The link seems to say Threads support is only available as an add-on and therefore not simple to use with containerised HASS. This would be true for any Threads antenna though.

  • That's good. There are also editors that can run it for you and highlight the issues whilst you type, neovim being one.

  • $() for me, to quote from

    https://www.shellcheck.net/wiki/SC2006

    Backtick command substitution `...` is legacy syntax with several issues.

    1. It has a series of undefined behaviors related to quoting in POSIX.
    2. It imposes a custom escaping mode with surprising results.
    3. It's exceptionally hard to nest.

    $(...) command substitution has none of these problems, and is therefore strongly encouraged.