Better Programming

Advice for programmers.

Follow publication

Member-only story

OPINIONATED

7 Programming Rules of Thumb

Remember them, and you’ll create better software

Nicklas Millard
Better Programming
Published in
3 min readFeb 16, 2021

--

Image by Nicklas Millard.

I’ll just cut right to the chase. No introduction needed.

1. Steer Clear of Primitive Types.

Look at this method WithdrawMoney(string accountIban, decimal amount). In a (European) financial system, you’re dealing with IBANs, which is a plain text string looking something like this DK5000400440116243.

Despite being purely text, some stringent rules govern how IBANs are constructed and validated.

Simply using a string type is communicating to the world — anyone using your code — that any text whatsoever is completely OK to pass in.

This is obviously wrong.

A much better approach is to capture the domain knowledge in a special class and verify that it’s actually in a valid state. The code is as follows:

Avoiding primitive obsession.
Avoiding primitive obsession: https://gist.github.com/NMillard/44f90705317cacf27942d06632da912a

Sure, it’s more code, but the number of code lines has never been a great metric to determine if the software is good or bad. The number of classes is neither a useful metric.

If you’re a visual learner, feel free to watch this youtube video where I also explain how you can avoid primitive types in your models.

https://youtu.be/DGHH4m5squo

2. No Public Setters.

In domain-driven design, you usually don’t think in terms of simply updating or reassigning a value. You’d, for example, say that a user “changed” their username.

Public setters are essentially saying, “Set my values to whatever you’d like. I don’t care to what or even why.”

The what and why are equally important. While you can often guard against invalid values, you can’t express why a value is changed if you’re using a public setter, or setter method. Here is the code:

--

--

Nicklas Millard
Nicklas Millard

Written by Nicklas Millard

I mostly write to "future me" sharing what I learn and my opinion on software development practices. youtube.com/@nmillard | open for contracts in Jan 2026.

Responses (7)

Write a response