From a4abeeb3fed144b632121cf48bb677c480b849c4 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 20 Jun 2023 22:42:29 +0100 Subject: [PATCH] daily-email: add 2023-06-15 Done is better than perfect --- src/content/daily-email/2023-06-15.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/content/daily-email/2023-06-15.md diff --git a/src/content/daily-email/2023-06-15.md b/src/content/daily-email/2023-06-15.md new file mode 100644 index 000000000..c92ed1a55 --- /dev/null +++ b/src/content/daily-email/2023-06-15.md @@ -0,0 +1,18 @@ +--- +title: > + Done is better than perfect +pubDate: 2023-06-15 +permalink: > + archive/2023/06/15/done-is-better-than-perfect +tags: [] +--- + +Whether I'm doing test-driven development or not, I focus on making the feature work or fixing the bug in the simplest way possible. + +Then, once this is done, I can pass through the code again and refactor it as needed. + +I can split code into separate files, move logic from the Controller into separate services, ensure that patterns like dependency injection are followed, and checks like coding standards and static analysis are passing. + +I might deploy a change in its passing state and leave TODO comments or create follow-up issues to describe potential refactors or changes to be addressed later. + +The main goal is to get the application working and providing value for its users.