Asparagus0098
@Asparagus0098@sh.itjust.works
- Comment on Steam Deck / Gaming News #17 1 week ago:
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.
- Comment on Steam Deck / Gaming News #17 1 week ago:
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.
- Comment on Apple blocks Fortnite's return to iPhone in US 3 weeks ago:
A lot of banking apps do work on grapheneos.
- Comment on How would I set up local DNS or DNS rewrite 2 months ago:
Do you actually need to move the admin ui off of port 80/443 if you are just forwarding ports? I don’t know too much about port forwarding since I use Tailscale because of CGNAT.
- Comment on How would I set up local DNS or DNS rewrite 2 months ago:
You don’t need 2 reverse proxies as others have said. What I did is just add a DNS rewrite entry on my adguardhome instance to point my domain.tld to the LAN IP of my reverse proxy.
- Comment on What host names do you use? 2 months ago:
I use some generic names.
Phone: phone Current Laptop: fedora Old laptop: laptop Router: openwrt
- Comment on Question about quadlets and kube play 2 months ago:
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 (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
orpod_name:port
. This functionality is disabled in the default network by default.
- Comment on Tailscale + public domain 2 months ago:
If you run adguard home it’s pretty easy. Just add a DNS rewrite to your local IP.
- Comment on Tailscale + public domain 2 months ago:
How are you running nginx and immich exactly? With containers or on the host?
- Comment on What RSS feeds are you subscribed to? 2 months ago:
Some feeds I follow
- Adventures in Linux and KDE: pointieststick.com/feed/
- F-Droid: f-droid.org/feed.xml
- GamingOnLinux: www.gamingonlinux.com/article_rss.php
- Project Zomboid: projectzomboid.com/blog/feed/
- This Week in KDE Apps blogs.kde.org/categories/…/index.xml
- This Week in Plasma: blogs.kde.org/categories/…/index.xml
- Comment on Could you explain to me why you like silent hill 1? (Spoilers) 3 months ago:
I just liked the atmosphere of the game and enjoyed it despite it’s flaws. I remember having to beat cybil with only melee because I had no ammo.
- Comment on What do you use for notes? 3 months ago:
Obsidian with syncthing for syncing between my phone and PC.
- Comment on What's the game you play when nothing else sounds good? 5 months ago:
Phigros
It’s a mobile rhythm game without ads and in-app purchases. It’s also completely offline so I don’t need an internet connection to play.
- Comment on Podman or rootless docker? 6 months ago:
Yeah quadlets are pretty cool. I have them organized into folders for each pod.
podman auto-update
is also another pretty nice feature. I don’t use the systemd timer for auto-update. Instead I just dopodman auto-update --dry-run
to check for updates and update my quadlet files and configs if any changes are required then I run the updates withpodman auto-update
. - Comment on Podman or rootless docker? 6 months ago:
podman-generate-systemd
is outdated. The currently supported way to run podman containers using systemd services would be Quadlet files. - Comment on Podman or rootless docker? 6 months ago:
Any reason why you use compose and not quadlets?