• 10 Posts
  • 928 Comments
Joined 2 年前
cake
Cake day: 2023年6月12日

help-circle


  • BotzotomemesProcessing
    link
    fedilink
    arrow-up
    5
    ·
    3 天前

    I have entire conversations and then 5-30min later realize I had a conversation and panic because I can’t remember anything about it except that words were exchanged.







  • BotzotoBuy it for Life@slrpnk.netShower hose?
    link
    fedilink
    English
    arrow-up
    11
    ·
    4 天前

    Honestly, a real plumbing store.

    Brands we considered/bought during our remodel that I can also remember:

    • Brizo (Delta’s “luxury brand”)
    • Artos
    • California Faucets
    • Hansgrohe

    All of them are way, way nicer than the best thing you can find at a box store.

    We spent a ridiculous amount on plumbing fixtures though (kitchen and 2 bathrooms), so be prepared for sticker shock. BIFL is the tune I kept whistling though.


  • It seems like the only time I encounter this oddness is when some upstream docker image maintainer has done a weird with users (I once went 3 image levels up to figure out what happened).

    Or if I borrow a dockerfile and don’t strip out the “nonroot” user hacks that got popularized years ago.




  • BotzotoLinux@programming.devgrep + tree how?
    link
    fedilink
    arrow-up
    13
    ·
    edit-2
    6 天前

    grep -l will get you just the filenames

    tree --fromfile will read from stdin just fine

    So: grep -ril "foo bar" . | tree --fromfile -a should do the trick.

    Edit: removed -n from the grep incantation per below conversation.