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.
Share
10 Git Features You Probably Didn’t Know About (But Should!) | Issue #21
Published 9 months ago • 3 min read
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.
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?
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.
The Software Architect Mindset - Learn the mindset that will allow you to effortlessly build and maintain scalable software systems. Become a software architect.
The 30-Day Design Challenge - Get the practice you're missing. Learn to deal with a wide variety of software design problems.
💡 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.
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.
Hey everyone, I love it when I come up with a design that uses exactly the things I thought were a sign of bad design. In this week's video I show you how to build a clean Python SDK for a REST API. The idea was simple: create a reusable base model that handles all the CRUD operations so you can just write User.find() and user.save(), without duplicating logic all over your codebase. Sounds great, right? Well, after recording the video, I realized something: not all APIs will have all CRUD...
Hey everyone, Python’s flexibility is great, but if you're working on a larger project it becomes hard to make sure not everything depends on everything else. There is a way to avoid that trap, and that's by using abstractions. Unfortunately, I often see production code with way too much coupling that can be easily improved by relying on abstractions. This week’s video shows simple abstractions using Callable, ABC, and Protocol. You’ll learn how to: Reduce unnecessary imports Decouple your...
Hey everyone, I was reviewing some of the projects I’ve worked on over the past year, and I noticed something interesting: I almost never use Python’s @dataclass anymore. Not because it’s bad. In fact, dataclasses are still a great feature of the language. But as my projects have grown more complex, especially with tools like FastAPI, Pydantic, and SQLAlchemy, I’ve found that dataclasses just… don’t fit the way I design software anymore. In my latest video, I dive into this in detail. You’ll...