The little things in code are easily overlooked, and can be the source of problems which are difficult to diagnose. Consider the conversion of a string to a number: 1 d := StrToFloat(NumericString); What could go wrong? Well, many things, actually. In writing this, you no doubt were thinking of the problem at hand, rather…
Author: admin
On Naming
We often hear that naming in software is difficult, and it certainly can be. But equally, it is an essential part of the job, so the proper attitude would be to spend some time and effort and improve our skills. Or, we could find another line of work. It’s just that important. I have done…
An Essential Principle
As a friend has written in a book I am proofreading: “…if you don’t know how to write good code in simple scenarios, you will certainly never learn to write good code in complex ones.” Ponder that, don’t just rush on. I know that many developers give greater attention to complex coding tasks than to…
Starting Out
When we start any new activity, there are challenges, which we are likely to label as problems, at least at first. This is true of programming, and certainly is true of writing, whether on a blog, in a small article, or in a book.I chose to write a book, having been motivated by years of experience…
Thoughtful Design and Coding
Adventures in the act of development Articles here describe my experiences in software design and development. Categories: Data Design Scope Clear Coding Effective Naming Useful Commenting Best practices will influence all articles here.