Don't Let Your Code Cause the Next Software Disaster | Issue #11


Hi there,

This week has been anything but typical for ArjanCodes. Last Sunday, I released an additional video provoked by one of the largest recent IT disasters - the CrowdStrike incident. 🚨

In this video, I explore how the CrowdStrike disaster exposes a fundamental problem in software and why it will probably get worse in the future. If you missed it, you can watch it here.

The recent events motivated me to create another video, offering concrete examples and steps to ensure your code doesn't lead to a software disaster. 🛡️💻

I'll also share real-world examples from companies that basically serve as a crash course in what NOT to do. 🚫

Enjoy the video and happy coding!

Cheers,

Arjan

# Spotlight

PyCoach

Today I’d like to introduce you to Frank (aka The PyCoach). Frank has a Substack called Artificial Corner where he helps thousands of tech enthusiasts, developers, and data professionals make the most out of AI. He has contributed to the programming community through his Python courses on YouTube and Udemy and has recently launched a ChatGPT course where he teaches prompt engineering techniques to get better responses and how to make the most of ChatGPT’s most powerful features for programming, data analysis and more”

# News

Python's Pickle Module

This week, I took a dive into Python’s Pickle module. 🥒

While Pickle is a powerful tool for serializing and deserializing objects, it carries significant security risks you should know about. 🚨

I’ll explore these dangers and introduce safer alternatives like JSON and MessagePack to keep your projects secure and efficient. 🛡️

Make your Python applications safer and more robust! Click here to read the post.

UUIDs and When to Use Them

Nicole Tietz has recently published a comprehensive blog post that explores the various versions of UUIDs (Universally Unique Identifiers) and their specific use cases. 🖥️

She explains the differences between UUID versions 1, 3, 4, and 5, discussing their unique attributes, advantages, and ideal scenarios for use.

This article is a must-read for developers seeking to understand how to effectively implement UUIDs in their projects to ensure unique and reliable identifiers. 🌟 Click here to check it out.

# Community

🔍 Struggling with project structure in Python? Join the insightful discussion on my Discord server where community members share tips on using MVC, logging, and argparse to kick-start your Python project.

💬 From organizing files to handling CLI arguments and logging, this thread offers practical advice to help you refine your design patterns and streamline your workflow. 👉 Dive into the full conversation here.


Do you enjoy my content on YouTube and would you like to dive in deeper? Check out my online courses below. They've helped thousands of developers take the next step in their careers.

🚀 The Mindset Online Course Series

The goal of this series is to help junior developers grow their skills to become senior developers faster.

💥 Other Courses

💡 If you’re part of a development team at a company, I offer special packages for companies that give your team the tools to consistently write high-quality code and dramatically increase your team's productivity.

🪄 Learntail

My team and I created an AI quiz generator designed to accelerate your learning, called Learntail. You can try it for free or unlock even more capabilities and features with the monthly subscription. Take a look here.

Unsubscribe | Send by ArjanCodes

Wolvenplein 25, Utrecht, UT 3512 CK

The Friday Loop

Every Friday, you'll get a recap of the most important and exciting Python and coding news. The Friday Loop also keeps everyone posted on new ArjanCodes courses and any limited offers coming up.

Read more from The Friday Loop

AI can write code now. But you already knew that :). If you’ve tried using AI seriously, you’ve probably noticed something: the code works (kind of) and then slowly turns into a mess. In this week’s video, I show why prompting alone isn’t enough and why software design is becoming more important, not less, in an AI-driven world. I walk through a real interaction with an AI coding assistant and show how thinking in terms of responsibilities, structure, and system boundaries completely changes...

In a recent video on refactoring complicated business logic, I managed to introduce several subtle errors. Many of you immediately spotted them in the comments. That’s exactly what my first video in 2026 is about. I walk through the mistakes I made, explain why they happened, and show how easy it is to accidentally change behavior when you refactor code. Even with tests in place and decent coverage, assumptions can sneak in, business rules can shift, and logic can quietly break without anyone...

You’ve tested the endpoint. The response looks right. No errors in the terminal. So you’re done, right? Well... not quite. In the last video of this year (time flies!) I start with a tiny FastAPI app that "works", and step by step, I turn it into something that’s actually ready for production (and that's more work than you think). That includes: Proper type usage Input validation and error handling Configuration management Rate limiting to prevent abuse ...and more! All using a real example:...