The Programmer's Paradox

Blog URL:http://theprogrammersparadox.blogspot.com/
Blog Tags:prgramming, software, software development, computers, users, algorithms, internet, developers, technology
Country:Canada
State/Province:Ontario
Location:Toronto

In depth discussions of programming and software development issues.



Latest Blog Posts



Iterative Development

on May 9, 2024

Even if I know that I will end up building something extremely complex, I never start there.When we get a complex problem to solve, we are taught to decompose that into pieces. But often that is not enough to get something sophisticated to work corre...

Symmetry

on May 2, 2024

“One of these things is not like the others” -- Sesame StreetSymmetry is an often ignored property of code that is incredibly helpful when editing or debugging. It is part of readability, along with naming and structuring.If you do a quick visual...

The Origin of Data

on Apr 26, 2024

In software development, we create a lot of variables and data structures for our code that we toss around all over the place.Into these we put data, lots of it.Some of that data originates from far away. It is not our data. Some of that data is a re...

Optimizations

on Apr 18, 2024

“Premature optimization is the root of all evil” -- Donald KnuthCode generally implements a series of steps for the computer to follow. I am using a slightly broader definition than just an ‘algorithm’ or ‘heuristic’, which are usually de...

Scope

on Apr 11, 2024

One of the keys to getting good quality out of software development is to control the scope of each line of code carefully.This connection isn’t particularly intuitive, but it is strong and useful.We can loosely define the scope of any piece of cod...

Expression

on Apr 4, 2024

The idea is to express the instructions to the computer that you’ve crafted in a succinct but entirely verifiable way.If the expression is huge, the size itself will cripple your ability to verify that the instructions are correct.If the expression...

Over Complicated

on Mar 28, 2024

I’ve seen many, many variations of programmers reacting to what they believe is over-complexity.A common one is if they are working on a massive system, with a tonne of rules and administration. They feel like a little cog. They can’t do what the...