Restructure for animated gifs

Animated gifs can't go through the asset pipeline since they come out as
a single frame of the original animation. Previously, I had only a
couple of them and didn't have my assets structured very well. I had the
assets that needed to be passthrough copied alongside those that could
go through the pipeline. It wasn't bad since there weren't many
animations. I mapped just those to passthrough copy to go to a single
directory. This will become more fraught as I add more since there's
more opportunity for collisions. When mapping to an output directory, I
can't maintain the inner structure of that directory. The files are
flattened. I moved everything around, both to separate images that can
go through the pipeline from those which can't and to allow for a simple
passthrough copy that will maintain the directory structure so that each
blog post can have its own directory of passthrough copied animated gifs
in the build.
This commit is contained in:
Devon Campbell 2024-06-23 20:15:56 -04:00
commit ae0487886b
69 changed files with 122 additions and 115 deletions

View file

@ -21,15 +21,14 @@ module.exports = function(eleventyConfig) {
eleventyConfig.addPlugin(embedYouTube); eleventyConfig.addPlugin(embedYouTube);
eleventyConfig.addPlugin(pluginRss); eleventyConfig.addPlugin(pluginRss);
eleventyConfig.addPassthroughCopy({ "assets/css": "css" }); eleventyConfig.addPassthroughCopy("css");
eleventyConfig.addPassthroughCopy({ "assets/fonts": "fonts" }); eleventyConfig.addPassthroughCopy("fonts");
eleventyConfig.addPassthroughCopy({ "assets/images/*": "images" }); eleventyConfig.addPassthroughCopy("images/**/*.{gif,png,jpg,jpeg}");
eleventyConfig.addPassthroughCopy({ "assets/favicon": "/" }); eleventyConfig.addPassthroughCopy({ "favicon": "/" });
eleventyConfig.addPassthroughCopy({ eleventyConfig.addPassthroughCopy({
"node_modules/simpledotcss/simple.css": "css/simple.css", "node_modules/simpledotcss/simple.css": "css/simple.css",
}); });
eleventyConfig.addPassthroughCopy({ "src/robots.txt": "robots.txt" }); eleventyConfig.addPassthroughCopy({ "src/robots.txt": "robots.txt" });
eleventyConfig.addPassthroughCopy({ "assets/images/about/devon.lol-button-03.gif": "images/devon.lol-button-03.gif" });
eleventyConfig.addFilter("buildPageTitle", function(title) { eleventyConfig.addFilter("buildPageTitle", function(title) {
if (this.page.url === '/') { if (this.page.url === '/') {

View file

@ -1,16 +0,0 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" type="text/css"
href="style.css"/>
</head>
<body>
<h1>Generated from: http://www.cufonfonts.com</h1><br/>
<h1 style="font-family:'BitBold';font-weight:normal;font-size:42px">AaBbCcDdEeFfGgHhŞşIıİi Example</h1>
</body>
</html>

View file

@ -1,29 +1,40 @@
#!/bin/bash #!/bin/bash
check_existing_file() { check_existing_blog_file() {
if [ -e "$1/$2.md" ]; then if [ -e "src/blog/$1/index.md" ]; then
echo "Error: A file with the name '$2.md' already exists in the '$1' directory." echo "Error: A file with the name 'index.md' already exists in the 'src/blog/$1' directory."
exit 1 exit 1
fi fi
} }
read -p "Enter the title for the new blog post: " title check_existing_feed_file() {
if [ -e "src/feed/$1.md" ]; then
echo "Error: A file with the name '$1.md' already exists in the 'src/feed' directory."
exit 1
fi
}
if [ -n "$1" ]; then
title=$1
else
read -p "Enter the title for the new blog post: " title
fi
kebab_title=$(echo "$title" | tr '[:upper:]' '[:lower:]' | tr ' ' '-') kebab_title=$(echo "$title" | tr '[:upper:]' '[:lower:]' | tr ' ' '-')
check_existing_file "src/blog" "$kebab_title" check_existing_blog_file "$kebab_title"
check_existing_file "src/feed" "$kebab_title" check_existing_feed_file "$kebab_title"
# Create a new blog post file with the appropriate frontmatter and content mkdir -p "src/blog/$kebab_title"
echo "---" > "src/blog/$kebab_title.md" echo "---" > "src/blog/$kebab_title/index.md"
echo "title: $title" >> "src/blog/$kebab_title.md" echo "title: $title" >> "src/blog/$kebab_title/index.md"
echo "layout: article.njk" >> "src/blog/$kebab_title.md" echo "layout: article.njk" >> "src/blog/$kebab_title/index.md"
echo "date: git Last Modified" >> "src/blog/$kebab_title.md" echo "date: git Last Modified" >> "src/blog/$kebab_title/index.md"
echo "tags: post" >> "src/blog/$kebab_title.md" echo "tags: post" >> "src/blog/$kebab_title/index.md"
echo "excerpt: Placeholder text for excerpt" >> "src/blog/$kebab_title.md" echo "excerpt: Placeholder text for excerpt" >> "src/blog/$kebab_title/index.md"
echo "---" >> "src/blog/$kebab_title.md" echo "---" >> "src/blog/$kebab_title/index.md"
echo -e "\nThis is the content of the new blog post." >> "src/blog/$kebab_title.md" echo -e "\nThis is the content of the new blog post." >> "src/blog/$kebab_title/index.md"
# Create a new feed file with the appropriate frontmatter
echo "---" > "src/feed/$kebab_title.md" echo "---" > "src/feed/$kebab_title.md"
echo "title: $title" >> "src/feed/$kebab_title.md" echo "title: $title" >> "src/feed/$kebab_title.md"
echo "relativeUrl: /blog/$kebab_title" >> "src/feed/$kebab_title.md" echo "relativeUrl: /blog/$kebab_title" >> "src/feed/$kebab_title.md"
@ -32,4 +43,4 @@ echo "tags: feed" >> "src/feed/$kebab_title.md"
echo "---" >> "src/feed/$kebab_title.md" echo "---" >> "src/feed/$kebab_title.md"
echo -e "\nThis is the content of the new blog post." >> "src/feed/$kebab_title.md" echo -e "\nThis is the content of the new blog post." >> "src/feed/$kebab_title.md"
$EDITOR "src/blog/$kebab_title.md" $EDITOR "src/blog/$kebab_title/index.md"

View file

Before

Width:  |  Height:  |  Size: 8 KiB

After

Width:  |  Height:  |  Size: 8 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 7.2 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 716 B

After

Width:  |  Height:  |  Size: 716 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

View file

@ -0,0 +1,13 @@
# Run `vhs` from project root to get the correct output
Output assets/images/blog/outsourcing-my-memory-to-gum/script-discovery.gif
Set Shell "bash"
Set FontSize 32
Set Width 1100
Set Height 900
Type "npm run" Sleep 500ms Enter
Sleep 4s
Type "npm run start"
Sleep 3s

View file

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 153 KiB

After

Width:  |  Height:  |  Size: 153 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Before After
Before After

View file

@ -6,7 +6,7 @@ date: git Last Modified
This site exists because I got sick of what the web has become. I wanted to return to the web I remember from the late 90s and early 2000s, before every web site and every search results page were just trying to sell you something. I went searching to find if that web still existed. This site exists because I got sick of what the web has become. I wanted to return to the web I remember from the late 90s and early 2000s, before every web site and every search results page were just trying to sell you something. I went searching to find if that web still existed.
![Animation of Futurama character Professor Farnsworth saying "good news, everyone!"](./assets/images/about/good-news-everyone.gif) <img src="/images/about/good-news-everyone.gif" alt='Animation of Futurama character Professor Farnsworth saying "good news, everyone!"' />
[It does](/blog/the-old-web)! [It does](/blog/the-old-web)!
@ -24,8 +24,8 @@ You can follow me [on Mastodon](https://techhub.social/@RadDevon). I tend to be
If you want to link to my site, you can use these buttons! If you want to link to my site, you can use these buttons!
![A button with "Devon.Lol" in green text giving off a neon glow on top of a purple background with shapes on top of it in green, a lighter purple, pink, and blue. The background is inspired by the funky carpeting at the arcades of the 90s.](./assets/images/about/devon.lol-button-01.png) ![A button with "Devon.Lol" in green text giving off a neon glow on top of a purple background with shapes on top of it in green, a lighter purple, pink, and blue. The background is inspired by the funky carpeting at the arcades of the 90s.](./src/about/images/devon.lol-button-01.png)
![A button with a purple border and a character from Earthbound glowing green on top of a black background. To his right, "Devon.Lol" is written in pink and glows blue.](./assets/images/about/devon.lol-button-02.png) ![A button with a purple border and a character from Earthbound glowing green on top of a black background. To his right, "Devon.Lol" is written in pink and glows blue.](./src/about/images/devon.lol-button-02.png)
<img src="/images/devon.lol-button-03.gif" alt='A button resembling a dialog box from the SNES RPG Earthbound. "Devon.LoL" is written inside in white.' /> <img src="/images/about/devon.lol-button-03.gif" alt='A button resembling a dialog box from the SNES RPG Earthbound. "Devon.LoL" is written inside in white.' />
Feel free to skip the buttons too if you prefer. I personally prefer when links to other sites have some context, so text links are even better. Any link is appreciated. Feel free to skip the buttons too if you prefer. I personally prefer when links to other sites have some context, so text links are even better. Any link is appreciated.

View file

Before

Width:  |  Height:  |  Size: 2.6 MiB

After

Width:  |  Height:  |  Size: 2.6 MiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.7 MiB

After

Width:  |  Height:  |  Size: 1.7 MiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 2.4 MiB

After

Width:  |  Height:  |  Size: 2.4 MiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 2.3 MiB

After

Width:  |  Height:  |  Size: 2.3 MiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 2.2 MiB

After

Width:  |  Height:  |  Size: 2.2 MiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 3.1 MiB

After

Width:  |  Height:  |  Size: 3.1 MiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 2.5 MiB

After

Width:  |  Height:  |  Size: 2.5 MiB

Before After
Before After

View file

@ -1,7 +1,7 @@
--- ---
title: Covid Comfort Report Card, October, 2023 title: Covid Comfort Report Card, October, 2023
layout: article.njk layout: article.njk
date: git Last Modified date: 2023-10-22 # Revert to `git Last Modified` after next modification
tags: post tags: post
excerpt: If you travel as a Covid-cautious person, you'll find it more or less comfortable to exist in some cities based on a number of factors. Here's my roundup of the cities I've visited. excerpt: If you travel as a Covid-cautious person, you'll find it more or less comfortable to exist in some cities based on a number of factors. Here's my roundup of the cities I've visited.
--- ---
@ -16,7 +16,7 @@ I'll be looking at some subjective factors like my own experiences existing in t
## Braga, Portugal ## Braga, Portugal
![A pedestrian square in Braga, Portugal. It is a sunny day with blue skies. Two birds are flying off the left side of the photo. Mid-rise mixed use buildings line the right side of the photo. The square consist of a couple of raised beds of grass and rows of flowers — pink, orange, red, white, and purple. A pedestrian path runs down the middle of the beds and to the right, against the buildings. Trees are planted in the middle of the right portion of the walking path. Many people are walking and sitting around the square.](./assets/images/blog/covid-comfort-report-card-october-2023/braga.jpg) ![A pedestrian square in Braga, Portugal. It is a sunny day with blue skies. Two birds are flying off the left side of the photo. Mid-rise mixed use buildings line the right side of the photo. The square consist of a couple of raised beds of grass and rows of flowers — pink, orange, red, white, and purple. A pedestrian path runs down the middle of the beds and to the right, against the buildings. Trees are planted in the middle of the right portion of the walking path. Many people are walking and sitting around the square.](./src/blog/covid-comfort-report-card-october-2023/images/braga.jpg)
No one here was anything but nice to me. I never got a sideways glance and no one ever accosted me — at least, not in English! 😅 No one here was anything but nice to me. I never got a sideways glance and no one ever accosted me — at least, not in English! 😅
@ -24,7 +24,7 @@ I don't have per-city vaccination data on Portugal, but [86.1% of the country is
## Chicago, Illinois ## Chicago, Illinois
![The Chicago River lined with buildings on either side. The water is a greenish-blue with a maroon bridge crossing it and a boat that has just passed under the bridge, moving away from the camera. The sky is cloudy and overcast, with a bird flying just right of center. Two tall glass buildings are in the center of the photo in the distance.](./assets/images/blog/covid-comfort-report-card-october-2023/chicago.jpg) ![The Chicago River lined with buildings on either side. The water is a greenish-blue with a maroon bridge crossing it and a boat that has just passed under the bridge, moving away from the camera. The sky is cloudy and overcast, with a bird flying just right of center. Two tall glass buildings are in the center of the photo in the distance.](./src/blog/covid-comfort-report-card-october-2023/images/chicago.jpg)
Chicago is one of the friendliest US cities I've been to for the Covid-conscious. Masking is relatively common, especially on public transit. Lots of masking in the airport which is great to see. Chicago is one of the friendliest US cities I've been to for the Covid-conscious. Masking is relatively common, especially on public transit. Lots of masking in the airport which is great to see.
@ -32,13 +32,13 @@ Chicago is one of the friendliest US cities I've been to for the Covid-conscious
## Knoxville, Tennessee ## Knoxville, Tennessee
![A rendition of the Henley Street Bridge in Lego at a Lego convention in Knoxville, Tennessee](./assets/images/blog/covid-comfort-report-card-october-2023/knoxville.jpg) ![A rendition of the Henley Street Bridge in Lego at a Lego convention in Knoxville, Tennessee](./src/blog/covid-comfort-report-card-october-2023/images/knoxville.jpg)
The South maintains its reputation of being friendly… as long as you're exactly like them. In this case, that means that you are anti-vax and certainly not masked. I was accosted no less than three times in a few weeks in Knoxville while masked. If you're wearing a mask here, even in a crowded public area, you'll very likely be the only one. Moving around in downtown, I would see a handful of people in a given week who were also masked. The South maintains its reputation of being friendly… as long as you're exactly like them. In this case, that means that you are anti-vax and certainly not masked. I was accosted no less than three times in a few weeks in Knoxville while masked. If you're wearing a mask here, even in a crowded public area, you'll very likely be the only one. Moving around in downtown, I would see a handful of people in a given week who were also masked.
Knoxville has a site for Covid vaccination data… but unless there's something wrong with my browser or internet connection, that site is literally empty. I see boxes with labels where data should be, yet those boxes have no numbers in them. I thought the site was just broken and maybe I could [download Knoxville's data as a CSV](https://www.tn.gov/content/dam/tn/health/documents/cedep/novel-coronavirus/datasets/COVID_VACCINE_COUNTY_SUMMARY.CSV), but, again, unless there's a weird problem on my end, this link produces a CSV with only column headers and no actual data. Knoxville has a site for Covid vaccination data… but unless there's something wrong with my browser or internet connection, that site is literally empty. I see boxes with labels where data should be, yet those boxes have no numbers in them. I thought the site was just broken and maybe I could [download Knoxville's data as a CSV](https://www.tn.gov/content/dam/tn/health/documents/cedep/novel-coronavirus/datasets/COVID_VACCINE_COUNTY_SUMMARY.CSV), but, again, unless there's a weird problem on my end, this link produces a CSV with only column headers and no actual data.
![A Tennessee Covid vaccination data page with several boxes for data… but all of the boxes are empty.](./assets/images/blog/covid-comfort-report-card-october-2023/knoxville-tn-covid-vaccination-page.png) ![A Tennessee Covid vaccination data page with several boxes for data… but all of the boxes are empty.](./src/blog/covid-comfort-report-card-october-2023/images/knoxville-tn-covid-vaccination-page.png)
It's safe to assume this means the number is embarrassingly low — so low, in fact, Knoxville is willing to literally kill people by giving them insufficient information about whether or not they should visit in order to avoid sharing it. We can extrapolate from the [CDC's data on Tennessee as a whole](https://covid.cdc.gov/covid-data-tracker/#vaccinations_vacc-people-booster-percent-total): only 56.4% have received the full series and an abysmal 10.6% have received a bivalent booster. Maybe not worth killing people over — that problem will take care of itself — but certainly worth getting embarrassed over. It's safe to assume this means the number is embarrassingly low — so low, in fact, Knoxville is willing to literally kill people by giving them insufficient information about whether or not they should visit in order to avoid sharing it. We can extrapolate from the [CDC's data on Tennessee as a whole](https://covid.cdc.gov/covid-data-tracker/#vaccinations_vacc-people-booster-percent-total): only 56.4% have received the full series and an abysmal 10.6% have received a bivalent booster. Maybe not worth killing people over — that problem will take care of itself — but certainly worth getting embarrassed over.
@ -46,7 +46,7 @@ So, if your path happens to intersect with Knoxville and assuming you value your
## Milwaukee, Wisconsin ## Milwaukee, Wisconsin
![A photo of Lake Michigan in Milwaukee. The sky is bright blue with wispy clouds. The lake water is blue green and dominates the right side of the picture, but there is a small peninsula jutting out into it, covered with grass and trees. On the left side of the photo, a walking path runs along the lakefront. Several people are walking and running on the path. In the distance on the left side of the photo, you can see the city skyline.](./assets/images/blog/covid-comfort-report-card-october-2023/milwaukee.jpg) ![A photo of Lake Michigan in Milwaukee. The sky is bright blue with wispy clouds. The lake water is blue green and dominates the right side of the picture, but there is a small peninsula jutting out into it, covered with grass and trees. On the left side of the photo, a walking path runs along the lakefront. Several people are walking and running on the path. In the distance on the left side of the photo, you can see the city skyline.](./src/blog/covid-comfort-report-card-october-2023/images/milwaukee.jpg)
Milwaukee seemed generally accepting of masking. I was shouted at once out of a moving mini-van — a great way to be taken seriously when delivering medical advice. I didn't see many other people masking. Perhaps more than a town like Knoxville, but not by much. Comfort level in general was still much higher though. Milwaukee seemed generally accepting of masking. I was shouted at once out of a moving mini-van — a great way to be taken seriously when delivering medical advice. I didn't see many other people masking. Perhaps more than a town like Knoxville, but not by much. Comfort level in general was still much higher though.
@ -64,7 +64,7 @@ In a moment of weakness, I allowed myself to be convinced I should visit the Mal
I made my way through the mall. It was relatively uneventful. It was about like I thought it would be. I did think that, since it's the Mall of America, it would probably be packed to the brim with cool stores. Instead, it seems to be suffering like most malls, with lots of empty storefronts and stores that almost certainly couldn't have afforded the rent in the mall's heyday. Anti-vaxxers though can thrive in even the most downtrodden shopping mall. I made my way through the mall. It was relatively uneventful. It was about like I thought it would be. I did think that, since it's the Mall of America, it would probably be packed to the brim with cool stores. Instead, it seems to be suffering like most malls, with lots of empty storefronts and stores that almost certainly couldn't have afforded the rent in the mall's heyday. Anti-vaxxers though can thrive in even the most downtrodden shopping mall.
![The “Got Kilt?” storefront in the Mall of America in Minneapolis. A cardboard standup of a kilt-wearing man greets you at the entrance. Through the glass, you can see some Funkopops, several items of clothing, and a few plushies.](./assets/images/blog/covid-comfort-report-card-october-2023/minneapolis.jpg) ![The “Got Kilt?” storefront in the Mall of America in Minneapolis. A cardboard standup of a kilt-wearing man greets you at the entrance. Through the glass, you can see some Funkopops, several items of clothing, and a few plushies.](./src/blog/covid-comfort-report-card-october-2023/images/minneapolis.jpg)
I was walking through the mall, masked, minding my own business, when a man called out to me, "nice mask." I felt the corners of my mouth turned up. "A compliment! How nice," I though to myself, but this was a Trojan horse. Now that my guard was down, the guy dropped his bomb: "THE PANDEMIC IS OVER, YA KNOW!" It's the last time I ever drop my guard and expose my soft underbelly to a man wearing a camo t-shirt and a baseball cap to cover up a "business in the front" haircut while leaving his luscious "party in the back" exposed. I was walking through the mall, masked, minding my own business, when a man called out to me, "nice mask." I felt the corners of my mouth turned up. "A compliment! How nice," I though to myself, but this was a Trojan horse. Now that my guard was down, the guy dropped his bomb: "THE PANDEMIC IS OVER, YA KNOW!" It's the last time I ever drop my guard and expose my soft underbelly to a man wearing a camo t-shirt and a baseball cap to cover up a "business in the front" haircut while leaving his luscious "party in the back" exposed.
@ -76,7 +76,7 @@ If I had to guess, I'd say we're hovering around the 55% mark with some of the o
## Montreal, Quebec, Canada ## Montreal, Quebec, Canada
![A gray stone cathedral in Montreal, Quebec. Several people are walking in a pedestrian square in the foreground of the frame. Cars drive past the cathedral, just beyond the square. One of the cathedral's two towers (the one on the right side of the frame) has scaffolding built up on it. The sky is mostly overcast, but the light of the sun illuminates through the clouds behind that same tower.](./assets/images/blog/covid-comfort-report-card-october-2023/montreal.jpg) ![A gray stone cathedral in Montreal, Quebec. Several people are walking in a pedestrian square in the foreground of the frame. Cars drive past the cathedral, just beyond the square. One of the cathedral's two towers (the one on the right side of the frame) has scaffolding built up on it. The sky is mostly overcast, but the light of the sun illuminates through the clouds behind that same tower.](./src/blog/covid-comfort-report-card-october-2023/images/montreal.jpg)
Montreal was lovely and everyone there was lovely to me. No one blinked twice at my mask, and if they delivered any Minneapolis-style sick burns, they were in a language I did not understand. Montreal was lovely and everyone there was lovely to me. No one blinked twice at my mask, and if they delivered any Minneapolis-style sick burns, they were in a language I did not understand.
@ -86,7 +86,7 @@ What I can see though is that the adult age grouping that surely represents a la
## Philadelphia, Pennsylvania ## Philadelphia, Pennsylvania
![Looking down Elfreth's Alley, a historic street in Philadelphia, Pennsylvania. The sky is bright blue with wispy clouds. The center of the street is cobblestones, and to either side of the stones, the street is brick. The cobbled section is lined with red bollards. The street is narrow and lined with early American homes on either side. The homes are all red brick, some with off-white (yellow-ish) wooden trim. The first home on the left has a green door and a bicentennial flag on a pole.](./assets/images/blog/covid-comfort-report-card-october-2023/philadelphia.jpg) ![Looking down Elfreth's Alley, a historic street in Philadelphia, Pennsylvania. The sky is bright blue with wispy clouds. The center of the street is cobblestones, and to either side of the stones, the street is brick. The cobbled section is lined with red bollards. The street is narrow and lined with early American homes on either side. The homes are all red brick, some with off-white (yellow-ish) wooden trim. The first home on the left has a green door and a bicentennial flag on a pole.](./src/blog/covid-comfort-report-card-october-2023/images/philadelphia.jpg)
No one has ever said anything to me or treated me differently in Philadelphia because I was wearing a mask. In fact, I've had quite a few lovely interactions while masked. Lots of people are still masking in the city, especially on public transit. I didn't notice quite the same levels of masking at the airport as I did at O'Hare, but it's still a very comfortable place to be Covid-conscious, at least on this "feel" metric. Let's see how it compares on the more metric-y metrics. No one has ever said anything to me or treated me differently in Philadelphia because I was wearing a mask. In fact, I've had quite a few lovely interactions while masked. Lots of people are still masking in the city, especially on public transit. I didn't notice quite the same levels of masking at the airport as I did at O'Hare, but it's still a very comfortable place to be Covid-conscious, at least on this "feel" metric. Let's see how it compares on the more metric-y metrics.
@ -98,7 +98,7 @@ Sadly, I don't see any data about uptake of the bivalent booster. Unless Philade
## Pittsburgh, Pennsylvania ## Pittsburgh, Pennsylvania
![A panorama of the former Pittsburgh Glass Company. In the center is a square with small trees in planters. All around are castle-like buildings made entirely of glass. The sky is partly cloudy and blue and is reflected in the buildings. A street lies in the foreground, with an armored vehicle to the left and some cars on the right. People are walking around and enjoying the square.](./assets/images/blog/covid-comfort-report-card-october-2023/pittsburgh.jpg) ![A panorama of the former Pittsburgh Glass Company. In the center is a square with small trees in planters. All around are castle-like buildings made entirely of glass. The sky is partly cloudy and blue and is reflected in the buildings. A street lies in the foreground, with an armored vehicle to the left and some cars on the right. People are walking around and enjoying the square.](./src/blog/covid-comfort-report-card-october-2023/images/pittsburgh.jpg)
By the time I got to Pittsburgh, I was on a bit of a hair trigger after having been harassed for masking in so many American cities. My head was on a bit of a swivel. I was out one evening getting bubble tea, and a frat bro shouted at me out of a car. Aside from that, people were very nice. My experience was colored more by the accrued psychic damage from months of harassment up to that point than it was by Pittsburgh itself. By the time I got to Pittsburgh, I was on a bit of a hair trigger after having been harassed for masking in so many American cities. My head was on a bit of a swivel. I was out one evening getting bubble tea, and a frat bro shouted at me out of a car. Aside from that, people were very nice. My experience was colored more by the accrued psychic damage from months of harassment up to that point than it was by Pittsburgh itself.
@ -106,7 +106,7 @@ By the time I got to Pittsburgh, I was on a bit of a hair trigger after having b
## Portland, Oregon ## Portland, Oregon
![Multi-colored houses near downtown Portland, Oregon. The photo looks down a sidewalk. On the left, a few cars are parked on the street. On the right, you see three brightly colored Victorian houses, each a unique mix of various shades of blue, pink, red, green, purple, and yellow. The sky is blue, and the sun shines brightly from behind one of the houses.](./assets/images/blog/covid-comfort-report-card-october-2023/portland.jpg) ![Multi-colored houses near downtown Portland, Oregon. The photo looks down a sidewalk. On the left, a few cars are parked on the street. On the right, you see three brightly colored Victorian houses, each a unique mix of various shades of blue, pink, red, green, purple, and yellow. The sky is blue, and the sun shines brightly from behind one of the houses.](./src/blog/covid-comfort-report-card-october-2023/images/portland.jpg)
I always felt comfortable masking in Portland. It seems people mask at a higher rate than in other cities — comparable to Chicago and Seattle. I can't recall ever being harassed about it. I always felt comfortable masking in Portland. It seems people mask at a higher rate than in other cities — comparable to Chicago and Seattle. I can't recall ever being harassed about it.
@ -114,13 +114,13 @@ Portland does not, best I can tell, publish its own data, but [the Oregon Health
## Porto, Portugal ## Porto, Portugal
![A cloudy day in Porto showing a street in the touristy part of town. The ground is wet, and a couple walks toward the camera carrying folded umbrellas. On the right of the frame, we see outdoor seating for a couple of restaurants. on the left, buildings each about seven stories high. The ground level has a series of arches. Further down, the street is lined on both sides by buildings of a similar height, and the street begins to curve left and go up a hill. A dozen or so people are walking the streets and surrounding areas in the shot.](./assets/images/blog/covid-comfort-report-card-october-2023/porto.jpg) ![A cloudy day in Porto showing a street in the touristy part of town. The ground is wet, and a couple walks toward the camera carrying folded umbrellas. On the right of the frame, we see outdoor seating for a couple of restaurants. on the left, buildings each about seven stories high. The ground level has a series of arches. Further down, the street is lined on both sides by buildings of a similar height, and the street begins to curve left and go up a hill. A dozen or so people are walking the streets and surrounding areas in the shot.](./src/blog/covid-comfort-report-card-october-2023/images/porto.jpg)
I don't have much to say about Porto that I didn't already say about Braga. People were kind and no one hassled me during my time here. I don't have much to say about Porto that I didn't already say about Braga. People were kind and no one hassled me during my time here.
## Salt Lake City, Utah ## Salt Lake City, Utah
![A sea of concrete running through downtown Salt Lake City: this shot is taken from a center of a six-lane plus turning lane monstrosity gouging through the center of downtown Salt Lake City. You can see the traffic lights faced to the lane carrying traffic going away from the camera. The pole holds four signals, all red. There are very few cars in the frame. Further in the distance, you can see some highrise buildings. On the left, a glass building with some yellow accents. On the right, a building currently under construction along with an orange construction crane.](./assets/images/blog/covid-comfort-report-card-october-2023/slc.jpg) ![A sea of concrete running through downtown Salt Lake City: this shot is taken from a center of a six-lane plus turning lane monstrosity gouging through the center of downtown Salt Lake City. You can see the traffic lights faced to the lane carrying traffic going away from the camera. The pole holds four signals, all red. There are very few cars in the frame. Further in the distance, you can see some highrise buildings. On the left, a glass building with some yellow accents. On the right, a building currently under construction along with an orange construction crane.](./src/blog/covid-comfort-report-card-october-2023/images/slc.jpg)
Salt Lake City wasn't my favorite place to be — their downtown is made up primarily of endless criss-crossing highways — but I wasn't accosted a single time about my mask. I even got a haircut here while masked, and the barber was very friendly. I was here for a conference, and the conference required masking which was awesome! That led to SLC being one of my most comfortable places, along with Philly, Chicago, Portland, Seattle… and anywhere that *isn't* the US. 😅 Salt Lake City wasn't my favorite place to be — their downtown is made up primarily of endless criss-crossing highways — but I wasn't accosted a single time about my mask. I even got a haircut here while masked, and the barber was very friendly. I was here for a conference, and the conference required masking which was awesome! That led to SLC being one of my most comfortable places, along with Philly, Chicago, Portland, Seattle… and anywhere that *isn't* the US. 😅
@ -128,7 +128,7 @@ Salt Lake City wasn't my favorite place to be — their downtown is made up prim
## Seattle, Washington ## Seattle, Washington
![The most nineties car you have ever seen, parked on a street in Seattle, Washington. It is a Subaru, Baja — a car with a truck bed. The car is painted teal, pink, grey, red, and yellow. It is apparently a delivery car for a restaurant called Un Bien Caribbean and Latin Food.](./assets/images/blog/covid-comfort-report-card-october-2023/seattle.jpg) ![The most nineties car you have ever seen, parked on a street in Seattle, Washington. It is a Subaru, Baja — a car with a truck bed. The car is painted teal, pink, grey, red, and yellow. It is apparently a delivery car for a restaurant called Un Bien Caribbean and Latin Food.](./src/blog/covid-comfort-report-card-october-2023/images/seattle.jpg)
I love Seattle. I've spent a lot of time here, and I've never felt uncomfortable masking. Masking is still relatively common, and I know from my time living there that vaccination rates are sky-high… but let's see exactly *how* sky-high they are. I love Seattle. I've spent a lot of time here, and I've never felt uncomfortable masking. Masking is still relatively common, and I know from my time living there that vaccination rates are sky-high… but let's see exactly *how* sky-high they are.

View file

Before

Width:  |  Height:  |  Size: 252 KiB

After

Width:  |  Height:  |  Size: 252 KiB

Before After
Before After

View file

@ -1,14 +1,14 @@
--- ---
title: Curses Ain't All Bad title: Curses Ain't All Bad
layout: article.njk layout: article.njk
date: git Last Modified date: 2022-12-03 # Revert to `git Last Modified` after next modification
tags: post tags: post
excerpt: Curse of the Dead Gods taught me something about life while I was learning that curses don't really need to be avoided at all costs. Sometimes, they can even be a good thing. excerpt: Curse of the Dead Gods taught me something about life while I was learning that curses don't really need to be avoided at all costs. Sometimes, they can even be a good thing.
--- ---
I was very bad at the video game Curse of the Dead Gods at first because "curses" were, in my mind, something to be avoided at all costs. I thought of them as punishments for doing poorly, and I didn't want to be punished. I was very bad at the video game Curse of the Dead Gods at first because "curses" were, in my mind, something to be avoided at all costs. I thought of them as punishments for doing poorly, and I didn't want to be punished.
![The main character of Curse of the Dead Gods getting a curse](./assets/images/blog/curses-aint-all-bad/getting-a-curse.jpg) ![The main character of Curse of the Dead Gods getting a curse](./src/blog/curses-aint-all-bad/images/getting-a-curse.jpg)
You can't avoid them, though, and once you've played a few times, you realize curses aren't all that bad. In fact, the rewards you get by making blood offerings generally outweigh the problems the curses introduce. The curses usually even have a tiny upside. You can't avoid them, though, and once you've played a few times, you realize curses aren't all that bad. In fact, the rewards you get by making blood offerings generally outweigh the problems the curses introduce. The curses usually even have a tiny upside.

View file

@ -1,7 +1,7 @@
--- ---
title: What If "Good Enough" Is Actually Great? title: What If "Good Enough" Is Actually Great?
layout: article.njk layout: article.njk
date: git Last Modified date: 2024-03-31 # Revert to `git Last Modified` after next modification
tags: post tags: post
excerpt: I make the argument that maybe "good enough" is better than we think. excerpt: I make the argument that maybe "good enough" is better than we think.
--- ---

View file

@ -1,7 +1,7 @@
--- ---
title: How to Stop Feeding AI title: How to Stop Feeding AI
layout: article.njk layout: article.njk
date: git Last Modified date: 2023-08-14 # Revert to `git Last Modified` after next modification
tags: post tags: post
excerpt: It's now possible to tell OpenAI's bot not to crawl your web site, so I did it. excerpt: It's now possible to tell OpenAI's bot not to crawl your web site, so I did it.
--- ---

View file

@ -1,7 +1,7 @@
--- ---
title: I'm on YouTube (Hurray, I guess?) title: I'm on YouTube (Hurray, I guess?)
layout: article.njk layout: article.njk
date: git Last Modified date: 2024-02-19 # Revert to `git Last Modified` after next modification
tags: post tags: post
excerpt: I launched a video game channel where I try out and share new (to me) games. It's on YouTube because the alternatives aren't great. excerpt: I launched a video game channel where I try out and share new (to me) games. It's on YouTube because the alternatives aren't great.
--- ---

View file

@ -1,7 +1,7 @@
--- ---
title: Implementing webmentions is a pain title: Implementing webmentions is a pain
layout: article.njk layout: article.njk
date: git Last Modified date: 2024-06-20 # Revert to `git Last Modified` after next modification
tags: post tags: post
excerpt: Facebook, Twitter, and the others have taken control of the web by making it easy for regular people to interact online. Our answer for interactions people can own is Webmentions, but they have an Achilles' heel… excerpt: Facebook, Twitter, and the others have taken control of the web by making it easy for regular people to interact online. Our answer for interactions people can own is Webmentions, but they have an Achilles' heel…
--- ---

View file

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 790 KiB

After

Width:  |  Height:  |  Size: 790 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 617 KiB

After

Width:  |  Height:  |  Size: 617 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 2 MiB

After

Width:  |  Height:  |  Size: 2 MiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.7 MiB

After

Width:  |  Height:  |  Size: 1.7 MiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 1.4 MiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 677 KiB

After

Width:  |  Height:  |  Size: 677 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 157 KiB

After

Width:  |  Height:  |  Size: 157 KiB

Before After
Before After

View file

@ -1,7 +1,7 @@
--- ---
title: Rapid Fire Game Reviews Holiday 2022 title: Rapid Fire Game Reviews Holiday 2022
layout: article.njk layout: article.njk
date: git Last Modified date: 2022-12-27 # Revert to `git Last Modified` after next modification
tags: post tags: post
excerpt: I give my thoughts on some games I got to try recently including Spookware, Neon White, Timespinner, Delta Manifold, Dread Delusion, Lunacid, Immortality, Astalon, and Phoenotopia, among others. excerpt: I give my thoughts on some games I got to try recently including Spookware, Neon White, Timespinner, Delta Manifold, Dread Delusion, Lunacid, Immortality, Astalon, and Phoenotopia, among others.
--- ---
@ -10,25 +10,25 @@ These are my thoughts on some games I've played over the last few months, in no
## Spookware ## Spookware
![Screenshot of Spookware featuring the three skeleton player characters standing on the deck of a cruise ship](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/spookware.jpg) ![Screenshot of Spookware featuring the three skeleton player characters standing on the deck of a cruise ship](./src/blog/rapid-fire-game-reviews-holiday-2022/images/spookware.jpg)
The microgames of [WarioWare](https://www.igdb.com/games/warioware-inc-mega-microgames) paired with the cute and self-aware irreverence of [Undertale](https://www.igdb.com/games/undertale) (featuring skeletons just to complete the analogy). I really like the vibe here. The one surprising thing about the game is that a lot of it _isn't_ the WarioWare-style microgames. There's a old style adventure game bridging between the somewhat rare microgame segments. That part can be tedious. I'd like to see a sequel that de-emphasizes this aspect of the game and leans harder into the microgames. Still a lot of fun though. It had me laughing out loud. The microgames of [WarioWare](https://www.igdb.com/games/warioware-inc-mega-microgames) paired with the cute and self-aware irreverence of [Undertale](https://www.igdb.com/games/undertale) (featuring skeletons just to complete the analogy). I really like the vibe here. The one surprising thing about the game is that a lot of it _isn't_ the WarioWare-style microgames. There's a old style adventure game bridging between the somewhat rare microgame segments. That part can be tedious. I'd like to see a sequel that de-emphasizes this aspect of the game and leans harder into the microgames. Still a lot of fun though. It had me laughing out loud.
## Neon White ## Neon White
![Screenshot of Neon White featuring the player character's first-person perspective on a giant bust statue on the left, a dark gray treasure chest with gold trim on the right, a spider-like demon standing next to a potted tree center, and a large white building just behind the demon with a red breakable wall on one of its faces](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/neon-white.jpg) ![Screenshot of Neon White featuring the player character's first-person perspective on a giant bust statue on the left, a dark gray treasure chest with gold trim on the right, a spider-like demon standing next to a potted tree center, and a large white building just behind the demon with a red breakable wall on one of its faces](./src/blog/rapid-fire-game-reviews-holiday-2022/images/neon-white.jpg)
One of my favorite things to do in a game is to refine my skill. I like to throw myself against a challenge over and over until I finally overcome it. I think a lot about an old PS2 game that I never hear anyone talk about anymore: [Stuntman](https://www.igdb.com/games/stuntman). You played a stunt driver going from movie to movie taking on-the-fly direction as you pulled the stunts needed for various movie scenes. I don't hear people talking about that game, but it was a favorite of mine. This is that but with an art style that screams "Japanese video game!" I'm pretty sure this _isn't_ Japanese, but it could pass. Lots of fun to be had here. I look forward to getting deeper into it and refining my times! One of my favorite things to do in a game is to refine my skill. I like to throw myself against a challenge over and over until I finally overcome it. I think a lot about an old PS2 game that I never hear anyone talk about anymore: [Stuntman](https://www.igdb.com/games/stuntman). You played a stunt driver going from movie to movie taking on-the-fly direction as you pulled the stunts needed for various movie scenes. I don't hear people talking about that game, but it was a favorite of mine. This is that but with an art style that screams "Japanese video game!" I'm pretty sure this _isn't_ Japanese, but it could pass. Lots of fun to be had here. I look forward to getting deeper into it and refining my times!
## Timespinner ## Timespinner
![Screenshot of Timespinner featuring the player character at the bottom of stairs, backed by her small green dragon familiar, hitting a red enemy with a sword](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/timespinner.jpg) ![Screenshot of Timespinner featuring the player character at the bottom of stairs, backed by her small green dragon familiar, hitting a red enemy with a sword](./src/blog/rapid-fire-game-reviews-holiday-2022/images/timespinner.jpg)
More than any game I've tried, this game reminds me of [Symphony of the Night](https://www.igdb.com/games/castlevania-symphony-of-the-night). That's one of my favorites, so I'm excited to play more of this. It feels right in all the ways Symphony did. More than any game I've tried, this game reminds me of [Symphony of the Night](https://www.igdb.com/games/castlevania-symphony-of-the-night). That's one of my favorites, so I'm excited to play more of this. It feels right in all the ways Symphony did.
## Teardown ## Teardown
![Screenshot of Teardown featuring a large yellow piece of construction machinery with a red arm being driven through the side of a red building. A light can be seen through the hole in the side of the building. A car is parked on the right and a truck with trailer on the left.](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/teardown.jpg) ![Screenshot of Teardown featuring a large yellow piece of construction machinery with a red arm being driven through the side of a red building. A light can be seen through the hole in the side of the building. A car is parked on the right and a truck with trailer on the left.](./src/blog/rapid-fire-game-reviews-holiday-2022/images/teardown.jpg)
The destruction is so cool. Not too sure about the game they've wrapped around it. It's neat, but setting up a route to race out of a level once I start destroying stuff wouldn't be my first choice of activity. I want to take my time and bask in the destruction. The destruction is so cool. Not too sure about the game they've wrapped around it. It's neat, but setting up a route to race out of a level once I start destroying stuff wouldn't be my first choice of activity. I want to take my time and bask in the destruction.
@ -46,29 +46,29 @@ I just finished [Dark Pictures: Little Hope](https://www.igdb.com/games/the-dark
## Persona 5 Royal ## Persona 5 Royal
![Screenshot of Person 5 Royal featuring the player character standing just inside the turnstiles in a Japanese train station. A group of three young women are standing and talking a few feet away.](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/persona-5.jpg) ![Screenshot of Person 5 Royal featuring the player character standing just inside the turnstiles in a Japanese train station. A group of three young women are standing and talking a few feet away.](./src/blog/rapid-fire-game-reviews-holiday-2022/images/persona-5.jpg)
Slick, stylish, and beautiful. Tedious and not very fun to play. A soundtrack that parks itself in your head well after the meter runs out. Slick, stylish, and beautiful. Tedious and not very fun to play. A soundtrack that parks itself in your head well after the meter runs out.
## Delta Manifold ## Delta Manifold
![Screenshot of Delta Manifold from the player character's perspective, looking down the barrel of a rectangular flat-shaded gun, aiming and firing at a large black humanoid figure with a triangular torso in a green environment covered with vines](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/delta-manifold.jpg) ![Screenshot of Delta Manifold from the player character's perspective, looking down the barrel of a rectangular flat-shaded gun, aiming and firing at a large black humanoid figure with a triangular torso in a green environment covered with vines](./src/blog/rapid-fire-game-reviews-holiday-2022/images/delta-manifold.jpg)
I wish I liked this one more, but it needs a lot of polish. Some better sign-posting would be nice too. I don't want literal signposts, but I need something more than the game is giving me to tell me what to do next. The levels are just random hallways and rooms connected together with tons of dead-ends. I can't tell if I'm missing something or if someone just banged these out really quick in Unity and left all the parts where they landed. The description on the game's Steam page says it wants to be [Metroid Prime](https://www.igdb.com/games/metroid-prime). I want it to be too, but it's not there yet. I wish I liked this one more, but it needs a lot of polish. Some better sign-posting would be nice too. I don't want literal signposts, but I need something more than the game is giving me to tell me what to do next. The levels are just random hallways and rooms connected together with tons of dead-ends. I can't tell if I'm missing something or if someone just banged these out really quick in Unity and left all the parts where they landed. The description on the game's Steam page says it wants to be [Metroid Prime](https://www.igdb.com/games/metroid-prime). I want it to be too, but it's not there yet.
## Dread Delusion and Lunacid ## Dread Delusion and Lunacid
![Screenshot of Dread Delusion from the player character's perspective, at the top of steps approaching a doorway to a buiding. A tree is directly in front, and to the right, a giant pink moon with red wisps coming out of it, behind mountains and evergreen trees in the distance.](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/dread-delusion.jpg) ![Screenshot of Dread Delusion from the player character's perspective, at the top of steps approaching a doorway to a buiding. A tree is directly in front, and to the right, a giant pink moon with red wisps coming out of it, behind mountains and evergreen trees in the distance.](./src/blog/rapid-fire-game-reviews-holiday-2022/images/dread-delusion.jpg)
I'm lumping these together because they're both first-person RPGs that call out [King's Field](https://www.igdb.com/games/king-s-field) as an influence. Dread Delusion has a fun surreal art style but feels a bit more aimless. Both games have you wondering around a fair bit, but I felt the pain of it more in Dread Delusion. Something about the sparseness of the world and the same-ness of the environments I've been going through so far makes me feel this game is the thinner of the two, even though I'm pretty sure it's the one that has been "released" while Lunacid is still in early access. It's cool and I want to play more, but I'm not in love. I'm lumping these together because they're both first-person RPGs that call out [King's Field](https://www.igdb.com/games/king-s-field) as an influence. Dread Delusion has a fun surreal art style but feels a bit more aimless. Both games have you wondering around a fair bit, but I felt the pain of it more in Dread Delusion. Something about the sparseness of the world and the same-ness of the environments I've been going through so far makes me feel this game is the thinner of the two, even though I'm pretty sure it's the one that has been "released" while Lunacid is still in early access. It's cool and I want to play more, but I'm not in love.
![Screenshot of Lunacid from the player character's perspective as they hold a sword, in a hallway in a tight catacomb with a slime-covered skeleton in front. Just beyond the skeleton, a bright yellow-green light floods in from a grate on the ceiling.](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/lunacid.jpg) ![Screenshot of Lunacid from the player character's perspective as they hold a sword, in a hallway in a tight catacomb with a slime-covered skeleton in front. Just beyond the skeleton, a bright yellow-green light floods in from a grate on the ceiling.](./src/blog/rapid-fire-game-reviews-holiday-2022/images/lunacid.jpg)
Lunacid feels different. There's something about the darkness of it. Everything is darker. I'm spending a lot of time in tight corridors. It's a lot different from the bright environments of Dread Delusion, and I like it. I feel like I'm really discovering in this game. I'm poking at walls and finding things the game wants me to think I wasn't supposed to find. Yesterday, I found an item that was very surprising, and I'm exciting to see how it fits into this game. When I level up in Dread Delusion, it doesn't really feel like anything has changed. In Lunacid, I feel like my character is actually progressing. There's a lot I'm excited about here. Lunacid feels different. There's something about the darkness of it. Everything is darker. I'm spending a lot of time in tight corridors. It's a lot different from the bright environments of Dread Delusion, and I like it. I feel like I'm really discovering in this game. I'm poking at walls and finding things the game wants me to think I wasn't supposed to find. Yesterday, I found an item that was very surprising, and I'm exciting to see how it fits into this game. When I level up in Dread Delusion, it doesn't really feel like anything has changed. In Lunacid, I feel like my character is actually progressing. There's a lot I'm excited about here.
## Immortality ## Immortality
![Screenshot of Immortality showing an actress on the left with large hoop earrings twirling her hair and looking at the clapper loader who stands at the right edge of the frame. The clapper loader is about to clap the clapper board which has the following text: "Minsky. Gino DeGiorgio Entertainment. Dir. John DURICK. INT/NIGHT. 7-20-70. 44A. 2." Three other actors stand just behind the clapper board looking at the actress on the left. The caption reads "Scene 44A, take two."](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/immortality.jpg) ![Screenshot of Immortality showing an actress on the left with large hoop earrings twirling her hair and looking at the clapper loader who stands at the right edge of the frame. The clapper loader is about to clap the clapper board which has the following text: "Minsky. Gino DeGiorgio Entertainment. Dir. John DURICK. INT/NIGHT. 7-20-70. 44A. 2." Three other actors stand just behind the clapper board looking at the actress on the left. The caption reads "Scene 44A, take two."](./src/blog/rapid-fire-game-reviews-holiday-2022/images/immortality.jpg)
I love what this game is in my head, but I'm not sold yet on what it is in reality. Because of the way I play games, I'm scared to death about the prospect of trying to come back to this game in four months when I remember I want to play more of it but _don't_ remember anything that happened in it. I hope the game has a mechanism to ease me back in at that point, but very few games actually do have something like that. When that day comes, I'm probably going to feel like I need to restart... and there's zero chance I actually do that. The anxiety about the way this game will fit into my life fills me with dread even while I've enjoyed my time with the game so far. I love what this game is in my head, but I'm not sold yet on what it is in reality. Because of the way I play games, I'm scared to death about the prospect of trying to come back to this game in four months when I remember I want to play more of it but _don't_ remember anything that happened in it. I hope the game has a mechanism to ease me back in at that point, but very few games actually do have something like that. When that day comes, I'm probably going to feel like I need to restart... and there's zero chance I actually do that. The anxiety about the way this game will fit into my life fills me with dread even while I've enjoyed my time with the game so far.
@ -76,13 +76,13 @@ I love what this game is in my head, but I'm not sold yet on what it is in reali
## Haak ## Haak
![Screenshot of Haak showing the player character, a black figure with a round head and oblong oblique-angled yellow eyes. The character wears a blue cape and stands on a concrete interstate bridge in front of a large soldier wearing a uniform jumpsuit and a single-piece goggle and holding a large firearm. The soldier guards a hollowed-out bus that has been fashioned as a continuation of the bridge, with spikes on top and a sign that says "NEO." The bridge has spikes in the near background. Further in the background, we see a dilapidated billboard with a woman holding a drink and smiling next to foreign text, a watch tower, and a large building in disrepair. The sky is a pink orange.](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/haak.jpg) ![Screenshot of Haak showing the player character, a black figure with a round head and oblong oblique-angled yellow eyes. The character wears a blue cape and stands on a concrete interstate bridge in front of a large soldier wearing a uniform jumpsuit and a single-piece goggle and holding a large firearm. The soldier guards a hollowed-out bus that has been fashioned as a continuation of the bridge, with spikes on top and a sign that says "NEO." The bridge has spikes in the near background. Further in the background, we see a dilapidated billboard with a woman holding a drink and smiling next to foreign text, a watch tower, and a large building in disrepair. The sky is a pink orange.](./src/blog/rapid-fire-game-reviews-holiday-2022/images/haak.jpg)
This Metroidvania is just really well executed. Moving around feels great. The unlockable abilities are paced well, and I haven't felt stuck so far. Just a nice experience with fun art and a cute cat helping you find your way, at least in the early parts. This Metroidvania is just really well executed. Moving around feels great. The unlockable abilities are paced well, and I haven't felt stuck so far. Just a nice experience with fun art and a cute cat helping you find your way, at least in the early parts.
## Midnight Fight Express ## Midnight Fight Express
![Screenshot of Midnight Fight Express showing the main character wearing black pants, black shoes, a black jacket, and a white shirt. He stands on top of a train running next to an empty track. He reaches back to punch one of several opponents dressed in colorful outfits as another group approaches from behind, one baring a knife.](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/midnight-fight-express.jpg) ![Screenshot of Midnight Fight Express showing the main character wearing black pants, black shoes, a black jacket, and a white shirt. He stands on top of a train running next to an empty track. He reaches back to punch one of several opponents dressed in colorful outfits as another group approaches from behind, one baring a knife.](./src/blog/rapid-fire-game-reviews-holiday-2022/images/midnight-fight-express.jpg)
The [Arkham Asylum](https://www.igdb.com/games/batman-arkham-asylum) combat works in an isometric game. I thought this was going to be great, but I think it will be ultimately forgettable. I nearly forgot to include it here! The [Arkham Asylum](https://www.igdb.com/games/batman-arkham-asylum) combat works in an isometric game. I thought this was going to be great, but I think it will be ultimately forgettable. I nearly forgot to include it here!
@ -96,7 +96,7 @@ A flashy action game that's a bit awkward to play. Maybe it would get better if
## Pentiment ## Pentiment
![Screenshot of Pentiment showing the main character Andreas with long light-brown hair wearing a red cap, a red tunic over an off-white shirt and blue pants. He is speaking to a man with gray hair, mustache, and beard wearing an off-white shirt, gray pants, and a maroon apron, standing with his sheep next to a blacksmith's anvil and forge. Tongs and horseshoes hang on a rack in front of the forge. The man's text box says, "Do you have a moment to lend me a hand?" in a casual script. Andreas's text box shows two response options written in a more formal font: "Of course" and "I'm already late to the abbey"](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/pentiment.jpg) ![Screenshot of Pentiment showing the main character Andreas with long light-brown hair wearing a red cap, a red tunic over an off-white shirt and blue pants. He is speaking to a man with gray hair, mustache, and beard wearing an off-white shirt, gray pants, and a maroon apron, standing with his sheep next to a blacksmith's anvil and forge. Tongs and horseshoes hang on a rack in front of the forge. The man's text box says, "Do you have a moment to lend me a hand?" in a casual script. Andreas's text box shows two response options written in a more formal font: "Of course" and "I'm already late to the abbey"](./src/blog/rapid-fire-game-reviews-holiday-2022/images/pentiment.jpg)
This is another one that I'm in love with the idea of but not yet the game. I'll give it some more time. I've just played a few minutes at this point. This is another one that I'm in love with the idea of but not yet the game. I'll give it some more time. I've just played a few minutes at this point.
@ -112,6 +112,6 @@ The worst thing about Phoenotopia is that I can neither pronounce nor spell its
## Betrayal at Club Low ## Betrayal at Club Low
![Screenshot of Betrayal at Club Low showing the main character — a blue man with glowing blue eyes wearing a pink and gray flannel over a yellow button-up shirt with orange collar, tan denim pants, and black shoes. He has a red hat with a slice of pizza on it and a red pizza bag on his back. He stands in a room with purple walls and wood flooring. On one wall hangs a blue glowing shovel in a red frame. On another wall, tusks of a large animal that glow blue and have lights on each of the tusks' tips. To the main character's right is a bin of yellow tennis balls. To his left, a series of security monitors on a desk, all showing a tennis match. A man wearing a brown jacket, black pants, and brown shoes sits at the desk with two empty drink cans in front of him along with a tennis racket and a custom computer keyboard with green, red, orange, yellow, and brown keys.](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/betrayal.jpg) ![Screenshot of Betrayal at Club Low showing the main character — a blue man with glowing blue eyes wearing a pink and gray flannel over a yellow button-up shirt with orange collar, tan denim pants, and black shoes. He has a red hat with a slice of pizza on it and a red pizza bag on his back. He stands in a room with purple walls and wood flooring. On one wall hangs a blue glowing shovel in a red frame. On another wall, tusks of a large animal that glow blue and have lights on each of the tusks' tips. To the main character's right is a bin of yellow tennis balls. To his left, a series of security monitors on a desk, all showing a tennis match. A man wearing a brown jacket, black pants, and brown shoes sits at the desk with two empty drink cans in front of him along with a tennis racket and a custom computer keyboard with green, red, orange, yellow, and brown keys.](./src/blog/rapid-fire-game-reviews-holiday-2022/images/betrayal.jpg)
This one was a surprise. I went in expecting nothing. Actually, based on the... scrappiness of the interface, I expected this to be janky. It isn't. It's simple but polished. It's a point-and-click adventure with some tabletop RPG-style dice-rolling mechanics laid on top. The dice rolling is surprisingly deep. You're allowed two re-rolls per action, and you can select which dice to re-roll. Outcomes on the dice can add other rules as well like allowing you to re-roll opponent dice or swap results with your opponent. The art style is funky. It almost looks like it doesn't all belong together, but it works. If you want something quirky and charming as heck, this is a good choice. This one was a surprise. I went in expecting nothing. Actually, based on the... scrappiness of the interface, I expected this to be janky. It isn't. It's simple but polished. It's a point-and-click adventure with some tabletop RPG-style dice-rolling mechanics laid on top. The dice rolling is surprisingly deep. You're allowed two re-rolls per action, and you can select which dice to re-roll. Outcomes on the dice can add other rules as well like allowing you to re-roll opponent dice or swap results with your opponent. The art style is funky. It almost looks like it doesn't all belong together, but it works. If you want something quirky and charming as heck, this is a good choice.

View file

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 63 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 71 KiB

After

Width:  |  Height:  |  Size: 71 KiB

Before After
Before After

View file

@ -1,7 +1,7 @@
--- ---
title: The Most Influential Game in History title: The Most Influential Game in History
layout: article.njk layout: article.njk
date: git Last Modified date: 2023-01-18 # Revert to `git Last Modified` after next modification
tags: post tags: post
excerpt: The most influential game is not Fortnite or Minecraft or Mario 64 or the original Super Mario Brothers. It's not any of the usual suspects, but it's fingerprints can be found all over modding, Twitch streaming, speedrunning, machinima, the keyboard + mouse control scheme, and online multiplayer gaming. excerpt: The most influential game is not Fortnite or Minecraft or Mario 64 or the original Super Mario Brothers. It's not any of the usual suspects, but it's fingerprints can be found all over modding, Twitch streaming, speedrunning, machinima, the keyboard + mouse control scheme, and online multiplayer gaming.
--- ---
@ -10,13 +10,13 @@ It's hard to overstate the influence of [Minecraft](https://www.igdb.com/games/m
You could make a case for plenty of other games being the most influential too. [Super Mario Brothers](https://www.igdb.com/games/super-mario-bros) showed games could be more than just score chases. [Pitfall](https://www.igdb.com/games/pitfall) opened the door for developers not employed by the console maker to make games. [Mario 64](https://www.igdb.com/games/super-mario-64) was the template for 3D platforming. [Rogue](https://www.igdb.com/games/rogue) has a whole modern genre named after it! But in spite of everything these games and Minecraft brought to the table, none of them is the most influential game ever. Instead, that title belongs to another game with Minecraft's pixelly graphics and a first-person perspective. It's a game that, like Minecraft, was PC-first and created incredible longevity by fostering an enthusiastic modding community. It's a game that planted the seeds for some of the innovations Minecraft brought forward. You could make a case for plenty of other games being the most influential too. [Super Mario Brothers](https://www.igdb.com/games/super-mario-bros) showed games could be more than just score chases. [Pitfall](https://www.igdb.com/games/pitfall) opened the door for developers not employed by the console maker to make games. [Mario 64](https://www.igdb.com/games/super-mario-64) was the template for 3D platforming. [Rogue](https://www.igdb.com/games/rogue) has a whole modern genre named after it! But in spite of everything these games and Minecraft brought to the table, none of them is the most influential game ever. Instead, that title belongs to another game with Minecraft's pixelly graphics and a first-person perspective. It's a game that, like Minecraft, was PC-first and created incredible longevity by fostering an enthusiastic modding community. It's a game that planted the seeds for some of the innovations Minecraft brought forward.
![The Quake box art consisting of the title at the top written in white with the stylized 'Q' above a large brown stylized 'Q' logo, all on black](./assets/images/blog/the-most-influential-game-in-history/quake-box.png) ![The Quake box art consisting of the title at the top written in white with the stylized 'Q' above a large brown stylized 'Q' logo, all on black](./src/blog/the-most-influential-game-in-history/images/quake-box.png)
[Quake](https://www.igdb.com/games/quake) was the Minecraft of its day, and its day was about 15 years before the release of Minecraft. Let's take a look at the staggering number of innovations Quake brought gamers in the mid 90s. [Quake](https://www.igdb.com/games/quake) was the Minecraft of its day, and its day was about 15 years before the release of Minecraft. Let's take a look at the staggering number of innovations Quake brought gamers in the mid 90s.
## Modding ## Modding
![A screenshot of the Arcane Dimensions Quake mode showing a red brick wall on the left with an arch cut into it. Beyond the arch is a tall and narrow yellow stained glass window with repeated divided circles and to the right of that, another archway made of a tan colored concrete. Directly ahead in the image is a white broken archway leading to a churchy-looking room containing a portal. There is a torch on the right side wall.](./assets/images/blog/the-most-influential-game-in-history/arcane-dimensions.jpg) ![A screenshot of the Arcane Dimensions Quake mode showing a red brick wall on the left with an arch cut into it. Beyond the arch is a tall and narrow yellow stained glass window with repeated divided circles and to the right of that, another archway made of a tan colored concrete. Directly ahead in the image is a white broken archway leading to a churchy-looking room containing a portal. There is a torch on the right side wall.](./src/blog/the-most-influential-game-in-history/images/arcane-dimensions.jpg)
Modding was around before Quake, but it came of age with Quake. Many community map and mod makers were ultimately hired as level designers and game developers. Valve recruited early employees out of the community and brought the team behind Quake mod Team Fortress in-house to build its sequel on Half-Life… which was itself built on the Quake 2 engine. Modding was around before Quake, but it came of age with Quake. Many community map and mod makers were ultimately hired as level designers and game developers. Valve recruited early employees out of the community and brought the team behind Quake mod Team Fortress in-house to build its sequel on Half-Life… which was itself built on the Quake 2 engine.
@ -40,7 +40,7 @@ Since the game included a few demos, you could run your benchmark against one of
## Speedrunning ## Speedrunning
![The Quake Done Quick logo consisting of an overhead wireframe of a Quake map with an arrow drawn through it to indicate a run path starting at an 'X' and terminating at another 'X'. Superimposed on the map are actual in-game rocket launcher graphics showing the location of rocket launcher pickups in the map. A shambler graphic is overlaid near the end of the run path, presumably showing the location of a shambler enemy in the level. The “Quake guy” is shown in the lower right of the logo holding a stopwatch in his right hand and a trophy in his left. The words “Quake done Quick” with stylized 'Q's appear to his left.](./assets/images/blog/the-most-influential-game-in-history/quake-done-quick.jpg) ![The Quake Done Quick logo consisting of an overhead wireframe of a Quake map with an arrow drawn through it to indicate a run path starting at an 'X' and terminating at another 'X'. Superimposed on the map are actual in-game rocket launcher graphics showing the location of rocket launcher pickups in the map. A shambler graphic is overlaid near the end of the run path, presumably showing the location of a shambler enemy in the level. The “Quake guy” is shown in the lower right of the logo holding a stopwatch in his right hand and a trophy in his left. The words “Quake done Quick” with stylized 'Q's appear to his left.](./src/blog/the-most-influential-game-in-history/images/quake-done-quick.jpg)
Quakes demo file format was great for watching others compete in deathmatch or capture the flag matches, but it was also used to records speedruns through the games levels. Quakes demo file format was great for watching others compete in deathmatch or capture the flag matches, but it was also used to records speedruns through the games levels.
@ -68,7 +68,7 @@ This was the dawn of the WASD + mouse control scheme that is standard among firs
Before Quake, multiplayer gameplay on PC required either a game client that could dial up directly to another users modem or entering another players IP address in the game client. Enter QSpy, a Quake server browser that made it easier to find and connect to multiplayer games. Before Quake, multiplayer gameplay on PC required either a game client that could dial up directly to another users modem or entering another players IP address in the game client. Enter QSpy, a Quake server browser that made it easier to find and connect to multiplayer games.
![Screenshot of the QuakeSpy application showing the menubar and toolbar on top, a list of source categories on the left (including id official servers divided by game mode, PlanetQuake servers, best.com, and Australian servers), a series of tabs just below the toolbar and right of the sidebar (with options “All Servers,” “Passed Filters,” “Filtered Out,” “Favorites,” and “Never Ping”), a list of servers below the tabs (with columns for server name, ping, address, player count/capacity, and game), a list of the selected server's players on the left side below the server list, and a list of the server's options to the right of that](./assets/images/blog/the-most-influential-game-in-history/quakespy.jpg) ![Screenshot of the QuakeSpy application showing the menubar and toolbar on top, a list of source categories on the left (including id official servers divided by game mode, PlanetQuake servers, best.com, and Australian servers), a series of tabs just below the toolbar and right of the sidebar (with options “All Servers,” “Passed Filters,” “Filtered Out,” “Favorites,” and “Never Ping”), a list of servers below the tabs (with columns for server name, ping, address, player count/capacity, and game), a list of the selected server's players on the left side below the server list, and a list of the server's options to the right of that](./src/blog/the-most-influential-game-in-history/images/quakespy.jpg)
Side note: QSpy later became QuakeSpy and then [GameSpy](https://en.wikipedia.org/wiki/GameSpy), which eventually became an editorial site that operated until 2013. Side note: QSpy later became QuakeSpy and then [GameSpy](https://en.wikipedia.org/wiki/GameSpy), which eventually became an editorial site that operated until 2013.

View file

@ -1,7 +1,7 @@
--- ---
title: The Old Web title: The Old Web
layout: article.njk layout: article.njk
date: git Last Modified date: 2023-10-01 # Revert to `git Last Modified` after next modification
tags: post tags: post
excerpt: I got tired of the commercial web, so I went looking for the Old Web. I'm talking about the web where people made pages just because they wanted to share something, not because they wanted to sell something. Fortunately, I found it. A lot of it. excerpt: I got tired of the commercial web, so I went looking for the Old Web. I'm talking about the web where people made pages just because they wanted to share something, not because they wanted to sell something. Fortunately, I found it. A lot of it.
--- ---

View file

@ -1,7 +1,7 @@
--- ---
title: Web Browser Review, June 2024 title: Web Browser Review, June 2024
layout: article.njk layout: article.njk
date: git Last Modified date: 2024-06-10 # Revert to `git Last Modified` after next modification
tags: post tags: post
excerpt: I love the Arc Browser, but every time they add new AI features of refer to me as a "member," I feel like I'm teetering over a cliff. I decided to look for a replacement. excerpt: I love the Arc Browser, but every time they add new AI features of refer to me as a "member," I feel like I'm teetering over a cliff. I decided to look for a replacement.
--- ---

View file

@ -1,7 +1,7 @@
--- ---
title: Which Dominoes Fall After Reddit? title: Which Dominoes Fall After Reddit?
layout: article.njk layout: article.njk
date: git Last Modified date: 2023-07-01 # Revert to `git Last Modified` after next modification
tags: post tags: post
excerpt: Twitter and Reddit have started their decline in usefulness in favor of what they hope is an ascent to profitability. Which sites will be the next to follow in their footsteps? excerpt: Twitter and Reddit have started their decline in usefulness in favor of what they hope is an ascent to profitability. Which sites will be the next to follow in their footsteps?
--- ---

View file

@ -15,7 +15,7 @@ I'll be looking at some subjective factors like my own experiences existing in t
# Braga, Portugal # Braga, Portugal
![A pedestrian square in Braga, Portugal. It is a sunny day with blue skies. Two birds are flying off the left side of the photo. Mid-rise mixed use buildings line the right side of the photo. The square consist of a couple of raised beds of grass and rows of flowers — pink, orange, red, white, and purple. A pedestrian path runs down the middle of the beds and to the right, against the buildings. Trees are planted in the middle of the right portion of the walking path. Many people are walking and sitting around the square.](./assets/images/blog/covid-comfort-report-card-october-2023/braga.jpg) ![A pedestrian square in Braga, Portugal. It is a sunny day with blue skies. Two birds are flying off the left side of the photo. Mid-rise mixed use buildings line the right side of the photo. The square consist of a couple of raised beds of grass and rows of flowers — pink, orange, red, white, and purple. A pedestrian path runs down the middle of the beds and to the right, against the buildings. Trees are planted in the middle of the right portion of the walking path. Many people are walking and sitting around the square.](./src/blog/covid-comfort-report-card-october-2023/images/braga.jpg)
No one here was anything but nice to me. I never got a sideways glance and no one ever accosted me — at least, not in English! 😅 No one here was anything but nice to me. I never got a sideways glance and no one ever accosted me — at least, not in English! 😅
@ -23,7 +23,7 @@ I don't have per-city vaccination data on Portugal, but [86.1% of the country is
# Chicago, Illinois # Chicago, Illinois
![The Chicago River lined with buildings on either side. The water is a greenish-blue with a maroon bridge crossing it and a boat that has just passed under the bridge, moving away from the camera. The sky is cloudy and overcast, with a bird flying just right of center. Two tall glass buildings are in the center of the photo in the distance.](./assets/images/blog/covid-comfort-report-card-october-2023/chicago.jpg) ![The Chicago River lined with buildings on either side. The water is a greenish-blue with a maroon bridge crossing it and a boat that has just passed under the bridge, moving away from the camera. The sky is cloudy and overcast, with a bird flying just right of center. Two tall glass buildings are in the center of the photo in the distance.](./src/blog/covid-comfort-report-card-october-2023/images/chicago.jpg)
Chicago is one of the friendliest US cities I've been to for the Covid-conscious. Masking is relatively common, especially on public transit. Lots of masking in the airport which is great to see. Chicago is one of the friendliest US cities I've been to for the Covid-conscious. Masking is relatively common, especially on public transit. Lots of masking in the airport which is great to see.
@ -31,13 +31,13 @@ Chicago is one of the friendliest US cities I've been to for the Covid-conscious
# Knoxville, Tennessee # Knoxville, Tennessee
![A rendition of the Henley Street Bridge in Lego at a Lego convention in Knoxville, Tennessee](./assets/images/blog/covid-comfort-report-card-october-2023/knoxville.jpg) ![A rendition of the Henley Street Bridge in Lego at a Lego convention in Knoxville, Tennessee](./src/blog/covid-comfort-report-card-october-2023/images/knoxville.jpg)
The South maintains its reputation of being friendly… as long as you're exactly like them. In this case, that means that you are anti-vax and certainly not masked. I was accosted no less than three times in a few weeks in Knoxville while masked. If you're wearing a mask here, even in a crowded public area, you'll very likely be the only one. Moving around in downtown, I would see a handful of people in a given week who were also masked. The South maintains its reputation of being friendly… as long as you're exactly like them. In this case, that means that you are anti-vax and certainly not masked. I was accosted no less than three times in a few weeks in Knoxville while masked. If you're wearing a mask here, even in a crowded public area, you'll very likely be the only one. Moving around in downtown, I would see a handful of people in a given week who were also masked.
Knoxville has a site for Covid vaccination data… but unless there's something wrong with my browser or internet connection, that site is literally empty. I see boxes with labels where data should be, yet those boxes have no numbers in them. I thought the site was just broken and maybe I could [download Knoxville's data as a CSV](https://www.tn.gov/content/dam/tn/health/documents/cedep/novel-coronavirus/datasets/COVID_VACCINE_COUNTY_SUMMARY.CSV), but, again, unless there's a weird problem on my end, this link produces a CSV with only column headers and no actual data. Knoxville has a site for Covid vaccination data… but unless there's something wrong with my browser or internet connection, that site is literally empty. I see boxes with labels where data should be, yet those boxes have no numbers in them. I thought the site was just broken and maybe I could [download Knoxville's data as a CSV](https://www.tn.gov/content/dam/tn/health/documents/cedep/novel-coronavirus/datasets/COVID_VACCINE_COUNTY_SUMMARY.CSV), but, again, unless there's a weird problem on my end, this link produces a CSV with only column headers and no actual data.
![A Tennessee Covid vaccination data page with several boxes for data… but all of the boxes are empty.](./assets/images/blog/covid-comfort-report-card-october-2023/knoxville-tn-covid-vaccination-page.png) ![A Tennessee Covid vaccination data page with several boxes for data… but all of the boxes are empty.](./src/blog/covid-comfort-report-card-october-2023/images/knoxville-tn-covid-vaccination-page.png)
It's safe to assume this means the number is embarrassingly low — so low, in fact, Knoxville is willing to literally kill people by giving them insufficient information about whether or not they should visit in order to avoid sharing it. We can extrapolate from the [CDC's data on Tennessee as a whole](https://covid.cdc.gov/covid-data-tracker/#vaccinations_vacc-people-booster-percent-total): only 56.4% have received the full series and an abysmal 10.6% have received a bivalent booster. Maybe not worth killing people over — that problem will take care of itself — but certainly worth getting embarrassed over. It's safe to assume this means the number is embarrassingly low — so low, in fact, Knoxville is willing to literally kill people by giving them insufficient information about whether or not they should visit in order to avoid sharing it. We can extrapolate from the [CDC's data on Tennessee as a whole](https://covid.cdc.gov/covid-data-tracker/#vaccinations_vacc-people-booster-percent-total): only 56.4% have received the full series and an abysmal 10.6% have received a bivalent booster. Maybe not worth killing people over — that problem will take care of itself — but certainly worth getting embarrassed over.
@ -45,7 +45,7 @@ So, if your path happens to intersect with Knoxville and assuming you value your
# Milwaukee, Wisconsin # Milwaukee, Wisconsin
![A photo of Lake Michigan in Milwaukee. The sky is bright blue with wispy clouds. The lake water is blue green and dominates the right side of the picture, but there is a small peninsula jutting out into it, covered with grass and trees. On the left side of the photo, a walking path runs along the lakefront. Several people are walking and running on the path. In the distance on the left side of the photo, you can see the city skyline.](./assets/images/blog/covid-comfort-report-card-october-2023/milwaukee.jpg) ![A photo of Lake Michigan in Milwaukee. The sky is bright blue with wispy clouds. The lake water is blue green and dominates the right side of the picture, but there is a small peninsula jutting out into it, covered with grass and trees. On the left side of the photo, a walking path runs along the lakefront. Several people are walking and running on the path. In the distance on the left side of the photo, you can see the city skyline.](./src/blog/covid-comfort-report-card-october-2023/images/milwaukee.jpg)
Milwaukee seemed generally accepting of masking. I was shouted at once out of a moving mini-van — a great way to be taken seriously when delivering medical advice. I didn't see many other people masking. Perhaps more than a town like Knoxville, but not by much. Comfort level in general was still much higher though. Milwaukee seemed generally accepting of masking. I was shouted at once out of a moving mini-van — a great way to be taken seriously when delivering medical advice. I didn't see many other people masking. Perhaps more than a town like Knoxville, but not by much. Comfort level in general was still much higher though.
@ -63,7 +63,7 @@ In a moment of weakness, I allowed myself to be convinced I should visit the Mal
I made my way through the mall. It was relatively uneventful. It was about like I thought it would be. I did think that, since it's the Mall of America, it would probably be packed to the brim with cool stores. Instead, it seems to be suffering like most malls, with lots of empty storefronts and stores that almost certainly couldn't have afforded the rent in the mall's heyday. Anti-vaxxers though can thrive in even the most downtrodden shopping mall. I made my way through the mall. It was relatively uneventful. It was about like I thought it would be. I did think that, since it's the Mall of America, it would probably be packed to the brim with cool stores. Instead, it seems to be suffering like most malls, with lots of empty storefronts and stores that almost certainly couldn't have afforded the rent in the mall's heyday. Anti-vaxxers though can thrive in even the most downtrodden shopping mall.
![The “Got Kilt?” storefront in the Mall of America in Minneapolis. A cardboard standup of a kilt-wearing man greets you at the entrance. Through the glass, you can see some Funkopops, several items of clothing, and a few plushies.](./assets/images/blog/covid-comfort-report-card-october-2023/minneapolis.jpg) ![The “Got Kilt?” storefront in the Mall of America in Minneapolis. A cardboard standup of a kilt-wearing man greets you at the entrance. Through the glass, you can see some Funkopops, several items of clothing, and a few plushies.](./src/blog/covid-comfort-report-card-october-2023/images/minneapolis.jpg)
I was walking through the mall, masked, minding my own business, when a man called out to me, "nice mask." I felt the corners of my mouth turned up. "A compliment! How nice," I though to myself, but this was a Trojan horse. Now that my guard was down, the guy dropped his bomb: "THE PANDEMIC IS OVER, YA KNOW!" It's the last time I ever drop my guard and expose my soft underbelly to a man wearing a camo t-shirt and a baseball cap to cover up a "business in the front" haircut while leaving his luscious "party in the back" exposed. I was walking through the mall, masked, minding my own business, when a man called out to me, "nice mask." I felt the corners of my mouth turned up. "A compliment! How nice," I though to myself, but this was a Trojan horse. Now that my guard was down, the guy dropped his bomb: "THE PANDEMIC IS OVER, YA KNOW!" It's the last time I ever drop my guard and expose my soft underbelly to a man wearing a camo t-shirt and a baseball cap to cover up a "business in the front" haircut while leaving his luscious "party in the back" exposed.
@ -75,7 +75,7 @@ If I had to guess, I'd say we're hovering around the 55% mark with some of the o
# Montreal, Quebec, Canada # Montreal, Quebec, Canada
![A gray stone cathedral in Montreal, Quebec. Several people are walking in a pedestrian square in the foreground of the frame. Cars drive past the cathedral, just beyond the square. One of the cathedral's two towers (the one on the right side of the frame) has scaffolding built up on it. The sky is mostly overcast, but the light of the sun illuminates through the clouds behind that same tower.](./assets/images/blog/covid-comfort-report-card-october-2023/montreal.jpg) ![A gray stone cathedral in Montreal, Quebec. Several people are walking in a pedestrian square in the foreground of the frame. Cars drive past the cathedral, just beyond the square. One of the cathedral's two towers (the one on the right side of the frame) has scaffolding built up on it. The sky is mostly overcast, but the light of the sun illuminates through the clouds behind that same tower.](./src/blog/covid-comfort-report-card-october-2023/images/montreal.jpg)
Montreal was lovely and everyone there was lovely to me. No one blinked twice at my mask, and if they delivered any Minneapolis-style sick burns, they were in a language I did not understand. Montreal was lovely and everyone there was lovely to me. No one blinked twice at my mask, and if they delivered any Minneapolis-style sick burns, they were in a language I did not understand.
@ -85,7 +85,7 @@ What I can see though is that the adult age grouping that surely represents a la
# Philadelphia, Pennsylvania # Philadelphia, Pennsylvania
![Looking down Elfreth's Alley, a historic street in Philadelphia, Pennsylvania. The sky is bright blue with wispy clouds. The center of the street is cobblestones, and to either side of the stones, the street is brick. The cobbled section is lined with red bollards. The street is narrow and lined with early American homes on either side. The homes are all red brick, some with off-white (yellow-ish) wooden trim. The first home on the left has a green door and a bicentennial flag on a pole.](./assets/images/blog/covid-comfort-report-card-october-2023/philadelphia.jpg) ![Looking down Elfreth's Alley, a historic street in Philadelphia, Pennsylvania. The sky is bright blue with wispy clouds. The center of the street is cobblestones, and to either side of the stones, the street is brick. The cobbled section is lined with red bollards. The street is narrow and lined with early American homes on either side. The homes are all red brick, some with off-white (yellow-ish) wooden trim. The first home on the left has a green door and a bicentennial flag on a pole.](./src/blog/covid-comfort-report-card-october-2023/images/philadelphia.jpg)
No one has ever said anything to me or treated me differently in Philadelphia because I was wearing a mask. In fast, I've had quite a few lovely interactions while masked. Lots of people are still masking in the city, especially on public transit. I didn't notice quite the same levels of masking at the airport as I did at O'Hare, but it's still a very comfortable place to be Covid-conscious, at least on this "feel" metric. Let's see how it compares on the more metric-y metrics. No one has ever said anything to me or treated me differently in Philadelphia because I was wearing a mask. In fast, I've had quite a few lovely interactions while masked. Lots of people are still masking in the city, especially on public transit. I didn't notice quite the same levels of masking at the airport as I did at O'Hare, but it's still a very comfortable place to be Covid-conscious, at least on this "feel" metric. Let's see how it compares on the more metric-y metrics.
@ -97,7 +97,7 @@ Sadly, I don't see any data about uptake of the bivalent booster. Unless Philade
# Pittsburgh, Pennsylvania # Pittsburgh, Pennsylvania
![A panorama of the former Pittsburgh Glass Company. In the center is a square with small trees in planters. All around are castle-like buildings made entirely of glass. The sky is partly cloudy and blue and is reflected in the buildings. A street lies in the foreground, with an armored vehicle to the left and some cars on the right. People are walking around and enjoying the square.](./assets/images/blog/covid-comfort-report-card-october-2023/pittsburgh.jpg) ![A panorama of the former Pittsburgh Glass Company. In the center is a square with small trees in planters. All around are castle-like buildings made entirely of glass. The sky is partly cloudy and blue and is reflected in the buildings. A street lies in the foreground, with an armored vehicle to the left and some cars on the right. People are walking around and enjoying the square.](./src/blog/covid-comfort-report-card-october-2023/images/pittsburgh.jpg)
By the time I got to Pittsburgh, I was on a bit of a hair trigger after having been harassed for masking in so many American cities. My head was on a bit of a swivel. I was out one evening getting bubble tea, and a frat bro shouted at me out of a car. Aside from that, people were very nice. My experience was colored more by the accrued psychic damage from months of harassment up to that point than it was by Pittsburgh itself. By the time I got to Pittsburgh, I was on a bit of a hair trigger after having been harassed for masking in so many American cities. My head was on a bit of a swivel. I was out one evening getting bubble tea, and a frat bro shouted at me out of a car. Aside from that, people were very nice. My experience was colored more by the accrued psychic damage from months of harassment up to that point than it was by Pittsburgh itself.
@ -105,7 +105,7 @@ By the time I got to Pittsburgh, I was on a bit of a hair trigger after having b
# Portland, Oregon # Portland, Oregon
![Multi-colored houses near downtown Portland, Oregon. The photo looks down a sidewalk. On the left, a few cars are parked on the street. On the right, you see three brightly colored houses, each a unique mix of various shades of blue, pink, red, green, purple, and yellow. The sky is blue, and the sun shines brightly from behind one of the houses.](./assets/images/blog/covid-comfort-report-card-october-2023/portland.jpg) ![Multi-colored houses near downtown Portland, Oregon. The photo looks down a sidewalk. On the left, a few cars are parked on the street. On the right, you see three brightly colored houses, each a unique mix of various shades of blue, pink, red, green, purple, and yellow. The sky is blue, and the sun shines brightly from behind one of the houses.](./src/blog/covid-comfort-report-card-october-2023/images/portland.jpg)
I always felt comfortable masking in Portland. It seems people mask at a higher rate than in other cities — comparable to Chicago and Seattle. I can't recall ever being harassed about it. I always felt comfortable masking in Portland. It seems people mask at a higher rate than in other cities — comparable to Chicago and Seattle. I can't recall ever being harassed about it.
@ -113,13 +113,13 @@ Portland does not, best I can tell, publish its own data, but [the Oregon Health
# Porto, Portugal # Porto, Portugal
![A cloudy day in Porto showing a street in the touristy part of town. The ground is wet, and a couple walks toward the camera carrying folded umbrellas. On the right of the frame, we see outdoor seating for a couple of restaurants. on the left, buildings each about seven stories high. The ground level has a series of arches. Further down, the street is lined on both sides by buildings of a similar height, and the street begins to curve left and go up a hill. A dozen or so people are walking the streets and surrounding areas in the shot.](./assets/images/blog/covid-comfort-report-card-october-2023/porto.jpg) ![A cloudy day in Porto showing a street in the touristy part of town. The ground is wet, and a couple walks toward the camera carrying folded umbrellas. On the right of the frame, we see outdoor seating for a couple of restaurants. on the left, buildings each about seven stories high. The ground level has a series of arches. Further down, the street is lined on both sides by buildings of a similar height, and the street begins to curve left and go up a hill. A dozen or so people are walking the streets and surrounding areas in the shot.](./src/blog/covid-comfort-report-card-october-2023/images/porto.jpg)
I don't have much to say about Porto that I didn't already say about Braga. People were kind and no one hassled me during my time here. I don't have much to say about Porto that I didn't already say about Braga. People were kind and no one hassled me during my time here.
# Salt Lake City, Utah # Salt Lake City, Utah
![A sea of concrete running through downtown Salt Lake City: this shot is taken from a center of a six-lane plus turning lane monstrosity gouging through the center of downtown Salt Lake City. You can see the traffic lights faced to the lane carrying traffic going away from the camera. The pole holds four signals, all red. There are very few cars in the frame. Further in the distance, you can see some highrise buildings. On the left, a glass building with some yellow accents. On the right, a building currently under construction along with an orange construction crane.](./assets/images/blog/covid-comfort-report-card-october-2023/slc.jpg) ![A sea of concrete running through downtown Salt Lake City: this shot is taken from a center of a six-lane plus turning lane monstrosity gouging through the center of downtown Salt Lake City. You can see the traffic lights faced to the lane carrying traffic going away from the camera. The pole holds four signals, all red. There are very few cars in the frame. Further in the distance, you can see some highrise buildings. On the left, a glass building with some yellow accents. On the right, a building currently under construction along with an orange construction crane.](./src/blog/covid-comfort-report-card-october-2023/images/slc.jpg)
Salt Lake City wasn't my favorite place to be — their downtown is made up primarily of endless criss-crossing highways — but I wasn't accosted a single time about my mask. I even got a haircut here while masked, and the barber was very friendly. I was here for a conference, and the conference required masking which was awesome! That led to SLC being one of my most comfortable places, along with Philly, Chicago, Portland, Seattle… and anywhere that *isn't* the US. 😅 Salt Lake City wasn't my favorite place to be — their downtown is made up primarily of endless criss-crossing highways — but I wasn't accosted a single time about my mask. I even got a haircut here while masked, and the barber was very friendly. I was here for a conference, and the conference required masking which was awesome! That led to SLC being one of my most comfortable places, along with Philly, Chicago, Portland, Seattle… and anywhere that *isn't* the US. 😅
@ -127,7 +127,7 @@ Salt Lake City wasn't my favorite place to be — their downtown is made up prim
# Seattle, Washington # Seattle, Washington
![The most nineties car you have ever seen, parked on a street in Seattle, Washington. It is a Subaru, Baja — a car with a truck bed. The car is painted teal, pink, grey, red, and yellow. It is apparently a delivery car for a restaurant called Un Bien Caribbean and Latin Food.](./assets/images/blog/covid-comfort-report-card-october-2023/seattle.jpg) ![The most nineties car you have ever seen, parked on a street in Seattle, Washington. It is a Subaru, Baja — a car with a truck bed. The car is painted teal, pink, grey, red, and yellow. It is apparently a delivery car for a restaurant called Un Bien Caribbean and Latin Food.](./src/blog/covid-comfort-report-card-october-2023/images/seattle.jpg)
I love Seattle. I've spent a lot of time here, and I've never felt uncomfortable masking. Masking is still relatively common, and I know from my time living there that vaccination rates are sky-high… but let's see exactly *how* sky-high they are. I love Seattle. I've spent a lot of time here, and I've never felt uncomfortable masking. Masking is still relatively common, and I know from my time living there that vaccination rates are sky-high… but let's see exactly *how* sky-high they are.

View file

@ -7,7 +7,7 @@ tags: feed
I was very bad at the video game Curse of the Dead Gods at first because "curses" were, in my mind, something to be avoided at all costs. I thought of them as punishments for doing poorly, and I didn't want to be punished. I was very bad at the video game Curse of the Dead Gods at first because "curses" were, in my mind, something to be avoided at all costs. I thought of them as punishments for doing poorly, and I didn't want to be punished.
![The main character of Curse of the Dead Gods getting a curse](./assets/images/blog/curses-aint-all-bad/getting-a-curse.jpg) ![The main character of Curse of the Dead Gods getting a curse](./src/blog/curses-aint-all-bad/images/getting-a-curse.jpg)
You can't avoid them, though, and once you've played a few times, you realize curses aren't all that bad. In fact, the rewards you get by making blood offerings generally outweigh the problems the curses introduce. The curses usually even have a tiny upside. You can't avoid them, though, and once you've played a few times, you realize curses aren't all that bad. In fact, the rewards you get by making blood offerings generally outweigh the problems the curses introduce. The curses usually even have a tiny upside.

View file

@ -9,25 +9,25 @@ These are my thoughts on some games I've played over the last few months, in no
# Spookware # Spookware
![Screenshot of Spookware featuring the three skeleton player characters standing on the deck of a cruise ship](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/spookware.jpg) ![Screenshot of Spookware featuring the three skeleton player characters standing on the deck of a cruise ship](./src/blog/rapid-fire-game-reviews-holiday-2022/images/spookware.jpg)
The microgames of [WarioWare](https://www.igdb.com/games/warioware-inc-mega-microgames) paired with the cute and self-aware irreverence of [Undertale](https://www.igdb.com/games/undertale) (featuring skeletons just to complete the analogy). I really like the vibe here. The one surprising thing about the game is that a lot of it _isn't_ the WarioWare-style microgames. There's a old style adventure game bridging between the somewhat rare microgame segments. That part can be tedious. I'd like to see a sequel that de-emphasizes this aspect of the game and leans harder into the microgames. Still a lot of fun though. It had me laughing out loud. The microgames of [WarioWare](https://www.igdb.com/games/warioware-inc-mega-microgames) paired with the cute and self-aware irreverence of [Undertale](https://www.igdb.com/games/undertale) (featuring skeletons just to complete the analogy). I really like the vibe here. The one surprising thing about the game is that a lot of it _isn't_ the WarioWare-style microgames. There's a old style adventure game bridging between the somewhat rare microgame segments. That part can be tedious. I'd like to see a sequel that de-emphasizes this aspect of the game and leans harder into the microgames. Still a lot of fun though. It had me laughing out loud.
# Neon White # Neon White
![Screenshot of Neon White featuring the player character's first-person perspective on a giant bust statue on the left, a dark gray treasure chest with gold trim on the right, a spider-like demon standing next to a potted tree center, and a large white building just behind the demon with a red breakable wall on one of its faces](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/neon-white.jpg) ![Screenshot of Neon White featuring the player character's first-person perspective on a giant bust statue on the left, a dark gray treasure chest with gold trim on the right, a spider-like demon standing next to a potted tree center, and a large white building just behind the demon with a red breakable wall on one of its faces](./src/blog/rapid-fire-game-reviews-holiday-2022/images/neon-white.jpg)
One of my favorite things to do in a game is to refine my skill. I like to throw myself against a challenge over and over until I finally overcome it. I think a lot about an old PS2 game that I never hear anyone talk about anymore: [Stuntman](https://www.igdb.com/games/stuntman). You played a stunt driver going from movie to movie taking on-the-fly direction as you pulled the stunts needed for various movie scenes. I don't hear people talking about that game, but it was a favorite of mine. This is that but with an art style that screams "Japanese video game!" I'm pretty sure this _isn't_ Japanese, but it could pass. Lots of fun to be had here. I look forward to getting deeper into it and refining my times! One of my favorite things to do in a game is to refine my skill. I like to throw myself against a challenge over and over until I finally overcome it. I think a lot about an old PS2 game that I never hear anyone talk about anymore: [Stuntman](https://www.igdb.com/games/stuntman). You played a stunt driver going from movie to movie taking on-the-fly direction as you pulled the stunts needed for various movie scenes. I don't hear people talking about that game, but it was a favorite of mine. This is that but with an art style that screams "Japanese video game!" I'm pretty sure this _isn't_ Japanese, but it could pass. Lots of fun to be had here. I look forward to getting deeper into it and refining my times!
# Timespinner # Timespinner
![Screenshot of Timespinner featuring the player character at the bottom of stairs, backed by her small green dragon familiar, hitting a red enemy with a sword](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/timespinner.jpg) ![Screenshot of Timespinner featuring the player character at the bottom of stairs, backed by her small green dragon familiar, hitting a red enemy with a sword](./src/blog/rapid-fire-game-reviews-holiday-2022/images/timespinner.jpg)
More than any game I've tried, this game reminds me of [Symphony of the Night](https://www.igdb.com/games/castlevania-symphony-of-the-night). That's one of my favorites, so I'm excited to play more of this. It feels right in all the ways Symphony did. More than any game I've tried, this game reminds me of [Symphony of the Night](https://www.igdb.com/games/castlevania-symphony-of-the-night). That's one of my favorites, so I'm excited to play more of this. It feels right in all the ways Symphony did.
# Teardown # Teardown
![Screenshot of Teardown featuring a large yellow piece of construction machinery with a red arm being driven through the side of a red building. A light can be seen through the hole in the side of the building. A car is parked on the right and a truck with trailer on the left.](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/teardown.jpg) ![Screenshot of Teardown featuring a large yellow piece of construction machinery with a red arm being driven through the side of a red building. A light can be seen through the hole in the side of the building. A car is parked on the right and a truck with trailer on the left.](./src/blog/rapid-fire-game-reviews-holiday-2022/images/teardown.jpg)
The destruction is so cool. Not too sure about the game they've wrapped around it. It's neat, but setting up a route to race out of a level once I start destroying stuff wouldn't be my first choice of activity. I want to take my time and bask in the destruction. The destruction is so cool. Not too sure about the game they've wrapped around it. It's neat, but setting up a route to race out of a level once I start destroying stuff wouldn't be my first choice of activity. I want to take my time and bask in the destruction.
@ -45,29 +45,29 @@ I just finished [Dark Pictures: Little Hope](https://www.igdb.com/games/the-dark
# Persona 5 Royal # Persona 5 Royal
![Screenshot of Person 5 Royal featuring the player character standing just inside the turnstiles in a Japanese train station. A group of three young women are standing and talking a few feet away.](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/persona-5.jpg) ![Screenshot of Person 5 Royal featuring the player character standing just inside the turnstiles in a Japanese train station. A group of three young women are standing and talking a few feet away.](./src/blog/rapid-fire-game-reviews-holiday-2022/images/persona-5.jpg)
Slick, stylish, and beautiful. Tedious and not very fun to play. A soundtrack that parks itself in your head well after the meter runs out. Slick, stylish, and beautiful. Tedious and not very fun to play. A soundtrack that parks itself in your head well after the meter runs out.
# Delta Manifold # Delta Manifold
![Screenshot of Delta Manifold from the player character's perspective, looking down the barrel of a rectangular flat-shaded gun, aiming and firing at a large black humanoid figure with a triangular torso in a green environment covered with vines](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/delta-manifold.jpg) ![Screenshot of Delta Manifold from the player character's perspective, looking down the barrel of a rectangular flat-shaded gun, aiming and firing at a large black humanoid figure with a triangular torso in a green environment covered with vines](./src/blog/rapid-fire-game-reviews-holiday-2022/images/delta-manifold.jpg)
I wish I liked this one more, but it needs a lot of polish. Some better sign-posting would be nice too. I don't want literal signposts, but I need something more than the game is giving me to tell me what to do next. The levels are just random hallways and rooms connected together with tons of dead-ends. I can't tell if I'm missing something or if someone just banged these out really quick in Unity and left all the parts where they landed. The description on the game's Steam page says it wants to be [Metroid Prime](https://www.igdb.com/games/metroid-prime). I want it to be too, but it's not there yet. I wish I liked this one more, but it needs a lot of polish. Some better sign-posting would be nice too. I don't want literal signposts, but I need something more than the game is giving me to tell me what to do next. The levels are just random hallways and rooms connected together with tons of dead-ends. I can't tell if I'm missing something or if someone just banged these out really quick in Unity and left all the parts where they landed. The description on the game's Steam page says it wants to be [Metroid Prime](https://www.igdb.com/games/metroid-prime). I want it to be too, but it's not there yet.
# Dread Delusion and Lunacid # Dread Delusion and Lunacid
![Screenshot of Dread Delusion from the player character's perspective, at the top of steps approaching a doorway to a buiding. A tree is directly in front, and to the right, a giant pink moon with red wisps coming out of it, behind mountains and evergreen trees in the distance.](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/dread-delusion.jpg) ![Screenshot of Dread Delusion from the player character's perspective, at the top of steps approaching a doorway to a buiding. A tree is directly in front, and to the right, a giant pink moon with red wisps coming out of it, behind mountains and evergreen trees in the distance.](./src/blog/rapid-fire-game-reviews-holiday-2022/images/dread-delusion.jpg)
I'm lumping these together because they're both first-person RPGs that call out [King's Field](https://www.igdb.com/games/king-s-field) as an influence. Dread Delusion has a fun surreal art style but feels a bit more aimless. Both games have you wondering around a fair bit, but I felt the pain of it more in Dread Delusion. Something about the sparseness of the world and the same-ness of the environments I've been going through so far makes me feel this game is the thinner of the two, even though I'm pretty sure it's the one that has been "released" while Lunacid is still in early access. It's cool and I want to play more, but I'm not in love. I'm lumping these together because they're both first-person RPGs that call out [King's Field](https://www.igdb.com/games/king-s-field) as an influence. Dread Delusion has a fun surreal art style but feels a bit more aimless. Both games have you wondering around a fair bit, but I felt the pain of it more in Dread Delusion. Something about the sparseness of the world and the same-ness of the environments I've been going through so far makes me feel this game is the thinner of the two, even though I'm pretty sure it's the one that has been "released" while Lunacid is still in early access. It's cool and I want to play more, but I'm not in love.
![Screenshot of Lunacid from the player character's perspective as they hold a sword, in a hallway in a tight catacomb with a slime-covered skeleton in front. Just beyond the skeleton, a bright yellow-green light floods in from a grate on the ceiling.](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/lunacid.jpg) ![Screenshot of Lunacid from the player character's perspective as they hold a sword, in a hallway in a tight catacomb with a slime-covered skeleton in front. Just beyond the skeleton, a bright yellow-green light floods in from a grate on the ceiling.](./src/blog/rapid-fire-game-reviews-holiday-2022/images/lunacid.jpg)
Lunacid feels different. There's something about the darkness of it. Everything is darker. I'm spending a lot of time in tight corridors. It's a lot different from the bright environments of Dread Delusion, and I like it. I feel like I'm really discovering in this game. I'm poking at walls and finding things the game wants me to think I wasn't supposed to find. Yesterday, I found an item that was very surprising, and I'm exciting to see how it fits into this game. When I level up in Dread Delusion, it doesn't really feel like anything has changed. In Lunacid, I feel like my character is actually progressing. There's a lot I'm excited about here. Lunacid feels different. There's something about the darkness of it. Everything is darker. I'm spending a lot of time in tight corridors. It's a lot different from the bright environments of Dread Delusion, and I like it. I feel like I'm really discovering in this game. I'm poking at walls and finding things the game wants me to think I wasn't supposed to find. Yesterday, I found an item that was very surprising, and I'm exciting to see how it fits into this game. When I level up in Dread Delusion, it doesn't really feel like anything has changed. In Lunacid, I feel like my character is actually progressing. There's a lot I'm excited about here.
# Immortality # Immortality
![Screenshot of Immortality showing an actress on the left with large hoop earrings twirling her hair and looking at the clapper loader who stands at the right edge of the frame. The clapper loader is about to clap the clapper board which has the following text: "Minsky. Gino DeGiorgio Entertainment. Dir. John DURICK. INT/NIGHT. 7-20-70. 44A. 2." Three other actors stand just behind the clapper board looking at the actress on the left. The caption reads "Scene 44A, take two."](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/immortality.jpg) ![Screenshot of Immortality showing an actress on the left with large hoop earrings twirling her hair and looking at the clapper loader who stands at the right edge of the frame. The clapper loader is about to clap the clapper board which has the following text: "Minsky. Gino DeGiorgio Entertainment. Dir. John DURICK. INT/NIGHT. 7-20-70. 44A. 2." Three other actors stand just behind the clapper board looking at the actress on the left. The caption reads "Scene 44A, take two."](./src/blog/rapid-fire-game-reviews-holiday-2022/images/immortality.jpg)
I love what this game is in my head, but I'm not sold yet on what it is in reality. Because of the way I play games, I'm scared to death about the prospect of trying to come back to this game in four months when I remember I want to play more of it but _don't_ remember anything that happened in it. I hope the game has a mechanism to ease me back in at that point, but very few games actually do have something like that. When that day comes, I'm probably going to feel like I need to restart... and there's zero chance I actually do that. The anxiety about the way this game will fit into my life fills me with dread even while I've enjoyed my time with the game so far. I love what this game is in my head, but I'm not sold yet on what it is in reality. Because of the way I play games, I'm scared to death about the prospect of trying to come back to this game in four months when I remember I want to play more of it but _don't_ remember anything that happened in it. I hope the game has a mechanism to ease me back in at that point, but very few games actually do have something like that. When that day comes, I'm probably going to feel like I need to restart... and there's zero chance I actually do that. The anxiety about the way this game will fit into my life fills me with dread even while I've enjoyed my time with the game so far.
@ -75,13 +75,13 @@ I love what this game is in my head, but I'm not sold yet on what it is in reali
# Haak # Haak
![Screenshot of Haak showing the player character, a black figure with a round head and oblong oblique-angled yellow eyes. The character wears a blue cape and stands on a concrete interstate bridge in front of a large soldier wearing a uniform jumpsuit and a single-piece goggle and holding a large firearm. The soldier guards a hollowed-out bus that has been fashioned as a continuation of the bridge, with spikes on top and a sign that says "NEO." The bridge has spikes in the near background. Further in the background, we see a dilapidated billboard with a woman holding a drink and smiling next to foreign text, a watch tower, and a large building in disrepair. The sky is a pink orange.](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/haak.jpg) ![Screenshot of Haak showing the player character, a black figure with a round head and oblong oblique-angled yellow eyes. The character wears a blue cape and stands on a concrete interstate bridge in front of a large soldier wearing a uniform jumpsuit and a single-piece goggle and holding a large firearm. The soldier guards a hollowed-out bus that has been fashioned as a continuation of the bridge, with spikes on top and a sign that says "NEO." The bridge has spikes in the near background. Further in the background, we see a dilapidated billboard with a woman holding a drink and smiling next to foreign text, a watch tower, and a large building in disrepair. The sky is a pink orange.](./src/blog/rapid-fire-game-reviews-holiday-2022/images/haak.jpg)
This Metroidvania is just really well executed. Moving around feels great. The unlockable abilities are paced well, and I haven't felt stuck so far. Just a nice experience with fun art and a cute cat helping you find your way, at least in the early parts. This Metroidvania is just really well executed. Moving around feels great. The unlockable abilities are paced well, and I haven't felt stuck so far. Just a nice experience with fun art and a cute cat helping you find your way, at least in the early parts.
# Midnight Fight Express # Midnight Fight Express
![Screenshot of Midnight Fight Express showing the main character wearing black pants, black shoes, a black jacket, and a white shirt. He stands on top of a train running next to an empty track. He reaches back to punch one of several opponents dressed in colorful outfits as another group approaches from behind, one baring a knife.](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/midnight-fight-express.jpg) ![Screenshot of Midnight Fight Express showing the main character wearing black pants, black shoes, a black jacket, and a white shirt. He stands on top of a train running next to an empty track. He reaches back to punch one of several opponents dressed in colorful outfits as another group approaches from behind, one baring a knife.](./src/blog/rapid-fire-game-reviews-holiday-2022/images/midnight-fight-express.jpg)
The [Arkham Asylum](https://www.igdb.com/games/batman-arkham-asylum) combat works in an isometric game. I thought this was going to be great, but I think it will be ultimately forgettable. I nearly forgot to include it here! The [Arkham Asylum](https://www.igdb.com/games/batman-arkham-asylum) combat works in an isometric game. I thought this was going to be great, but I think it will be ultimately forgettable. I nearly forgot to include it here!
@ -95,7 +95,7 @@ A flashy action game that's a bit awkward to play. Maybe it would get better if
# Pentiment # Pentiment
![Screenshot of Pentiment showing the main character Andreas with long light-brown hair wearing a red cap, a red tunic over an off-white shirt and blue pants. He is speaking to a man with gray hair, mustache, and beard wearing an off-white shirt, gray pants, and a maroon apron, standing with his sheep next to a blacksmith's anvil and forge. Tongs and horseshoes hang on a rack in front of the forge. The man's text box says, "Do you have a moment to lend me a hand?" in a casual script. Andreas's text box shows two response options written in a more formal font: "Of course" and "I'm already late to the abbey"](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/pentiment.jpg) ![Screenshot of Pentiment showing the main character Andreas with long light-brown hair wearing a red cap, a red tunic over an off-white shirt and blue pants. He is speaking to a man with gray hair, mustache, and beard wearing an off-white shirt, gray pants, and a maroon apron, standing with his sheep next to a blacksmith's anvil and forge. Tongs and horseshoes hang on a rack in front of the forge. The man's text box says, "Do you have a moment to lend me a hand?" in a casual script. Andreas's text box shows two response options written in a more formal font: "Of course" and "I'm already late to the abbey"](./src/blog/rapid-fire-game-reviews-holiday-2022/images/pentiment.jpg)
This is another one that I'm in love with the idea of but not yet the game. I'll give it some more time. I've just played a few minutes at this point. This is another one that I'm in love with the idea of but not yet the game. I'll give it some more time. I've just played a few minutes at this point.
@ -111,6 +111,6 @@ The worst thing about Phoenotopia is that I can neither pronounce nor spell its
# Betrayal at Club Low # Betrayal at Club Low
![Screenshot of Betrayal at Club Low showing the main character — a blue man with glowing blue eyes wearing a pink and gray flannel over a yellow button-up shirt with orange collar, tan denim pants, and black shoes. He has a red hat with a slice of pizza on it and a red pizza bag on his back. He stands in a room with purple walls and wood flooring. On one wall hangs a blue glowing shovel in a red frame. On another wall, tusks of a large animal that glow blue and have lights on each of the tusks' tips. To the main character's right is a bin of yellow tennis balls. To his left, a series of security monitors on a desk, all showing a tennis match. A man wearing a brown jacket, black pants, and brown shoes sits at the desk with two empty drink cans in front of him along with a tennis racket and a custom computer keyboard with green, red, orange, yellow, and brown keys.](./assets/images/blog/rapid-fire-game-reviews-holiday-2022/betrayal.jpg) ![Screenshot of Betrayal at Club Low showing the main character — a blue man with glowing blue eyes wearing a pink and gray flannel over a yellow button-up shirt with orange collar, tan denim pants, and black shoes. He has a red hat with a slice of pizza on it and a red pizza bag on his back. He stands in a room with purple walls and wood flooring. On one wall hangs a blue glowing shovel in a red frame. On another wall, tusks of a large animal that glow blue and have lights on each of the tusks' tips. To the main character's right is a bin of yellow tennis balls. To his left, a series of security monitors on a desk, all showing a tennis match. A man wearing a brown jacket, black pants, and brown shoes sits at the desk with two empty drink cans in front of him along with a tennis racket and a custom computer keyboard with green, red, orange, yellow, and brown keys.](./src/blog/rapid-fire-game-reviews-holiday-2022/images/betrayal.jpg)
This one was a surprise. I went in expecting nothing. Actually, based on the... scrappiness of the interface, I expected this to be janky. It isn't. It's simple but polished. It's a point-and-click adventure with some tabletop RPG-style dice-rolling mechanics laid on top. The dice rolling is surprisingly deep. You're allowed two re-rolls per action, and you can select which dice to re-roll. Outcomes on the dice can add other rules as well like allowing you to re-roll opponent dice or swap results with your opponent. The art style is funky. It almost looks like it doesn't all belong together, but it works. If you want something quirky and charming as heck, this is a good choice. This one was a surprise. I went in expecting nothing. Actually, based on the... scrappiness of the interface, I expected this to be janky. It isn't. It's simple but polished. It's a point-and-click adventure with some tabletop RPG-style dice-rolling mechanics laid on top. The dice rolling is surprisingly deep. You're allowed two re-rolls per action, and you can select which dice to re-roll. Outcomes on the dice can add other rules as well like allowing you to re-roll opponent dice or swap results with your opponent. The art style is funky. It almost looks like it doesn't all belong together, but it works. If you want something quirky and charming as heck, this is a good choice.

View file

@ -10,13 +10,13 @@ It's hard to overstate the influence of [Minecraft](https://www.igdb.com/games/m
You could make a case for plenty of other games being the most influential too. [Super Mario Brothers](https://www.igdb.com/games/super-mario-bros) showed games could be more than just score chases. [Pitfall](https://www.igdb.com/games/pitfall) opened the door for developers not employed by the console maker to make games. [Mario 64](https://www.igdb.com/games/super-mario-64) was the template for 3D platforming. [Rogue](https://www.igdb.com/games/rogue) has a whole modern genre named after it! But in spite of everything these games and Minecraft brought to the table, none of them is the most influential game ever. Instead, that title belongs to another game with Minecraft's pixelly graphics and a first-person perspective. It's a game that, like Minecraft, was PC-first and created incredible longevity by fostering an enthusiastic modding community. It's a game that planted the seeds for some of the innovations Minecraft brought forward. You could make a case for plenty of other games being the most influential too. [Super Mario Brothers](https://www.igdb.com/games/super-mario-bros) showed games could be more than just score chases. [Pitfall](https://www.igdb.com/games/pitfall) opened the door for developers not employed by the console maker to make games. [Mario 64](https://www.igdb.com/games/super-mario-64) was the template for 3D platforming. [Rogue](https://www.igdb.com/games/rogue) has a whole modern genre named after it! But in spite of everything these games and Minecraft brought to the table, none of them is the most influential game ever. Instead, that title belongs to another game with Minecraft's pixelly graphics and a first-person perspective. It's a game that, like Minecraft, was PC-first and created incredible longevity by fostering an enthusiastic modding community. It's a game that planted the seeds for some of the innovations Minecraft brought forward.
![The Quake box art consisting of the title at the top written in white with the stylized 'Q' above a large brown stylized 'Q' logo, all on black](./assets/images/blog/the-most-influential-game-in-history/quake-box.png) ![The Quake box art consisting of the title at the top written in white with the stylized 'Q' above a large brown stylized 'Q' logo, all on black](./src/blog/the-most-influential-game-in-history/images/quake-box.png)
[Quake](https://www.igdb.com/games/quake) was the Minecraft of its day, and its day was about 15 years before the release of Minecraft. Let's take a look at the staggering number of innovations Quake brought gamers in the mid 90s. [Quake](https://www.igdb.com/games/quake) was the Minecraft of its day, and its day was about 15 years before the release of Minecraft. Let's take a look at the staggering number of innovations Quake brought gamers in the mid 90s.
# Modding # Modding
![A screenshot of the Arcane Dimensions Quake mode showing a red brick wall on the left with an arch cut into it. Beyond the arch is a tall and narrow yellow stained glass window with repeated divided circles and to the right of that, another archway made of a tan colored concrete. Directly ahead in the image is a white broken archway leading to a churchy-looking room containing a portal. There is a torch on the right side wall.](./assets/images/blog/the-most-influential-game-in-history/arcane-dimensions.jpg) ![A screenshot of the Arcane Dimensions Quake mode showing a red brick wall on the left with an arch cut into it. Beyond the arch is a tall and narrow yellow stained glass window with repeated divided circles and to the right of that, another archway made of a tan colored concrete. Directly ahead in the image is a white broken archway leading to a churchy-looking room containing a portal. There is a torch on the right side wall.](./src/blog/the-most-influential-game-in-history/images/arcane-dimensions.jpg)
Modding was around before Quake, but it came of age with Quake. Many community map and mod makers were ultimately hired as level designers and game developers. Valve recruited early employees out of the community and brought the team behind Quake mod Team Fortress in-house to build its sequel on Half-Life… which was itself built on the Quake 2 engine. Modding was around before Quake, but it came of age with Quake. Many community map and mod makers were ultimately hired as level designers and game developers. Valve recruited early employees out of the community and brought the team behind Quake mod Team Fortress in-house to build its sequel on Half-Life… which was itself built on the Quake 2 engine.
@ -40,7 +40,7 @@ Since the game included a few demos, you could run your benchmark against one of
# Speedrunning # Speedrunning
![The Quake Done Quick logo consisting of an overhead wireframe of a Quake map with an arrow drawn through it to indicate a run path starting at an 'X' and terminating at another 'X'. Superimposed on the map are actual in-game rocket launcher graphics showing the location of rocket launcher pickups in the map. A shambler graphic is overlaid near the end of the run path, presumably showing the location of a shambler enemy in the level. The “Quake guy” is shown in the lower right of the logo holding a stopwatch in his right hand and a trophy in his left. The words “Quake done Quick” with stylized 'Q's appear to his left.](./assets/images/blog/the-most-influential-game-in-history/quake-done-quick.jpg) ![The Quake Done Quick logo consisting of an overhead wireframe of a Quake map with an arrow drawn through it to indicate a run path starting at an 'X' and terminating at another 'X'. Superimposed on the map are actual in-game rocket launcher graphics showing the location of rocket launcher pickups in the map. A shambler graphic is overlaid near the end of the run path, presumably showing the location of a shambler enemy in the level. The “Quake guy” is shown in the lower right of the logo holding a stopwatch in his right hand and a trophy in his left. The words “Quake done Quick” with stylized 'Q's appear to his left.](./src/blog/the-most-influential-game-in-history/images/quake-done-quick.jpg)
Quakes demo file format was great for watching others compete in deathmatch or capture the flag matches, but it was also used to records speedruns through the games levels. Quakes demo file format was great for watching others compete in deathmatch or capture the flag matches, but it was also used to records speedruns through the games levels.
@ -68,7 +68,7 @@ This was the dawn of the WASD + mouse control scheme that is standard among firs
Before Quake, multiplayer gameplay on PC required either a game client that could dial up directly to another users modem or entering another players IP address in the game client. Enter QSpy, a Quake server browser that made it easier to find and connect to multiplayer games. Before Quake, multiplayer gameplay on PC required either a game client that could dial up directly to another users modem or entering another players IP address in the game client. Enter QSpy, a Quake server browser that made it easier to find and connect to multiplayer games.
![Screenshot of the QuakeSpy application showing the menubar and toolbar on top, a list of source categories on the left (including id official servers divided by game mode, PlanetQuake servers, best.com, and Australian servers), a series of tabs just below the toolbar and right of the sidebar (with options “All Servers,” “Passed Filters,” “Filtered Out,” “Favorites,” and “Never Ping”), a list of servers below the tabs (with columns for server name, ping, address, player count/capacity, and game), a list of the selected server's players on the left side below the server list, and a list of the server's options to the right of that](./assets/images/blog/the-most-influential-game-in-history/quakespy.jpg) ![Screenshot of the QuakeSpy application showing the menubar and toolbar on top, a list of source categories on the left (including id official servers divided by game mode, PlanetQuake servers, best.com, and Australian servers), a series of tabs just below the toolbar and right of the sidebar (with options “All Servers,” “Passed Filters,” “Filtered Out,” “Favorites,” and “Never Ping”), a list of servers below the tabs (with columns for server name, ping, address, player count/capacity, and game), a list of the selected server's players on the left side below the server list, and a list of the server's options to the right of that](./src/blog/the-most-influential-game-in-history/images/quakespy.jpg)
Side note: QSpy later became QuakeSpy and then [GameSpy](https://en.wikipedia.org/wiki/GameSpy), which eventually became an editorial site that operated until 2013. Side note: QSpy later became QuakeSpy and then [GameSpy](https://en.wikipedia.org/wiki/GameSpy), which eventually became an editorial site that operated until 2013.