Dozens and Dragons

2023 In Review

guess what happened this year

2024-01-03

CONTENTS

  1. BLOGS I BLOGGED
  2. GAMES I PLAYED
  3. GAMES I PUBLISHED

BLOGS I BLOGGED

I did 17 bloggers in 2k23, the year of the Barbie Movie.

I keep the source of all of my blog posts in these m4 files. And luckily they all include metadata including title and date. So I do some funky sed regex search and replace to format them in such a way that I can do a recsel on them. And then I have queryable blog post data!

Look at this silly bash oneliner.

fd "^[0-9]+.m4" \
| xargs grep -e timestamp -e title \
| sed -e 's/^.*\([0-9]\{4\}\)-[0-9]\{2\}-[0-9]\{2\}.*$/date: \1\n/' -e "s/^.*title, \`\([^']*\)'.*$/title: \1/" \
| recsel -p "date,Count(title):total" -G date

It gives me all my posts per year:

date: 2020
total: 11

date: 2021
total: 10

date: 2022
total: 18

date: 2023
total: 17

And then you can do a few more transformations…

...
| recfmt "{{date}} {{total}}" \
| gsed -e '1i .G1' -e '$a .G2' \
| groff -G -Tutf8

And you get get a pretty text graph!

   ┌─────────────────────────────┐
18─┤                  •          │
   │                           • │
16─┤                             │
   │                             │
   │                             │
14─┤                             │
   │                             │
   │                             │
12─┤                             │
   │ •                           │
10─┤          •                  │
   └─┬────────┬────────┬────────┬┘
     │        │        │        │
   2020     2021     2022     2023

Up and to the right! Number go up!

This section of the blog is bought to you by m4, recutils, and groff. That’s how you know it was written by me, dozens.

GAMES I PLAYED

I also keep my gamelogs in a recfile.

This year, in the year of the Barbie Movie, I played 13 games. 3 as a DM, 10 as a player.

SOLO GAMES

I have sadly ignored all of my solo games for what feels like 3/4 of the year. I would really like to get back into them in 2024, because I enjoy each of them. They all have a different vibe and feel.

PLAYER GAMES

DM GAMES

GAMES I PUBLISHED

Sadly, I do NOT have my itch.io stats in a recfile. 2024 goals.

This, the year of the Barbie Movie, was also the year of the absurd Giraffe / Horse TTRPG.

It was also the year of Vumpire! The world’s only Vampire Sports + Baseball Simulator in which you play a vampire umpire.

It was also apparently the year for games with exclamation marks!!

Game sources:

I made $68 total from itch.io this year. Which I consider to be pretty good because I don’t really promote my games that much, and also I always offer a free download option.

The forest game is still by best selling game, now followed by vumpire.

https://dozens.itch.io/forest

But Shoes in the Dark is still my most downloaded.

https://dozens.itch.io/shoes-in-the-dark

« older | 2024-01-03