We Should Use Instrumented Profiling Scopes More

Do you use instrumented profilers? You should! Let’s quickly see how!

I have made an entire talk about profiling. Still, I keep running across projects that don’t use profilers much or at all. Or even more commonly, they do use profilers but do not know they can enrich their projects with profiler markers that would make captures more valuable and much easier to parse. Let’s fix that!

Continue reading We Should Use Instrumented Profiling Scopes More

An Honest Review of AI Programming

They gave me a Claude subscription and told me to get tokenmaxxing, so I tried to give it a fair shot.

It’s getting hard to avoid LLMs these days. Even if you avoid social media (or at least curate a follow list that avoids the bulk of the slop factory) and shrug off grandiose marketing statements that end up taken at face value in the news, it will likely come and find you at your place of work. Unlike the silver bullets of the past (like microservices or NoSQL), AI adoption seems to have been mandated in many places from the top layer of management, regardless of how many of them ever worked (or studied for) an engineering job.

Continue reading An Honest Review of AI Programming

What makes a game tick? Special Issue - Buffy the Performance Slayer

Let’s talk about game simulations. In this special issue we talk about how to handle buffs, modifiers and other stat bonuses.

Whether one is making a RPG or a strategy game, there usually comes a time where designers want to attach a bunch of stats buffs and debuffs to each and every object in the game. The game actors start small but eventually we want our characters, units, countries and monsters stats to be able to be affected by a mix of equipment, perks, area effects, difficulty settings and whatnot. And if we don’t take care, it might turn our game into buff recalculation simulator 2000.

Continue reading What makes a game tick? Special Issue - Buffy the Performance Slayer

Can we finally use C++ Modules in 2026?

Kinda? Maybe? It’s complicated.

Every 6 to 12 months, I try to use C++ modules, run into a hurdle, maybe rant about it on social media, then move on to something else. Despite watching multiple talks on the topic, there’s always something that gets in the way. My biggest success so far has been managing to use the VulkanHpp module in my renderer library, after which things started breaking down. But after making some progress again last week (and running into new hurdles), I feel like I have enough to make a proper summary.

Continue reading Can we finally use C++ Modules in 2026?

Pagination