Advent 2024 Dice Days 20-22
Let’s take a look at the latest die or dice from the Dice Envy Advent Calendar.
The advent calendar is mostly at the point where I’m filling out the glittery dice set. But there was a big surprise on day 21!
Advent 2024 Dice Days 15-19
Let’s take a look at the latest die or dice from the Dice Envy Advent Calendar.
This batch of dice contains my favorite die, topping the candle die from day 12. It also confirmed that I’ll be getting 2 full Dice Envy sets. A Dice Envy Set has the usual 7 plus a chonky d20, an oversized d6 with the Dice Envy logo and an infinity d4 (those pill-shaped d4s that I already got 2 of).
Professional TTRPG Year End Posts
I don’t have time tonight for the photo editing required for my Dice Envy advent calendar post, but I did have time to turn your attention to a couple professionals in the TTRPG space that have done some retrospectives on the year. They also happen to overlap with my 2024 a bit, which is what made me want to share them.
First up, game designer Richard Green shares his year in 2024 TTRPG gaming. Mr Green worked on the Labyrinth World Book for the Kobold Press kickstarter that I pledged to. I’m excited about the concept behind the campaign setting as described in the kickstarter. The titular Labyrinth not only ties together worlds created by Kobold Press, but they encourage DMs to also use this to tie into campaign settings from Wizards of the Coast (since ToV is currently pretty compatible with 2025 D&D 5e) or from any other publisher of D&D or ToV content. I know I already have some plans to have a lot of fun with my kids and the 5e Multiverse once this book comes out some time next year. (I’m also interested in his Parsantium world which is also now an official world in The Labyrinth)
Advent 2024 Dice Days 11-14
Let’s take a look at the latest die or dice from the Dice Envy Advent Calendar.
I thought that by not having to worry about solving the advent of code problems to write a post along with the dice I would be able to keep up with writing a post each day. Twas not to be as I’ve been incredibly busy at work recently.
Although the main sets are definitely the Elsa-blue and the glittery set, we had another of their neat pill d4s during this time period.
Advent 2024 Dice Days 09-10
Let’s take a look at the latest die or dice from the Dice Envy Advent Calendar.
There isn’t too much to say today that I haven’t already said while going through this dice Advent Calendar. It looks like the two main sets are the Elsa-blue and the yellow-which-photographs-green-glitter. (Hmm…need a better name). Today it’s a d4 for the former and a d6 for the latter.
Advent 2024 Dice Days 05-08
Let’s take a look at the latest die or dice from the Dice Envy Advent Calendar.
I got extremely busy with both work and my personal life, so I fell behind a bit. I also decided to drop Advent of Code from these posts (and from my life) as I can’t fit it in with the other things I’m busy with this month.
Advent 2024 Day 04
Time once again to review my Advent of Code solutions! The GitHub repo with all my solutions can be found here. Also featuring the latest die or dice from the Dice Envy Advent Calendar; scroll below the AoC code to see today’s die.
Advent of Code
Today I did not attempt the advent of code problem. It involved solving a word search in which there could be overlapping words as well as, if I read it correctly, multiple words starting from the same place. I’m guessing it’s to be done with a depth-first or breadth-first search in which you kill off searches if you can’t continue. I know these sorts of problems present themselves every year, but I never have time to learn during the AoC period (with work, life, and Christmas in the way) and I never make it a priority to relearn (I was taught this back in undergrad). So rather than waste my time on something I know that I won’t know how to do, I’ll save it for another time - maybe when I’m taking time off closer to Christmas/New Years Day.
Advent 2024 Day 03
Time once again to review my Advent of Code solutions! Also the latest die or dice from the Dice Envy Advent Calendar; scroll below the AoC code to see today’s die.
Advent of Code
As the years have piled on, Eric Wasl has thrown in references to past years’ problems. However, as of day 3 we now have 2 references (perhaps that’s what the historian story line is about). Day 02 had you visit the location of 2015 Day 19 and today visited the location of 2020 Day 2 (my first year doing Advent of Code!) The only thing I’m slightly worried about is if this signals that this year will be a grand finale for the annual event.
Advent 2024 Day 02
Time once again to review my Advent of Code solutions! Also the latest die or dice from the Dice Envy Advent Calendar; scroll below the AoC code to see today’s die.
Talk Python Bits
Michael Kennedy from the podcasts Python Bytes and Talk Python has recently written a couple blog posts that I wanted to highlight here. First up is his post about rewriting the Talk Python site in Quart (aka async Flask). Three and a half years ago I wrote about realizing that it’s not about Django vs Flask vs FastAPI, but actually about finding the right framework for your workload. I didn’t completely state my current thought process in that blog post, but I was pretty close to the advice I currently give. If you want a Python-based site that needs CMS features and you don’t want to have to reinvent the world, Django is your framework. If you are making websites where you want to be in control of every puzzle piece, then you want flask. You only bring in what you need. And if you’re writing REST API based site (controversy about whether REST truly is REST aside), you want FastAPI. Well, I respect Michael Kennedy’s opinion on this matter for a few reasons: