I Turned Myself Into an Action Figure

I Turned Myself Into an Action Figure

Part of being in tech, especially in emerging memory technology, is constantly switching between the serious and the surreal. One day you’re in kernel debug mode, the next you’re explaining complex system architectures on a whiteboard, and then suddenly you’re jumping on the latest craze such as making yourself into an action figure.

It’s fun. It’s human. And honestly? It’s a reminder not to take yourself too seriously. (Even if your job title suggests differently)

Why Blister Packs Are Suddenly Everywhere

If you’ve been seeing action figure-style blister packs all over your timeline lately, you’re not imagining things; it’s a full-blown craze.

This trend kicked off when OpenAI released the ChatGPT-4o model on May 13, 2024, and introduced a set of new image generation capabilities that included more refined control over layout, packaging design, and high-fidelity photo rendering. People instantly began using it to turn themselves (and their friends, pets, and even fictional alter-egos) into collectible-style figures—complete with accessories, personality-driven packaging, and clever titles.

Why blister packs? They’re nostalgic, instantly recognizable, and strangely satisfying. The combination of pop culture toy aesthetics with modern personal branding hits a sweet spot. Whether you’re a tech professional, artist, or just someone who loves a good meme, these creations are the perfect blend of humor, identity, and design.

For me, it was a way to merge my professional identity with a playful twist. I spend my days working on serious memory tech—CXL, persistent memory, data platforms—but this was a chance to repackage that story (literally) in a totally unexpected way.

Plus… who wouldn’t want to be their own action figure?

The Prompt

Here is the prompt I used to create the final image

Create an image. Create an action figure of the person in the photo.

Next to the figure, there should be the toy’s equipment, each in its individual blister.

1. A book called “Programming Persistent Memory”. Use the attached book cover image
2. Cell Phone
3. A MacBook Pro (closed)
4. The MemVerge logo (Use the attached logo)

Don’t repeat the equipment under any circumstances. 

The blister pack should have a black header with a large white text –Steve Scargall – with smaller white text underneath – Director of Product Management. The blister pack background should be beige with a black border.

Visualize this in a realistic way. The action figure must retain my facial features with a smiling expression, and be rendered in high-detail, photorealistic quality.

The Result

While the result is very impressive this generation/version of the model struggles to maintain the original facial features, so you end up with something that doesn’t quite resemble your original image.

Blister Pack Steve

Final Thoughts – Collect ’Em All!

Honestly, this whole thing was way more fun than I expected. I got to see myself as a mini collectible, complete with accessories I actually use every day. There are lots of model styles, so maybe this is the start of the Tech Legends collection. Next time I’ll convert this to a 3D model that I can print on my 3D printer. Time to turn them into shelf-worthy greatness.

How to Build acpidump from Source and use it to Debug Complex CXL and PCI Issues

How to Build acpidump from Source and use it to Debug Complex CXL and PCI Issues

This article is a detailed guide on how to build the latest version of the acpidump tool from its source code. While many Linux distributions, like Ubuntu, offer a packaged version of this utility, it’s often outdated. For developers and enthusiasts working with modern hardware features, particularly those related to Compute Express Link (CXL), having the most current version is essential.

Before you begin, it’s important to remove any old, conflicting versions of the tools. If you have previously installed the acpica-tools package from your distribution’s repository, you should remove it to prevent conflicts.

Read More
How to Create a Bootable Windows USB in Fedora Linux

How to Create a Bootable Windows USB in Fedora Linux

In this tutorial, I am going to show you how to create a Windows Server 2019 bootable USB in Linux, though any Windows version will work. I am using Fedora 30 for this tutorial but the steps should be valid for other Linux distributions as well.

Here’s what you need:

  • Windows Server 2019 ISO (or Windows 10 ISO)

  • WoeUSB Application

  • A USB key (pen drive or stick) with at least 6 Gb of space

    Read More
How to build an upstream Fedora Kernel from source

How to build an upstream Fedora Kernel from source

I typically keep my Fedora system current, updating it once every week or two. More recently, I wanted to test the Idle Page Tracking feature, but this wasn’t enabled in the default kernel provided by Fedora.

# grep CONFIG_IDLE_PAGE_TRACKING /boot/config-$(uname -r)
# CONFIG_IDLE_PAGE_TRACKING is not set

To enable the feature, we need to build a custom kernel with the feature(s) we need. Thankfully, the process isn’t too difficult.

For this walk through, I’ll be building a customised version of the Fedora 32 kernel version I already have installed (5.8.7-200.fc32.x86_64), using some of the instructions from https://fedoraproject.org/wiki/Building_a_custom_kernel .

Read More