30p87
@30p87@feddit.org
- Comment on Jellyfin: why is the line two different colors? 10 minutes ago:
And red is right… maybe Weidel and Musk were correct, Hitler was actually a communist/socialist?
 - Comment on How often do you update software on your servers? 4 days ago:
Every day to once a week, depending on free time
 - Comment on perplexity pro 5 days ago:
Though, your intelligence seems not far from Eliza’s.
 - Comment on perplexity pro 5 days ago:
Pinged our admins in the Matrix
 - Comment on Planning to selfhost images and calendar in addition to HTTP(S) 5 days ago:
Can’t you just use Apache as a reverse proxy and configure it to proxy to Nextcloud?
 - Comment on [deleted] 6 days ago:
ZFS? I prefer ext4 on Lvm2.
 - Comment on Why do I need a domain to access my Funkwhale library but not SyncThing? 6 days ago:
But: Depending on your ISP, you may be able to get a free public (but not stable, and no rDNS) IPv4, or you already have an IPv6 range that can directly route to your router freely. And if you need a Domain, you can either rent one for ~5€/Year, or use a free Domain service (eg. ddns.net)
 - Comment on Where can I buy used computers, and are they on a discount now because of Windows 10 end of life? 1 week ago:
FB marketplace and alternatives.
 - Comment on So admins, hows your instances looking today? 1 week ago:
Perks of running bare metal at home, the service is never down (as long as I’m home)
 - Comment on Selfhosting Sunday! What's up? 2 weeks ago:
Gitlab and Nextcloud broke (cuz I ctrl+c’d the pacman hooks, oops), but some manual DB upgrades and rebooting fixed that. However, I can’t login into my synapse from anywhere, and can only use it with existing sessions for some reason.
Also, there’s searxng.30p87.de now :3
 - Comment on Why isn't Lemmy doing anything about issues where the propagandists/spammers can be seen spreading staged or AI-generated propaganda, such as "This is Gaza, Unfiltered"? 3 weeks ago:
 - Comment on [deleted] 3 weeks ago:
10’s where Alc, 20’s are Weed, LSD, Shrooms, maybe (5-Meo-)DMT…
 - Comment on SearXNG doesn't load the settings ... 4 weeks ago:
No, knowing literally “systemctl enable --now” and “journalctl -ru” is not even learning. The level of knowledge of the OS needed for running a native package vs a container is exactly the same.
 - Comment on [question] Help me access my local homeserver using a public domain name 4 weeks ago:
The obvious question: Do you want to access your server only from within your network or also from anywhere else?
 - Comment on SearXNG doesn't load the settings ... 4 weeks ago:
Love how all “just works”-app debugging is just debugging the overly complicated and annoying container/-engine.
 - Comment on Those who don't use dashboards, how are you managing your services? 4 weeks ago:
Arch packages. All services have systemd integration.
 - Comment on Zero-configuration TLS and password management best practices in MariaDB 11.8 5 weeks ago:
/var/run/postgresql is my eternal friend
 - Comment on Those who are hosting on bare metal: What is stopping you from using Containers or VM's? What are you self hosting? 5 weeks ago:
Exactly. Therefore, docker is not useful for those purposes to me, as using arch packages (or similar) is easier to fulfill my needs.
 - Comment on Those who are hosting on bare metal: What is stopping you from using Containers or VM's? What are you self hosting? 5 weeks ago:
One main server, with backup servers being very easy to get up and running, either by full-restoring the backup, or installing and restoring specific services. As everything’s backed up to a Hetzner Storage Box, I can always restore it (if I have my USB sticks with the keyfiles).
I don’t really see the need for multiple running hosts, apart from:
- Router
 - Workstation which has a 1070 in it, if I need a GPU for something. My 1U server only has space for a low profile and one slot GPU/HPC processor, and one of those would cost way more than its value over my old 1070 would be.
 
 - Comment on Those who are hosting on bare metal: What is stopping you from using Containers or VM's? What are you self hosting? 5 weeks ago:
That I’ve yet to see a containerization engine that actually makes things easier, especially once a service does fail or needs any amount of customization. I’ve two main services in docker, piped and webodm, both because I don’t have the time (read: am too lazy) to write a PKGBUILD. Yet, docker steals more time than maintaining a PKGBUILD, with random crashes (undebuggable, as the docker command just hangs when I try to start one specific container), containers don’t start properly after being updated/restarted by watchtower, and debugging any problem with piped is a chore, as logging in docker is the most random thing imagineable. With systemd, it’s in journalctl, or in /var/log if explicitly specified or obviously useful (eg. in multi-host nginx setups). With docker, it could be a logfile on the host, on the guest, or stdout. Or nothing, because, why log after all, when everything “just works”? (Yes, that’s a problem created by container maintainers, but one you can’t escape using docker. Or rather, in the time you have, you could more easily properly(!) install it bare metal) Also, if you want to use unix sockets to more closely manage permissions and prevent roleplaying a DHCP and DNS server for ports (by remembering which ports are used by which of the 25 or so services), you’ll either need to customize the container, or just use/write a PKGBUILD or similar for bare metal stuff.
Also, I need to host a python2.7 django 2.x or so webapp (yes, I’m rewriting it), which I do in a Debian 13 VM with Debian 9 and Debian 9 LTS repos, as it most closely resembles the original environment, and is the largest security risk in my setups, while being a public website. So into qemu it goes.
And, as I mentioned, either stuff is officially packaged by Arch, is in the AUR or I put it into the AUR.
 - Comment on Those who are hosting on bare metal: What is stopping you from using Containers or VM's? What are you self hosting? 5 weeks ago:
Considering I have a full backup, all services are Arch packages and all important data is on its own drive, I’m not concerned about anything
 - Comment on [deleted] 1 month ago:
Well, what did you do exactly?
 - Comment on [deleted] 1 month ago:
It can’t, as it’s only accessible in your local network, where your and your sister’s computers are in.
You need a public IPv4 and/or IPv6 address. Often, IPv6 addresses are already publicly accessible, but not supported by every device and ISP.
 - Comment on The Wikipedia page for the fediverse describes a  den of iniquity 1 month ago:
That section is just pure Ragebait lol
 - Comment on How to download Google Takeout zips? 1 month ago:
For .tgz files (compressed tar archives), you’ll need to decompress all the files into a single folder before importing. Then use the command immich-go upload from-google-photos /path/to/your/files.
 - Comment on Is there a self-hosted project that does base64 url decoding in a privacy respecting fashion? 1 month ago:
cut --helpandman cutcan teach you more than anyone here.But: “|” takes the output of the former command, and uses it as input for the latter. So it’s like copying the output of “echo […]”, executing “cut -d ‘/’ -f 6”, and pasting it into that. Then copy the output of “cut”, execute “base64 -d” and paste it there. Except the pipe (“|”) automates that on one line.
And yes, cut takes a string (so a list of characters, for example the url), split’s it at what -d specifies (eg. cut -d ‘/’ splits at “/”), so it now internally has a list of strings, “https:”, “”, “link.sfchronicle.com”, “external”, 41488169.38548", “aHR0cHM6Ly93d3cuaG90ZG9nYmlsbHMuY29tL2hhbWJ1cmdlci1tb2xkcy9idXJnZXItZG9nLW1vbGQ_c2lkPTY4MTNkMTljYzM0ZWJjZTE4NDA1ZGVjYSZzcz1QJnN0X3JpZD1udWxsJnV0bV9zb3VyY2U9bmV3c2xldHRlciZ1dG1fbWVkaXVtPWVtYWlsJnV0bV90ZXJtPWJyaWVmaW5nJnV0bV9jYW1wYWlnbj1zZmNfYml0ZWN1cmlvdXM” and “6813d19cc34ebce18405decaB7ef84e41”, and from that list outputs whatever is specified by -f (so eg. -f 6 means the 6th of those strings. And -f 2-3 means the 2nd to 3rd string. And -5 means everything up to and including the fifth, and 3- means everything after and including the third).
But all of that is explained better in the manpage (man cut). And the best way to learn is to just fuck around. So
echo “t es t str i n g, 1” | cut …and try various arguments. - Comment on What is the current state of Matrix? 1 month ago:
Tbh I had no issues with synapse.
The problems that persist: Very rare issues with decrypting (as I rarely encounter it, while being in encrypted chats with 150+ users, it’s not an issue for me), apart from after you changed clients, slow image loading (a bit annoying, but ok if you multitask anyway) and clients all having different feature sets (some of which you can also hackily make work in others).
 - Comment on There is no good reason why there is still homelessness and poverty 1 month ago:
It’s not a bug, it’s a feature.
 - Comment on There is no good reason why there is still homelessness and poverty 1 month ago:
Yes. Though capitalism/fascism is the reason, it’s not good.
 - Comment on as many human heartbeats happened between 1970 - 2025 as in the entire medieval age 1 month ago:
Heartbeats? Wizards be using anything but total number of people!