From 30a9e0bedd99f43b7db98388d33b21168ccdd70a Mon Sep 17 00:00:00 2001 From: Matt Arnold Date: Fri, 5 Sep 2025 22:59:40 -0400 Subject: [PATCH] Finish Concluding Remarks on this --- http.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/http.py b/http.py index a901f01..97bfef6 100644 --- a/http.py +++ b/http.py @@ -253,6 +253,15 @@ else: signal.signal(signal.SIGTERM, hup_handle) daemon_main() + +# To recap we just did a bunch of work, for no user visible change +# This is not a bad thing, often the first drafts of programs. +# Will fit the requirements of the moment. But when the requirements +# change the program must be adapted to fit.abs +# This process of iteration and redesign, +# is called "paying down technical debt", and it should be done whenever +# possible. +# # # References # MDN Web Docs