• 0 Posts
  • 20 Comments
Joined 11 months ago
cake
Cake day: August 11th, 2024

help-circle






  • Personally, I’d start with his wikipedia page, and the pages for his books. The people you’re talking to are likely caught in the fascism algorithmic funnel and have only watched videos rather than reading themselves. So they probably don’t have a deeper understanding than what wikipedia provides. That’s part of the appeal of conspiracy theories, that they’re bite-sized talking points that fit neatly together inside even the smallest minds.

    I’m willing to bet there are people who have already done the work for you and picked apart the books, and there’s probably conspiracy theorists who have come up with stories for each of those points. And now we’re approaching the point of Branolini’s Law, “The amount of energy needed to refute bullshit is an order of magnitude bigger than that needed to produce it”

    Beyond the scope of your Q, but if I could offer some advice: Instead of arguing, ask interrogating questions, as though you trust them and you’re genuinely trying to understand all the contours. You’ll quickly find many holes in their weak foundation. Success is bringing some awareness to how weak their info is. It’s like asking someone to show you around their messy apartment and now they’re a little embarrassed, so hopefully they’ll clean up or stop talking about it.

    Honestly, though, I’d have those convos in person (and worryingly, i have). Algorithmic social media is not built for deep thought or meaningful discussions. IMO It’ll just suck up time and energy that can be better spent elsewhere.



  • If you have an old laptop sitting around, put a linux server or NAS distro on it and start tinkering. There can be a lot of analysis paralysis with this stuff. Sometimes it’s best to just try and fail and learn and try again. More likely you’ll try and succeed and realize other wants and needs and redo it a year later. I think that’s why it makes for a great hobby. Lots to learn and improve upon.

    Start small, on your local network. Maybe something like paperless-ngx: not very demanding of resources, and (I assume) easy to backup/migrate. You could see about putting it on truenas to get a sense of what that process is like. I personally like to keep a nas and server separate, then mount the nas on the server.

    I’ve found owncloud a bit complex and prefer dedicated solutions. For the seas, servarr apps come up a lot. Paperless ngx for docs. Immich (or ente) for photos/vid. If you’re just starting out, installing on linux and/or using docker is going to be your shortest path to success. proxmox or other VMs can complicate things if you’re not familiar.











  • I went a little overboard and wrote a one-liner to accurately answer this question

    history|cut -d " " -f 5|sort|uniq -c|sort -nr|head -5
    

    Note: history displays like this for me 20622 2023-02-18 16:41:23 ls I don’t know if that’s because I set HISTTIMEFORMAT='%F %T ' in .bashrc, or if it’s like that for everyone. If it’s different for you change -f 5 to target the command. Use -f 5-7 to include flags and arguments.

    My top 5 (since last install)

       2002 ls
       1296 cd
        455 hx
        427 g
        316 find
    

    g is an alias for gitui. When I include flags and arguments most of the top commands are aliases, often shortcuts to a project directory.

    Not to ramble, but after doing this I figured I should alias the longest, most-used commands (even aliasing ls to l could have saved 2002 keystrokes :P) So I wrote another one-liner to check for available single characters to alias with:

    for c in a b c d e f g h i j k l m n o p q r s t u v w x y z; do [[ ! $(command -v $c) ]] && echo $c; done
    

    In .bash_aliases I’ve added alias b='hx ${HOME}/.bash_aliases' to quickly edit aliases and alias r='source ${HOME}/.bashrc' to reload them.


  • I wanted something similar from a remote company I was working for. They were pretty good about fulfilling requests, but when I asked for a good kvm switch they said they had trouble in the past and instead recommended a usb hub that can toggle between machines. Then connect both machines to the same monitor and toggle the input. Not ideal, but low cost and functional. Might not suit your needs (would be annoying if you have to frequently toggle back and forth), but if you’re just trying to share your desk space between a work machine and personal, and the monitor input is easy to toggle, it’s worth considering.