• Optimizing Queries across Foreign Keys in Django

    Optimizing Queries across Foreign Keys in Django The other day I was working on implementing a bit of business logic that had me traversing across multiple foreign key relationships in my Django models. In an effort to optimize it I did some research on how to do so and wanted...


  • Reducing Cyclomatic Complexity with Python

    Reducing Cyclomatic Complexity with Python The if statement is one of the most common and powerful tools used in programming. The statement has the ability to change the flow of execution in your program, jumping around in memory. In fact, in assembly language, one of the closest languages to machine...