oliverdavies.uk/source/_daily_emails/2025-02-09.md
Oliver Davies 69c92f325b Add daily email for 2025-02-09
Simpler code doesn't mean less code
2025-02-22 23:02:58 +00:00

1.1 KiB

title date permalink tags cta snippet
Simpler code doesn't mean less code 2025-02-09 daily/2025/02/09/simpler
software-development
~ Simpler code doesn't necessarily mean less code.

Just because I consider some code to be simpler, that doesn't necessarily mean there's less code.

It's possible to write a whole function or class on one line, but that doesn't mean it's simple to read or understand.

The opposite is also true.

I can extract business logic from Controller classes into different service classes, commands or actions.

I can use data transfer objects (DTOs), value objects and Collection classes to give names and meanings to things instead of always using generic strings, arrays or objects.

I can follow design patterns and implement Repositories, Decorators, Factories and Builders to better organise code and make it easier to use and update.

I can write tests that act as examples and executable documentation for people to see how to use the code I've written.

This can all make code easier to read, understand and use - even though there is more of it.