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, You’ve probably noticed this by now: LLM prototypes are easy to build. But as soon as you try to turn them into actual production LLM systems… a lot more goes into it. In this week’s video, I walk through how to structure AI agents in Python using design patterns like Chain of Responsibility, Observer, and Strategy. I’ll build a fully functional travel assistant using Pydantic AI and explore how to make your agent pipelines more maintainable, testable, and modular. Hope you enjoy...

Hi there, I have to admit, I often forget how powerful the Python standard library is. Whenever I'm working on some project, I have to remind myself to consider whether something I need is already there, ready for me to use. So, in this week’s video, I’m looking at 10 of the most useful and underrated modules in Python’s standard library, including pathlib, heapq, graphlib, and more. These tools can help you write cleaner, faster, and more maintainable code without adding a single dependency....

Hi there, If you’ve been experimenting with trying to integrate AI into your code, you’ve probably run into the same problem I have: unstructured, unpredictable output. And the other way around: how do you let AI agents interact with your own code? That’s where Pydantic AI comes in. In this week's video, I show how to use Pydantic AI to embed an LLM agent directly into your Python app: with structured input, validated output, and access to real business logic. What I love about this approach...