Compare commits

..

No commits in common. "0a3a56aba1a1941fe533572c64040220e16e658b" and "62e951abacf4f82c7453af01b8c54bdd0dd481e7" have entirely different histories.

4 changed files with 0 additions and 58 deletions

View File

@ -1,36 +0,0 @@
# Pro Toad and Superb Owl
```
(@)(@) {0,0} So I picked up a book in the
(~~~~) ./)_) middle of this epic fantasy series.
(>vv<) " " It's by this author who I heard
does really good sword and sorcery
\ stories, and I'm into that. Anyway
the story opens on a tragic, lonely noble lord,
last of his line, subject to disfigurement because
of the family curse and whatnot. But, get this, it
totally takes place in Old Germany during the rise
of the Nazi party!
```
```
(@)(@) {0,0} -- Hoo?
(~~~~) ./)_)
(>vv<) " "
```
```
(@)(@) {0,0} I was so disoriented that I looked it up,
(~~~~) ./)_) and there will eventually be a classic
(>vv<) " " fantasy storyline that interweaves with
the modern nazi storyline.
\
Which means eventually the hero is literally going ride
a dragon to Hitler's bunker and punch him in the face and
if there's one thing this world needs more of, it's mother
fucking dragons beating the shit out of nazis.
```

View File

@ -1,2 +0,0 @@
default: rss.sh
./rss.sh

View File

@ -1,11 +0,0 @@
<rss version="2.0"><channel><title>It's Pro Toad and Superb Owl</title>
<item><title>00004.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00004.md</link></item>
<item><title>00001.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00001.md</link></item>
<item><title>00005.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00005.md</link></item>
<item><title>00008.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00008.md</link></item>
<item><title>00009.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00009.md</link></item>
<item><title>00002.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00002.md</link></item>
<item><title>00006.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00006.md</link></item>
<item><title>00007.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00007.md</link></item>
<item><title>00003.md</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00003.md</link></item>
</channel></rss>

9
rss.sh
View File

@ -1,9 +0,0 @@
#bin/sh
echo "<rss version=\"2.0\"><channel><title>It's Pro Toad and Superb Owl</title>" > feed.xml
for f in $(find . -type f -iname '*.md' ! -name 'README.md' | sed 's/\.\///'); do
echo "<item><title>$f</title><link>https://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/$f</link></item>" >> feed.xml
done
echo '</channel></rss>' >> feed.xml