There are few things in software engineering that induce panic quite like a massive git merge conflict. You pull down the latest code, open your editor, and suddenly your screen is bleeding with <<<<<<< HEAD markers. Your logic is tangled with someone else’s, the CSS is conflicting, and you realise you just wasted hours building… Continue reading How Even Senior Developers Mess Up Their Git Workflow
Articles on tips
How to Automate Python Performance Benchmarking in Your CI/CD Pipeline
By Julian Sequeira on 16 February 2026
The issue with traditional performance tracking is that it is often an afterthought. We treat performance as a debugging task, (something we do after users complain), rather than a quality gate. Worse, when we try to automate it, we run into the “Noisy Neighbour” problem. If you run a benchmark in a GitHub Action, and… Continue reading How to Automate Python Performance Benchmarking in Your CI/CD Pipeline
The missing 66% of your skillset
By Julian Sequeira on 27 January 2026
Bob and I have spent many years as Python devs, and 6 years coaching with Pybites and we can safely say that being a Senior Developer is only about 1/3 Python knowledge. The other 60% is the ecosystem. It’s the tooling. It’s all of the tech around Python that makes you stand out from the rest. This is… Continue reading The missing 66% of your skillset
Case Study: Developing and Testing Python Packages with uv
By Michael Aydinbas on 24 March 2025
Structuring Python projects properly, especially when developing packages, can often be confusing. Many developers struggle with common questions: To help clarify these common challenges, I’ll show how I typically set up Python projects and organise package structures using the Python package and environment manager, uv. The challenge A typical and recurring problem in Python is… Continue reading Case Study: Developing and Testing Python Packages with uv
A Better Place to Put Your Python Virtual Environments
By Ahmed Lemine on 7 March 2024
Virtual environments are vital if you’re developing Python apps or just writing some Python scripts. They allow you to isolate different app requirements to prevent conflicts and keep your global OS environment clean. This is super important for many reasons. The most obvious one is requirements isolation. Let’s say that you’re working on two different… Continue reading A Better Place to Put Your Python Virtual Environments
Case Study: GitHub Copilot and the deceiving ladder
By Michael Aydinbas on 7 March 2024
Can GitHub Copilot be used to solve mathematical puzzles? What to be aware of when AI assistants are too confident.
6 Cool Things You Can Do With The Functools Module
By Bob Belderbos on 21 September 2023
In this article let’s look at the functools Standard Library module and 6 cool things you can do with it (be warned, a lot of decorators are coming your way! 😍) … 1. Cache (“memoize”) things You can use the @cache decorator (formerly called @lru_cache) as a “simple lightweight unbounded function cache”. The classic example is… Continue reading 6 Cool Things You Can Do With The Functools Module
10 Tips to Make Your Developer Resume Stand Out
By PyBites Team on 4 September 2023
At Pybites we support our pythonistas with expert CV guidance to make their job applications stand out in a tight talent market 💪 📈 Here are some essential ingredients that make a great resume: 1. Clear and Concise Structure Start with a clean, well-organized format. Use headers, bullet points, and consistent fonts to ensure readability.… Continue reading 10 Tips to Make Your Developer Resume Stand Out
11 Planning and Productivity tips for Python developers
By PyBites Team on 23 June 2023
This week we talk with Sambhavi Dhanabalan about productivity as a developer. She shares 11 tips from her experience: 3 around planning and 8 generic tips. Watch here: Or listen here: We also talk about her background, wins and a book she’s reading. Enjoy this insightful conversation with Sambhavi. We’re sure that if you follow… Continue reading 11 Planning and Productivity tips for Python developers
Veterans in the workplace, challenges and tips
By PyBites Team on 7 June 2023
Welcome back to the Pybites podcast! Watch here: Or listen here: In this podcast episode, Julian interviews Isaac Smit, a former member of the US Navy and current program manager at Amazon. He discusses the challenges faced by veterans in the workplace and how we can support them better. Isaac highlights two main difficulties veterans… Continue reading Veterans in the workplace, challenges and tips
