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

Jan van Eijklaan 2-4, Bilthoven, UT 3723 BC

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

Hi there, This week’s video covers tips you probably haven’t considered—ones that can make or break your code and potentially save you hours of debugging. 🕵️♂️ Today I’m breaking down the art of designing function headers—because a good one makes your life 10x easier, while a bad one… well, you’ll wish you had known sooner. 👨💻 I’ll walk you through the essentials of function naming, and why using verbs in your function names can make all the difference.You’ll also learn how to streamline your...

Hi there, Ever wondered why Python sometimes behaves in unexpected ways? In this week’s video, I’ll be showing you 13 strange things in Python that might just blow your mind! 🤯 Especially the last one—it’s really confusing! From the mysteries of integer caching to the quirks of mutable default arguments, this video is packed with examples that will make you question everything you know about Python. 🐍 P.S. Stay tuned until the end of the video for an awesome Easter egg in Python you might not...

Hi there, Is your object-oriented Python code turning into a tangled mess? 🍝 Yes, this isn’t the kind of spaghetti you want to see on a Friday night. In this week’s video, I’ll uncover common bad OOP practices and tips for keeping your code clean and maintainable. Learn why simple functions can replace unnecessary classes and why using modules might be more effective than relying on classes with only static methods. 🚀 I’ll also discuss the pitfalls of deep inheritance hierarchies and the...