Benefits of RSS? Where should I look for trustworthy feeds?
-
-
What benefits does RSS have over normal news sites?
Main benefit is that you don't have to visit websites to get the news. And once the news are on your client it is up to you to decide how to work with it. Filter ads from articles, or remove all articles with the word "orange" from your feed, let an AI add a summary at the top, automatically fetch the full version of the text (if it isn't already). RSS means you are in control of what and how you consume.
Are they more privacy-focused?
That depends on your client and configuration. Do you block/filter ads? Do you proxy images? Do you proxy the requests to the rss file?
What feeds would you recommend for a fellow Lemmy user?
This very drastically depends on the user. I have web comics, releases from GitHub, news, porn, tech/cooking/gaming blogs, general News, shopping alerts, my selfhosted change detection, YouTube feeds and more in there.
-
Wow that didnt i know. Any pictures of the mirror? Did you build it your own?
-
nice! I like this
-
I used an off-the-shelf one made by Vilros with my own already-owned Raspberry Pi. I'm not great at constructing stuff, ha.
-
My rss app combines 44 different news sites into one long feed. It replaced multiple apps and makes checking an assload of news very easy.
-
I used to read RSS feeds from Thunderbird a long time ago, but that required me to set them up again on every reinstallation and every device, so I eventually stopped doing that.
Nowadays I read RSS feeds on Mastodon. There's a service https://rss-parrot.net/ that converts any RSS feed into a fediverse account, so you get RSS feed updates into your feed along with everything else you follow there. Of course it would be even better if blogs and news sites just posted directly on the fediverse, but not all of them do.
-
I have a couple of hundred RSS feeds. It has worked well past 15+ years.
The internet comes to me rather than the other way around.
Some RSS feeds that are fun:
https://questionablecontent.net/ - very long running comic.
https://www.kevinandkell.com/ - one of the most consistent oldest webcomic.
Royal road also has RSS feed support.
-
I'd like to throw a bunch of web comics into my RSS reader so that I could get a steady drip of new comics every day or whatever. But I'd rather start from the beginning for most of them. Especially ones that follow some kind of story. Anyone know of any tools that would convert a long history of comics to an updating RSS feed but start at the beginning?
-
As all the others have said, its about convenience, being able to check just one place for news is nice.
As for feeds. If you feel like your day is too nice, too happy, try https://reliefweb.int/ it itself is an aggregate of news from many humanitarian organizations, which means the stuff that comes in can be a bit grim and miserable.
-
QC was such a fun ride... I encountered it pretty late in the story, then I got on par and I unfortunately dropped it, now it's hard to go back
I think it's the Star Trek of web comics: incredibly progressive, ethical dilemmas everywhere, starting it now is hard for many because of the early graphics!
The most amazing thing is how real its characters feel
-
For me, I saw very little benefit to RSS until I hosted fulltextrss. Most of the feeds I subscribed to, the RSS feed just gave you the headline, and made you load up the full website and all the ads to read the article. They don't really want you just skimming the good stuff and skipping the ads.
Fulltextrss basically loads in the full articles, pictures and all (if you so choose). It means I can read stories from all the sources I want, without really leaving my RSS reader.
-
This is what stops me from subscribing to a lot of web comics
-
Why not sort from oldest? Wouldn't that work well enough?
-
QC was such a fun ride…
It clearly had it's moments. There were some weirdly questionable strips. I'm not following it anymore since a few years but I'm happy to see it's still running.
-
If you're into watching YouTube: You can add channels as RSS into your reader. The latest 15 videos are offered via the feeds. All you need is the channel ID of the channel whose feed you want to access.
The channel ID is not visible anywhere on the page, but if you look at the DOM in the web browser via the developer console, you will find a meta entry
<link rel=“canonical” href=“https://www.youtube.com/channel/CHANNEL_ID%E2%80%9D>
in the<head>
, whereCHANNEL_ID
is the required ID. There are also websites that can be found quickly and easily using the appropriate keywords, which read out and return the ID associated with the provided handle.https://www.youtube.com/feeds/videos.xml?channel_id=CHANNEL_ID
If you have a lot of subscriptions, you can use Google Takeout at takeout.google.com and export the YouTube subscriptions as a CSV file. The CSV file contains the subscribed channels with their ID and title for you to parse into whatever format you need for your reader.
For Newsboat you can use this script on the Abos.csv from my Google Takeout archive:
while IFS="," read id url name; do feedURL="https://www.youtube.com/feeds/videos.xml?channel_id=%24%7Bid%7D" [ ! -z "${id}" ] && echo "$feedURL youtube videos \"~${name}\"" done < <(tail -n +2 Abos.csv) >> urls
-
That would work.. if the RSS feed had every post since the beginning.
-
Oh i totally understand that. Thats alright
-
I love RSS because of why everyone on this thread already stated but also because it removes me from commercial social media and I can avoid legacy media propaganda. Some sites don't have RSS enabled but you can always pay for scraping services or build your own scraper as well. FreshRSS has a built in scraper that is useful. I am running a few scrapers on top of the hundreds of feeds I have.
-
I know this is kinda tangential, but what apps do you guys use to read RSS feeds?