From 17749c0380d417ae22716577f2745ec223b770b9 Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Sun, 11 Jan 2026 21:44:59 -0500 Subject: [PATCH 1/2] Add README --- README.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..2539bf3 --- /dev/null +++ b/README.md @@ -0,0 +1,37 @@ +# ⏳ Work Week Progress Bar + +Because staring at the clock is bad for morale, but staring at a **progress bar** is somehow motivating. + +This is a small Flask-powered web app that visualizes: +- **How far through your current workday you are** +- **How far through your entire work week you are** + +It progresses **only during your scheduled work hours** + +--- + +## 🧠 What It Does + +### Daily Progress Bar +- Advances **every minute** +- Only runs **Sunday–Wednesday** +- Only between **7:00 AM – 5:30 PM** +- Before work? Frozen. +- After work? Done. +- Not a workday? Blissfully idle. + +### Weekly Progress Bar +- Your work week is **4 days** (Sun–Wed) +- Each day = **25%** +- Finishing Sunday = **25% done** +- During the day, the bar fills smoothly +- End of Wednesday = **100% freedom** + +--- + +## 🛠 Tech Stack + +- **Flask** – serves the page and minds its business +- **Vanilla JavaScript** – handles all time logic client-side +- **HTML + CSS** – gradients, glow, and just enough polish +- **Zero databases** – this app remembers nothing, like a healthy coping mechanism From d2b8d60598cb3f5ad2b810bfc1f10276f57f7c9f Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Sun, 11 Jan 2026 21:45:35 -0500 Subject: [PATCH 2/2] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 2539bf3..9c52c5c 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,6 @@ It progresses **only during your scheduled work hours** ### Weekly Progress Bar - Your work week is **4 days** (Sun–Wed) - Each day = **25%** -- Finishing Sunday = **25% done** - During the day, the bar fills smoothly - End of Wednesday = **100% freedom**