Update wishlist
This commit is contained in:
parent
6d36a345a2
commit
05f03ac1f5
8 changed files with 37 additions and 27 deletions
Binary file not shown.
Before Width: | Height: | Size: 60 KiB |
|
@ -5,7 +5,7 @@
|
||||||
<title>askiiart.net blog</title>
|
<title>askiiart.net blog</title>
|
||||||
<description>The feed for askiiart.net but just the blog, I guess</description>
|
<description>The feed for askiiart.net but just the blog, I guess</description>
|
||||||
<link>https://askiiart.net/blog/</link>
|
<link>https://askiiart.net/blog/</link>
|
||||||
<lastBuildDate>Tue, 07 Nov 2023 14:26:56 +0000</lastBuildDate>
|
<lastBuildDate>Sun, 19 Nov 2023 23:10:34 +0000</lastBuildDate>
|
||||||
<item>
|
<item>
|
||||||
<title>Marlin Boot Animations</title>
|
<title>Marlin Boot Animations</title>
|
||||||
<link>https://askiiart.net/til/marlin-boot-animations.html</link>
|
<link>https://askiiart.net/til/marlin-boot-animations.html</link>
|
||||||
|
|
10
feed.xml
10
feed.xml
|
@ -5,15 +5,15 @@
|
||||||
<title>askiiart.net</title>
|
<title>askiiart.net</title>
|
||||||
<description>The feed for askiiart.net, I guess</description>
|
<description>The feed for askiiart.net, I guess</description>
|
||||||
<link>https://askiiart.net</link>
|
<link>https://askiiart.net</link>
|
||||||
<lastBuildDate>Tue, 07 Nov 2023 14:26:56 +0000</lastBuildDate>
|
<lastBuildDate>Sun, 19 Nov 2023 23:10:34 +0000</lastBuildDate>
|
||||||
<item>
|
|
||||||
<title>Marlin Boot Animations</title>
|
|
||||||
<link>https://askiiart.net/blog/marlin-boot-animations.html</link>
|
|
||||||
</item>
|
|
||||||
<item>
|
<item>
|
||||||
<title>My Stack</title>
|
<title>My Stack</title>
|
||||||
<link>https://askiiart.net/stack.html</link>
|
<link>https://askiiart.net/stack.html</link>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Marlin Boot Animations</title>
|
||||||
|
<link>https://askiiart.net/blog/marlin-boot-animations.html</link>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<title>Akkoma in Docker</title>
|
<title>Akkoma in Docker</title>
|
||||||
<link>https://askiiart.net/til/akkoma-in-docker.html</link>
|
<link>https://askiiart.net/til/akkoma-in-docker.html</link>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
# Currently missing description and pubDate
|
# Currently missing description and pubDate
|
||||||
# Based off https://en.wikipedia.org/wiki/RSS, particularly the example
|
# Based off https://en.wikipedia.org/wiki/RSS, particularly the example
|
||||||
printf "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<rss version=\"2.0\">\n\n<channel>\n <title>askiiart.net</title>\n <description>The feed for askiiart.net, I guess</description>\n <link>https://askiiart.net</link>\n <lastBuildDate>$(TZ='UTC' date --rfc-2822)</lastBuildDate>" >feed.xml
|
printf "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<rss version=\"2.0\">\n\n<channel>\n <title>askiiart.net</title>\n <description>The feed for askiiart.net, I guess</description>\n <link>https://askiiart.net</link>\n <lastBuildDate>$(TZ='UTC' date --rfc-2822)</lastBuildDate>" >feed.xml
|
||||||
find . -name "*.html" | while read -r item; do
|
find . -path ./error -prune -o -name '*.html' -print | while read -r item; do
|
||||||
# Skip template.html, wishlist.html, resume.html, and portfolio.html
|
# Skip template.html, wishlist.html, resume.html, and portfolio.html
|
||||||
if [[ ${item} == "./index.html" || ${item} == "./template.html" || ${item} == "./wishlist.html" || ${item} == "./resume.html" || ${item} == "./portfolio.html" ]]; then
|
if [[ ${item} == "./index.html" || ${item} == "./template.html" || ${item} == "./wishlist.html" || ${item} == "./resume.html" || ${item} == "./portfolio.html" ]]; then
|
||||||
continue
|
continue
|
||||||
|
|
|
@ -6,6 +6,5 @@ find . -name "*.md" | while read -r item; do
|
||||||
item="${item%.*}"
|
item="${item%.*}"
|
||||||
echo "Currently processing ${item}"
|
echo "Currently processing ${item}"
|
||||||
pandoc -f markdown-smart --data-dir . --template ${dir}/template.html -t html -o ${item}.html ${item}.md --metadata title="$(grep -m 1 -oP '(?<=^# ).*' ${item}.md | cat)"
|
pandoc -f markdown-smart --data-dir . --template ${dir}/template.html -t html -o ${item}.html ${item}.md --metadata title="$(grep -m 1 -oP '(?<=^# ).*' ${item}.md | cat)"
|
||||||
|
sed -i s/sourceCode\ /language-/g ${item}.html
|
||||||
done
|
done
|
||||||
|
|
||||||
find . \( ! -regex './md2html.sh' \) -type f | xargs sed -i 's/sourceCode /language-/g'
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<title>askiiart.net TIL</title>
|
<title>askiiart.net TIL</title>
|
||||||
<description>The feed for askiiart.net but just TIL, I guess</description>
|
<description>The feed for askiiart.net but just TIL, I guess</description>
|
||||||
<link>https://askiiart.net/til/</link>
|
<link>https://askiiart.net/til/</link>
|
||||||
<lastBuildDate>Tue, 07 Nov 2023 14:26:56 +0000</lastBuildDate>
|
<lastBuildDate>Sun, 19 Nov 2023 23:10:34 +0000</lastBuildDate>
|
||||||
<item>
|
<item>
|
||||||
<title>Akkoma in Docker</title>
|
<title>Akkoma in Docker</title>
|
||||||
<link>https://askiiart.net/til/akkoma-in-docker.html</link>
|
<link>https://askiiart.net/til/akkoma-in-docker.html</link>
|
||||||
|
|
|
@ -10,23 +10,29 @@
|
||||||
<body class="line-numbers">
|
<body class="line-numbers">
|
||||||
<h1 id="wishlist">Wishlist</h1>
|
<h1 id="wishlist">Wishlist</h1>
|
||||||
<ol type="1">
|
<ol type="1">
|
||||||
<li><a
|
<li><a href="https://store.steampowered.com/app/986130">Shadows
|
||||||
href="https://store.steampowered.com/app/1349230/5D_Chess_With_Multiverse_Time_Travel/">5D
|
of Doubt</a></li>
|
||||||
|
<li><a href="https://store.steampowered.com/app/1245620">Elden
|
||||||
|
Ring</a></li>
|
||||||
|
<li><a href="https://store.steampowered.com/app/1920780">Stray
|
||||||
|
Gods: The Roleplaying Musical</a></li>
|
||||||
|
<li><a href="https://store.steampowered.com/app/975370">Dwarf
|
||||||
|
Fortress</a></li>
|
||||||
|
<li><a href="https://store.steampowered.com/app/1227650">Bang-On
|
||||||
|
Balls: Chronicles</a> (bundle may be cheaper)</li>
|
||||||
|
<li><a href="https://store.steampowered.com/app/1313140">Cult of
|
||||||
|
the Lamb</a></li>
|
||||||
|
<li><a href="https://store.steampowered.com/app/3720">Evil
|
||||||
|
Genius</a></li>
|
||||||
|
<li><a href="https://store.steampowered.com/app/1349230">5D
|
||||||
Chess With Multiverse Time Travel</a></li>
|
Chess With Multiverse Time Travel</a></li>
|
||||||
<li><a
|
<li><a href="https://store.steampowered.com/app/3480">Peggle
|
||||||
href="https://store.steampowered.com/app/3480/Peggle_Deluxe/">Peggle
|
|
||||||
Deluxe</a></li>
|
Deluxe</a></li>
|
||||||
<li><a
|
<li><a
|
||||||
href="https://store.steampowered.com/app/1227650/BangOn_Balls_Chronicles/">Bang-On
|
href="https://store.steampowered.com/app/427520">Factorio</a></li>
|
||||||
Balls: Chronicles</a></li>
|
|
||||||
<li><a href="https://www.amazon.com/dp/0544668251">Thing
|
<li><a href="https://www.amazon.com/dp/0544668251">Thing
|
||||||
Explainer</a></li>
|
Explainer</a></li>
|
||||||
</ol>
|
</ol>
|
||||||
<figure>
|
|
||||||
<img src="/assets/wishlist/thing-explainer.png"
|
|
||||||
alt="Thing Explainer" />
|
|
||||||
<figcaption aria-hidden="true">Thing Explainer</figcaption>
|
|
||||||
</figure>
|
|
||||||
<script src="/prism.js"></script>
|
<script src="/prism.js"></script>
|
||||||
</body>
|
</body>
|
||||||
<footer>
|
<footer>
|
||||||
|
|
17
wishlist.md
17
wishlist.md
|
@ -1,8 +1,13 @@
|
||||||
# Wishlist
|
# Wishlist
|
||||||
|
|
||||||
1. [5D Chess With Multiverse Time Travel](https://store.steampowered.com/app/1349230/5D_Chess_With_Multiverse_Time_Travel/)
|
1. [Shadows of Doubt](https://store.steampowered.com/app/986130)
|
||||||
2. [Peggle Deluxe](https://store.steampowered.com/app/3480/Peggle_Deluxe/)
|
2. [Elden Ring](https://store.steampowered.com/app/1245620)
|
||||||
3. [Bang-On Balls: Chronicles](https://store.steampowered.com/app/1227650/BangOn_Balls_Chronicles/)
|
3. [Stray Gods: The Roleplaying Musical](https://store.steampowered.com/app/1920780)
|
||||||
4. [Thing Explainer](https://www.amazon.com/dp/0544668251)
|
4. [Dwarf Fortress](https://store.steampowered.com/app/975370)
|
||||||
|
5. [Bang-On Balls: Chronicles](https://store.steampowered.com/app/1227650) (bundle may be cheaper)
|
||||||
![Thing Explainer](/assets/wishlist/thing-explainer.png)
|
6. [Cult of the Lamb](https://store.steampowered.com/app/1313140)
|
||||||
|
7. [Evil Genius](https://store.steampowered.com/app/3720)
|
||||||
|
8. [5D Chess With Multiverse Time Travel](https://store.steampowered.com/app/1349230)
|
||||||
|
9. [Peggle Deluxe](https://store.steampowered.com/app/3480)
|
||||||
|
10. [Factorio](https://store.steampowered.com/app/427520)
|
||||||
|
11. [Thing Explainer](https://www.amazon.com/dp/0544668251)
|
||||||
|
|
Loading…
Reference in a new issue