An unofficial RSS feed for The MIRE/C³ blog, which doesn't provide one natively.
Subscribe to the feed in your RSS reader:
https://mire-blog-rss.val.run/feed
Rendering mermaid diagram...
| File | Type | Purpose |
|---|---|---|
feed.ts | HTTP | Serves the RSS feed at /feed and a landing page at / |
cron.ts | Interval | Runs daily to scrape and store new blog entries |
scraper.ts | Script | Fetches and parses blog entries from mire.cc/the-blog |
rss.ts | Script | Generates RSS 2.0 XML from stored entries |
main.ts | Script | One-time database schema initialization |
/ — Landing page with feed URL and links/feed or /rss — RSS 2.0 XML feed/source — Redirect to this val's source codeThe MIRE/C³ blog is a hand-rolled static site. The listing page renders each
post as an article.post-card containing:
p.post-date — e.g. 3 August 2026h2 > a — post title and link (/slug/)p.post-excerpt — excerpt text used as the item descriptionThe scraper uses Cheerio to parse these into structured entries and upserts them into SQLite keyed by slug. Note: the listing page loads older posts via JS, so only the server-rendered cards on the initial page are captured.