I’m beautiful and tough like a diamond…or beef jerky in a ball gown.

  • 13 Posts
  • 120 Comments
Joined 4 months ago
cake
Cake day: July 15th, 2025

help-circle





  • This has been the push I’ve needed to pull the trigger on installing solar. My electric rates have gone from $0.09/KWh to $0.23/KWh in the last 5 years. Just got my bill after reducing as much as I could (my house is all electric sans the furnace). “Surely it’ll be under $100 this month,” I thought. Nope.

    I’ve got 800W of PV currently in an ad-hoc setup* but I’m putting together the plan for a 3.2 KW system that can auto switch between battery, PV, and grid without backfeeding. Minus the batteries, the whole setup is going to cost me about $7,000. (Batteries aren’t required and will be added later)

    Grid-tie is technically legal in my area, but the hoops you have to jump through are insane and there’s a high likelihood of being denied by the power company over the most bullshit of minutiae (seriously, they treat someone possibly feeding back 400 watts the same as if you were a MW-scale solar farm).

    *The ad-hoc setup is just 4x200W panels in a 2S2P config. I charge an Anker PowerStation from that and use it to power random stuff. It’s currently powering my server stack while charging from the panels. :)


  • Because:

    1. I’m not a lazy, smooth-brained rube.
    2. I’m not in the business of selling AI to lazy, smooth-brained rubes
    3. I have no stake in the supply chain nor do I stand to profit from those selling AI to lazy, smooth-brained rubes.

    Furthermore:

    1. I don’t trust “AI”. If I’m going to have to fact check it anyway, might as well just do it myself and earn the damn knowledge.
    2. AI does not work for me (or you). It works for the companies who are forcing it on you and sucking up your data.
    3. The energy costs and water requirements are mindbogglingly staggering
    4. I refuse to feed or ride any hype train
    5. It’s creating scarcity of things that could be put to better use (energy, water, computer components, land, talent, you name it).
    6. It’s not even AI. It’s just a dead-end bullshit generator






  • I’m about that same age but am so glad we’ve largely abandoned the “www” for websites.

    On my personal project website, I have a custom listener setup to redirect people to “aarp.org” if they enter it with “www” instead of just the base domain. 😆

    server {
        listen              443 ssl;
        http2		        on;
        server_name         www.mydomain.xyz;
    
        ssl_certificate     /etc/letsencrypt/live/mydomain.xyz/fullchain.pem;
        ssl_certificate_key /etc/letsencrypt/live/mydomain.xyz/privkey.pem;
        ssl_dhparam         /etc/nginx/conf.d/tls/shared/dhparam.pem;
        ssl_protocols       TLSv1.2 TLSv1.3;
        ssl_session_cache   shared:SSL:10m;
        ssl_session_timeout 15m;
      
        ...
        
        location ~* {
          return 301 https://aarp.org/;
        }
    }
    






  • I learned a long time ago to never install manufacturer printer drivers. Or, at least, never install them from the provided Setup.exe.

    They’ve always installed a bunch of bloatware (HP has always been the worst but other brands are just as bad).

    If you look in the setup folder, there’s usually the raw drivers you can install from Device Manager. If the driver package is just a single .exe file, you can usually unpack it with 7zip and get at its inner contents.

    If that fails, the system-included HP LaserJet 4200 PCL driver is about as close to a universal print driver as you can find lol.