Skip Navigation
cheerupcharlie cheerupcharlie @lemm.ee
Posts 2
Comments 8
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!
  • 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)

  • What's a quote that has stuck with you for your whole life?
  • Never complain about what you permit.

  • Liked Posts?
  • 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.

  • Liked Posts?
  • Done!

  • Lemmy Support @lemmy.ml cheerupcharlie @lemm.ee

    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.

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

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

    Save Button

  • Liked Posts?

    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.

    10
    Your best terminal aliases
  • 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'
    
  • Your best terminal aliases
  • 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
    }