@JubilantJaguar - eviltoast

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.

  • 26 Posts
  • 1.87K Comments
Joined 2 years ago
cake
Cake day: June 16th, 2023

help-circle










  • 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