From a001a1fc0cf32254be7ee7d442bd2651cb005215 Mon Sep 17 00:00:00 2001 From: Muditapandey26 Date: Wed, 29 Oct 2025 00:18:31 +0530 Subject: [PATCH] Created Smart Study Timer project idea Added documentation for the Smart Study Timer project, outlining its features, user stories, and resources. --- Projects/1-Beginner/Smart-Study-Timer.md | 32 ++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Projects/1-Beginner/Smart-Study-Timer.md diff --git a/Projects/1-Beginner/Smart-Study-Timer.md b/Projects/1-Beginner/Smart-Study-Timer.md new file mode 100644 index 00000000..06f15af9 --- /dev/null +++ b/Projects/1-Beginner/Smart-Study-Timer.md @@ -0,0 +1,32 @@ +# Smart Study Timer +**Tier:** 1 – Beginner + +## Description +Smart Study Timer helps students organize their study sessions using a simple **Pomodoro-style** timer with subject logging and progress tracking. Each study session is stored so the user can view how much time they spent on each subject over days or weeks. + +### Purpose of the Application +To help students track their study habits and improve focus through timed study sessions. + +### Resources Needed +- LocalStorage or simple backend for session history +- A timer UI + +## User Stories +- User can create subjects or topics (e.g., Math, Physics, Coding). +- User can start a 25-minute study timer. +- When the timer finishes, session is saved under the selected subject. +- User can view total study time per subject. +- User can reset or delete subjects. + +## Bonus Features +- User can customize timer duration (Pomodoro variations). +- Study progress graph (using Chart.js). +- Gentle notification sound when timer completes. +- Daily/weekly study goals. + +## Useful Links and Resources +- Pomodoro Technique Reference: https://francescocirillo.com/pages/pomodoro-technique +- Chart.js for time visualization: https://www.chartjs.org/ + +## Example Projects +- TomatoTimer (simple Pomodoro timer, but without session tracking)