From 04cac4614d9f0febe521ef013106d5524fcc8fa2 Mon Sep 17 00:00:00 2001 From: Morgan Date: Sun, 24 Jan 2021 12:48:03 +0100 Subject: [PATCH] principle on slowing down and understanding clean code --- PRINCIPLES.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PRINCIPLES.md b/PRINCIPLES.md index 8495e9d..c8256bf 100644 --- a/PRINCIPLES.md +++ b/PRINCIPLES.md @@ -258,3 +258,6 @@ See also [Calm programming / Slow programming](README.md#calm-programming--slow- * Using boring technology. Don't get distracted too often with shiny tools that reinvent the wheel. * Write lesss code, read more. Read more code, tips, manuals, blogs, articles, watch presentations and listen to podcasts about your programming craft. Learn from others prior to writing bugs. * Value your time, use it to focus. Put lot of non-meeting blocks in your agenda. +* Learn how to write clean code, and repeat. So when you will have to rush, you will not forget to do your work right, and you will naturally provide more quality work. +* Do your research, don't always rush in coding or in reinventing the wheel. You will learn a lot through research. +* Reuse existing code. GitHub is your friend.