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

help-circle



  • This. Though I left Netflix because the only way family was watching it was via Roku device, and in the last 6 months you had a 2 in 3 chance the Netflix app would lock up on it and none of the “fixes” (reinstall, clear cache, etc., etc., etc., … ) did anything to help.

    Even worse, not only would the Netflix app lock itself up, it would lock up the entire Roku device so someone had to be dispatched to unplug, wait, replug the power on the Roku device to restart Roku.

    We have so much on the Roku that actually works (Hulu, etc) - why pay monthly for such a crappy app? Family complained for about 2 days and then forgot Netflix even exists.


  • Currently paying for YouTube ad-free, Netflix ad-free, and Hulu ad-free.

    YouTube’s algorithm seems intent on making me look elsewhere for content, as it suggests the same twenty things over and over again, despite the fact that I’ve watched half of them already and ignored the other half for months now. We only keep it because spouse wants it for YouTube music. Me? I’ve wandered off to piped and peertube, mostly.

    The Netflix app locks up and crashes the Roku at least once every movie. It used to do this just now and again, but recently it’s so bad I don’t even load it anymore and spouse is THIS CLOSE to being talked into just cancelling it.

    Hulu…? Well, it’s ok. I wish it still had a lot of the older stuff, as a lot of the newer stuff is just stupid and/or revolting. Because of the above, we’d probably keep this one and dump the others, based on price and what (mostly spouse) finds useful to watch.

    I’m actually checking out other things. Like Hoopla through the local library, eBooks, real books (the local library is free). Spouse and I have also learned to play several different card games, and sometimes we actually interact with each other instead of alpha-wave mind-bending into the electronic hallucination machine on the other side of the living room. We’re also exploring more outdoor activities, like hiking, birding, nature walks, team sports, and so on.

    Sometimes, a “bad” thing is just the right thing that needs to happen.





  • Sites that won’t load unless I them ad-berserker over my web browser I just don’t visit anymore. Seriously. There are a million bazillion web pages out there. The internet managed just fine with people posting pages of relevant links to other similar or recommended other websites back in the Day when Google didn’t even exist yet (I had one myself) and other curated web search sites like https://curlie.org/en (and I contributed link suggestions to the ones like this back then). The only thing we can’t do today that we could back then is run BBS sites for each other off our home land lines. I’m not so worried.

    Edit: typo



  • ThirdNerd@lemmy.worldtolinuxmemes@lemmy.worldjpeg-xl-meme.webp
    link
    fedilink
    English
    arrow-up
    19
    arrow-down
    5
    ·
    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