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

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, We all know type hints can catch bugs before runtime. 🐛 But what if I told you they’re also one of your best tools for designing better software? In this week’s video, I show how type hints can lead to smarter choices about inputs, outputs, and even class structure — all without adding complexity. It’s the kind of thinking that leads to better architecture and fewer “why did I do this?” moments later on. 😌 And yes, I also drop a few tips you’ve probably never heard about inputs and...

Hi there, If you’ve ever used Python decorators, you know they look like a clean way to add functionality. But have you ever struggled to debug a decorated function? Or wondered why your type hints suddenly break? Or spent way too much time figuring out why your decorators aren’t working as expected? 🫠 🚨 Decorators introduce hidden complexity that can turn your code into a nightmare. And honestly? I think they’re overused. In this week’s video, I explain: Why decorators break type safety and...

Hi there, Ever looked at your old code and felt secondhand embarrassment? Yeah, me too. Keeping your code simple and maintainable is an art. In today’s video, I break down 10 essential tips that will help you write cleaner, more efficient Python code. 🚀 Some key takeaways: 🛑 Stop overengineering—simple solutions are often the best. ✂️ Cut the copy-paste habit—DRY code is maintainable code. 🧹 Refactor before your code turns into a horror movie. Happy coding! 🐍 Cheers, Arjan # News How Do...