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
- Comic – Poorly Drawn Lines
- Diesel Sweeties webcomic by rstevens
- Garfield
- Pixie and Brutus
- Tokyo Threat Documentation Project
- Sinfest
- The Oatmeal - Comics, Quizzes, & Stories
- Three Panel Soul
- Writhe and Shine
- Does Not Play Well with Others
- GU Comics
- Megatokyo Comics
- Oglaf! -- Comics. Often dirty.
- Penny Arcade
- QC RSS
- Real Life Comics
- What If?
- xkcd.com
Images
News
- Azure service updates
- Breaking Science News | Sci-News.com
- Broke-Ass Stuart's Website
- n-gate.com
- Spaceflight Now
- Space News - Space, Astronomy, Space Exploration
- Web3 is going just great
- OpenBSD Journal
- What The Fuck Just Happened Today?
- Air Facts Journal
- TmoNews
People
- berthub.eu
- ASCII by Jason Scott
- BruceS
- Going Medieval
- honk
- inessential.com
- inks
- int10h.org - VileR's blog
- Ken Shirriff's blog
- kottke.org
- Lowering the Bar
- Molly White
- Neil Gaiman's Journal
- Random Thoughts
- SMBlog -- Steve Bellovin's Blog
- Solene's percent %
- Stonekettle Station
- Take
- That grumpy BSD guy
- The official website of Drew Wagar
- The Old New Thing
- TuM'Fatig
- Violet Blue: Exclusive Patreon Audio Feed
- Violet Blue ® | Open Source Sex
- 私信 まるです。
- Patrick Rothfuss – Blog
- Food. Booze. Internet. Japan.
- jwz
- Photographic Logbook
- PixelBits
- Tokyo Finds
- WIL WHEATON dot NET: in exile
Random
Technology
- Bad Sector Labs Blog
- Coding Horror
- Dr. Scott M. Baker
- Infovore
- Krebs on Security
- OpenBSD Webzine
- Panic Blog
- RC2014 – RC2014
- Schneier on Security
- The Bastard Operator From Hell
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})')