https://github.com/aksoftware98/ak-time-schedular
All users to build and organize their days by looking at at is a 96 blocks of 15mins block each, all combined building your productivity day.
https://github.com/aksoftware98/ak-time-schedular
Last synced: 4 months ago
JSON representation
All users to build and organize their days by looking at at is a 96 blocks of 15mins block each, all combined building your productivity day.
- Host: GitHub
- URL: https://github.com/aksoftware98/ak-time-schedular
- Owner: aksoftware98
- License: mit
- Created: 2025-09-07T06:39:45.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-09-07T07:22:40.000Z (10 months ago)
- Last Synced: 2025-09-23T18:36:46.193Z (9 months ago)
- Language: HTML
- Size: 25.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AK Time Scheduler ๐
A visual time management application that transforms your day into 96 time blocks of 15 minutes each, helping you focus, set boundaries, and visualize your daily activities with color-coded tasks.
## ๐ฏ Project Goal
The AK Time Scheduler aims to revolutionize daily time management by:
- **Creating boundaries**: Dividing your day into manageable 15-minute blocks
- **Enhancing focus**: Visual representation helps you stay mindful of time allocation
- **Providing insights**: Heat map visualization shows productivity patterns
- **Enabling flexibility**: Easy task assignment and rearrangement
- **Supporting planning**: Export/import functionality for schedule templates
## โจ Features
### Core Functionality
- **96 Time Blocks**: Each day is divided into 96 blocks of 15 minutes (4:00 AM to 4:00 AM operational day)
- **Visual Task Assignment**: Click to assign predefined tasks to time blocks
- **Multiple Selection**: Select individual or multiple blocks for batch assignment
- **Task Categories**: 8 predefined categories with distinct colors and emojis:
- ๐ Sleep (Dark Blue)
- ๐ Deep Work (Teal)
- ๐ผ Work (Blue)
- ๐ Study (Purple)
- ๐ Exercise (Red)
- ๐งพ Admin (Gray)
- ๐ฃ๏ธ Meetings (Orange)
- โ Break (Cyan)
### Interactive Features
- **Real-time Updates**: Live progress bar and current time block highlighting
- **Quick Assignment**: Click to assign, Shift+click to clear
- **Note Taking**: Double-click blocks to add custom notes
- **Keyboard Support**: Delete key to clear blocks, Enter for notes
### Data Management
- **Local Storage**: Automatic saving and loading of daily schedules
- **Export/Import**: JSON format for backing up and sharing schedules
- **Daily Navigation**: Previous/Next/Today buttons for easy date switching
- **Print View**: Dedicated print-friendly layout for A4 paper
### Visual Design
- **Modern UI**: Clean, card-based interface with subtle shadows and blur effects
- **Dark Mode Support**: Automatic theme switching based on system preferences
- **Responsive Design**: Adapts to different screen sizes
- **Time Visualization**: Progress bar shows day completion percentage
- **Category Totals**: Real-time calculation of hours spent per category
## ๐ ๏ธ Technology Stack
### Current Implementation
- **Pure HTML5**: Semantic markup with modern CSS Grid layout
- **Vanilla JavaScript**: No frameworks or dependencies
- **CSS3**: Advanced features including:
- CSS Grid for responsive layout
- CSS Variables for theming
- Backdrop filters for modern glass effect
- CSS animations for interactive feedback
- **Local Storage API**: Client-side data persistence
- **Web APIs**: File API for import/export functionality
### Future Roadmap
- **Migration to Blazor**: Planned transition to C# Blazor WebAssembly
- **Online Hosting**: Cloud deployment for cross-device synchronization
- **Enhanced Analytics**: Advanced reporting and insights
- **Team Features**: Shared schedules and collaboration tools
## ๐ Getting Started
1. **Clone the repository**:
```bash
git clone https://github.com/yourusername/ak-time-schedular.git
cd ak-time-schedular
```
2. **Open in browser**:
```bash
# Simply open index.html in your preferred browser
open index.html # macOS
start index.html # Windows
```
3. **Start scheduling**:
- Select a task category from the legend
- Click on time blocks to assign tasks
- Use Shift+click to clear assignments
- Double-click blocks to add notes
## ๐ Usage Guide
### Basic Operations
- **Assign Tasks**: Select category, then click time blocks
- **Clear Assignments**: Shift+click on assigned blocks
- **Add Notes**: Double-click any block to add custom text
- **Navigate Days**: Use Prev/Today/Next buttons
- **View Totals**: Check bottom panel for time summaries
### Advanced Features
- **Export Schedule**: Save current day as JSON file
- **Import Schedule**: Load previously saved schedules
- **Print View**: Open print-friendly version for physical copies
- **Clear Day**: Reset entire day's assignments
### Keyboard Shortcuts
- **Delete**: Clear selected block
- **Enter**: Add/edit note for focused block
- **Tab**: Navigate between time blocks
## ๐จ Customization
The application uses CSS custom properties for easy theming:
```css
:root {
--card-bg: rgba(255,255,255,0.65);
--text: #0b1220;
--bg: linear-gradient(135deg,#e8efff, #f6f9ff 35%, #fefefe);
}
```
Task categories can be modified in the `CATS` array in `script.js`:
```javascript
const CATS = [
{id:'sleep', name:'Sleep', emoji:'๐', color:'#1f3b73', cls:'cat-sleep'},
// Add more categories...
];
```
## ๐ง What's Missing
### High Priority
- [ ] **Data Synchronization**: Cloud storage for cross-device access
- [ ] **Mobile Optimization**: Touch-friendly interface for mobile devices
- [ ] **Recurring Schedules**: Template system for weekly/daily patterns
- [ ] **Analytics Dashboard**: Visual reports and productivity insights
### Medium Priority
- [ ] **Drag & Drop**: More intuitive block assignment
- [ ] **Bulk Operations**: Select and assign multiple blocks at once
- [ ] **Custom Categories**: User-defined task types and colors
- [ ] **Time Zone Support**: Multi-timezone scheduling
- [ ] **Export Formats**: PDF, CSV, and other format options
### Low Priority
- [ ] **Collaboration**: Share schedules with team members
- [ ] **Integrations**: Calendar sync (Google, Outlook)
- [ ] **Notifications**: Browser alerts for task transitions
- [ ] **Themes**: Additional color schemes and layouts
## ๐ File Structure
```
ak-time-schedular/
โโโ index.html # Main application interface
โโโ script.js # Core application logic
โโโ print.html # Print-friendly view (implied)
โโโ CLAUDE.md # Project instructions and context
โโโ README.md # This file
```
## ๐ค Contributing
1. Fork the repository
2. Create a feature branch: `git checkout -b feature-name`
3. Make your changes following the existing code style
4. Test thoroughly across different browsers
5. Submit a pull request with a clear description
## ๐ License
This project is open source. Please check the repository for license details.
## ๐ Known Issues
- Print functionality requires popup permission
- Local storage is limited to single device
- No data backup/recovery mechanism
- Mobile touch experience could be improved
---
**Made with โค๏ธ for better time management**