
postmarketOS?

Why would using metric cause someone not to understand fractions?

When it gets dark super early? Lame as fuck. Unless you’re talking about Arizona, fuck that.

More domains for the fraud denylist.

It’s mostly about performance. Caddy’s Go-based garbage collector starts to negatively impact performance at high load. It looks something like:
undefined
server { listen 443 ssl http2; server_name example.com; ssl_certificate /etc/nginx/ssl/fullchain.pem; ssl_certificate_key /etc/nginx/ssl/privkey.pem; location / { proxy_pass http://localhost:3000/; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } }

This is fucking evil. Animal agriculture must stop.

That’s the going rate for renting a room in someone’s house in my neck of the woods.

I’d sell all my things to just travel. Living in one place and being stuck in a routine is like a mental prison for me.

I hate high fructose too but doing this is just unnecessarily shitting on the poor.

Fuck me that movie was so stupid. I can’t believe I finished it (watching alone).

DST > ST

I’m also a developer and I’m really big on optimizing database queries and having the right data indexed. When I review others’ code I’m being “nitpicky” when I point out that an index is missing. When it comes to query optimization I’m often told “well there’s plenty of memory.”

I prefer nginx to Caddy myself for reverse proxies. As far as VPN technologies go, Tailscale and WireGuard are where it’s at.
Not sure why we’re comparing Caddy to Tailscale though.

I wonder how hard it would be to make this a screensaver. Obviously this is a C program but I’ve got no idea what formats screensavers use to begin with.

It’s always jarring to me just how ugly the “superwealthy” are. It’s like their blatant greed and disregard for others can’t be hidden however hard they might try.

This was my first thought except in Spanish where the verb actually exists (deshacer).

I hope this is actually effective. I’m not well-versed in Brazilian politics but the destruction of the Amazon year after year due to animal agriculture has been on my radar for a long time.

Interesting; I use Markdown all the time but have never thought about the backslash character. That’ll be tricky to remember since my Lemmy client doesn’t show the text field in a monospaced font (which would trigger “Markdown mode” in my brain).

Cooking vegan stir fry with hot chili oil
I spent the first ~18 years of life living in a food decreativity zone so I sometimes spoil myself on weeknights with the spiciest dishes.

How can I determine how much to contribute to charity to reduce US federal taxes?
I’m an American sick of being taxed by the dysfunctional US federal government and am looking for ways to reduce the amount paid as well as increase my contribution to society. I’m not looking to reduce state taxes.
How can I find out the amount I can donate to charities each year such that it reduces my federal taxes as much as possible for my income level?

What hostnames and/or IPv4, IPv6 ranges does AT&T use for RCS?
I have a complex Tailscale-based network setup that includes blocking all Google hostnames. Unfortunately RCS on iOS doesn’t work when sending photos.
I’d like to set up a Tailscale App Connector using hostnames, but if they’re using IP addresses I can work with those as well (subnet routing).
I’ve scoured AT&T’s website and App Privacy Report on iOS (which doesn’t show DNS names for Messages, Phone apps) but I do know they switched to Google as their RCS provider at one point.
Update: Resolved by allowlisting rcs-copper-us.googleapis.com
specifically, but I also added all of telephony.goog
to unblock rcs.telephony.goog
. A simple tcpdump
got me the DNS requests for those domains.

Why would a UTF-8 MySQL backup contain invalid UTF-8 characters?
I’ve been running into several problems with restoring MySQL backups. Namely, the backups come from an environment other than the one I’m working in and I’m forced to remove superuser commands contained in the backups.
The problem is when trying to remove those commands I’m constantly getting UTF-8 encoding errors because there are loads of invalid character sequences.
Why would MySQL encode a backup as UTF-8 if the data isn’t actually UTF-8? This feels like bad design to me.