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

help-circle





  • 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.




  • At least in the default UI, it’s still not working right. It’s all treated as the title of the spoiler.

    Most clients require it as :

    :::spoiler Title that shows when collapsed
    The rest of the text that should be hidden in the collapsed part.
    
    More text that should be hidden.
    :::
    
    Title that shows when collapsed

    The rest of the text that should be hidden in the collapsed part.

    More text that should be hidden.