Add first "reading list" OPML feeds

An exploratory addition, lets see if these work well before going further.
This commit is contained in:
JP Hastings-Spital 2023-10-24 08:08:46 +01:00
parent 8409fa07b3
commit d9547bfa3f
11 changed files with 103 additions and 0 deletions

View file

@ -121,3 +121,11 @@ date = ["date", "publishDate", "lastmod", ":git"]
[sitemap]
filename = 'sitemap.xml'
[mediaTypes]
[mediaTypes.'text/opml']
suffixes = ['opml']
[outputFormats]
[outputFormats.opml]
mediaType = 'text/opml'
baseName = 'feeds'

View file

@ -0,0 +1,9 @@
---
title: Curiosity
outputs:
- html
- rss
- opml
---
Feeds that inspire my curiosity about the world and the web.

View file

@ -0,0 +1,11 @@
---
title: DYNOMIGHT
summary: science and existential angst
feed:
rss: https://dynomight.net/feed
url: https://dynomight.net/
---
A collection of really enjoyable science-oriented essays, with a side of dry humour.
I found this site via an article on [whether there are personalities that are just better](https://dynomight.net/better-personalities/) that I really liked!

View file

@ -0,0 +1,9 @@
---
title: geolinks
summary:
feed:
rss: https://www.blogger.com/feeds/5239255427108769862/posts/default
url: http://geometrylinks.blogspot.com/
---
Regularly posted collection of links about geometry.

View file

@ -0,0 +1,7 @@
---
title: Naive Weekly
summary: Sunday postcards with links to the quiet, odd, and poetic web.
feed:
rss: https://www.naiveweekly.com/feed
url: https://www.naiveweekly.com/
---

View file

@ -0,0 +1,9 @@
---
title: webcurios
summary: a regular(-ish) newsletterblogtypething all about stuff on the internet that its author finds interesting and thinks you might too
feed:
rss: https://webcurios.co.uk/feed/
url: https://webcurios.co.uk
---
I _love_ this feed! So much interesting web-related joy — creativity, web art, little online digital gardens.

View file

@ -0,0 +1,9 @@
---
title: XXIIVV
summary: The Nataniev Library
feed:
rss: http://wiki.xxiivv.com/links/rss.xml
url: https://wiki.xxiivv.com/site/home.html
---
The RSS feed for the personal wiki of _Devine Lu Linvega_. This site is simple and mysterious — you must _explore_ it to find the interesting pieces of wisdom tucked away within it. I built my [memex](/memex) with this site in mind.

View file

@ -0,0 +1,9 @@
---
title: Web Comics
outputs:
- html
- rss
- opml
---
Web Comics I find amusing or interesting. These are where my use of RSS started (back in… 2005?), probably by reading [xkcd](./xkcd) if I remember correctly!

View file

@ -0,0 +1,9 @@
---
title: Questionable Content
summary: The Official QC RSS Feed
feed:
rss: https://www.questionablecontent.net/QCRSS.xml
url: http://www.questionablecontent.net
---
A cute and very wholesome speculative near-future webcomic I've been following for _years_.

View file

@ -0,0 +1,10 @@
---
title: xkcd.com
summary: A webcomic of romance and math humor.
feed:
rss: https://xkcd.com/rss.xml
url: https://xkcd.com/
date: 2005-09-31
---
Probably the oldest feed I've had in my inbox. Randall Monroe has been posting there since 2005 (I first subscribed in my first term at university, so the same rough timeframe). It's nerdy as hell, and I love it.

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<opml version="2.0">
<head>
<title>{{ .Title }} (reading lists byJP)</title>
<dateModified>{{ .Lastmod.Format "02 Jan 2006 15:04 MST" }}</dateModified>
<ownerId>https://www.byjp.me</ownerId>
</head>
<body>
{{ range .Pages -}}
<outline {{ if .Date }}created="{{ .Date.Format "02 Jan 2006 15:04 MST" }}" {{ end }}title="{{ .Title }}" text="{{ .Title }}" type="rss" xmlUrl="{{ .Params.feed.rss }}" htmlUrl="{{ .Params.feed.url }}" description="{{ .Summary }}"/>
{{ end }}
</body>
</opml>