From 93e6d45bbd7849617264f817ff9e67e2dfe29fbc Mon Sep 17 00:00:00 2001 From: Richard-Qin-X Date: Thu, 10 Sep 2026 00:39:27 +0800 Subject: Track maintained Notes sources --- content/notes/rss/index.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 content/notes/rss/index.md (limited to 'content/notes/rss/index.md') diff --git a/content/notes/rss/index.md b/content/notes/rss/index.md new file mode 100644 index 0000000..8c5662b --- /dev/null +++ b/content/notes/rss/index.md @@ -0,0 +1,31 @@ +--- +title: "Reading RSS with Standard Tools" +slug: "rss" +lang: en +created: 2026-06-10 +updated: 2026-08-06 +description: "A short standalone note about inspecting RSS feeds." +license: CC-BY-SA-4.0 +--- + +RSS is an XML format for following updates without depending on a platform-specific timeline. A feed is just another URL, so it can be fetched, archived, and processed with ordinary tools. + +## Fetch a feed + +Use `curl` to save the response before inspecting it: + +```sh +curl -o feed.xml https://example.org/rss.xml +``` + +## Check the document + +An XML-aware tool can verify that the response is well formed: + +```sh +xmllint --noout feed.xml +``` + +## Keep the source URL + +Store the feed URL alongside any local automation. The URL is the durable identifier; a reader application is replaceable. -- cgit v1.2.3