COMPLETE No-Nonsense VSCode Setup for Python Devs | Issue #28


Hi there,

Are you wrestling with VSCode and Python? 😩 This week’s video is a deep dive into setting up VSCode for Python development in a way that just makes sense. If you’ve been plagued by missing imports, mismatched Python versions, or pytest failing to find tests, this one’s for you.

I’m sharing a streamlined setup that covers:

  • Configuring Python paths and debugging options for a seamless coding experience.
  • Essential VSCode extensions to make your workflow smooth and frustration-free.
  • Custom settings for autoformatting, testing, and switching environments.

Check out the video, and finally make your VSCode setup work with you, not against you! 💡

Enjoy the video and happy coding!

Cheers,

Arjan

# News

Boost Your Development Process with Squish

Finding it challenging to keep up with frequent releases while ensuring software quality? Today’s sponsor, Squish’s automated UI testing solution, can help you handle complex, cross-platform testing with ease.

Here’s how Squish stands out:

· Seamless integration with CI/CD pipelines.

· Comprehensive support for various platforms like Windows, macOS, mobile, and more.

· Version control for your test automation.

· Reduced test maintenance.

👉 Click here to take a tour to see Squish for yourself.

Python's Magic Methods in Classes

Ever wondered how Python’s built-in behaviors work their magic?🔮

This new Real Python course dives into magic methods—the secret sauce behind Python’s intuitive syntax and special functions.

From __init__ to __str__ to __add__, magic methods allow you to customize how your classes behave, interact, and even play nice with Python’s operators.

Ready to add some magic to your classes? Check out the course here. 🐍

WebStorm and Rider Are Now Free for Non-Commercial Use

Big news from JetBrains! As of October 24, 2024, WebStorm and Rider are free for non-commercial use. 🎉

This is a big shift, as these IDEs are known for their powerful, productivity-boosting features. Whether you’re coding for open-source, learning new skills, or just experimenting, you can now get access to both IDEs at no cost. Get all the details here!

# Community

Ever wondered how to make your Python code cleaner, more readable, and robust? Recently, there was an in-depth discussion on Discord that dives exactly into that! From refining dataclass structures to tips on naming conventions, error handling, and logging, this thread is packed with insights and practical advice to level up your code. 🚀

If you’re aiming for cleaner, more maintainable code, this is a conversation you won’t want to miss. Check out the full thread on Discord for all the details, examples, and recommendations from the community. Join in and bring your own thoughts—there’s always more to learn together! 📈🎯


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.

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

Hi there, Most apps only store the final result: the current balance, the current inventory, the current status. But what if you could track every change that led to that result? That’s exactly what the event sourcing pattern allows you to do. Instead of overwriting state, you store a sequence of immutable events and derive the current state by replaying them. It’s like Git (kinda), but for your domain logic. In this week’s video, I show you how to implement event sourcing in Python from...

Hi there, If you’ve been learning Python for a while and still feel like you’re not improving, you’re not alone. Python feels easy at first. The syntax is clean, the barrier to entry is low, and you can build something useful in your first hour. But then… things get weird. You hit a wall. There’s object-oriented programming. Then functional programming. Then decorators, dunder methods, typing, Protocol, mypy, async… And somehow Python lets you write the same thing five different ways, and...

Hi there, You’ve probably heard developers say "That’s not very Pythonic…" But what is Pythonic code, really? Is it about using list comprehensions? Avoiding for-loops? Dressing up like Guido van Rossum? In this week’s video, I answer that question by taking a small, messy Python script and refactoring it step-by-step using the principles behind idiomatic Python. Along the way, I’ll show you what it means to think like a Python developer, using things like: Functions instead of unnecessary...