He knows when you are sleeping. He knows when you're awake. He knows if you've been bad or good, so be good or he'll make you pay!
  • cheerupcharlie cheerupcharlie 1y ago 100%

    There's another one on I-71N near the Zoo! We always comment that out-of-towner's must wonder "What the hell is going on? Who the hell is that? Is that the guy who invented Cleveland?" (No, BTW. Everyone knows that is actually Moses Cleveland)

    2
  • What's a quote that has stuck with you for your whole life?
  • cheerupcharlie cheerupcharlie 1y ago 100%

    Never complain about what you permit.

    1
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearLE
    Jump
    Liked Posts?
  • cheerupcharlie cheerupcharlie 1y ago 100%

    That's what I've been doing. There is a desire to add the feature, however. I was just wondering if it existed in some fashion and I just hadn't found it.

    1
  • Liked Posts?
  • cheerupcharlie cheerupcharlie 1y ago 100%

    Done!

    3
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearLE
    Lemmy Support cheerupcharlie 1y ago 100%
    Liked Posts?

    cross-posted from: https://lemm.ee/post/791973 > One of the things I often used on Reddit was the ability to revisit my liked (or upvoted) posts. I used this as a way to later share things I found interesting or funny with people in the house. Is there a corollary on Lemmy? If so, I haven't found it yet.

    5
    2
    Liked Posts?
  • cheerupcharlie cheerupcharlie 1y ago 100%

    Lucky I checked first - it seems this may be in progress! https://github.com/LemmyNet/lemmy-ui/issues/1673

    6
  • Liked Posts?
  • cheerupcharlie cheerupcharlie 1y ago 100%

    Yeah, I've been using the "save" feature as a replacement when I remember.

    Save Button

    3
  • One of the things I often used on Reddit was the ability to revisit my liked (or upvoted) posts. I used this as a way to later share things I found interesting or funny with people in the house. Is there a corollary on Lemmy? If so, I haven't found it yet.

    43
    11
    Your best terminal aliases
  • cheerupcharlie cheerupcharlie 1y ago 100%

    I always set these because I've been burned too many times:

    Turn on interactive mode for dangerous commands

    alias cp='cp -iv'
    alias mv='mv -iv'
    alias rm='rm -iv'
    
    7
  • Your best terminal aliases
  • cheerupcharlie cheerupcharlie 1y ago 100%

    top memory users (mempigs)

    Show the top 10 current memory hogs

    ps aux  | awk '{print $6/1024 " MB\t\t" $11 " " $12}'  | sort -n | tail -10
    

    Alias it with:

    alias mempigs="ps aux | awk '{print \$6/1024 \" MB\t\t\" \$11 \" \" \$12}'  | sort -n | tail -10"
    
    1
  • Your best terminal aliases
  • cheerupcharlie cheerupcharlie 1y ago 100%

    I found a function version of this version somewhere. Same thing except it defaults to my local area but can be overridden if you specify a different zip code.

    weather() {
     if [ $(command -v curl) ]; then
       if ! (($#)); then
         curl wttr.in/44113
       else
         curl wttr.in/$1
       fi
     else
       echo "curl not installed. Aborting."
     fi
    }
    
    1