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 7 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.
Hi there, Have you ever hesitated before hitting git merge or git rebase because… well, who actually understands Git? 🤯 Good news! In this week’s video, I walk through a real-world FastAPI project and show exactly how to merge, fast-forward, and rebase—step by step. No fluff, just practical Git skills you’ll actually use. Plus, I’m sharing some advanced Git tricks to make your workflow smoother. Happy coding and enjoy the video! Cheers, Arjan # News Build TUI Apps with Python’s Textual Ever...
Hi there, You’ve probably heard the phrase: “Coupling is bad.” But what if I told you that coupling is actually necessary? The real issue isn’t that your code has coupling—it’s that some types of coupling are worse than others. 🚨 In this week’s video, I dive into three real-world examples of bad coupling and show you how to refactor them into better designs. We’ll tackle: Global coupling – Why global variables cause headaches and how to avoid them Content coupling – When modules dig too deep...
Hi there, Ever had a function work most of the time but randomly break when you least expect it? That’s a sign your code is brittle. And brittle code means debugging nightmares. The good news? You can avoid this! In this week’s video, I break down: 🔹 Why checking types at runtime is a bad idea 🔹 The best way to handle value constraints without making a mess 🔹 Whether your function should return None or raise an exception 🔹 Why failing fast is the best approach to writing reliable Python And...