Is it time to step back and look at the greater design?

**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?

Configure a Linux Development Environment on Windows with WSL and VS Code

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

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