summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard-Qin-X <richard.qin.001@gmail.com>2026-09-10 00:39:27 +0800
committerRichard-Qin-X <richard.qin.001@gmail.com>2026-09-10 00:39:27 +0800
commit93e6d45bbd7849617264f817ff9e67e2dfe29fbc (patch)
tree3a0ef4cb928e430229a60357801735c7f7b47652
parentcafd54a65f4d576cebdb3c177fc77bbea6dbe289 (diff)
Track maintained Notes sources
-rw-r--r--.gitignore3
-rw-r--r--content/notes/_index.md9
-rw-r--r--content/notes/rss/index.md31
3 files changed, 40 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 03bf7cc..af1518a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,9 +12,6 @@
/content/journal/_index.md
/content/journal/2026/07/a-small-place-on-the-open-web/
/content/journal/2026/08/why-i-still-like-plain-text/
-/content/notes/_index.md
-/content/notes/rss/
-/content/notes/linux/
/content/projects/_index.md
/content/links/_index.md
/static/about.txt
diff --git a/content/notes/_index.md b/content/notes/_index.md
new file mode 100644
index 0000000..f7b6b8e
--- /dev/null
+++ b/content/notes/_index.md
@@ -0,0 +1,9 @@
+---
+title: "NOTES"
+lang: en
+url: "/notes/"
+description: "Topical documents maintained over time."
+license: CC-BY-SA-4.0
+---
+
+Long-lived references and working knowledge, organized by subject rather than publication date.
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.