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/)KJ
Posts
0
Comments
59
Joined
2 yr. ago
  • I mostly agree with this. If you're asking for help on an Arch forum, I think it's fair to expect you know how your system is installed and configured. However, we know many use EndeavourOS (or Archinstall) to avoid having to configure their system. Forums provide free support; I think it's fair they get a say in what issues they don't want to deal with.

  • I love XCOM and have tried a few of those games. Into the Breach is one of my all-time favorites. It captures the thoughtful, turn-based decision-making of XCOM but admittedly lacks the base building, graphics, and most of the leveling up, to name a few things.

  • As others have said, Nextcloud for files/calendar and Tailscale for VPN is your answer.

    Nextcloud can be installed in several ways, one of which is Docker Compose. Docker Compose is flexible but requires learning a bit, although you can use it for most self-hosted software.

  • I agree with this, the issue may be the packages installed rather than the distro. For a more reliable experience, I like to:

    • Use Flatpak instead of the AUR where possible
    • Use built-in filesystems and avoid DKMS
  • I can share the script on GitHub if anyone is interested. Among other things, it converts funds to their value at the time of the transaction and adds additional transactions to reflect capital gains and losses. This allows Metabase to accurately report net worth over time.

  • I really want this too. Neither Actual nor Firefly III support stocks/funds (open issues for Actual and for Firefly III.

    I use GnuCash for my transactions, which I manually export from my accounts as QFX files. Although GnuCash has support for tracking fund values and generating reports, I do this with a custom Python script and Metabase instead.

  • We’ve integrated a new REST API and embedded web server directly into the pihole-FTL binary. This eliminates the need for lighttpd and PHP, reducing the installation footprint and boosting performance.

    Very nice!

    • Docker: You can practice on your main computer before complicating things with networking.
    • How to set up a reverse proxy: DNS, certificates, etc. I recommend Caddy.
    • Backups: If you use Docker Volumes, make sure you back those up too and test the backups.

    To self-host, you do not need to know how to code.

  • That's awesome! I do something similar using Home Assistant. I scan an NFC tag to set my TV to the right input, adjust the volume, change the receiver settings, run Sunshine on my computer for screen sharing, switch computer displays to just one, and start Steam. I wish I could get WoL to work too.

  • I host Caddy and Vaultwarden using Docker. The traffic into the reverse proxy, Caddy, works over port 443, not 1808 or 1443. Using the Caddyfile, you can tell Caddy which port to send the traffic over.

    Caddy docker-compose.yml

     docker
        
    services:
      caddy:
        ports:
          - "80:80"
          - "443:443"
    
      

    Caddyfile, although there are other ways to do this

     undefined
        
    *.example.com {
            @vaultwarden host vaultwarden.example.com
            handle @vaultwarden {
                    reverse_proxy :11808
            }
    
      

    Vaultwarden docker-compose.yml

     docker
        
    services:
      vaultwarden:
        ports:
          - 11808:80
    
      
  • Permanently Deleted

  • Good question, but you should definitely install both and try them out! Just in case you didn't know since you're new to Linux, you can install as many desktop environments as you want. You pick the one to use at the login screen. All your programs and files will still be there.

    To answer your question: I prefer Gnome because I find it simpler and less distracting, but I've since moved to i3, then Sway, and now Hyprland.

  • I think it's cool you're trying to find ways to get into this. If the goal is to learn, why not deploy the services on your laptop? They won't be available when the computer is off of course, but you would still get the full experience. Even a low-spec laptop will be better than a cheap VPS.