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
Articles on Developer
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.