Public
Remixed
Unofficial RSS feed for the MIRE/C³ blog (mire.cc/the-blog)
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.

📡 The MIRE/C³ Blog RSS Feed

An unofficial RSS feed for The MIRE/C³ blog, which doesn't provide one natively.

Usage

Subscribe to the feed in your RSS reader:

https://mire-blog-rss.val.run/feed

How it works

Rendering mermaid diagram...

Components

FileTypePurpose
feed.tsHTTPServes the RSS feed at /feed and a landing page at /
cron.tsIntervalRuns daily to scrape and store new blog entries
scraper.tsScriptFetches and parses blog entries from mire.cc/the-blog
rss.tsScriptGenerates RSS 2.0 XML from stored entries
main.tsScriptOne-time database schema initialization

Endpoints

  • / — Landing page with feed URL and links
  • /feed or /rss — RSS 2.0 XML feed
  • /source — Redirect to this val's source code

Scraper details

The 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 2026
  • h2 > a — post title and link (/slug/)
  • p.post-excerpt — excerpt text used as the item description

The 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.

Not affiliated with MIRE/C³