refugee from lemmy.sdf.org

  • 0 Posts
  • 18 Comments
Joined 3 months ago
cake
Cake day: January 9th, 2026

help-circle


  • between 2AM and 6AM internet would start dropping packets like crazy

    about 20 years ago I was remotely troubleshooting a microwave connectivity problem that occurred at a clients workplace about 10pm each night. Lasted about an hour. There was no one at work then but data transfers between their server and the mothership would fail.

    One night the client went to the site at night to check an alarm and noticed there was a bobtail truck parked next to the building. The aero deflector attachment on its roof blocked line-of-sight with the tower, causing the problem. He asked the driver to nap at some other location in the parking lot and the problem went away.




  • When you do aliased commands, can they take arguments? Like to download a playlist with yt-dlp, could i do download-playlist [URL]?

    They don’t take arguments in the sense that functions do but in bash at least they are passed on as part of the expanded string. Pasted from bash:

    alias argtest='echo arg is'  
    argtest foo  
    arg is foo  
    

    So yes you could alias your yt-dlp commands and invoke the alias with the URL.




  • I’m honestly regularly shocked at how many people use Chrome on Linux.

    I generally prefer to run firefox (ESR) on my debian machines. But I regularly open a couple dozen tabs during a research session and sometimes FF eats eat all my RAM (16GB), then swap, then locks up the machine. If I catch the degradation before lockup sometimes I can kill enough tabs to recover. I had a few of those lockups last month before I got tired of it.

    So for now I’ve swapped back to chromium to get around that problem. Same behavior on my part, ~same extensions, but chromium’s RAM usage stays sane.




  • There is no claim or language that indicates it’s anything else.

    Agreed, the SSA itself is not making claims that mislead the public.

    Police however are prompted up by things like “protect and serve”

    I agree that’s a problem.

    a lot of other language/guidance/media to be portrayed as protectors, when that’s not necessarily the case.

    I don’t want to beat the dead horse, but IMO the public language/guidance/media discourse regarding the SSA is as misleading as “to protect and to serve”.

    If I were pushed I might say that the security part of social security is an implied guarantee that it will provide security of some kind. It does bolster financial security for many at the moment, but there is no guarantee it will do in the future.




  • No matter what plugin you find that supposedly will do the job, in my experience it is always a PITA that ends up involving a lot of programming.

    I had a good experience with jekyll’s wordpress->jekyll import tool. But see below.

    I would go for a database-less static site generator like Hugo

    Graybeard here, so it’s probably just braindamage specific to me, but I’ve found ruby dependency setup and troubleshooting to be extremely frustrating. Hard for me to wrap my head around.

    When jekyll is actually dead (right now it is “only mostly dead”) I’ll change to something that does not require ruby (eleventy?) or just go back to the nineties and do something barebones with gtml or whatever. Already playing with the latter.