From the river to the sea, Palestine will be free 🇵🇸

Admin of orcas.enjoying.yachts and web dev of nearly 2 decades.

  • 1 Post
  • 117 Comments
Joined 3 years ago
cake
Cake day: July 7th, 2023

help-circle
  • AI could replace CEOs. As soon as you throw that out there, all the CEOs are like “woah now, hold on, you’re taking it a bit too far…”

    AI is a rich asshole’s wet dream. An employee that will work 24/7, doesn’t require benefits or PTO, and can complete a task faster? They’re all in.

    I’m really not sure what kind of world they want but I see patterns:

    • A government that pushes anti-vaccine rhetoric and suggests unhealthy foods in unhealthy quantities
    • Zero worker protections
    • Largest prison population in the world
    • Ruining both food and education
    • Poisoning minds and social circles with infighting bullshit

    🤔 Seems like they want the poor class to either be enslaved or dead. They’re going to turn the US into Gaza. A captured audience that either works for peanuts and owns nothing, or dies off and is no longer a burden on the rich.











  • Go back to old consoles like I’ve been doing. I’m in the process of modding a PS2, and I’ve got a 3DS that is on Pretendo Network and has a fuckload of games installed on an SD card.

    Edit: forgot to mention that I also recently threw my old BD burner into an external case. So now I can archive stuff to DVD like we did back in the day. I’ve been really leaning into reviving old tech.


  • Having the guest WiFi off the VPN is smart. I hadn’t thought of that.

    I’ll be honest, I only just learned about MLO. Basically what I know is that it automatically switches bands based on needs, and iirc it can use multiple at once. I’ve found that our WiFi speeds on all devices have been faster, and devices that support WiFi 6 and 7 are super fast. I still run the standard 2.4 and 5ghz to swap over to, but the additional MLO SSID has been fun to experiment with. No specific use cases. Just have a lot of streaming and gaming devices that need the bandwidth.




  • I can’t remember exactly what I did but enabling autovacuum was one of the big ones. I’ll try to provide some info below:

    Walks through VACUUM and autovacuum - https://oneuptime.com/blog/post/2026-01-25-use-vacuum-analyze-postgresql/view

    How to see if autovacuum is already enabled (these are commands you’d run while in sql):

    SHOW autovacuum;

    View current settings:

    SELECT name, setting FROM pg_settings WHERE name LIKE '%autovacuum%';

    Monitor which tables need attention:

    SELECT schemaname, relname, n_dead_tup, n_live_tup 
    FROM pg_stat_user_tables 
    WHERE n_dead_tup > 1000 
    ORDER BY n_dead_tup DESC;
    

    I wish I had documented it at the time because info about this for Lemmy specifically is pretty lacking. I was in kind of a dire situation though because my disk space had filled up quickly and my system was struggling. A lot of what I did was basic PostgreSQL maintenance stuff, so you should be able to find some general guides for that.

    EDIT: I had Claude help me corral some optimization stuff into a PDF. This is along the lines of what I did to get my db back under control. Make sure to always backup first! https://u.orca.casa/1771250081