Welcome back to the Pybites Podcast. We’ve been teasing this for a while, and it’s finally here: our Python Developer Certificates. Listen here: Or watch it on YouTube: Our certificates are not just shiny badges. They’re the real deal, representing solid Python skills, experience with frameworks like Django/FastAPI, debugging, testing, professional developer workflow / collaboration,… Continue reading New Pybites Python Developer Certificates and How They Are Different
Articles on programming
Our Concern with Programming Certifications
By PyBites Team on 17 October 2023
In our new podcast episode, recorded in Córdoba, Spain, we talk about programming certifications and how they might not represent real developer skills. Watch it on our YouTube channel: Or listen here: Chapters:00:00 Intro01:01 Wins02:57 About programmer certifications04:14 Concern 1. Do they stand the test of time?06:52 Concern 2. Theory, where is the implementation?09:35 Anther… Continue reading Our Concern with Programming Certifications
Make Each Line Count, Keeping Things Simple in Python
By Bob Belderbos on 24 August 2023
A challenge in software development is to keep things simple 🤯 For your code to not grow overly complex over time 😱 Simple is better than complex.Complex is better than complicated. Zen of Python 🐍 Simplicity in your code means fewer possibilities for bugs to hide and easier debugging when they do arise 📈 It… Continue reading Make Each Line Count, Keeping Things Simple in Python
Why is Flat Better Than Nested? (Zen of Python)
By Bob Belderbos on 1 August 2023
The short answer: deeply nested code can be hard to read and understand (and this not only applies to Python, but for any code really). Each level of indentation adds a level of complexity and an additional condition that the reader (which is often you!) has to keep in their head while trying to understand… Continue reading Why is Flat Better Than Nested? (Zen of Python)
The importance of refactoring regularly [podcast]
By PyBites Team on 15 June 2023
In this episode we talk with Chris May, Python developer and coach, about his background and passion for refactoring. Watch here: Or listen here: This turned into a beautiful love letter 💌 to refactoring and we think you should take notice, because adopting the mindset he teaches will improve your code. A lot! Enjoy and… Continue reading The importance of refactoring regularly [podcast]
My Favorite Career Development Book
By Bob Belderbos on 2 May 2020
If there is one career book we could recommend you it’s “So Good They Can’t Ignore You”. In this article some of the main takeaways for me.
Introduction to Python Functions
By Julian Sequeira on 11 February 2020
In this article I’m going to break down what a function is and how you can use them to be a better coder.
A Short Primer on Assemblers, Compilers and Interpreters
By Erik O'Shaughnessy on 9 October 2018
A gentle introduction to the historical evolution of programming practices.
Twitter Digest 2018 Week 08
By PyBites Team on 18 February 2018
Every weekend we share a curated list of 15 cool things (mostly Python) that we found / tweeted throughout the week.
How to Write a Python Subclass
By Julian Sequeira on 17 June 2017
In this article I cover Python subclasses and inheritance using a relatable code example scenario.