10 Git Features You Probably Didn’t Know About (But Should!) | Issue #21


Hi there,

Did you know Git has a ton of hidden features that can seriously level up your coding game?

In this week’s video, I explore 10 Git features most developers don't even know about! 😲 From the clever use of Git Notes to the lifesaver that is Git Worktree (ever wish you could work on two branches at once?), I’ve got some cool tips to share.

If you're looking for ways to make your Git workflow smoother and more efficient, you don't want to miss this one. Let’s "git" going! 💻💪

Enjoy the video and happy coding!

Cheers,

Arjan

Learn a Little Every Day With Brilliant

As a former university teacher, continuous learning and growth are in my DNA. That’s why I’m excited to introduce you to Brilliant, an interactive learning platform and today’s sponsor.

Brilliant helps people learn quantitative and technical skills, especially in math, data, and computer science / AI. On Brilliant, you’re learning by doing and everything is interactive. Their courses are a delightful experience of guided discovery, designed to improve your ability to think and reason from first principles. 🤖

Learning a little every day is one of the most important things you can do—both for personal and professional development. Brilliant is designed to help you build a daily learning habit you’ll keep. Each lesson is bite-sized, so you can build real skills in minutes a day.

Join 10 million people around the world and start your 30-day free trial today. Plus, The Friday Loop readers get a special 20% off a premium annual subscription. 🙌

# News

The First PyCon NL Conference!

I’m super excited to be speaking at PyCon NL on October 10th at the Jaarbeurs in Utrecht!

If you’re attending, be sure to stop by and say hi! 👋 I’ll be diving deep into functional programming and how it can transform your Python code. 🐍✨

Let’s make it an awesome event—see you there! 😉

Why I’m Switching to Polars

In his latest post, Ari Lamstein shares why he’s making the leap from Pandas to Polars for data manipulation.

He highlights Polars’ intuitive syntax and how it simplifies working with dataframes, much like the Tidyverse did for R users. While performance gains are a bonus, it’s the ease of use that sealed the deal.

If you’re looking to level up your data game with something both faster and simpler, this is a must-read. Check out the full blog here.

# Community

Plant_Boy, one of our community members, recently kicked off a great discussion on Discord about what really defines a Senior Engineer/Developer. Is it just a title, or are there concrete differences in responsibilities and expectations?

I’ve covered similar topics in my videos, like “8 Tips for Becoming a Senior Developer” and “How to Prepare for a Python Senior Developer Interview,” but this thread has sparked some insightful conversations, touching on:

  • The different ways companies define senior roles.
  • The key traits of leadership, mentorship, and handling complex challenges.
  • Whether or not budgeting is part of a senior engineer’s role.

Want to dive deeper or share your thoughts? Join the conversation on Discord and be part of the discussion!


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.

🪄 Learntail

My team and I created an AI quiz generator designed to accelerate your learning, called Learntail. You can try it for free or unlock even more capabilities and features with the monthly subscription. Take a look here.

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