• 0 Posts
  • 26 Comments
Joined 2 months ago
cake
Cake day: May 1st, 2026

help-circle
  • Dunno how well it would work with kubernates internal networks, but my DNS is configured with different views for internal and external clients. So, when letsencrypt does a lookup, they get the external IP, but when an internal client looks up the same name, they get the internal IP. TLS is happy, because the certificate matches the name. I’m happy because it works even when the ISP is down.










  • So, I’m not particularly surprised that a bunch of rich psychopaths hang out together, virtually or IRL. I mean, we all find our tribe eventually.

    I’m not particularly surprised that a bunch of rich psychopaths hanging out together come up with schemes of mutual benefit. I’d be surprised if they didn’t.

    I’ve always thought of the Illuminati as a thing beyond that. Like, some kind of quasi-religious thing that transcends mere greed and grift. Maybe we’ve just reached the point in capitalism where oligarch collusion is indistinguishable from world domination, because enough of our governments have already ceded authority to their corporate overlords.


  • I started doing the One True Database method because I got worried that the high write count on all the little db’s was abusing a raspberry pi’s SD card. Moved them all to a bigger server with NVME and mirroring to a RAID.

    Not all the compose files make obvious how to reconfigure the db host. Homeassistant uses s a sqlite db built into the container, rather than a separate unit, but you can force it to use a remote db through its config file. May or may not be worth hiding db user/pass in a .env And sometimes there’s trouble restarting after power failure, depending on what order the database, pi, and various containers come back up.

    I also feel it’s worthwhile. I feel better being able to check on all the databases. Feel better not writing to the SD card so much. Feel better offloading those megabytes and cpu cycles from the little pi. It’s been fun snooping through database structures. There have been a couple times where I decided to query one of the ccontain databases directly, or cross from one project to another, and it’s easier (for me) to give a different user privileges to the database and query some deep bit of data than to figure out how to extract it from an API or frontend.

    I’m not even running that many services, but why would I want the overhead of 6 separate mysql instances when I could just have one?