RSS Exploration

Tue Oct 10 2023

RSS: (really simple syndication) is a web feed that allows users and applications to access updates to websites in a standardized, computer-readable format.

Subscribing to RSS feeds can allow a user to keep track of many different websites in a single news aggregator, which constantly monitor sites for new content, removing the need for the user to manually check them.

Common use cases

Websites that do support RSS generally use it for:

Anatomy of an RSS document (single unit)

  • character denotes required fields

RSS documents are written in XML formatted plain text

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
 <title>RSS Title</title>
 <description>This is an example of an RSS feed</description>
 <link>http://www.example.com/main.html</link>
 <copyright>2020 Example.com All rights reserved</copyright>
 <lastBuildDate>Mon, 6 Sep 2010 00:01:00 +0000</lastBuildDate>
 <pubDate>Sun, 6 Sep 2009 16:20:00 +0000</pubDate>
 <ttl>1800</ttl>

 <item>
  <title>Example entry</title>
  <description>Here is some text containing an interesting description.</description>
  <link>http://www.example.com/blog/post/1</link>
  <guid isPermaLink="false">7bd204c6-1655-4c27-aeee-53f933c5395f</guid>
  <pubDate>Sun, 6 Sep 2009 16:20:00 +0000</pubDate>
 </item>

</channel>
</rss>

Current Usage

BitTorrent

This might be the coolest thing ever. I should definitely look into this idea/workflow more.

Email

There are some services (IFTTT, Zapier) that allow you to receive RSS updates straight to your email inbox.

Substack

You can find the RSS feed for your publication at https://your.substack.com/feed.

Replace “your” with the name of your Substack publication.

Example: https://hipcityreg.substack.com/feed

Youtube

RSS allows you to keep track of specific channels and get new videos they post sent to your RSS feed.

Github

Github creates an RSS feed for repos to provide updates about commits and new versions. This could be especially useful for the curated Github lists that point to content across the internet.

Deprecated Usage

[[RSS Feeds List]]