Dear Lazyweb: Know any good RSS feeds?_

Support the Entertainment Community Fund.
🇺🇦 Resources to help support the people of Ukraine. 🇺🇦
March 25, 2022 @19:35

I browse the web a little differently than most. I vastly prefer the experience of reading feeds instead of relying on some algorithm and a pile of notifications to direct my attention. To facilitate this I funnel quite a lot of 'modern' content into an ever-growing pile of rage-written software to turn it into various RSS feeds that I can then plug into my reader ecosystem and enjoy at my leisure. Recently I found a RSS to news gateway from the creator of gmane called Gwene. I spent an evening looking at the list of groups, adding a few of the RSS feeds into my reader but there is no way I can take the time to look at all of them so that brings me to the ask! Below is a list of feeds I'm subscribed to, minus my bespoke Instagram, Twitter, Patreon, Tumblr, and YouTube feeds. If you think you know of some that I might like or that I'm just not subscribed to that you think I should be please let me know.

Current Feeds

Comics

Images

News

People

Random

Technology

Extra Credit

If you were wondering, I created the above list by exporting the feeds as an OPML from my reader and used a little bit of Python to create the markdown.

import xml.etree.ElementTree as ET
tree = ET.parse('tt-rss_admin_2022-03-25.opml')
root = tree.getroot()

for category in root.find('body').findall('outline'):
    for element in category.findall('outline'):
        url = element.get('htmlUrl') if element.get('htmlUrl') else element.get('xmlUrl')
        print(f'* [{element.get("text")}]({url})')
Comment via e-mail. Subscribe via RSS.