Moar posts

This commit is contained in:
~lucidiot 2021-03-17 12:13:03 +00:00
parent fcb70080aa
commit 6a6704bf89
2 changed files with 135 additions and 0 deletions

118
feed.xml
View File

@ -165,5 +165,123 @@
<link>https://xfnw.tilde.institute/sandcats/feed.rss</link>
<description>An RSS feed from a tilde friend that I randomly stumbled upon a few weeks ago, probably on IRC or Mastodon. If you feel like you need some cute sandcat breaks in the middle of your tons of blogs in your feed reader, well there you have it!</description>
</item>
<item>
<title>Directory of directories of directories</title>
<pubDate>Sat, 13 Feb 2021 21:37:36 +0000</pubDate>
<guid isPermaLink="false">dirdirdir</guid>
<category domain="https://envs.net/~lucidiot/rsrsss/">OPML</category>
<link>https://envs.net/~lucidiot/rsrsss/opml/dirdirdir.opml</link>
<description><![CDATA[
I was looking at directories of RSS feeds because I wanted to find more original feeds that I might not find easily from just browsing my friends' blogs or the rest of my small corner of the internet, then I found a few pages that listed directories of RSS feeds, so I made a directory of those directories of RSS feed directories as an OPML file. Those aren't either OPML or RSS files so they use the <code>link</code> outline type which you will probably not be able to use unless you have an <a href="http://outliners.scripting.com/" target="_blank">outline editor</a>.
]]></description>
</item>
<item>
<title>BBC Weather</title>
<pubDate>Fri, 19 Feb 2021 08:15:59 +0000</pubDate>
<guid isPermaLink="false">bbc-weather</guid>
<category domain="https://envs.net/~lucidiot/rsrsss/">Feed</category>
<description><![CDATA[
<p>While I was looking for unusual RSS feeds, I stumbled upon a way to get weather RSS feeds from the <a href="https://bbc.com/weather" target="_blank">BBC Weather</a> service. If you open the page for a location, you will get a URL in this format:</p>
<pre><a href="https://www.bbc.com/weather/2644080" target="_blank">https://www.bbc.com/weather/<strong>2644080</strong></a></pre>
<p>Take this integer suffix, which is the ID of the location, and put it in one of these two URLs to get some RSS feeds:</p>
<ul>
<li>
3-day forecasts:
<a href="https://weather-broker-cdn.api.bbci.co.uk/en/forecast/rss/3day/2644080" target="_blank">
<code>https://weather-broker-cdn.api.bbci.co.uk/en/forecast/rss/3day/<strong>2644080</strong></code>
</a>
</li>
<li>
Latest observations:
<a href="https://weather-broker-cdn.api.bbci.co.uk/en/observation/rss/2644080" target="_blank">
<code>https://weather-broker-cdn.api.bbci.co.uk/en/observation/rss/<strong>2644080</strong></code>
</a>
</li>
</ul>
<p>This procedure is documented <a href="https://www.bbc.com/weather/about/17543675" target="_blank">exactly like so</a> on the BBC help pages!</p>
]]></description>
</item>
<item>
<title>fridaypostcard</title>
<pubDate>Sat, 27 Feb 2021 12:13:52 +0000</pubDate>
<guid isPermaLink="false">fridaypostcard</guid>
<category domain="https://envs.net/~lucidiot/rsrsss/">Feed</category>
<link>https://tilde.town/~lucidiot/fridaypostcard.xml</link>
<description><![CDATA[
This is one of my earliest attempts at a PSP-compatible RSS feed: a feed for the <code>#fridaypostcard</code> tradition on tilde.town's IRC channel, where every Friday you can post a link to an image with this tag and a cron job picks it up. This feed does not keep track of any history at all and is cleared on every Friday. Despite my attempts, most of the images in this feed cannot be displayed on a PSP. Most image links use Imgur, which requires HTTPS, and the PSP's RSS reader does not support HTTPS at all.
]]></description>
</item>
<item>
<title>WordPress feeds</title>
<pubDate>Wed, 17 Mar 2021 11:54:11 +0000</pubDate>
<guid isPermaLink="false">wordpress</guid>
<category domain="https://envs.net/~lucidiot/rsrsss/">Tip</category>
<link>https://wordpress.org/support/article/wordpress-feeds/</link>
<description><![CDATA[
<p>WordPress sites natively have support for RSS 1.0, RSS 2.0 and Atom feeds, and they have some docs to help you find them. Even if the website does not advertise them, you can try adding some URL parameters or changing some paths:</p>
<table>
<thead>
<tr>
<th>Feed type</th>
<th>URL parameters</th>
<th>URL rewriting</th>
</tr>
</thead>
<tbody>
<tr>
<td>All posts</td>
<td><code>/?feed=rss2</code></td>
<td><code>/feed/rss2/</code></td>
</tr>
<tr>
<td>All comments</td>
<td><code>/?feed=comments-rss2</code></td>
<td><code>/comments/feed/rss2/</code></td>
</tr>
<tr>
<td>Comments on a post</td>
<td><code>/?p=42&feed=rss2</code></td>
<td><code>/[post name]/feed/rss2/</code></td>
</tr>
<tr>
<td>In categories</td>
<td><code>/?cat=1,2,3&feed=rss2</code></td>
<td><code>/category/cat1,cat2,cat3/feed/rss2/</code></td>
</tr>
<tr>
<td>In tags</td>
<td><code>/?tag=tag1,tag2,tag3&feed=rss2</code></td>
<td><code>/tag/tag1,tag2,tag3/feed/rss2/</code></td>
</tr>
<tr>
<td>In all categories</td>
<td><code>/?cat=1+2+3&feed=rss2</code></td>
<td><code>/category/cat1+cat2+cat3/feed/rss2/</code></td>
</tr>
<tr>
<td>In tags</td>
<td><code>/?tag=tag1+tag2+tag3&feed=rss2</code></td>
<td><code>/tag/tag1+tag2+tag3/feed/rss2/</code></td>
</tr>
<tr>
<td>By author</td>
<td>Undocumented</td>
<td><code>/author/[name]/feed/rss2/</code></td>
</tr>
<tr>
<td>Search results</td>
<td><code>?s=[query]&feed=rss2</code></td>
<td>&mdash;</td>
</tr>
</tbody>
</table>
<p>Replace <code>rss2</code> with <code>atom</code> for an Atom feed, and with <code>rdf</code> for an RSS 1.0 feed.</p>
<p>I added a distinction between RSS 1.0 and RSS 2.0 in <a href="https://tilde.town/~lucidiot/itsb/" target="_blank">ITSB</a> and used it to provide more official feeds from the Antigua and Barbuda Department of Marine Services and Merchant Shipping Inspection and Investigation Division and the mongolian Air Accidents Investigation Bureau.</p>
]]></description>
</item>
</channel>
</rss>

17
opml/dirdirdir.opml Normal file
View File

@ -0,0 +1,17 @@
<?xml version="1.0"?>
<opml version="2.0">
<head>
<title>Directory of directories of RSS feed directories</title>
<dateCreated>Sat, 13 Feb 2021 21:32:20 +0000</dateCreated>
<dateModified>Sat, 13 Feb 2021 21:32:20 +0000</dateModified>
<ownerName>lucidiot</ownerName>
<ownerEmail>lucidiot@envs.net</ownerEmail>
<ownerId>https://tilde.town/~lucidiot/contact.html</ownerId>
<docs>http://dev.opml.org/spec2.html</docs>
</head>
<body>
<outline type="link" text="List of 75+ RSS feed Submission Sites List 2020" url="https://linkskorner.com/rss-feed-submissions-sites-list/" />
<outline type="link" text="List of Free english RSS feed directories" url="https://socialcompare.com/en/comparison/list-of-free-rss-feed-directories" />
<outline type="link" text="RSS Blog Directories" url="https://www.toprankblog.com/rss-blog-directories/" />
</body>
</opml>