• 0 Posts
  • 19 Comments
Joined 3 months ago
cake
Cake day: March 27th, 2024

help-circle
  • I was behind two cars on the freeway, one in lane 1 and one in lane 3. They both decided to merge into the center lane at the same time. I remember the sound distinctly because it was so different than I expected. It sounded like two large, empty cardboard boxes hitting each other. No screeching tires or glass breaking sound (both windshields and side windows broke, but remained intact). It was very unexciting.







  • Restic and Borg seem to be the current favorites, but I really like the power and flexibility of Duplicity. I like that I can push to a wide variety of back ends (I’m using the rsync), it can do synchronous or asynchronous encryptions and I like that it can do incremental with timed full backups. I don’t like that it keeps a local cache of index files.

    I back up to a Pi 0 with a big local disk and rsync the whole disk to another Pi at a relative’s house over tailscale. I’ve never needed the remote, but it’s there.

    I’ve had to do a single directory restore once and it was pretty easy. I was able to restore to a new directory and move only the files that I clobbered.




  • I learned recently that not everyone can see the fluorescent flicker. It’s unnerving and feels a bit like being buzzed on caffeine. It’s not so bad in the offices with indirect lighting. Also, cheap LED lights can flicker. I clung to my incandescent lights until they all burnt out.




  • I used to struggle to get to sleep and hated those who could do it anywhere. They’d say, “just clear your mind”, which wasn’t helpful. It could be other things, but I figured out that my mind was always busy, sometimes from stress, sometimes from excitement. For me, it’s extreme focus. Often, I’ll put my mind to work on a complicated problem I’m having at work or home. If I have nothing, my go to is to see how far I can get calculating the binary digits (1, 2, 4, 8, 16, 32, 64…) or the Fibonacci sequence in my head. I don’t get very far and I’m out.


  • I appreciate all the comments here, but consider another perspective. If there were a federal crime committed (I’m not following the news very closely) and a president can pardon before a trial is performed, then a pardon from Biden would be a total power move. Given that trump would probably either weasel out of the conviction or it would be a slap on the wrist fine, this puts Biden in a position of power over trump. This would also crush trump’s ego if not publicly, it would eat at him in private.





  • Old timer here! As many others replying to you indicate, Ctrl+C means SIGINT (interrupt running program). Many have offered the Ctrl+Shift+C, but back in my day, we used Shift+Insert (paste) and Ctrl+Insert (copy). They still work today, but Linux has 2 clipboard buffers and Shift+Insert works against the primary.

    As an aside, on Wayland, you can use wl-paste and wl-copy in your commands, so git clone "$(wl-paste)" will clone whatever repo you copied to your clipboard. I use this one all the time