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/)AS
Posts
0
Comments
54
Joined
9 mo. ago

  • The Talos Principle: Gold Edition

    I remember back when I was a kid, playing these random games with my siblings and friends. I still remember some of those games like feeding frenzy, farm frenzy and big city adventure.

  • I actually use both in fish. I use aliases for some longer commands. For example I have la as an alias for eza -la --icons=auto --group-directories-first because I don't really want to see it every time I run la. I use abbreviations for some shorter commands. For example systemctl abbreviated to sys and systemctl --user abbreviated to sysu.

  • I ran a podman quadlet setup as a test some time ago. My setup was a little like this:

    • Create a pod if the app uses multiple containers
    • Create a seperate network for each app (an app is either a single container or multiple containers grouped in a pod)
    • Add the reverse proxy container to all networks
    • I don't expose any ports to the host unless necessary

    If you create a new network in podman you can access other containers and pods in the same network with their name like so container_name:port or pod_name:port. This functionality is disabled in the default network by default. This works at least in the newer versions last I tried, so I have no idea about older podman versions.

    For auto-updates just add this in your .container file under [Container] section:

     
        
    [Container]
    AutoUpdate=registry
    
    
      

    Now there's two main ways you can choose to update:

    1. Enable podman-auto-update.timer to enable periodic updates similar to watchtower
    2. Run podman auto-update manually
     bash
        
    # Check for updates
    podman auto-update --dry-run
    
    # Update containers
    podman auto-update
    
      
  • How are you running nginx and immich exactly? With containers or on the host?

    I don't know nixos that much but that looks like nixos configuration to me, so it's running on the host I assume?

  • Personally, I always use MusicBrainz Picard to tag any music I download, so it doesn't matter if what I downloaded has incomplete metadata.

    If I don't end up finding the correct release for metadata on MusicBrainz, then I just add it to the database myself (there's tools and scripts to make it easier to add digital releases).

  • I use Firefox as my main browser. I use the multi-account containers extension in Firefox to seperate my browsing activities. Brave is installed as a backup in case firefox fails me. I use TOR browser for searching for stuff that I don't want linked to me.

  • I'm going to guess that the make dependencies are installed explicitly and not as a dependency. You can check the if they are explicitly installed or not with the output from pacman -Qi packagename iirc. If it doesn't work then try pacman -Qii packagename.

    So does yay and/or pacman know that the things I am installing don't actually depend on the make dependencies?

    I'm pretty sure make dependencies aren't considered dependencies of the package you are installing.

  • Personally I don't really care too much about whether it's moral or not. I pirate when I feel like it and don't when I don't feel like it. I also pay for some things that I pirated before and enjoyed as long as it isn't too expensive.