Why You’re Still Stuck With Python (And How to Fix It) | Issue #79


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 you’re supposed to just "know" which one is right.

This week’s video is a roadmap: from mastering the core, to building tools, to understanding types and design principles.

If you’ve finished the basics but don’t feel like an expert yet, this one’s for you.


Enjoy the video and wish you a great weekend!

Cheers,

Arjan

Pulumi Neo: AI for Your Infrastructure

(sponsored)

We’ve seen AI copilots for developers. But what about one for your cloud infrastructure?

Pulumi Neo is not just another chatbot. It’s an AI agent trained on your actual infrastructure — your code, your state, your resource graph — not just random examples from the internet.

That means Neo:

  • Understands your infra dependencies and drift
  • Generates and fixes Infrastructure-as-Code (with guardrails)
  • Automates upgrades, policy enforcement, and cloud hygiene
  • Gives you real insights, based on your real cloud — not guesses

It’s like having a platform engineer who never sleeps

Teams using Neo report up to 18× faster provisioning and 90% fewer policy violations.

If you’re working in DevOps, SRE, or platform engineering and want a smarter way to scale your cloud infra, check out Pulumi Neo today for free.


Do you enjoy my content on YouTube and would you like to dive in deeper?

🚀 Check out my online courses

My courses have helped thousands of developers take the next step in their careers. Check out these courses to help grow your skills and become a senior developer:

👕 Clean code and clean clothes

The ArjanCodes merch store features T-shirts, hoodies, hats, and more for the clean-code-obsessed. Careful though: you'll look dangerously professional while reviewing PRs.

👉 Check out the store here and grab something before your stand-up call starts.

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, 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...

Hi there, Have you ever found yourself writing functions like this? def render_article(article_id, db, logger, user, config, feature_flags, etc): …and then passing the same parameters through five different layers of your app? In my latest video, I walk through a realistic Python example and show how to fix this mess using the Context Object Pattern. I’ll start with the "before" version, refactor step by step, and explore: How to group related dependencies using a context object When this...

Hi there, This week’s video is all about uv workspaces, and why they’ve completely changed the way I manage Python projects. In the video, I walk you through a real-world example: I build a CLI tool and a FastAPI API that both fetch and summarize news headlines using OpenAI. But the real lesson is in how the project is structured. I show you how to share a local package between apps, define common dependencies like openai or httpx only once. And you can manage everything using uv’s workspace...