I Built a Version of Honey That Doesn’t SCREW Creators | Issue #36


Hi there,


Honey might save you a few bucks, but it’s stealing from creators while doing so. Ouch. 🍯 In this week’s video, I tackle this issue head-on by designing a less evil version of Honey: meet Kale. 🥬

Kale is a browser extension that’s transparent, open-source, and creator-friendly. It doesn’t override affiliate cookies, gives users control, and still applies sweet discount coupons.

But this video isn’t just about the what—it’s also about the how. I break down the full architecture, the design patterns, and even show you some of the code. If you’re into building ethical tech (or just want to see Honey’s bitter rival in action), you’ll love this one.

Let’s make tech that’s fair, transparent, and good for everyone!

Cheers,

Arjan

# News

After 3 Years, I Failed. Here's All My Startup's Code.

Startups often celebrate wins, but Dylan Huang’s blog, sheds light on the other side of the journey—the emotional and practical challenges of shutting down a business. 💔

Dylan’s reflections on resilience and turning setbacks into opportunities are invaluable for anyone navigating uncertainty or grappling with failure. 🌱

This topic hits close to home for me. Last week, I opened up about the struggles my channel faced last year and the lessons I’ve carried into the future. It’s a reminder that failure isn’t the end—it’s a chance to grow.

Dive into Dylan’s blog here and, if you’re curious about my mindset for the year ahead, check out my latest video here.

Iterators and Iterables in Python

If you’ve ever wanted to create robust APIs with Django, the Django REST Framework (DRF) is the way to go. But where do you start? 🤔

The team at Real Python has crafted a very useful guide. This hands-on tutorial walks you through building APIs step by step—from setting up your project to creating endpoints that serve real-world data.

Whether you’re new to Django or want to level up your skills, this resource is packed with practical insights to help you master API development. 🚀 Check it out here.

# Community

A community member recently shared a tricky challenge: building a super-fast trade monitoring dashboard using FastAPI WebSockets and Redis! 🧑‍💻 They aimed for near-instant updates (50-100ms!), but scaling to more clients brought some performance headaches.

The thread dives into key topics like Redis polling vs. keyspace notifications, handling tons of WebSocket connections, parallelizing broadcasts, and spotting bottlenecks before making big changes. 🛠️

This conversation is packed with insights for anyone working on real-time systems! Check out the full discussion on the server. 🎯


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

Hi there, When I see an if-statement with multiple elifs in my code, it almost always triggers an investigation. Is there some way to rewrite this to make the logic simpler? Is there a chance that in the future I'll need to add even more complexity? If so, I'll try to redesign the code so that I don't need that chain of if-elif statements. In this week’s video, I cover a design pattern that helped me eliminate many of those chains from a project + at the same time made the code easier to...