30p87
@30p87@feddit.org
- Comment on SearXNG doesn't load the settings ... 4 days 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 days 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 days 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? 1 week ago:
Arch packages. All services have systemd integration.
- Comment on Zero-configuration TLS and password management best practices in MariaDB 11.8 2 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? 2 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? 2 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? 2 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? 2 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] 2 weeks ago:
Well, what did you do exactly?
- Comment on [deleted] 2 weeks 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 2 weeks ago:
That section is just pure Ragebait lol
- Comment on How to download Google Takeout zips? 3 weeks 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? 3 weeks ago:
cut --help
andman cut
can 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? 4 weeks 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 4 weeks ago:
It’s not a bug, it’s a feature.
- Comment on There is no good reason why there is still homelessness and poverty 4 weeks 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 4 weeks ago:
Heartbeats? Wizards be using anything but total number of people!
- Comment on [deleted] 5 weeks ago:
Which also shows one thing: Kids and teens want to watch it. So they will. And just as with substances as drugs, prohibition failed spectacularly. And just as with other drugs, education by school but especially parents is key. There’s no way around it, if you want to actually protect kids.
But actually, everything claiming to be ‘safety for children’ is just a way to push totalitarianism.
- Comment on [deleted] 1 month ago:
From the beginning, the goal was not building an actually decentralized social media, but building an unmoderated hellhole for extremism.
- Comment on Second set of eyes - DNS Nameservers 1 month ago:
I prefer the arch wiki as a source: wiki.archlinux.org/title/Certbot#Nginx
- Comment on Second set of eyes - DNS Nameservers 1 month ago:
Doesn’t certbot with the nginx plugin on the host just work?
- Comment on If AI “hallucinates,” doesn’t that make it more human than we admit? 1 month ago:
No. AI does not hallucinate, it just very often fails to produce garbage data that’s close enough to facts formulated in human language to be correct.
- Comment on This is very funny to me. 1 month ago:
Also, there’s a reason why Europe is called a fortress. And it’s not because fascism and totalitarianism is blocked out by any means, but instead humans in need.
- Comment on This is very funny to me. 1 month ago:
“Europe is very efficient at killing humans.”
- Comment on [deleted] 1 month ago:
Just… use Debian for servers. Using Ubuntu is like trying to use an amphibian car for street racing; it’s just not made and suitable anymore for that purpose at all.
- Comment on I have never seen the 😗 emoji used, but I have seen a TON of :3 2 months ago:
But why would I do 😗 when I can do 😘?
- Comment on The number of times a person mentions ChatGPT in a random conversation might work as a rule of thumb to measure her intelligence (inverse proportion, of course) 2 months ago:
The uncontacted indigenious tribes are the most intelligent, confirmed
- Comment on What is happening to Lemmy instances? 2 months ago:
Well it does make a significant difference for diagnosing; multiple being slow can mean they’re just (D)DOS’d (eg. by scrapers), and the unaffected use Anubis, know the user agents, blocked the IPs etc.; down could mean that the latest lemmy update had a bug and is crashing.
- Comment on What is happening to Lemmy instances? 2 months ago:
.dev is slow, but not down