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

Hey everyone, I was reviewing some of the projects I’ve worked on over the past year, and I noticed something interesting: I almost never use Python’s @dataclass anymore. Not because it’s bad. In fact, dataclasses are still a great feature of the language. But as my projects have grown more complex, especially with tools like FastAPI, Pydantic, and SQLAlchemy, I’ve found that dataclasses just… don’t fit the way I design software anymore. In my latest video, I dive into this in detail. You’ll...

Hi there, You’ve probably heard that serverless is the easiest way to deploy code to the cloud. And on the surface, it is. With Google Cloud Functions, you can literally deploy a simple Python function like this: def hello(request): return "Hello from Cloud!" A few lines of code. No servers. No infrastructure. But... there are quite a few limitations: No FastAPI or async support One route per function requirements.txt only, no pyproject.toml Cold starts for large dependencies No custom...

Hey there, Heard of MCP? It stands for Model Context Protocol: an open standard that lets AI models like Claude or ChatGPT connect to real tools and data. In my latest video, I explain what MCP actually is, and show a working example where Claude can search YouTube videos using MCP. In the video you’ll learn: Why AI models can’t just call your API How MCP bridges that gap Two ways to structure your MCP integration Happy coding! Cheers, Arjan # News Upcoming Python Documentary CultRepo...