That’ll do.

Performant code is important, and often something that gets overlooked with the abundance of resources we have today. You’re eventually going to have a bad time if you decided on a solution that added 50 million operations to your system when it could’ve just as easily been a few hundred thousand.

Know what performs well and what doesn’t. Don’t let your codebase become the sum of a bunch of “that’ll dos”.

The war on entropy.

The environment and systems surrounding your application will change, even when your code remains the same. Does a rarely-used filter play nicely with the new software you installed? Are some of the features you added two years ago bugs now? Left unchecked, code will ultimately descend into chaos.

Fight back entropy by becoming a good maintainer of code today!