From 17feb6ad2fc45872260bd7d3616de42f20b3acb5 Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Sun, 11 Jan 2026 23:02:17 -0500 Subject: [PATCH 1/4] Update README.md --- README.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/README.md b/README.md index 9c52c5c..cb45929 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ⏳ Work Week Progress Bar +# Work Week Progress Bar Because staring at the clock is bad for morale, but staring at a **progress bar** is somehow motivating. @@ -8,10 +8,6 @@ This is a small Flask-powered web app that visualizes: It progresses **only during your scheduled work hours** ---- - -## 🧠 What It Does - ### Daily Progress Bar - Advances **every minute** - Only runs **Sunday–Wednesday** @@ -26,8 +22,6 @@ It progresses **only during your scheduled work hours** - During the day, the bar fills smoothly - End of Wednesday = **100% freedom** ---- - ## 🛠 Tech Stack - **Flask** – serves the page and minds its business From 83b9e9fead8125f301e4c13052c7475146df27fc Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Sun, 11 Jan 2026 23:02:26 -0500 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cb45929..2f38ba4 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ It progresses **only during your scheduled work hours** - During the day, the bar fills smoothly - End of Wednesday = **100% freedom** -## 🛠 Tech Stack +## Tech Stack - **Flask** – serves the page and minds its business - **Vanilla JavaScript** – handles all time logic client-side From f16f202d3e5132ec582049b8aef74c7227e49470 Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Mon, 12 Jan 2026 07:46:30 -0500 Subject: [PATCH 3/4] Change update time to 10 seconds Might reduce this further, needs to be tested first to ensure this doesn't come with performance issues. --- templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index 072fef7..cb9e769 100644 --- a/templates/index.html +++ b/templates/index.html @@ -85,7 +85,7 @@ } updateProgress(); - setInterval(updateProgress, 30 * 1000); + setInterval(updateProgress, 10 * 1000); From 2c6491137f7008531789f81853344a837aaff435 Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Mon, 12 Jan 2026 11:14:56 -0500 Subject: [PATCH 4/4] Change refresh interval to 5 seconds --- templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index cb9e769..413fda9 100644 --- a/templates/index.html +++ b/templates/index.html @@ -85,7 +85,7 @@ } updateProgress(); - setInterval(updateProgress, 10 * 1000); + setInterval(updateProgress, 5 * 1000);