-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
162 lines (162 loc) · 3.88 KB
/
db.json
File metadata and controls
162 lines (162 loc) · 3.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"categories": [
{
"id": "c1",
"title": "Work",
"description": "Tasks related to job and projects",
"icon": "briefcase",
"color": "blue"
},
{
"id": "c2",
"title": "Personal",
"description": "Personal life tasks",
"icon": "user",
"color": "green"
},
{
"id": "c3",
"title": "Study",
"description": "University and learning tasks",
"icon": "book",
"color": "purple"
}
],
"tasks": [
{
"id": "t1",
"title": "Review JavaScript fundamentals",
"description": "Go over closures and async/await",
"isUrgent": false,
"isDone": true,
"dueDate": "2026-02-16",
"categoryId": "c3"
},
{
"id": "t2",
"title": "Buy groceries",
"description": "Milk, eggs, vegetables, rice",
"isUrgent": true,
"isDone": true,
"dueDate": "2026-02-16",
"categoryId": "c2"
},
{
"id": "t3",
"title": "Fix login validation bug",
"description": "Handle empty input edge cases",
"isUrgent": true,
"isDone": false,
"dueDate": "2026-02-17",
"categoryId": "c1"
},
{
"id": "t4",
"title": "Gym session",
"description": "30 minutes cardio + stretching",
"isUrgent": false,
"isDone": false,
"dueDate": "2026-02-17",
"categoryId": "c2"
},
{
"id": "t5",
"title": "Finish React homework",
"description": "Complete routing and modal implementation",
"isUrgent": true,
"isDone": false,
"dueDate": "2026-02-18",
"categoryId": "c3"
},
{
"id": "t6",
"title": "Prepare presentation slides",
"description": "Create slides for final project demo",
"isUrgent": false,
"isDone": true,
"dueDate": "2026-02-18",
"categoryId": "c1"
},
{
"id": "t7",
"title": "Call dentist",
"description": "Schedule annual checkup appointment",
"isUrgent": false,
"isDone": false,
"dueDate": "2026-02-19",
"categoryId": "c2"
},
{
"id": "t8",
"title": "Code review",
"description": "Review teammate's pull request",
"isUrgent": false,
"isDone": false,
"dueDate": "2026-02-19",
"categoryId": "c1"
},
{
"id": "t9",
"title": "Practice coding challenges",
"description": "Solve 2 JavaScript problems",
"isUrgent": false,
"isDone": false,
"dueDate": "2026-02-20",
"categoryId": "c3"
},
{
"id": "t10",
"title": "Clean apartment",
"description": "Vacuum and organize desk area",
"isUrgent": true,
"isDone": false,
"dueDate": "2026-02-20",
"categoryId": "c2"
},
{
"id": "t11",
"title": "Team meeting",
"description": "Discuss project progress and blockers",
"isUrgent": false,
"isDone": false,
"dueDate": "2026-02-21",
"categoryId": "c1"
},
{
"id": "t12",
"title": "Study database indexing",
"description": "Read chapter and take notes",
"isUrgent": false,
"isDone": false,
"dueDate": "2026-02-21",
"categoryId": "c3"
},
{
"id": "t13",
"title": "Meal prep for next week",
"description": "Cook rice, grilled chicken, and roasted vegetables",
"isUrgent": false,
"isDone": false,
"dueDate": "2026-02-22",
"categoryId": "c2"
},
{
"id": "t14",
"title": "Fix DELETE API bug",
"description": "Debug server issue and test endpoint",
"isUrgent": true,
"isDone": false,
"dueDate": "2026-02-22",
"categoryId": "c1"
},
{
"id": "t15",
"title": "Revise for upcoming quiz",
"description": "Review React hooks and lifecycle",
"isUrgent": true,
"isDone": false,
"dueDate": "2026-02-22",
"categoryId": "c3"
}
]
}