• 5 Posts
  • 20 Comments
Joined 1 year ago
cake
Cake day: July 21st, 2023

help-circle
  • If you are looking for a way to find RSS/Atom feeds on sites you are interested in, but don’t list an RSS/Atom feed:

    Here is a Textise version and the original version of a Zapier article talking about how to get an RSS feed manually from (many) sites that don’t list one.

    I do this just because I like to and it takes but a few seconds to put through my QuiteRSS (GUI) or NewsReader (terminal based) feed reader apps.

    Here’s the basics from the article (the article itself lists more and more in depth).

    A shocking number of websites are built using WordPress—over 40% of destinations on the web. This means there’s a good chance that any website you visit is a WordPress site, and all of those sites offer RSS feeds that are easy to find.

    To find a WordPress RSS feed, simply add /feed to the end of the URL; e.g., https://justinpot.com/feed. I do this any time I visit a website that I’d like an RSS feed for—it almost always works.

    If it doesn’t work, here are a few tricks for finding RSS feeds on other sites.

    If a site is hosted on Tumblr, add /rss to the end of the URL. Like this: https://example.tumblr.com/rss

    If a site is hosted on Blogger, add feeds/posts/default to the end of the URL. Like this: example.blogspot.com/feeds/posts/default

    If a publication is hosted on Medium, add /feed/ before the publication’s name. So medium.com/example-site becomes medium.com/feed/example-site

    YouTube channel pages double as RSS feeds. Simply copy and paste the URL for the channel into your RSS reader. You can also find an OPML file for all of your subscriptions here.

    Find an RSS feed for any site by checking the source code…


  • Also why is there a generic Christian but then also Protestant, Catholic, and Orthodox? But then they just Muslim and not it’s different denominations? Why even have different denominations when you have the generic catch all and the Other category?

    There are kinds of Christian that don’t fall under Protestant, Catholic, and Orthodox by their own measure (which doesn’t care how the Big Three want to categorize them). Perhaps this was why? (Probably not.) Graph should have just lumped them all together as “Christian”.





  • I hate stuff like this, that thinks it’s being “cute”, or “cool”, or “clever”, or whatever as if the company and I have some sort of personal relationship and could just interact on this level. No, Ridiculous Company, you and I do not have any kind of relationship - and now we never will even try again for one, any time in the future. In fact, from now on every time I see your logo, I will remember your “cleverness” and imagine a room full of imposter marketers and imposter developers sitting in a plastic building full of foosball tables and needlessly-big vertical monitors being “clever” for each other while their stock goes further and further down the toilet.

    Or is that just me?





  • Buy less. Use less. Reward good pricing with your money. Spouse stopped buying favorite frozen sausages months ago because they went from $5 to $12. The other day noticed they are “on sale” for $5.25. Bought 2 and will continue buying them until they go back up. I’ve also started buying a lot of things on sale in bulk that will store awhile, so I can just walk by the ridiculous pricing until the next sale drops it again.








  • I hear this. I worked retail when I was a youngster, so I do my best to make retail workers’ jobs easier. That includes deliberately leaving my shopping carts in the parking lot cart stall outside after I use them. A few businesses have removed those now here so you “have to” return them to the building – so I instead leave my carts in the landscaping on the property (where they aren’t in the way of other cars but still have to be fetched). I figure:

    1. It does give someone a nice mental break to be able to go outside and get some fresh air once in awhile while still on the clock.

    2. It keeps someone employed. Stores here are replacing more and more checkout clerks with self-check machines, so a place that used to employ 20 people now needs maybe 4 or 5. So far they haven’t come up with that machine that will go fetch carts scattered over the parking lot.




  • I’m finding myself reevaluating my use of the internet, looking to find more meaningful things to spend my time on. I only miss one subreddit that I haven’t found here, but I’m also looking for specialty forums to interact on, as well. So maybe I will find that on one of those. (I don’t have the time to moderate a community here, so I’m not starting one).

    I’m also looking at my technology, where laptop technology is going these days (crap), and considering if I want to go back to the “good ole days” of just having a desktop machine.

    So, some good things, I think.



  • I was trying to save some steps by pushing 2x4s to the top of the entry railing, rather than walk them all up several stairs over and over, and one of the boards slipped back and smacked me in the eye. Gave me a huge black eye.

    “Best” was I had to endure coworkers gossiping and asking me over and over for the next several weeks if I really got the black eye in a fight (which makes no sense at all if you know/see me).

    (Edit: typo)



  • ThirdNerd@lemmy.worldtolinuxmemes@lemmy.worldjpeg-xl-meme.webp
    link
    fedilink
    English
    arrow-up
    16
    arrow-down
    3
    ·
    1 year ago

    Here’s my solution to WebP:

    #/bin/bash
    # -----------------------------------------------------------------------------
    # FILE PURPOSE AND NOTES:
    # Convert webp files to png in current directory
    #
    # -----------------------------------------------------------------------------
    
    echo "Convert Webp to Png"
    echo
    echo "Note this only works on webp files in the current directory:"
    echo "Right now, that is $(pwd)"
    echo
    read -p "Press any key to continue"
    echo
    
    for i in *.webp; do
      echo ".. Converting $i"
      ffmpeg -hide_banner -loglevel error -i "$i" "${i%%.*}.png"
    done
    
    echo
    echo "Here are the original webp and new png files now:"
    echo
    ls *.webp *.png
    echo
    echo "Ok to delete the webp files now? (Y/n)"
    read -p ": " ANSWER
    echo
    case $ANSWER in
      n|N)
        echo "Leaving webp files."
        ;;
      *)
        echo "Removing webp files.."
        rm -v *.webp
        ;;
    esac
    echo