Initial commit - but way too late.
Some checks failed
ci / site (push) Has been cancelled

This commit is contained in:
2026-02-10 00:22:18 -05:00
commit af112a713c
173 changed files with 27667 additions and 0 deletions

13
site/tests/fixtures/podcast-feed.xml vendored Normal file
View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>Irregular Mind</title>
<item>
<guid>ep-001</guid>
<title>Episode One</title>
<link>https://example.com/podcast/ep-001</link>
<pubDate>Tue, 10 Feb 2026 10:00:00 GMT</pubDate>
</item>
</channel>
</rss>

17
site/tests/fixtures/youtube-feed.xml vendored Normal file
View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>YouTube channel feed</title>
<entry>
<id>yt:video:abc123</id>
<title>Test Video One</title>
<published>2026-02-09T12:34:56+00:00</published>
<link rel="alternate" href="https://www.youtube.com/watch?v=abc123"/>
</entry>
<entry>
<id>yt:video:def456</id>
<title>Test Video Two</title>
<published>2026-02-08T10:00:00+00:00</published>
<link rel="alternate" href="https://www.youtube.com/watch?v=def456"/>
</entry>
</feed>

13
site/tests/fixtures/youtube-videos.json vendored Normal file
View File

@@ -0,0 +1,13 @@
{
"items": [
{
"id": "abc123",
"snippet": {
"title": "API Video One",
"publishedAt": "2026-02-09T12:34:56Z",
"thumbnails": { "high": { "url": "https://img.example.com/1.jpg" } }
},
"statistics": { "viewCount": "12345" }
}
]
}