**The official Pybites T-Shirt** This week we talk about an important topic: how to prevent yourself as a programmer from getting into tunnel vision when coding. We have a nice practical example we’ll share how we hit this last week (and many times more for that matter) in one of our solutions and also relate… Continue reading Is it time to step back and look at the greater design?
Articles on Developer
Configure a Linux Development Environment on Windows with WSL and VS Code
By Heather Gray on 18 May 2022
About WSL It seems like everyone is using Linux or Mac for software development these days, but if you’re a windows user, you may have looked into what you needed to do to be able to use Linux on your PC and found that dual-booting or virtual machines sounded like too much trouble. But these… Continue reading Configure a Linux Development Environment on Windows with WSL and VS Code
A debugging tale
By Bob Belderbos on 6 March 2022
I ran into an interesting issue debugging the other day … I used isort with pre-commit to automatically sort imports before committing my code. This is a huge time saver and I am very thankful for both tools, as well as black and flake8. They save a ton of time and they instantly boost the… Continue reading A debugging tale
10 Tips to Write Better Functions in Python
By Bob Belderbos on 19 January 2022
In today’s article 10 tips to improve the quality of your Python functions.
Stop obsessing about algorithms
By Bob Belderbos on 13 April 2020
We hear it so often: I need to ace algorithms to land a SW job. To a certain extent yes. You surely need to understand what data structure to use and make efficiency trade-offs.