European. Liberal. Insufferable green. History graduate. I never downvote opinions and I do not engage with people who downvote mine. Comments with vulgarity, or snark, or other low-effort content, will also be ignored.

  • 5 Posts
  • 810 Comments
Joined 2 years ago
cake
Cake day: June 16th, 2023

help-circle





  • This is going to trigger people who just forked out for “insanely expensive” gym memberships, but it’s obviously true.

    I can think of two caveats:

    • body-weight exercises are clearly healthier than pumping iron, but they will only get you toned, not jacked (personally I think being jacked is ugly as hell, but whatever)
    • presumably many gym-goers are there for the same reason that sociable people do all kinds of things in groups - because otherwise they would not find the motivation






  • As others have said, there are two discrete threat models.

    Turning off all the radios (pull out the SIM for good measure) is enough to block any proof of your geographic whereabouts. That absolutely includes wifi. Cell towers are yesterday’s news, geolocation is also done by wifi and GPS and your device will be sharing that with a bunch of third parties if you let it connect.

    But there’s a separate issue about what happens if you have to surrender the device. For this scenario, your choice will be between fighting the authorities over the encryption key or presenting a dummy device as your only one.



  • Leonardo DiCaprio. I get huge, cringy ‘imposter syndrome’ vibes from him

    Exact opposite feelings here, and I generally have a hard time suspending disbelief. I remember seeing The Basketball Diaries (this was before Titanic) and being blown away by his acting. I’d say this is a rare example of an actor being held back by good looks. A lot of folks have just not wanted to admit that this particular heartthrob has genuine talent. To contrast with, for example, Keanu, or Clooney.






  • its not difficult to pipe a file of packages into a shell loop to get the behavior as described

    It’s possible, but “not difficult” is a bit of a stretch. FWIW I’ve used this in the past, among other hacky solutions that don’t always work as expected:

    # Print packages installed from different origins.
    # Exclude standard Ubuntu repositories.
    
    grep -H '^Origin:' /var/lib/apt/lists/*Release | grep -v ' Ubuntu$' | sort -u \
    | while read -r line; do
        origin=${line#* }
        echo $origin:
        list=${line%%:*}
        sed -rn 's/^Package: (.*)$/\1/p' ${list%_*Release}*Packages | sort -u \
        | xargs -r dpkg -l 2>/dev/null | grep '^.i '
        echo
    done