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

  • Is sshd really not part of systemd?

    Yes, it's not a part of systemd. By running systemctl restart sshd you are just restarting the sshd systemd service. Systemd service files for things like ssh and transmission come with their respective packages.

    You can see what I mean here. The openssh-server package for Ubuntu comes with the sshd.service file.

  • AA? If you mean your friend then I'm not them.

    What I've learned playing rhythm games is that taking breaks is important. When I hit a wall, I just take a break from that game and come back to it later.

  • What have you been playing?!

    I'm playing through Celeste again. I only finished the main story when I played it before. I intend to finish chapter 8 and go through as much of the B/C sides as I can this time.

    I've also been playing Stardew Valley and another game called vivid/stasis. I really like the story in vivid/stasis so far because it's Sci-Fi, one of my favorite genres. There are some things that I don't enjoy about the game, like the puzzles and the boss songs having health bars (the songs are just too difficult for the current me to beat with a health bar). Thankfully I can just skip the puzzles with a guide and the boss songs using the autoplay accessibility option.

  • My bash prompt is just me copying the prompt I have set on fish.

     bash
        
    # Prompt
    green=$'\e[38;5;2m'
    bright_red=$'\e[38;5;9m'
    bright_green=$'\e[38;5;10m'
    reset=$'\e[0m'
    
    prompt_command()
    {
        local exit_status=$?
    
        if [[ $exit_status != 0 ]]; then
            exit_color=$bright_red
            exit_prompt=" [$exit_status]"
        else
            exit_color=$bright_green
            exit_prompt=""
        fi
    }
    
    PROMPT_COMMAND=prompt_command
    PS1='\[$green\]\w\[$exit_color\]$exit_prompt\n❯ \[$reset\]'
    
      

    I have a small issue with this prompt though. Sometimes the ❯ ends up turning white for some reason.

  • I'd like to add that you can setup desktop shortcuts pretty easily for Mullvad and TOR browser manual installs. For TOR browser simply run this after opening a terminal in the folder it was extracted to:

     
        
    ./start-tor-browser.desktop --register-app
    
    
      

    Same thing should work for mullvad.

  • I looked up when pasta became the default networking backend for rootless and it seems to have been with podman 5.0. I do remember using podman 5.x versions, so I was most likely using pasta.

    The reason why I seperated each app into their own network was indeed for security. The only container with access to all the networks is the reverse proxy.

  • Do you actually need to move the admin ui off of port 80/443 if you are just forwarding ports? I don't think you need to. That said I actually don't know much about port forwarding since I use Tailscale because of CGNAT.

    My understanding of port forwarding is that you are forwarding connections to your WAN IP/port to a LAN IP/port. Since the router admin ui is available only on LAN by default, you don't need to change it's port from 80/443.