retold 4.0.1 → 4.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. package/.claude/settings.local.json +27 -1
  2. package/docs/README.md +7 -6
  3. package/docs/_sidebar.md +34 -21
  4. package/docs/_topbar.md +2 -2
  5. package/docs/architecture/module-architecture.md +234 -0
  6. package/docs/{modules.md → architecture/modules.md} +25 -22
  7. package/docs/cover.md +2 -2
  8. package/docs/css/docuserve.css +6 -6
  9. package/docs/examples/examples.md +71 -0
  10. package/docs/examples/todolist/todo-list-cli-client.md +178 -0
  11. package/docs/examples/todolist/todo-list-console-client.md +152 -0
  12. package/docs/examples/todolist/todo-list-model.md +114 -0
  13. package/docs/examples/todolist/todo-list-server.md +128 -0
  14. package/docs/examples/todolist/todo-list-web-client.md +177 -0
  15. package/docs/examples/todolist/todo-list.md +162 -0
  16. package/docs/getting-started.md +8 -7
  17. package/docs/index.html +4 -4
  18. package/docs/{meadow.md → modules/meadow.md} +4 -6
  19. package/docs/{orator.md → modules/orator.md} +1 -0
  20. package/docs/{pict.md → modules/pict.md} +30 -8
  21. package/docs/{utility.md → modules/utility.md} +0 -9
  22. package/docs/retold-catalog.json +896 -2317
  23. package/docs/retold-keyword-index.json +162327 -120227
  24. package/examples/todo-list/Dockerfile +45 -0
  25. package/examples/todo-list/README.md +394 -0
  26. package/examples/todo-list/cli-client/package-lock.json +418 -0
  27. package/examples/todo-list/cli-client/package.json +19 -0
  28. package/examples/todo-list/cli-client/source/TodoCLI-CLIProgram.js +30 -0
  29. package/examples/todo-list/cli-client/source/TodoCLI-Run.js +3 -0
  30. package/examples/todo-list/cli-client/source/commands/add/TodoCLI-Command-Add.js +74 -0
  31. package/examples/todo-list/cli-client/source/commands/complete/TodoCLI-Command-Complete.js +84 -0
  32. package/examples/todo-list/cli-client/source/commands/list/TodoCLI-Command-List.js +110 -0
  33. package/examples/todo-list/cli-client/source/commands/remove/TodoCLI-Command-Remove.js +49 -0
  34. package/examples/todo-list/cli-client/source/services/TodoCLI-Service-API.js +92 -0
  35. package/examples/todo-list/console-client/console-client.cjs +913 -0
  36. package/examples/todo-list/console-client/package-lock.json +426 -0
  37. package/examples/todo-list/console-client/package.json +19 -0
  38. package/examples/todo-list/console-client/views/PictView-TUI-Header.cjs +43 -0
  39. package/examples/todo-list/console-client/views/PictView-TUI-Layout.cjs +58 -0
  40. package/examples/todo-list/console-client/views/PictView-TUI-StatusBar.cjs +41 -0
  41. package/examples/todo-list/console-client/views/PictView-TUI-TaskList.cjs +104 -0
  42. package/examples/todo-list/docker-motd.sh +36 -0
  43. package/examples/todo-list/docker-run.sh +2 -0
  44. package/examples/todo-list/docker-shell.sh +2 -0
  45. package/examples/todo-list/model/MeadowSchema-Task.json +152 -0
  46. package/examples/todo-list/model/Task-Compiled.json +25 -0
  47. package/examples/todo-list/model/Task.mddl +15 -0
  48. package/examples/todo-list/model/data/seeded_todo_events.csv +1001 -0
  49. package/examples/todo-list/server/database-initialization-service.cjs +273 -0
  50. package/examples/todo-list/server/package-lock.json +6113 -0
  51. package/examples/todo-list/server/package.json +19 -0
  52. package/examples/todo-list/server/server.cjs +138 -0
  53. package/examples/todo-list/web-client/css/todolist-theme.css +235 -0
  54. package/examples/todo-list/web-client/generate-build-config.cjs +18 -0
  55. package/examples/todo-list/web-client/html/index.html +18 -0
  56. package/examples/todo-list/web-client/package-lock.json +12030 -0
  57. package/examples/todo-list/web-client/package.json +43 -0
  58. package/examples/todo-list/web-client/source/TodoList-Application-Config.json +12 -0
  59. package/examples/todo-list/web-client/source/TodoList-Application.cjs +383 -0
  60. package/examples/todo-list/web-client/source/providers/Provider-TaskData.cjs +243 -0
  61. package/examples/todo-list/web-client/source/providers/Router-Config.json +32 -0
  62. package/examples/todo-list/web-client/source/views/View-Layout.cjs +75 -0
  63. package/examples/todo-list/web-client/source/views/View-TaskForm.cjs +87 -0
  64. package/examples/todo-list/web-client/source/views/View-TaskList.cjs +127 -0
  65. package/examples/todo-list/web-client/source/views/calendar/View-MonthView.cjs +293 -0
  66. package/examples/todo-list/web-client/source/views/calendar/View-WeekView.cjs +149 -0
  67. package/examples/todo-list/web-client/source/views/calendar/View-YearView.cjs +226 -0
  68. package/modules/Include-Retold-Module-List.sh +2 -2
  69. package/package.json +5 -5
  70. package/docs/js/pict.min.js +0 -12
  71. package/docs/js/pict.min.js.map +0 -1
  72. package/docs/pict-docuserve.min.js +0 -58
  73. package/docs/pict-docuserve.min.js.map +0 -1
  74. /package/docs/{architecture.md → architecture/architecture.md} +0 -0
  75. /package/docs/{fable.md → modules/fable.md} +0 -0
@@ -0,0 +1,1001 @@
1
+ Name,Description,DueDate,LengthInHours,Status
2
+ Gather tax documents,"Collect all W-2s, 1099s, mortgage interest statements, and charitable donation receipts for the year.",2022-01-08,3,Complete
3
+ Review investment portfolio,"Sit down and review investment allocations. Consider rebalancing after the recent market changes.",2022-01-14,2,Complete
4
+ Sister's birthday,"Rachel's birthday. She mentioned wanting that new Kindle Paperwhite.",2022-01-28,1.5,Complete
5
+ Pay mortgage,"Monthly mortgage payment due on the 1st. Verify the escrow amount is correct.",2022-02-01,0.25,Complete
6
+ Weekly team standup,"Monday morning standup with the dev team. Prep status update on current sprint items.",2022-02-07,0.5,Complete
7
+ Valentine's Day reservation,"Make dinner reservation at Luciano's and order flowers for delivery. Don't forget the card.",2022-02-10,1,Complete
8
+ Oil change for the Honda,"Honda is due for an oil change. Schedule at Jiffy Lube on Saturday morning.",2022-02-14,1,Complete
9
+ Car registration renewal,"Renew vehicle registration before it expires. Need emissions test first.",2022-02-18,1,Complete
10
+ Grocery run for the week,"Weekly grocery trip. Don't forget milk, eggs, bread, and the ingredients for Tuesday's stir fry.",2022-02-22,1.5,Complete
11
+ 1-on-1 with manager,"Bi-weekly check-in with Janet. Discuss the current sprint blockers and Q1 goals.",2022-02-25,1,Complete
12
+ Pay electric bill,"Electric bill is due. Set up autopay so this stops being a monthly task.",2022-02-28,0.25,Complete
13
+ Spring cleaning weekend,"Deep clean the whole house. Focus on windows, baseboards, and reorganizing closets.",2022-03-05,8,Complete
14
+ Book club meeting,"Discuss this month's pick. Need to finish the last three chapters before going.",2022-03-08,2,Complete
15
+ Mom's birthday,"Pick up flowers and her favorite carrot cake from Delilah's Bakery.",2022-03-14,2,Complete
16
+ Update household budget,"Review last month's spending and adjust the budget categories for the coming month.",2022-03-16,1,Complete
17
+ Annual physical exam,"Annual checkup with Dr. Morrison at Lakeside Medical. Fasting blood work required.",2022-03-18,2,Complete
18
+ Replace windshield wipers,"Wipers are streaking badly. Pick up Bosch Icons from AutoZone.",2022-03-22,0.25,Complete
19
+ Sprint retrospective,"End-of-sprint retro with the team. Prepare notes on what went well and what to improve.",2022-03-25,1,Complete
20
+ Call the plumber about kitchen sink,"Kitchen sink is draining slowly again. Get a quote for fixing it properly this time.",2022-03-28,0.25,Complete
21
+ Submit expense report,"Submit expenses for the Q1 team offsite. Attach all receipts and the hotel folio.",2022-03-31,1,Complete
22
+ Pay credit card bill,"Credit card statement closing soon. Pay in full to avoid interest charges.",2022-04-01,0.25,Complete
23
+ Easter brunch prep,"Prepare Easter brunch menu. Need to buy ham and ingredients for deviled eggs.",2022-04-10,3,Complete
24
+ File taxes,"Complete and file federal and state tax returns. Double-check deductions before submitting.",2022-04-12,4,Complete
25
+ Dentist cleaning,"Six-month dental cleaning at Bright Smile Dental. Ask about that sensitivity on the upper left.",2022-04-15,1.5,Complete
26
+ Spring garden planting,"Plant tomatoes, peppers, basil, and zucchini in the raised beds. Amend soil first.",2022-04-17,4,Complete
27
+ Allergy meds refill,"Spring allergies are starting. Call in the refill for Zyrtec and nasal spray.",2022-04-19,0.25,Complete
28
+ Tire rotation,"Tires are due for rotation. Check the tread depth while they're at it.",2022-04-22,1,Complete
29
+ Q3 planning meeting,"Quarterly planning session with the department. Bring the draft roadmap and metrics.",2022-04-25,2,Complete
30
+ Yoga class registration,"Register for the Tuesday/Thursday yoga class at the community center.",2022-04-27,0.25,Complete
31
+ Batch cook meals for the week,"Prep chicken, rice, and roasted vegetables for easy weeknight dinners.",2022-04-30,3,Complete
32
+ AC maintenance and filter change,"Schedule AC tune-up before summer hits. Replace all HVAC filters.",2022-05-04,1,Complete
33
+ Call Mom for Mother's Day,"Don't forget to call Mom on Mother's Day. The kids made her a card.",2022-05-08,0.5,Complete
34
+ Emma's birthday party,"Emma's birthday party at the house. Need to pick up balloons and the unicorn cake.",2022-05-07,4,Complete
35
+ Attend PTA meeting,"PTA meeting at the elementary school. Agenda includes the spring fundraiser planning.",2022-05-10,1.5,Complete
36
+ Date night at Olive Garden,"Date night dinner. Reservation at 7pm. Get the babysitter confirmed.",2022-05-14,2.5,Complete
37
+ Vet appointment for Max,"Annual checkup and vaccinations for Max. He also needs his nails trimmed.",2022-05-17,1.5,Complete
38
+ Pay mortgage,"Monthly mortgage payment due. Transfer from savings to checking if needed.",2022-05-01,0.25,Complete
39
+ Weekly team standup,"Monday morning standup. Status update on the feature branch work.",2022-05-23,0.5,Complete
40
+ Set up kids' bikes for spring,"Pump up the tires, adjust the seats, and oil the chains on both kids' bikes.",2022-05-25,1,Complete
41
+ Write API documentation,"Document the new REST endpoints for the partner integration. Include example requests.",2022-05-27,4,Complete
42
+ Pressure test sprinkler system,"Turn on the sprinkler system for spring. Check all zones for leaks and broken heads.",2022-05-30,1.5,Complete
43
+ Wedding anniversary dinner,"Anniversary dinner reservation at the new French restaurant on Main Street.",2022-06-12,3,Complete
44
+ Renew car insurance,"Car insurance renewal is due. Shop around for better rates before auto-renewing.",2022-06-15,1,Complete
45
+ Pool opening and chemical balance,"Open the pool for the season. Clean the cover, test the water, and add chemicals.",2022-06-04,3,Complete
46
+ Father's Day gift shopping,"Get something for Dad for Father's Day. He could use a new cordless drill.",2022-06-14,1,Complete
47
+ Kids camp registration,"Register the kids for summer camp at Camp Pinewood. Early bird discount ends next week.",2022-06-01,0.5,Complete
48
+ Game night at Dave's house,"Bring Catan and a six-pack. Dave is making his famous chili.",2022-06-18,3,Complete
49
+ Pay electric bill,"June electric bill is higher with the AC running. Pay before the 25th.",2022-06-22,0.25,Complete
50
+ Grocery run for the week,"Big grocery trip. Stocking up for the 4th of July BBQ prep.",2022-06-28,1.5,Complete
51
+ File quarterly estimated taxes,"Calculate and pay Q2 quarterly estimated tax payment. Use last quarter's worksheet.",2022-06-30,1,Complete
52
+ 4th of July BBQ shopping,"Buy burgers, hot dogs, buns, corn on the cob, and fireworks for the backyard BBQ.",2022-07-02,2,Complete
53
+ Research summer vacation options,"Look into Outer Banks, Gatlinburg, and the Gulf Coast for the family summer trip.",2022-07-06,1,Complete
54
+ Book flights to Denver,"Find and book flights for the Denver trip. Check Southwest and United for best prices.",2022-07-08,1,Complete
55
+ Deploy to staging environment,"Push the release candidate to staging and run the smoke tests. Notify QA when ready.",2022-07-11,2,Complete
56
+ Best friend Mike's birthday dinner,"Dinner at the steakhouse downtown for Mike's birthday. Split the reservation with Dave.",2022-07-19,2,Complete
57
+ Sushi dinner downtown,"Try that new sushi place on 5th Street that everyone keeps talking about.",2022-07-22,2,Complete
58
+ Reserve hotel for beach trip,"Book the hotel in Myrtle Beach for the family vacation. Need at least a two-bedroom suite.",2022-07-25,0.5,Complete
59
+ Weekly team standup,"Monday standup. Discuss the deployment timeline for the new release.",2022-07-25,0.5,Complete
60
+ Pack for camping weekend,"Pack the tent, sleeping bags, cooler, and firewood. Don't forget the bug spray this time.",2022-07-29,1.5,Complete
61
+ Pay mortgage,"August mortgage payment. The escrow went up slightly this year.",2022-08-01,0.25,Complete
62
+ Finalize quarterly budget report,"Finish the Q2 budget variance analysis and submit to finance before end of week.",2022-08-03,3,Complete
63
+ Back to school supplies shopping,"Get everything on the school supply lists for both kids. Hit Target early to avoid the rush.",2022-08-08,2,Complete
64
+ 1-on-1 with manager,"Bi-weekly check-in with Janet. Discuss the promotion timeline and Q4 goals.",2022-08-10,1,Complete
65
+ Dog grooming appointment,"Max needs a bath and haircut. Drop off at PetSmart grooming at 10am.",2022-08-12,0.5,Complete
66
+ Dad's birthday dinner,"Reservation at Rosario's Italian Kitchen for Dad's birthday. He wants the seafood linguine.",2022-08-22,2.5,Complete
67
+ Code review sprint,"Clear the backlog of pending pull requests. Focus on the auth module refactor.",2022-08-24,3,Complete
68
+ Update LinkedIn profile,"Update LinkedIn with the new role title and recent project accomplishments.",2022-08-26,0.5,Complete
69
+ Wash and detail the car,"The car is filthy inside and out. Take it to the detailer on Elm Street.",2022-08-28,0.5,Complete
70
+ Buy pet food in bulk,"Stock up on Max's kibble and treats. Check Chewy for the auto-ship discount.",2022-08-30,0.5,Complete
71
+ Replace furnace filter,"Swap out the furnace filter before heating season starts. Buy the 20x25x1 size.",2022-09-02,0.5,Complete
72
+ Eye exam appointment,"Annual eye exam at VisionWorks. Prescription might need updating since getting headaches.",2022-09-08,1,Complete
73
+ Sign up for the Harvest 5K,"Registration for the fall 5K closes soon. Sign up and start training.",2022-09-10,0.25,Complete
74
+ Schedule family photos,"Book the fall family photo session with the photographer before slots fill up.",2022-09-14,0.5,Complete
75
+ Neighborhood block party,"Bring a side dish and lawn chairs. The Hendersons are organizing the bounce house.",2022-09-17,4,Complete
76
+ Sprint retrospective,"Sprint retro with the team. Bring data on the velocity changes from this sprint.",2022-09-19,1,Complete
77
+ Deep clean the kitchen,"Degrease the stove hood, clean inside the oven, and organize the pantry.",2022-09-22,3,Complete
78
+ Pick up prescription refills,"Blood pressure meds and Rachel's allergy prescription are ready at Walgreens.",2022-09-24,0.5,Complete
79
+ Prepare quarterly OKRs,"Draft the objectives and key results for Q4. Align with department goals.",2022-09-28,2,Complete
80
+ Pay credit card bill,"September credit card statement. The back-to-school spending was high.",2022-09-30,0.25,Complete
81
+ Flu shot appointment,"Get flu shots for the whole family at CVS pharmacy. Check if they have the kids' version.",2022-10-03,0.5,Complete
82
+ Fall dentist cleaning,"Second dental cleaning of the year. Need to schedule kids' appointments too.",2022-10-06,1.5,Complete
83
+ Winterize the garden,"Pull up dead plants, mulch the perennials, and cover the raised beds for winter.",2022-10-10,3,Complete
84
+ Halloween costume shopping,"Take the kids to the costume store. Emma wants to be a witch and Jake wants to be a dinosaur.",2022-10-15,2,Complete
85
+ Oil change for the Honda,"Routine oil change. Also ask about the brake pad inspection.",2022-10-18,1,Complete
86
+ Wine tasting event at Cedar Creek,"Wine tasting afternoon at Cedar Creek Vineyard. Bring a designated driver.",2022-10-22,3,Complete
87
+ Backup computer files,"Run a full backup to the external drive. Check that cloud sync is current.",2022-10-25,1,Complete
88
+ Attend neighborhood HOA meeting,"HOA meeting at the clubhouse. Agenda includes the new parking rules and landscaping budget.",2022-10-28,1.5,Complete
89
+ Jake's birthday,"Jake's birthday celebration. He wants to go to the trampoline park this year.",2022-11-03,3,Complete
90
+ Leaf cleanup and yard waste bags,"Rake all the leaves and bag them for yard waste pickup on Thursday.",2022-11-06,3,Complete
91
+ Order firewood for winter,"Order a cord of seasoned oak from Brennan's Firewood. They deliver on Saturdays.",2022-11-08,0.25,Complete
92
+ Clean gutters before winter,"Clean out all gutters and downspouts. Check for any damage that needs repair.",2022-11-11,3,Complete
93
+ Snow tire swap,"Take the car in to swap to snow tires for the winter. Appointment at Discount Tire.",2022-11-14,1.5,Complete
94
+ IT security training,"Complete the mandatory annual cybersecurity awareness training module.",2022-11-16,1,Complete
95
+ Thanksgiving dinner prep,"Start brining the turkey. Prep the sweet potato casserole and green bean casserole.",2022-11-22,6,Complete
96
+ Pay electric bill,"November electric bill. Heating costs are starting to ramp up.",2022-11-25,0.25,Complete
97
+ Donate old clothes to Goodwill,"Box up the clothes in the guest room closet that nobody wears anymore.",2022-11-28,1,Complete
98
+ Pay mortgage,"December mortgage payment.",2022-12-01,0.25,Complete
99
+ Finalize quarterly budget report,"Finish the Q4 budget variance analysis and submit to finance.",2022-12-05,3,Complete
100
+ Contract renewal review,"Review the vendor contract terms before the auto-renewal date. Flag any pricing concerns.",2022-12-08,2,Complete
101
+ Schedule chimney inspection,"Chimney hasn't been inspected in two years. Call Acme Chimney Service.",2022-12-10,0.25,Complete
102
+ Help Jake with science fair project,"Jake's science fair project is due next week. He wants to do the volcano experiment.",2022-12-12,3,Complete
103
+ Christmas shopping deadline,"Finish all remaining Christmas shopping. Check the list twice and wrap everything.",2022-12-20,4,Complete
104
+ Holiday card mailing,"Address and stamp all the holiday cards. The family photo cards arrived from Shutterfly.",2022-12-21,2,Complete
105
+ Plan holiday dinner menu,"Finalize the Christmas dinner menu and create the shopping list.",2022-12-23,1,Complete
106
+ Year-end inventory count,"Participate in the annual physical inventory count. Bring a clipboard and comfortable shoes.",2022-12-28,8,Complete
107
+ New Year's Eve plans,"Finalize New Year's Eve plans. Confirm headcount and buy champagne and appetizers.",2022-12-30,2,Complete
108
+ Gather tax documents,"Collect all W-2s, 1099s, and mortgage interest statements for 2022 tax filing.",2023-01-06,3,Complete
109
+ Review investment portfolio,"Annual review of investment allocations. Market was volatile so check the rebalancing needs.",2023-01-11,2,Complete
110
+ Update household budget,"New year, new budget. Review last year's actuals and set targets for each category.",2023-01-15,1,Complete
111
+ Gym membership renewal,"Gym membership is up for renewal. Decide whether to keep the same plan or upgrade.",2023-01-18,0.5,Complete
112
+ Sister's birthday,"Rachel's birthday. She's been hinting about the new Bose noise-canceling headphones.",2023-01-28,1.5,Complete
113
+ Pay mortgage,"January mortgage payment due on the 1st.",2023-01-01,0.25,Complete
114
+ Cancel unused subscriptions,"Audit all subscriptions and cancel anything we haven't used in the past month.",2023-01-22,0.5,Complete
115
+ Weekly team standup,"First standup of the new year. Set priorities for Q1.",2023-01-09,0.5,Complete
116
+ Car registration renewal,"Renew vehicle registration. Emissions test passed last week.",2023-02-04,1,Complete
117
+ Valentine's Day reservation,"Make dinner reservation and order a dozen roses for delivery.",2023-02-10,1,Complete
118
+ Pay electric bill,"February electric bill. Heating costs still high.",2023-02-15,0.25,Complete
119
+ Dinner with the Hendersons,"The Hendersons invited us over for dinner Saturday. Bring a bottle of red and dessert.",2023-02-18,3,Complete
120
+ Coffee catch-up with Lisa,"Meet Lisa at Blue Bottle Coffee to catch up. Haven't seen her since New Year's.",2023-02-21,1.5,Complete
121
+ Submit expense report,"Submit expenses from the January sales conference. Receipts are in the folder on the desk.",2023-02-24,1,Complete
122
+ Board meeting prep,"Compile the executive summary and financial overview for the quarterly board meeting.",2023-02-28,4,Complete
123
+ Spring cleaning weekend,"Deep clean the house. This year focus on the garage and attic.",2023-03-04,8,Complete
124
+ Book club meeting,"March book club. This month's pick is a historical fiction about the 1920s.",2023-03-07,2,Complete
125
+ Mom's birthday,"Pick up flowers and carrot cake from Delilah's Bakery for Mom's birthday.",2023-03-14,2,Complete
126
+ Annual physical exam,"Annual checkup with Dr. Morrison. Remember to fast the night before.",2023-03-20,2,Complete
127
+ Haircut appointment,"Haircut at Tony's Barber Shop. Long overdue.",2023-03-23,0.5,Complete
128
+ Replace smoke detector batteries,"All smoke detectors are chirping. Buy 9V batteries and replace them all.",2023-03-26,0.5,Complete
129
+ Pay credit card bill,"March credit card bill. Keep an eye on the spending trend.",2023-03-31,0.25,Complete
130
+ Easter brunch prep,"Prepare Easter brunch. Need to buy ham, deviled egg ingredients, and the asparagus.",2023-04-06,3,Complete
131
+ Dentist cleaning,"Spring dental cleaning at Bright Smile. Ask about whitening options.",2023-04-11,1.5,Complete
132
+ File taxes,"Complete and file 2022 federal and state tax returns before the deadline.",2023-04-13,4,Complete
133
+ Spring garden planting,"Plant the garden. This year adding strawberries and green beans to the mix.",2023-04-16,4,Complete
134
+ Kids' soccer game,"Emma's first soccer game of the season at Riverside Park.",2023-04-22,2,Complete
135
+ Allergy meds refill,"Spring allergies hitting hard. Refill Zyrtec and pick up more tissues.",2023-04-24,0.25,Complete
136
+ Client presentation prep,"Prepare slides for the Meridian Corp client presentation. Focus on the ROI metrics.",2023-04-26,3,Complete
137
+ Client presentation to Meridian Corp,"Present the Q1 results and strategy update to Meridian Corp stakeholders.",2023-04-28,1.5,Complete
138
+ Pay mortgage,"May mortgage payment.",2023-05-01,0.25,Complete
139
+ AC maintenance and filter change,"Schedule AC tune-up. Last summer it was struggling on the hottest days.",2023-05-03,1,Complete
140
+ Emma's birthday party,"Emma turns 6! Party at the house with a princess theme.",2023-05-07,4,Complete
141
+ Call Mom for Mother's Day,"Mother's Day call. Emma and Jake made cards and a coupon book.",2023-05-14,0.5,Complete
142
+ Vet appointment for Max,"Annual vet visit for Max. He's due for rabies booster and heartworm test.",2023-05-16,1.5,Complete
143
+ Meal prep Sunday,"Prep lunches for the work week. Turkey wraps, overnight oats, and cut fruit.",2023-05-21,2,Complete
144
+ Date night movie and dinner,"See the new thriller at AMC and grab dinner after. Babysitter confirmed.",2023-05-26,4,Complete
145
+ Pressure test sprinkler system,"Turn on sprinklers for the season. Zone 3 had issues last year.",2023-05-29,1.5,Complete
146
+ Pool opening and chemical balance,"Open the pool. Clean the cover, check the pump, test the water.",2023-06-03,3,Complete
147
+ Kids camp registration,"Register Emma and Jake for Camp Pinewood summer sessions.",2023-06-05,0.5,Complete
148
+ File quarterly estimated taxes,"Q2 estimated tax payment due. Calculate based on current year income.",2023-06-15,1,Complete
149
+ Wedding anniversary dinner,"Eighth anniversary. Reservations at Maison Laurent, the French place downtown.",2023-06-12,3,Complete
150
+ Renew car insurance,"Shop around for car insurance quotes before the renewal auto-processes.",2023-06-18,1,Complete
151
+ Weekly team standup,"Monday standup. Discuss the mid-year roadmap adjustments.",2023-06-19,0.5,Complete
152
+ Pay electric bill,"June electric bill. AC is running a lot already.",2023-06-23,0.25,Complete
153
+ Game night at Dave's house,"Board game night. Dave got the new Wingspan expansion.",2023-06-24,3,Complete
154
+ Tire rotation,"Tire rotation at Discount Tire. Check alignment while they're at it.",2023-06-28,1,Complete
155
+ 4th of July BBQ shopping,"Stock up for the annual BBQ. Extra guests this year so get more burgers.",2023-07-01,2,Complete
156
+ Volunteer at food bank,"Saturday morning food bank shift. Meet at First Baptist Church at 9am.",2023-07-08,3,Complete
157
+ Deploy to staging environment,"Push the v2.5 release candidate to staging. Coordinate with QA.",2023-07-10,2,Complete
158
+ Sushi dinner downtown,"Finally trying Saka Sushi on 5th Street. Reservation at 7:30.",2023-07-14,2,Complete
159
+ Best friend Mike's birthday dinner,"Mike's birthday dinner at Smith & Wollensky. Reservation for 8.",2023-07-19,2,Complete
160
+ Write unit tests for auth module,"Increase test coverage on the auth module to 90% branch coverage.",2023-07-21,3,Complete
161
+ Research new phone plans,"Phone plan comparison: Mint Mobile, Visible, and T-Mobile. Our bill is too high.",2023-07-24,1,Complete
162
+ Reserve hotel for beach trip,"Book the Myrtle Beach suite for the August family vacation.",2023-07-26,0.5,Complete
163
+ Pack for camping weekend,"Pack everything for Shenandoah camping trip. Bear canister is in the garage.",2023-07-28,1.5,Complete
164
+ Pay mortgage,"August mortgage payment.",2023-08-01,0.25,Complete
165
+ Finalize quarterly budget report,"Q2 budget report. Revenue was up but so were expenses.",2023-08-04,3,Complete
166
+ Back to school supplies shopping,"School supply lists are longer than ever. Hit Target and Staples.",2023-08-07,2,Complete
167
+ Coach Jake's basketball practice,"Run drills at the community center gym. Focus on dribbling and passing.",2023-08-10,1.5,Complete
168
+ Order new running shoes,"Current Brooks have 500 miles on them. Order the Ghost 15.",2023-08-13,0.5,Complete
169
+ Dog grooming appointment,"Max is getting shaggy. PetSmart grooming at 10am on Saturday.",2023-08-16,0.5,Complete
170
+ Dad's birthday dinner,"Dad's birthday at Rosario's. He wants the seafood linguine again.",2023-08-22,2.5,Complete
171
+ Complete annual review self-assessment,"Fill out the self-assessment for the performance review cycle.",2023-08-25,2,Complete
172
+ Performance review meeting,"Annual review with Janet. Bring the self-assessment and accomplishments list.",2023-08-28,1,Complete
173
+ Wash and detail the car,"Post-beach-trip car detail. Sand everywhere.",2023-08-30,0.5,Complete
174
+ Pay credit card bill,"August statement. Vacation spending was significant.",2023-08-31,0.25,Complete
175
+ Replace furnace filter,"Swap the furnace filter before fall. Buy the 20x25x1 size from Lowe's.",2023-09-02,0.5,Complete
176
+ Eye exam appointment,"Annual eye exam at VisionWorks. The reading glasses prescription might need updating.",2023-09-07,1,Complete
177
+ Sign up for the Harvest 5K,"Harvest 5K registration. Try to beat last year's time of 27 minutes.",2023-09-11,0.25,Complete
178
+ Neighborhood block party,"Annual block party. We're signed up to bring the fruit salad this year.",2023-09-16,4,Complete
179
+ Take kids to the science museum,"The dinosaur exhibit closes in October. Take the kids this weekend.",2023-09-23,4,Complete
180
+ Update project roadmap,"Revise the product roadmap based on the strategy meeting outcomes.",2023-09-25,2,Complete
181
+ Prepare quarterly OKRs,"Draft Q4 OKRs. Focus on the platform migration and customer retention.",2023-09-28,2,Complete
182
+ Flu shot appointment,"Family flu shots at CVS. Bring the insurance cards.",2023-10-02,0.5,Complete
183
+ Winterize the garden,"Pull up dead plants and mulch perennials for winter protection.",2023-10-07,3,Complete
184
+ Fall dentist cleaning,"Dental cleaning. The kids need their appointments scheduled too.",2023-10-10,1.5,Complete
185
+ Halloween costume shopping,"Jake wants to be a robot this year. Emma is going as a cat.",2023-10-14,2,Complete
186
+ Wine tasting event at Cedar Creek,"Autumn wine tasting at Cedar Creek. Beautiful foliage this time of year.",2023-10-21,3,Complete
187
+ Recycle old electronics,"Drop off the old laptop and tablet at Best Buy e-waste recycling.",2023-10-24,1,Complete
188
+ Photo album project,"Sort through 2022-2023 photos and order prints for the family album.",2023-10-27,3,Complete
189
+ Pay electric bill,"October electric bill. Heating starting to kick in.",2023-10-30,0.25,Complete
190
+ Jake's birthday,"Jake turns 7! Trampoline park party again per his request.",2023-11-03,3,Complete
191
+ Leaf cleanup and yard waste bags,"Big leaf cleanup day. Bag everything for Thursday yard waste pickup.",2023-11-05,3,Complete
192
+ Order firewood for winter,"Order two cords of seasoned oak this year. The fireplace insert uses more.",2023-11-07,0.25,Complete
193
+ Clean gutters before winter,"Gutter cleaning day. The back gutters are always the worst.",2023-11-11,3,Complete
194
+ Snow tire swap,"Swap to snow tires at Discount Tire. Winter storm forecast for next week.",2023-11-13,1.5,Complete
195
+ New hire onboarding session,"Walk the new junior developer through the codebase and CI/CD pipeline.",2023-11-15,3,Complete
196
+ Thanksgiving dinner prep,"Turkey brine day. Also prep the sides for tomorrow's feast.",2023-11-22,6,Complete
197
+ Return Amazon packages,"Return the shoes that didn't fit and the duplicate kitchen gadget.",2023-11-27,0.5,Complete
198
+ Donate old clothes to Goodwill,"Pre-holiday closet purge. Box up everything for Goodwill.",2023-11-29,1,Complete
199
+ Pay mortgage,"December mortgage payment.",2023-12-01,0.25,Complete
200
+ Finalize quarterly budget report,"Q3 budget wrap-up. Underspent on travel, overspent on software licenses.",2023-12-04,3,Complete
201
+ Contract renewal review,"Annual vendor contract review. Three contracts are up for renewal this month.",2023-12-07,2,Complete
202
+ Schedule chimney inspection,"Time for the chimney inspection. Last one was December 2022.",2023-12-09,0.25,Complete
203
+ Assemble kids' new bookshelf,"The IKEA BILLY bookshelf for the playroom. Should take an hour or two.",2023-12-11,2,Complete
204
+ IT security training,"Annual cybersecurity training. New module on phishing awareness.",2023-12-13,1,Complete
205
+ Install doorbell camera,"Install the Ring doorbell camera. Want it up before the holiday package deliveries.",2023-12-15,1,Complete
206
+ Christmas shopping deadline,"Final shopping push. Still need gifts for Dad, Rachel, and the kids' teachers.",2023-12-19,4,Complete
207
+ Holiday card mailing,"Address and mail all 50 holiday cards. Use the stamp roll from the post office.",2023-12-20,2,Complete
208
+ Plan holiday dinner menu,"Christmas dinner menu: prime rib, mashed potatoes, roasted Brussels sprouts, pie.",2023-12-22,1,Complete
209
+ Year-end inventory count,"Annual inventory count at the office. Long day but mandatory.",2023-12-28,8,Complete
210
+ New Year's Eve plans,"New Year's at the Hendersons' house. Bringing champagne and shrimp cocktail.",2023-12-30,2,Complete
211
+ Gather tax documents,"Collect all 2023 W-2s, 1099s, and deduction records.",2024-01-05,3,Complete
212
+ Review investment portfolio,"Investment review. 2023 market recovery means some rebalancing needed.",2024-01-10,2,Complete
213
+ Pay mortgage,"January mortgage. New escrow amount this year.",2024-01-01,0.25,Complete
214
+ Weekly team standup,"First standup of 2024. Set the tone for Q1 priorities.",2024-01-08,0.5,Complete
215
+ Gym membership renewal,"Decide on gym renewal. Consider adding the family plan option.",2024-01-15,0.5,Complete
216
+ Schedule kids' dental cleanings,"Both kids due for cleanings. Try to get back-to-back morning appointments.",2024-01-17,0.25,Complete
217
+ Renew passport,"Passport expires in May. Fill out the renewal form and get photos at CVS.",2024-01-20,1.5,Complete
218
+ Pizza night with kids,"Homemade pizza Friday. Let the kids pick their own toppings.",2024-01-26,2,Complete
219
+ Sister's birthday,"Rachel's birthday. Got her the spa gift certificate she wanted.",2024-01-28,1.5,Complete
220
+ Batch cook meals for the week,"Sunday meal prep. Making chili, roasted chicken, and grain bowls.",2024-01-29,3,Complete
221
+ Car registration renewal,"Registration renewal. Emissions test appointment first on Thursday.",2024-02-02,1,Complete
222
+ Pay electric bill,"February electric bill. Slightly lower than January.",2024-02-05,0.25,Complete
223
+ Valentine's Day reservation,"Valentine's dinner at Maison Laurent. 7:30 reservation, babysitter at 6.",2024-02-10,1,Complete
224
+ Coffee catch-up with Lisa,"Catch up with Lisa at Blue Bottle. She just got back from her Europe trip.",2024-02-13,1.5,Complete
225
+ Dinner with the Hendersons,"Saturday dinner at the Hendersons'. They're trying a new Thai recipe.",2024-02-17,3,Complete
226
+ 1-on-1 with manager,"Check-in with Janet. Discuss the Q1 objectives and team expansion.",2024-02-20,1,Complete
227
+ Grocery run for the week,"Weekly grocery trip. We're trying to eat more vegetables this month.",2024-02-24,1.5,Complete
228
+ Submit expense report,"February expense report. Conference registration and team lunch receipts.",2024-02-27,1,Complete
229
+ Board meeting prep,"Q1 board meeting prep. The investor deck needs updating.",2024-02-29,4,Complete
230
+ Spring cleaning weekend,"Spring cleaning. Focus on the basement this year, it's gotten bad.",2024-03-02,8,Complete
231
+ Book club meeting,"March book club. Reading a mystery novel this month.",2024-03-06,2,Complete
232
+ Return library books,"Library books are two weeks overdue. Return them and pay the fine.",2024-03-08,0.5,Pending
233
+ Mom's birthday,"Mom's birthday. Picking up her favorite carrot cake and a bouquet of tulips.",2024-03-14,2,Complete
234
+ Annual physical exam,"Annual physical with Dr. Morrison. Fasting blood work at 8am.",2024-03-19,2,Complete
235
+ Replace windshield wipers,"Wipers are terrible in the rain. Get new Bosch Icons from AutoZone.",2024-03-22,0.25,Complete
236
+ Baby shower for Sarah,"Sarah's baby shower at the community center. Got the stroller from her registry.",2024-03-24,3,Complete
237
+ Fix leaky faucet in bathroom,"The master bath faucet has been dripping. Probably needs a new cartridge.",2024-03-27,1,Complete
238
+ Attend PTA meeting,"PTA meeting about the new playground equipment fundraiser.",2024-03-28,1.5,Complete
239
+ Pay credit card bill,"March statement. Need to review the auto-renewal charges.",2024-03-31,0.25,Complete
240
+ Dentist cleaning,"Spring dental cleaning. No issues expected, just routine.",2024-04-04,1.5,Complete
241
+ Easter brunch prep,"Easter brunch for 12 people. Ham, scalloped potatoes, deviled eggs, and carrot cake.",2024-04-01,3,Complete
242
+ File taxes,"File 2023 taxes. Have all documents ready. Using TurboTax again.",2024-04-12,4,Complete
243
+ Spring garden planting,"Garden planting day. Adding sunflowers this year for the kids to watch grow.",2024-04-14,4,Complete
244
+ Allergy meds refill,"Allergies are brutal this spring. Refill all the meds.",2024-04-17,0.25,Complete
245
+ Q3 planning meeting,"Q2 planning session. Bring the competitive analysis and feature requests list.",2024-04-22,2,Complete
246
+ Yoga class registration,"Sign up for the spring yoga session at the community center.",2024-04-24,0.25,Complete
247
+ Flea and tick treatment for Max,"Apply the monthly flea treatment. Reorder the next supply from Chewy.",2024-04-26,0.25,Complete
248
+ Tire rotation,"Tire rotation day. Also need the alignment checked after hitting that pothole.",2024-04-29,1,Complete
249
+ Pay mortgage,"May mortgage payment.",2024-05-01,0.25,Complete
250
+ AC maintenance and filter change,"Pre-summer AC tune-up. Replace all filters throughout the house.",2024-05-06,1,Complete
251
+ Emma's birthday party,"Emma turns 7! Pool party theme since the pool is open.",2024-05-07,4,Complete
252
+ Call Mom for Mother's Day,"Mother's Day call and delivery of the flower arrangement.",2024-05-12,0.5,Complete
253
+ Vet appointment for Max,"Max's annual checkup. Needs boosters and a dental cleaning this time.",2024-05-15,1.5,Complete
254
+ Sprint retrospective,"Sprint retro. Velocity was good this sprint, capture what worked.",2024-05-17,1,Complete
255
+ Get quotes for deck staining,"The deck desperately needs staining. Get three quotes this week.",2024-05-20,0.5,Complete
256
+ Date night at Olive Garden,"Olive Garden date night. Use the gift card from Christmas.",2024-05-24,2.5,Complete
257
+ Marathon training run - 10 miles,"10-mile long run along the river trail. Bring water and energy gels.",2024-05-26,2,Complete
258
+ Pressure test sprinkler system,"Sprinkler startup. Check each zone and replace the broken heads.",2024-05-28,1.5,Complete
259
+ Pool opening and chemical balance,"Open the pool early this year. The pump seal needs checking.",2024-06-01,3,Complete
260
+ Kids camp registration,"Camp Pinewood registration for both kids. Jake wants the wilderness track.",2024-06-03,0.5,Complete
261
+ Wedding anniversary dinner,"Ninth anniversary dinner. That new Italian place in the historic district.",2024-06-12,3,Complete
262
+ Father's Day gift shopping,"Dad wants a Traeger grill this year. Split the cost with Rachel.",2024-06-13,1,Complete
263
+ Renew car insurance,"Insurance shopping. Got a quote from Geico that's $200 less per year.",2024-06-17,1,Complete
264
+ File quarterly estimated taxes,"Q2 estimated tax payment. Freelance income was higher this quarter.",2024-06-17,1,Complete
265
+ Pay electric bill,"June electric bill. Consider raising the thermostat one degree.",2024-06-22,0.25,Complete
266
+ Game night at Dave's house,"Game night at Dave's. He just bought Gloomhaven. Bring snacks.",2024-06-29,3,Complete
267
+ 4th of July BBQ shopping,"Annual BBQ supplies. Plus new patio string lights.",2024-07-02,2,Complete
268
+ Book flights to Denver,"Book Denver flights for the August trip. Nonstop on Southwest is cheapest.",2024-07-05,1,Complete
269
+ Write API documentation,"Document the v3 API endpoints. The partner team needs this by end of month.",2024-07-08,4,Complete
270
+ Volunteer at food bank,"Saturday food bank shift. Bring extra hands, Jake wants to volunteer too.",2024-07-13,3,Complete
271
+ Best friend Mike's birthday dinner,"Mike's birthday dinner. He picked the Brazilian steakhouse this year.",2024-07-19,2,Complete
272
+ Code review sprint,"Clear the PR backlog before the team goes on vacation rotations.",2024-07-22,3,Complete
273
+ Sushi dinner downtown,"Sushi dinner at Saka. They added new omakase options.",2024-07-24,2,Complete
274
+ Research summer vacation options,"Look into Lake Tahoe or Pacific Coast Highway for next summer.",2024-07-28,1,Complete
275
+ Pay mortgage,"August mortgage payment.",2024-08-01,0.25,Complete
276
+ Finalize quarterly budget report,"Q2 budget report. Travel expenses were over budget due to the conference.",2024-08-05,3,Complete
277
+ Back to school supplies shopping,"School supply shopping for both kids. Third grade and first grade lists.",2024-08-10,2,Complete
278
+ 1-on-1 with manager,"Check-in with Janet about the team lead role opening.",2024-08-13,1,Complete
279
+ Dog grooming appointment,"Max is overdue for a grooming. Book the full spa treatment.",2024-08-15,0.5,Complete
280
+ Coach Jake's basketball practice,"Jake's basketball practice. Working on shooting form this week.",2024-08-19,1.5,Complete
281
+ Dad's birthday dinner,"Dad's 64th birthday dinner at Rosario's. Surprise cake after dinner.",2024-08-22,2.5,Complete
282
+ Complete annual review self-assessment,"Self-assessment time again. Document the API platform project wins.",2024-08-26,2,Complete
283
+ Update LinkedIn profile,"Update LinkedIn with the new certifications and the team lead responsibilities.",2024-08-28,0.5,Complete
284
+ Buy pet food in bulk,"Big Chewy order for Max. Add some new dental chews to the cart.",2024-08-30,0.5,Complete
285
+ Replace furnace filter,"End of summer furnace filter swap. Buy two so we have a spare.",2024-09-03,0.5,Complete
286
+ Eye exam appointment,"Eye exam. The headaches are back, definitely need a new prescription.",2024-09-09,1,Complete
287
+ Schedule family photos,"Book the October family photo session. The park has great fall colors.",2024-09-12,0.5,Complete
288
+ Sign up for the Harvest 5K,"Harvest 5K registration. Aiming for under 25 minutes this year.",2024-09-15,0.25,Complete
289
+ Neighborhood block party,"Block party! We're on grill duty this year.",2024-09-21,4,Complete
290
+ Migrate database to new server,"Coordinate the production DB migration. Maintenance window is Saturday night.",2024-09-23,4,Complete
291
+ Update project roadmap,"Revise the roadmap for the investor meeting next month.",2024-09-26,2,Complete
292
+ Prepare quarterly OKRs,"Q4 OKRs. The big push is the platform launch in November.",2024-09-29,2,Complete
293
+ Pay credit card bill,"September statement. Back-to-school spending was controlled this year.",2024-09-30,0.25,Complete
294
+ Flu shot appointment,"Family flu shots. Jake is old enough to not cry this year hopefully.",2024-10-01,0.5,Complete
295
+ Winterize the garden,"Winterize the garden. The tomato plants produced well this year.",2024-10-05,3,Complete
296
+ Fall dentist cleaning,"Fall cleaning. Ask about Jake's loose tooth situation.",2024-10-08,1.5,Complete
297
+ Dermatology checkup,"Annual skin check with Dr. Lee. That mole on the shoulder hasn't changed.",2024-10-11,1,Complete
298
+ Halloween costume shopping,"Emma wants to be an astronaut. Jake is going as a Minecraft character.",2024-10-16,2,Complete
299
+ Oil change for the Honda,"Oil change at the dealership. Also need the recall item addressed.",2024-10-19,1,Complete
300
+ Wine tasting event at Cedar Creek,"Cedar Creek fall wine tasting. Going with the Hendersons this time.",2024-10-25,3,Complete
301
+ Attend neighborhood HOA meeting,"HOA meeting. Snow removal contract is on the agenda.",2024-10-28,1.5,Complete
302
+ Caulk around windows,"Recaulk the living room windows before it gets cold. Buy the clear sealant.",2024-10-30,1.5,Complete
303
+ Jake's birthday,"Jake turns 8! Laser tag party at FunZone.",2024-11-03,3,Complete
304
+ Leaf cleanup and yard waste bags,"Massive leaf cleanup. Three maples' worth of leaves.",2024-11-09,3,Complete
305
+ Order firewood for winter,"Order firewood from Brennan's. Two cords of seasoned oak.",2024-11-11,0.25,Complete
306
+ Clean gutters before winter,"Gutter cleaning. Use the new gutter scoop this year.",2024-11-14,3,Complete
307
+ Snow tire swap,"Snow tire appointment at Discount Tire. First snow is forecast next week.",2024-11-16,1.5,Complete
308
+ Team lunch outing,"Team lunch at Panera celebrating the platform launch. Company is buying.",2024-11-18,1.5,Complete
309
+ Submit grant proposal,"Research grant proposal final review and submission. Hard deadline Friday.",2024-11-20,6,Complete
310
+ Thanksgiving dinner prep,"Turkey brine and all the sides. The in-laws are coming this year too.",2024-11-27,6,Complete
311
+ Return Amazon packages,"Holiday season returns. Wrong sizes and duplicate orders.",2024-11-29,0.5,Complete
312
+ Pay electric bill,"November electric bill. First full month of heating.",2024-11-30,0.25,Complete
313
+ Pay mortgage,"December mortgage payment.",2024-12-01,0.25,Complete
314
+ Finalize quarterly budget report,"Q3 budget wrap-up. Under budget on most categories this quarter.",2024-12-03,3,Complete
315
+ Install new light fixtures in hallway,"Install the pendant lights in the hallway. The wiring is already there.",2024-12-06,2,Complete
316
+ Water heater inspection,"Water heater is 9 years old. Get it inspected and flush sediment.",2024-12-09,1,Complete
317
+ Contract renewal review,"Year-end vendor contract review. Three contracts expiring this month.",2024-12-11,2,Complete
318
+ Buy new winter coat,"Old coat zipper finally broke. Check REI and the North Face outlet.",2024-12-13,1.5,Complete
319
+ Help Jake with science fair project,"Jake's science fair project. He wants to test which paper airplane design flies farthest.",2024-12-15,3,Complete
320
+ IT security training,"Annual cybersecurity training completion. New social engineering module.",2024-12-16,1,Complete
321
+ Christmas shopping deadline,"Final Christmas shopping. Still need Mom's gift and stocking stuffers.",2024-12-19,4,Complete
322
+ Holiday card mailing,"Mail all 55 holiday cards. Added the new neighbors to the list.",2024-12-20,2,Complete
323
+ Plan holiday dinner menu,"Christmas dinner: beef tenderloin this year instead of prime rib.",2024-12-23,1,Complete
324
+ Deep clean the kitchen,"Pre-holiday deep clean of the kitchen. Oven is a mess.",2024-12-24,3,Complete
325
+ Year-end inventory count,"Annual inventory count. Hopefully faster this year with the new system.",2024-12-28,8,Complete
326
+ New Year's Eve plans,"New Year's at home this year. Fondue night and board games with the kids.",2024-12-31,2,Complete
327
+ Pay mortgage,"January mortgage. New year, same payment.",2025-01-01,0.25,Complete
328
+ Gather tax documents,"Start collecting 2024 tax documents. Set up the tax folder.",2025-01-06,3,Complete
329
+ Weekly team standup,"First standup of 2025. Big Q1 ahead with the platform expansion.",2025-01-06,0.5,Complete
330
+ Review investment portfolio,"Annual investment review. The market had a great year, time to rebalance.",2025-01-09,2,Complete
331
+ Update household budget,"2025 budget planning. Increase the savings category by 5%.",2025-01-12,1,Complete
332
+ Cancel unused subscriptions,"Subscription audit. Found three we forgot about. That's $45/month wasted.",2025-01-14,0.5,Complete
333
+ Gym membership renewal,"Renew the family gym membership. The kids' swim lessons are included.",2025-01-17,0.5,Complete
334
+ Backup computer files,"Full system backup. Also clean up the photo library duplicates.",2025-01-19,1,Complete
335
+ Schedule kids' dental cleanings,"Book the kids' cleanings for early February before the schedule fills up.",2025-01-21,0.25,Complete
336
+ Order birthday gift for Mom,"Mom's birthday is in March. Order the new garden tool set she mentioned.",2025-01-24,0.5,Complete
337
+ Sister's birthday,"Rachel's birthday dinner at her favorite Greek restaurant.",2025-01-28,1.5,Complete
338
+ Batch cook meals for the week,"Sunday meal prep. Making soup, grilled chicken, and pasta salad.",2025-01-26,3,Complete
339
+ Pay credit card bill,"January credit card bill. Holiday spending is done.",2025-01-31,0.25,Complete
340
+ Car registration renewal,"Vehicle registration renewal. Emissions test passed already.",2025-02-03,1,Complete
341
+ Valentine's Day reservation,"Valentine's dinner. Trying a new sushi omakase place this year.",2025-02-10,1,Complete
342
+ Pay electric bill,"February electric bill.",2025-02-12,0.25,Complete
343
+ Dinner with the Hendersons,"Saturday dinner at the Hendersons'. They got a new pizza oven.",2025-02-15,3,Complete
344
+ 1-on-1 with manager,"Check-in with Janet. Discuss the team restructuring proposal.",2025-02-18,1,Complete
345
+ Oil change for the Honda,"Honda oil change. Also rotate the tires while it's in the shop.",2025-02-21,1,Complete
346
+ Coffee catch-up with Lisa,"Coffee with Lisa. She's thinking about changing jobs and wants to talk it through.",2025-02-24,1.5,Complete
347
+ Submit expense report,"February expense report. Just the team lunch and office supplies.",2025-02-27,1,Complete
348
+ Board meeting prep,"Q1 board meeting prep. The growth numbers look good this quarter.",2025-02-28,4,Complete
349
+ Spring cleaning weekend,"Spring cleaning. Attack the closets and the junk drawer situation.",2025-03-01,8,Complete
350
+ Book club meeting,"March book club. This month's pick is a memoir about hiking the PCT.",2025-03-05,2,Complete
351
+ Replace smoke detector batteries,"Smoke detectors chirping at 3am. Replace all batteries immediately.",2025-03-08,0.5,Complete
352
+ Attend PTA meeting,"PTA meeting about the end-of-year celebration plans.",2025-03-10,1.5,Complete
353
+ Mom's birthday,"Mom's birthday! Carrot cake from Delilah's and the garden tool set.",2025-03-14,2,Complete
354
+ Annual physical exam,"Annual physical with Dr. Morrison. Blood work results from last week looked fine.",2025-03-17,2,Complete
355
+ Haircut appointment,"Haircut at Tony's. Way overdue. Walk-in wait is terrible so keep the appointment.",2025-03-20,0.5,Complete
356
+ Pizza night with kids,"Friday pizza night. Emma wants to try making the dough from scratch.",2025-03-21,2,Complete
357
+ Baby shower for Sarah,"Sarah's second baby shower. It's a boy this time! Registry gift ordered.",2025-03-23,3,Complete
358
+ Fix leaky faucet in bathroom,"Bathroom faucet dripping again. This time replace the whole valve assembly.",2025-03-25,1,Complete
359
+ Grocery run for the week,"Big grocery run. Stocking up for the busy week ahead.",2025-03-28,1.5,Complete
360
+ Pay credit card bill,"March statement. Pretty standard month.",2025-03-31,0.25,Complete
361
+ Dentist cleaning,"Spring dental cleaning. Mention the tooth sensitivity that started last month.",2025-04-02,1.5,Complete
362
+ Easter brunch prep,"Easter brunch for the family. Trying a new honey-glazed ham recipe.",2025-04-14,3,Complete
363
+ Spring garden planting,"Garden day! Adding herbs this year: rosemary, thyme, and cilantro.",2025-04-16,4,Complete
364
+ File taxes,"File 2024 taxes. The new deduction from the home office should help.",2025-04-15,4,Complete
365
+ Allergy meds refill,"Allergy season is early this year. Stock up on everything.",2025-04-18,0.25,Complete
366
+ Client presentation prep,"Prepare the Meridian Corp annual review presentation.",2025-04-21,3,Complete
367
+ Client presentation to Meridian Corp,"Annual review presentation to Meridian. Showcase the platform improvements.",2025-04-23,1.5,Complete
368
+ Yoga class registration,"Spring yoga session. Upgrade to the unlimited class package.",2025-04-25,0.25,Complete
369
+ Kids' soccer game,"Emma's soccer game. She's playing goalie for the first time.",2025-04-26,2,Complete
370
+ Flea and tick treatment for Max,"Monthly flea treatment for Max. Starting early since it's a warm spring.",2025-04-28,0.25,Complete
371
+ Pay mortgage,"May mortgage payment.",2025-05-01,0.25,Complete
372
+ AC maintenance and filter change,"AC tune-up. The tech found a minor refrigerant leak last year, check on it.",2025-05-05,1,Complete
373
+ Emma's birthday party,"Emma turns 8! Arts and crafts party at the house.",2025-05-07,4,Complete
374
+ Call Mom for Mother's Day,"Mother's Day. The kids made a scrapbook this year.",2025-05-11,0.5,Complete
375
+ Vet appointment for Max,"Max's annual visit. He's 6 now so ask about senior dog diet.",2025-05-14,1.5,Complete
376
+ Get quotes for deck staining,"Get deck staining quotes. The wood is starting to gray.",2025-05-16,0.5,Complete
377
+ Date night at Olive Garden,"Date night. Use the Olive Garden gift card from Jake's teacher.",2025-05-23,2.5,Complete
378
+ Meal prep Sunday,"Meal prep for the week. Grilled chicken, rice bowls, and overnight oats.",2025-05-25,2,Complete
379
+ Pressure test sprinkler system,"Turn on sprinklers. Zone 5 head was cracked over winter.",2025-05-28,1.5,Complete
380
+ Pool opening and chemical balance,"Pool opening. New pump motor installed in the off-season.",2025-06-02,3,Complete
381
+ Kids camp registration,"Camp Pinewood summer registration. Both kids in the adventure track.",2025-06-04,0.5,Complete
382
+ Set up 529 college savings plan,"Finally setting up the 529. Researched the state tax benefits.",2025-06-06,2,Complete
383
+ Wedding anniversary dinner,"Tenth anniversary! Splurge on the tasting menu at Maison Laurent.",2025-06-12,3,Complete
384
+ Father's Day gift shopping,"Dad's gift: a nice bottle of bourbon and the wood-fired pizza cookbook he wants.",2025-06-15,1,Complete
385
+ File quarterly estimated taxes,"Q2 estimated taxes. Freelance income is consistent this year.",2025-06-16,1,Complete
386
+ Renew car insurance,"Car insurance renewal. Switched to Geico last year and it's been fine.",2025-06-18,1,Complete
387
+ Pay electric bill,"June electric bill. AC is running more than usual this summer.",2025-06-20,0.25,Complete
388
+ Game night at Dave's house,"Game night. Trying the new Dune board game Dave got.",2025-06-21,3,Complete
389
+ Tire rotation,"Tire rotation and inspection. Front right feels low.",2025-06-25,1,Complete
390
+ Weekly team standup,"Monday standup. Mid-year check on OKR progress.",2025-06-30,0.5,Complete
391
+ 4th of July BBQ shopping,"BBQ supplies for the annual party. New grill accessories too.",2025-07-02,2,Complete
392
+ Book flights to Denver,"Book Denver flights for August. Prices are climbing so book now.",2025-07-07,1,Complete
393
+ Volunteer at food bank,"Food bank Saturday shift. Teaching Jake about community service.",2025-07-12,3,Complete
394
+ Deploy to staging environment,"Push the v4.0 RC to staging. Major release with the new UI.",2025-07-14,2,Complete
395
+ Sushi dinner downtown,"Sushi dinner with Mike and his wife. Double date at Saka.",2025-07-17,2,Complete
396
+ Best friend Mike's birthday dinner,"Mike's birthday dinner. He wants Korean BBQ this year.",2025-07-19,2,Complete
397
+ Write unit tests for auth module,"Write tests for the new OAuth2 flow. Need 95% coverage.",2025-07-23,3,Complete
398
+ Research new phone plans,"Phone plan review. Our contract is up, time to negotiate or switch.",2025-07-25,1,Complete
399
+ Reserve hotel for beach trip,"Book the Outer Banks house rental for the family beach week.",2025-07-28,0.5,Complete
400
+ Pack for camping weekend,"Pack for the Blue Ridge camping trip. New tent this year.",2025-07-31,1.5,Complete
401
+ Pay mortgage,"August mortgage payment.",2025-08-01,0.25,Complete
402
+ Finalize quarterly budget report,"Q2 budget report. On track across all categories.",2025-08-04,3,Complete
403
+ Back to school supplies shopping,"School supplies for fourth grade and second grade. Lists are on the fridge.",2025-08-11,2,Complete
404
+ Coach Jake's basketball practice,"Jake's basketball. Working on free throws this week.",2025-08-14,1.5,Complete
405
+ Dog grooming appointment,"Max grooming. He rolled in something questionable at the park.",2025-08-16,0.5,Complete
406
+ Order new running shoes,"New Brooks Ghost 16s. The old pair is well past 500 miles.",2025-08-18,0.5,Complete
407
+ Dad's birthday dinner,"Dad's 65th birthday! Big dinner at Rosario's with the whole family.",2025-08-22,2.5,Complete
408
+ Complete annual review self-assessment,"Self-assessment for annual review. Document the v4 platform launch success.",2025-08-25,2,Complete
409
+ Performance review meeting,"Annual review with Janet. Strong year, discuss the senior lead opportunity.",2025-08-27,1,Complete
410
+ Wash and detail the car,"Post-beach-trip car cleaning. Sand in every crevice.",2025-08-29,0.5,Complete
411
+ Pay credit card bill,"August statement. Vacation spending was budgeted for this time.",2025-08-31,0.25,Complete
412
+ Replace furnace filter,"Swap the furnace filter. Bought a two-pack last time so the spare is ready.",2025-09-01,0.5,Complete
413
+ Eye exam appointment,"Annual eye exam. The new glasses prescription is working well but double check.",2025-09-05,1,Complete
414
+ Sign up for the Harvest 5K,"Harvest 5K registration. Going for under 24 minutes this year.",2025-09-08,0.25,Complete
415
+ Schedule family photos,"Book the family photo session at the arboretum. Peak fall colors around Oct 15.",2025-09-12,0.5,Complete
416
+ Renew library card,"Library card expired last month. Bring ID and proof of address to renew.",2025-09-15,0.5,Pending
417
+ Neighborhood block party,"Block party. The new neighbors are hosting the dessert table.",2025-09-20,4,Complete
418
+ Deep clean the kitchen,"Kitchen deep clean. The oven is overdue for a serious scrubbing.",2025-09-22,3,Complete
419
+ Take kids to the science museum,"Science museum trip. They have a new space exploration exhibit.",2025-09-27,4,Complete
420
+ Prepare quarterly OKRs,"Q4 OKRs draft. Focus on the customer portal launch.",2025-09-29,2,Complete
421
+ Update project roadmap,"Revise product roadmap based on customer feedback from the beta.",2025-09-30,2,Complete
422
+ Flu shot appointment,"Family flu shots. The pharmacy has the updated formula.",2025-10-02,0.5,Complete
423
+ Winterize the garden,"Pull up the garden and winterize. Best harvest ever this year.",2025-10-04,3,Complete
424
+ Fall dentist cleaning,"Fall dental cleaning. The kids go right after school.",2025-10-07,1.5,Complete
425
+ Dermatology checkup,"Skin check with Dr. Lee. Everything looked stable last time.",2025-10-10,1,Complete
426
+ Halloween costume shopping,"Emma wants to be a vampire queen. Jake is going as a chef.",2025-10-13,2,Complete
427
+ Oil change for the Honda,"Oil change and multi-point inspection. Car has 85k miles now.",2025-10-16,1,Complete
428
+ Wine tasting event at Cedar Creek,"Fall wine tasting with the whole friend group. Dave is driving.",2025-10-18,3,Complete
429
+ Pick up prescription refills,"Blood pressure meds and the kids' vitamins. Ready at Walgreens.",2025-10-20,0.5,Complete
430
+ Recycle old electronics,"E-waste recycling run. Old router, phone cables, and Jake's broken tablet.",2025-10-23,1,Complete
431
+ Photo album project,"Finally organize and print the 2024 family photos for the album.",2025-10-25,3,Complete
432
+ Attend neighborhood HOA meeting,"HOA meeting. Holiday decorations policy and the fence repair proposal.",2025-10-27,1.5,Complete
433
+ Replace kitchen faucet,"New Moen faucet install. The old one is corroding.",2025-10-29,2,Complete
434
+ Pay electric bill,"October electric bill. Transition month so it's reasonable.",2025-10-31,0.25,Complete
435
+ Jake's birthday,"Jake turns 9! Bowling party at Lucky Strike Lanes.",2025-11-03,3,Complete
436
+ Leaf cleanup and yard waste bags,"Huge leaf pile this year. Three full days of raking honestly.",2025-11-08,3,Complete
437
+ Order firewood for winter,"Firewood order from Brennan's. Two cords of seasoned oak.",2025-11-10,0.25,Complete
438
+ Clean gutters before winter,"Gutter cleaning. Hire someone this year, it's too much with the extension.",2025-11-12,3,Complete
439
+ Snow tire swap,"Snow tire swap at Discount Tire. Storms coming next week.",2025-11-15,1.5,Complete
440
+ Call pest control about ants,"Ants found near the kitchen window again. Need professional treatment.",2025-11-17,0.25,Complete
441
+ New hire onboarding session,"Onboard the new senior developer. Walk through architecture and deployment.",2025-11-19,3,Complete
442
+ Sprint retrospective,"Sprint retro. Great sprint velocity but need to address tech debt.",2025-11-21,1,Complete
443
+ Thanksgiving dinner prep,"Thanksgiving prep for 14 people this year. Start brining Tuesday night.",2025-11-26,6,Complete
444
+ Pay mortgage,"December mortgage payment.",2025-12-01,0.25,Complete
445
+ Finalize quarterly budget report,"Q3 budget wrap-up. Came in under budget overall. Nice way to end the year.",2025-12-02,3,Complete
446
+ Donate old clothes to Goodwill,"Pre-holiday donation run. Kids have outgrown so many clothes.",2025-12-04,1,Complete
447
+ Contract renewal review,"Year-end vendor reviews. Negotiate better terms on the cloud hosting contract.",2025-12-06,2,Complete
448
+ Renew professional certification,"AWS certification renewal. Studied last week, take the exam online.",2025-12-08,1,Complete
449
+ Assemble kids' new bookshelf,"Build the new bookshelf for Jake's room. He got into chapter books.",2025-12-10,2,Complete
450
+ Install doorbell camera,"Upgrade the Ring doorbell to the newer model before package season.",2025-12-12,1,Complete
451
+ Power wash the driveway,"Rent a power washer and clean the driveway before the holiday guests arrive.",2025-12-13,2.5,Complete
452
+ IT security training,"Annual cybersecurity training. New module on AI-generated phishing.",2025-12-15,1,Complete
453
+ Buy new winter coat,"New winter coat for Jake. He's grown three inches since last winter.",2025-12-16,1.5,Complete
454
+ Christmas shopping deadline,"Final Christmas shopping. Wrap everything and hide it in the guest room closet.",2025-12-18,4,Complete
455
+ Holiday card mailing,"Mail the holiday cards. 60 this year, hand-write a note in each one.",2025-12-19,2,Complete
456
+ Finish reading for book club,"Need to finish the December book club pick before the Thursday meeting.",2025-12-22,2,Complete
457
+ Plan holiday dinner menu,"Christmas dinner: going with prime rib this year. Full menu and shopping list.",2025-12-23,1,Complete
458
+ Help Jake with science fair project,"Jake's science fair entry: testing which brand of battery lasts longest.",2025-12-26,3,Complete
459
+ Year-end inventory count,"Annual inventory. Using the new automated system should cut time in half.",2025-12-29,8,Complete
460
+ New Year's Eve plans,"Quiet New Year's at home. Fondue and a movie with the kids.",2025-12-31,2,Complete
461
+ Pay mortgage,"January mortgage. Same amount as last year thankfully.",2026-01-01,0.25,Complete
462
+ Gather tax documents,"Start collecting 2025 tax documents. The new freelance 1099s should arrive soon.",2026-01-05,3,Complete
463
+ Weekly team standup,"First standup of 2026. Set the Q1 priorities and review the product backlog.",2026-01-05,0.5,Complete
464
+ Review investment portfolio,"Investment review for 2025 performance. Consider the Roth conversion strategy.",2026-01-08,2,Complete
465
+ Update household budget,"2026 household budget. Increase the kids' activities category.",2026-01-12,1,Complete
466
+ Pay electric bill,"January electric bill. Heating costs are up a bit from the cold snap.",2026-01-14,0.25,Complete
467
+ Gym membership renewal,"Gym membership renewal. Family plan with the pool access is worth it.",2026-01-16,0.5,Complete
468
+ Cancel unused subscriptions,"Subscription audit. Found two streaming services we never use.",2026-01-18,0.5,Complete
469
+ Backup computer files,"Full backup to external drive and verify cloud sync is current.",2026-01-20,1,Complete
470
+ Schedule kids' dental cleanings,"Book February dental appointments for both kids.",2026-01-22,0.25,Complete
471
+ Pizza night with kids,"Friday pizza night. Jake wants to try making calzones.",2026-01-23,2,Complete
472
+ Sister's birthday,"Rachel's birthday. Got her concert tickets to her favorite band.",2026-01-28,1.5,Complete
473
+ Pay credit card bill,"January credit card. Post-holiday balances cleared.",2026-01-30,0.25,Complete
474
+ Car registration renewal,"Registration renewal. Need to do emissions test this week first.",2026-02-02,1,Complete
475
+ Submit expense report,"January expense report. Conference registration and the team dinner.",2026-02-03,1,Complete
476
+ 1-on-1 with manager,"Check-in with Janet. Discuss Q1 milestones and the new team structure.",2026-02-04,1,Complete
477
+ Dinner with the Hendersons,"Saturday dinner at the Hendersons'. They're making homemade pasta.",2026-02-07,3,Complete
478
+ Valentine's Day reservation,"Valentine's dinner at the new tapas bar on Market Street.",2026-02-10,1,Complete
479
+ Grocery run for the week,"Weekly grocery trip. Super Bowl snacks and regular essentials.",2026-02-11,1.5,Complete
480
+ Stock up on pantry staples,"Big Costco run. Rice, pasta, olive oil, canned goods, and paper products.",2026-02-12,1.5,Complete
481
+ Pay electric bill,"February electric bill. Slightly less than January.",2026-02-13,0.25,Complete
482
+ Coffee catch-up with Lisa,"Coffee with Lisa at Blue Bottle. She started the new job and wants to vent.",2026-02-14,1.5,Complete
483
+ Board meeting prep,"Q1 board meeting prep. Update the growth dashboard and investor summary.",2026-02-16,4,In Progress
484
+ Weekly team standup,"Monday standup. Sprint planning for the customer portal features.",2026-02-16,0.5,In Progress
485
+ Pay mortgage,"February mortgage payment.",2026-02-16,0.25,In Progress
486
+ Spring cleaning weekend,"Deep clean the whole house. Start with the bathrooms and work outward.",2026-02-21,8,Pending
487
+ Oil change for the Honda,"Honda is at 90k miles. Oil change plus the 90k mile service.",2026-02-22,1,Pending
488
+ Dentist cleaning,"Spring dental cleaning. Both of us are due this month.",2026-02-23,1.5,Pending
489
+ Book club meeting,"February book club meeting. This month's pick is a science fiction novel.",2026-02-24,2,Pending
490
+ Annual physical exam,"Annual physical with Dr. Morrison. Schedule the fasting blood work for morning.",2026-02-26,2,Pending
491
+ Replace windshield wipers,"Winter took a toll on the wipers. Streaking badly in the rain.",2026-02-27,0.25,Pending
492
+ Mom's birthday,"Mom's birthday coming up. Ordered the new KitchenAid mixer she wanted.",2026-03-14,2,Pending
493
+ File taxes,"File 2025 taxes. All documents collected and ready for TurboTax.",2026-04-12,4,Pending
494
+ Spring garden planting,"Plan the garden layout. Adding a pollinator section this year.",2026-04-18,4,Pending
495
+ Batch cook meals for the week,"Sunday meal prep. Try the new sheet pan dinner recipes.",2026-02-22,3,Pending
496
+ Haircut appointment,"Haircut at Tony's. Been over a month.",2026-02-19,0.5,In Progress
497
+ Attend PTA meeting,"PTA meeting about the spring field day event planning.",2026-02-20,1.5,Pending
498
+ Update the home Wi-Fi password,"Wi-Fi password change overdue. Set up the guest network too.",2026-02-25,0.25,Pending
499
+ Renew homeowner's insurance,"Review homeowner's policy coverage. Replacement costs should be updated.",2026-03-01,1,Pending
500
+ Schedule meeting with financial advisor,"Annual meeting with Greg at Fidelity. Discuss the college fund progress.",2026-03-04,0.5,Pending
501
+ Review 401k contributions,"Check 401k contribution rate. Consider maxing out this year.",2026-03-06,0.5,Pending
502
+ Set up kids' bikes for spring,"Get the bikes ready for spring riding. Both kids need bigger bikes soon.",2026-03-08,1,Pending
503
+ Allergy meds refill,"Allergies will start soon. Refill everything before pollen hits.",2026-03-10,0.25,Pending
504
+ Paint bedroom accent wall,"Finally paint the accent wall. The navy paint has been in the garage for months.",2026-03-15,4,Pending
505
+ Organize garage,"Garage organization project. Install the wall-mounted tool rack system.",2026-03-12,6,Pending
506
+ Vet appointment for Max,"Max is due for his annual checkup and vaccinations.",2026-03-09,1.5,Pending
507
+ Dog grooming appointment,"Max needs grooming badly. He's looking like a mop.",2026-03-02,0.5,Pending
508
+ Easter brunch prep,"Easter brunch planning. Start the menu and shopping list.",2026-04-01,3,Pending
509
+ Q3 planning meeting,"Q2 planning session. Bring the customer portal metrics.",2026-03-20,2,Pending
510
+ Write API documentation,"Document the v5 API changes for the partner developer portal.",2026-03-15,4,In Progress
511
+ Renew passport,"Passport renewal. Expires in June and need it for the summer trip.",2026-03-01,1.5,Pending
512
+ Cousin Tyler's wedding RSVP,"RSVP for Tyler's wedding. Need to pick chicken or fish. Plus-one confirmed.",2022-03-02,0.25,Complete
513
+ Visit grandparents,"Drive up to visit Grandma and Grandpa for the weekend. Bring the photo album.",2022-03-12,5,Complete
514
+ Plan Rachel's surprise party,"Coordinate with Mike and Sarah. Book the private room at The Rustic Barrel.",2022-04-05,2,Complete
515
+ Meal prep Sunday,"Prep lunches for the work week. Turkey wraps and grain bowls.",2022-04-24,2,Complete
516
+ Pick up dry cleaning,"Grab the suits from Park Avenue Cleaners before they close at 6.",2022-05-02,0.5,Complete
517
+ Family reunion planning call,"Conference call with Aunt Patty and Uncle Jim to plan the summer reunion.",2022-05-12,1,Complete
518
+ Update the home Wi-Fi password,"Change the Wi-Fi password. Too many neighbors have the old one.",2022-05-20,0.25,Complete
519
+ Property tax payment,"Semi-annual property tax payment due. Check the county website for the amount.",2022-06-10,0.5,Complete
520
+ Dermatology checkup,"Annual skin check with Dr. Lee. Monitor the mole on the left shoulder.",2022-06-20,1,Complete
521
+ Marathon training run - 10 miles,"Long run along the river trail. Test the new energy gels.",2022-06-25,2,Complete
522
+ Schedule kids' dental cleanings,"Both kids are due for their six-month cleanings. Call Bright Smile.",2022-07-05,0.25,Complete
523
+ Buy pet food in bulk,"Big Chewy order for Max. Stock up on the grain-free formula.",2022-07-12,0.5,Complete
524
+ Renew homeowner's insurance,"Review the homeowner's policy. Check if coverage limits need updating.",2022-07-15,1,Complete
525
+ Coach Jake's basketball practice,"Run drills at the community center. Work on layups today.",2022-07-20,1.5,Complete
526
+ Pick up prescription refills,"Refill the blood pressure medication at Walgreens.",2022-07-27,0.5,Complete
527
+ Complete annual review self-assessment,"Fill out the self-assessment form. Focus on the Q2 project wins.",2022-08-15,2,Complete
528
+ Performance review meeting,"Annual review meeting with Janet. Discuss growth opportunities.",2022-08-18,1,Complete
529
+ Schedule meeting with financial advisor,"Book the annual review with Greg at Fidelity. Discuss 401k allocation.",2022-08-20,0.5,Complete
530
+ Review 401k contributions,"Check if on track to max out contributions for the year.",2022-09-05,0.5,Complete
531
+ Haircut appointment,"Overdue haircut at Tony's Barber Shop. Use the appointment this time.",2022-09-12,0.5,Complete
532
+ Return Amazon packages,"Return the wrong-size curtains and the duplicate coffee maker.",2022-09-15,0.5,Complete
533
+ Donate old clothes to Goodwill,"Sort through the hall closet. Donate everything that doesn't fit.",2022-09-20,1,Complete
534
+ Attend PTA meeting,"PTA meeting at school. Agenda includes the fall carnival planning.",2022-09-26,1.5,Complete
535
+ Kids' soccer game,"Jake's soccer game at Riverside Park. He's excited to play forward.",2022-10-01,2,Complete
536
+ Stock up on pantry staples,"Costco run for rice, pasta, canned tomatoes, and olive oil.",2022-10-08,1.5,Complete
537
+ Replace kitchen faucet,"The kitchen faucet is leaking at the base. Install the new Moen.",2022-10-12,2,Complete
538
+ Water heater inspection,"Water heater is 7 years old. Schedule the annual flush and inspection.",2022-10-20,1,Complete
539
+ Date night movie and dinner,"See the new movie at AMC and grab burgers after. Babysitter at 5pm.",2022-10-29,4,Complete
540
+ Flea and tick treatment for Max,"Monthly flea and tick application. Reorder the next three-month supply.",2022-11-01,0.25,Complete
541
+ Set up 529 college savings plan,"Research 529 plans for the kids. Compare the state tax benefit options.",2022-11-04,2,Complete
542
+ Install doorbell camera,"Install the new Ring doorbell. Need it before holiday package deliveries.",2022-11-09,1,Complete
543
+ Caulk around windows,"Caulk the windows in the den. Cold drafts coming through.",2022-11-18,1.5,Complete
544
+ Renew professional certification,"AWS certification renewal deadline approaching. Schedule the exam.",2022-11-20,1,Complete
545
+ Grocery run for the week,"Thanksgiving week grocery run. Get everything on the big list.",2022-11-21,1.5,Complete
546
+ File quarterly estimated taxes,"Q4 estimated tax payment due. Calculate based on year-to-date.",2022-12-15,1,Complete
547
+ Review 401k contributions,"Year-end check on 401k. Still room to contribute more before Dec 31.",2022-12-18,0.5,Complete
548
+ Batch cook meals for the week,"Holiday week meal prep. Simple meals since the fridge is full of leftovers.",2022-12-27,3,Complete
549
+ Stock up on pantry staples,"Post-holiday pantry restock. Ran through everything during the festivities.",2023-01-03,1.5,Complete
550
+ Pick up dry cleaning,"Grab the holiday party outfits from the cleaners.",2023-01-05,0.5,Complete
551
+ Pay electric bill,"January electric bill. Post-holiday energy usage was high.",2023-01-20,0.25,Complete
552
+ Visit grandparents,"Weekend visit to Grandma and Grandpa. Bring the Christmas photos.",2023-01-22,5,Complete
553
+ Pay mortgage,"February mortgage payment.",2023-02-01,0.25,Complete
554
+ Grocery run for the week,"Weekly grocery run. Trying a new meal plan this month.",2023-02-12,1.5,Complete
555
+ Backup computer files,"Monthly backup. Also check the cloud storage usage.",2023-02-16,1,Complete
556
+ Sprint retrospective,"End-of-sprint retro. Discuss the deployment issues from last Thursday.",2023-02-20,1,Complete
557
+ Property tax payment,"Semi-annual property tax due. Pay through the county website.",2023-03-01,0.5,Complete
558
+ Replace windshield wipers,"Wipers are shot after the ice storms. New Bosch Icons from AutoZone.",2023-03-10,0.25,Complete
559
+ Kids' soccer game,"Emma's second soccer game. She scored her first goal last week!",2023-03-18,2,Complete
560
+ Oil change for the Honda,"Routine oil change. The car is at 65k miles now.",2023-03-21,1,Complete
561
+ 1-on-1 with manager,"Bi-weekly check-in with Janet. Review the sprint velocity trends.",2023-03-24,1,Complete
562
+ Flea and tick treatment for Max,"Spring flea treatment. Apply the monthly dose and order refills.",2023-03-28,0.25,Complete
563
+ Pay mortgage,"April mortgage payment.",2023-04-01,0.25,Complete
564
+ Marathon training run - 10 miles,"Long run day. New route through the state park.",2023-04-09,2,Complete
565
+ Wash and detail the car,"Spring car wash and interior detail. Winter salt damage needs addressing.",2023-04-14,0.5,Complete
566
+ Schedule meeting with financial advisor,"Annual meeting with Greg. Review the 529 plan performance.",2023-04-18,0.5,Complete
567
+ Attend PTA meeting,"PTA meeting. Spring field trip chaperone sign-ups.",2023-04-20,1.5,Complete
568
+ Pick up prescription refills,"Blood pressure meds ready at Walgreens. Also pick up the kids' vitamins.",2023-04-22,0.5,Complete
569
+ Update the home Wi-Fi password,"Quarterly Wi-Fi password change. Too many devices connected.",2023-05-05,0.25,Complete
570
+ Review 401k contributions,"Mid-year 401k check. Increase contribution by 2% if possible.",2023-05-09,0.5,Complete
571
+ Property tax payment,"Semi-annual property tax payment. Due by end of month.",2023-05-15,0.5,Complete
572
+ Set up kids' bikes for spring,"Get the bikes ready. Jake's needs training wheels removed finally.",2023-05-18,1,Complete
573
+ Stock up on pantry staples,"Big Costco run before the vacation. Get snacks for the road trip too.",2023-05-20,1.5,Complete
574
+ Dermatology checkup,"Six-month follow-up with Dr. Lee. The mole biopsy results were clear.",2023-05-22,1,Complete
575
+ Install new light fixtures in hallway,"Install the new flush mount fixtures. The old ones are dated.",2023-05-28,2,Complete
576
+ Power wash the driveway,"Rent a power washer. The driveway has winter grime and moss.",2023-06-02,2.5,Complete
577
+ Deep clean the kitchen,"Saturday deep clean. Focus on the fridge and the area behind the stove.",2023-06-10,3,Complete
578
+ Family reunion planning call,"Finalize the reunion details. Aunt Patty is handling the venue.",2023-06-13,1,Complete
579
+ Organize garage,"Major garage organization project. Install pegboard and new shelving.",2023-06-17,6,Complete
580
+ Buy new winter coat,"End of season sale at REI. Get a good deal on next winter's coat.",2023-06-20,1.5,Complete
581
+ Paint bedroom accent wall,"Finally painting the accent wall. Ordered the sage green paint.",2023-06-22,4,Complete
582
+ Finish reading for book club,"Need to finish the June book club pick before Thursday.",2023-06-25,2,Complete
583
+ Pay mortgage,"July mortgage payment.",2023-07-01,0.25,Complete
584
+ Replace smoke detector batteries,"Two smoke detectors are beeping. Replace all to be safe.",2023-07-05,0.5,Complete
585
+ Fix leaky faucet in bathroom,"Guest bathroom faucet is dripping. YouTube tutorial says it's easy.",2023-07-09,1,Complete
586
+ Coach Jake's basketball practice,"Summer basketball camp coaching. Focus on teamwork drills.",2023-07-12,1.5,Complete
587
+ Order birthday gift for Mom,"Mom's half-birthday tradition. She loves getting flowers mid-year.",2023-07-16,0.5,Complete
588
+ Renew homeowner's insurance,"Homeowner's insurance renewal. Compare quotes before auto-renewing.",2023-07-18,1,Complete
589
+ Date night at Olive Garden,"Date night at OG. The never-ending pasta bowl promo is back.",2023-07-22,2.5,Complete
590
+ Grocery run for the week,"Weekly grocery run. Lots of fresh produce for the summer recipes.",2023-07-25,1.5,Complete
591
+ File quarterly estimated taxes,"Q3 estimated taxes due. Freelance income bumped up this quarter.",2023-07-30,1,Complete
592
+ Attend neighborhood HOA meeting,"Summer HOA meeting. Pool rules and parking enforcement on the agenda.",2023-08-02,1.5,Complete
593
+ Water heater inspection,"Annual water heater maintenance. Flush the tank and check the anode rod.",2023-08-05,1,Complete
594
+ Return library books,"Library books are due. Also check if the kids' summer reading holds are in.",2023-08-08,0.5,Complete
595
+ Schedule roof inspection,"A few shingles look loose after the summer storms. Get it inspected.",2023-08-12,0.5,Complete
596
+ Caulk around windows,"Recaulk the bathroom window. Moisture is getting in around the frame.",2023-08-15,1.5,Complete
597
+ Visit grandparents,"End of summer visit to the grandparents. Bring the summer vacation photos.",2023-08-20,5,Complete
598
+ Cancel unused subscriptions,"Quarterly subscription review. Found two more to cancel.",2023-08-23,0.5,Complete
599
+ Lawn mower maintenance,"Season-end mower maintenance. Oil change, blade sharpening, and winterize.",2023-08-27,2,Complete
600
+ Batch cook meals for the week,"Back to school meal prep. Easy lunches for the kids' first week.",2023-09-03,3,Complete
601
+ Sprint retrospective,"Sprint retro. The database migration went smoother than expected.",2023-09-06,1,Complete
602
+ Pick up dry cleaning,"Grab the fall jackets and Rachel's blazer from the cleaners.",2023-09-09,0.5,Complete
603
+ Pay electric bill,"September electric bill. AC costs dropping as it cools down.",2023-09-12,0.25,Complete
604
+ Coffee catch-up with Lisa,"Coffee with Lisa at the new place on Oak Street. She's training for a triathlon.",2023-09-15,1.5,Complete
605
+ Flea and tick treatment for Max,"Monthly flea treatment. Fall is still active season for ticks.",2023-09-18,0.25,Complete
606
+ Grocery run for the week,"Weekly grocery run. Fall recipes starting: soups and stews.",2023-09-22,1.5,Complete
607
+ Review investment portfolio,"Quarterly investment review. Bonds allocation needs attention.",2023-09-25,2,Complete
608
+ Renew car insurance,"Car insurance renewal. Happy with Geico so just renew at the same rate.",2023-09-28,1,Complete
609
+ Pay mortgage,"October mortgage payment.",2023-10-01,0.25,Complete
610
+ Lawn mower maintenance,"Clean and store the mower for winter. Drain the gas tank.",2023-10-05,2,Complete
611
+ Schedule chimney inspection,"Annual chimney sweep before fireplace season. Call Acme Chimney.",2023-10-09,0.25,Complete
612
+ Wash and detail the car,"Fall car detail before the weather turns. Focus on wax coating.",2023-10-13,0.5,Complete
613
+ Coach Jake's basketball practice,"Fall basketball practice. Getting ready for the winter league tryouts.",2023-10-17,1.5,Complete
614
+ Pick up prescription refills,"Refill blood pressure meds. Also get the flu medicine prescription.",2023-10-20,0.5,Complete
615
+ Pay mortgage,"November mortgage payment.",2023-11-01,0.25,Complete
616
+ Pizza night with kids,"Friday pizza night. Trying cauliflower crust this time for variety.",2023-11-10,2,Complete
617
+ Replace kitchen faucet,"Kitchen faucet replacement. The sprayer hose is leaking now too.",2023-11-17,2,Complete
618
+ Pay electric bill,"November electric bill. Heating season is here.",2023-11-20,0.25,Complete
619
+ Property tax payment,"Semi-annual property tax. Due before end of November.",2023-11-25,0.5,Complete
620
+ Grocery run for the week,"Thanksgiving shopping list. Everything for the feast plus regular supplies.",2023-11-19,1.5,Complete
621
+ File quarterly estimated taxes,"Q4 estimated taxes. Last payment of the year.",2023-12-15,1,Complete
622
+ Backup computer files,"Year-end backup. Archive 2023 files to the external drive.",2023-12-17,1,Complete
623
+ Donate old clothes to Goodwill,"End of year donation. Get the receipt for tax deductions.",2023-12-24,1,Complete
624
+ Stock up on pantry staples,"Post-Christmas pantry restock at Costco.",2023-12-26,1.5,Complete
625
+ Property tax payment,"Semi-annual property tax due in January. Pay early to clear it.",2024-01-06,0.5,Complete
626
+ Pay electric bill,"January electric bill. The coldest month of the year.",2024-01-12,0.25,Complete
627
+ Visit grandparents,"New Year's visit. Grandpa wants to show off his new workshop.",2024-01-14,5,Complete
628
+ Pick up dry cleaning,"Pick up the New Year's party outfits from the cleaners.",2024-01-18,0.5,Complete
629
+ Sprint retrospective,"Q4 final sprint retro. Big platform launch was a success.",2024-01-21,1,Complete
630
+ Family reunion planning call,"Start planning this year's reunion. New venue suggestions needed.",2024-01-25,1,Complete
631
+ Flea and tick treatment for Max,"Even in winter, keep up with the treatment. Vet recommended year-round.",2024-01-30,0.25,Complete
632
+ Pay mortgage,"February mortgage payment.",2024-02-01,0.25,Complete
633
+ Lawn mower maintenance,"Pre-season mower maintenance. Change oil, replace spark plug, sharpen blade.",2024-02-08,2,Complete
634
+ Stock up on pantry staples,"Monthly Costco run for bulk items.",2024-02-12,1.5,Complete
635
+ Batch cook meals for the week,"Sunday meal prep. Valentine's week so keep meals simple.",2024-02-09,3,Complete
636
+ Schedule roof inspection,"Roof inspection follow-up from the hail damage claim.",2024-02-15,0.5,Complete
637
+ Pick up prescription refills,"Monthly prescription pickup at CVS.",2024-02-19,0.5,Complete
638
+ Coach Jake's basketball practice,"Winter league practice. Working on defensive positioning.",2024-02-22,1.5,Complete
639
+ Review 401k contributions,"Annual max-out check for the 401k. On track so far.",2024-02-25,0.5,Complete
640
+ File quarterly estimated taxes,"Q1 estimated tax payment. New freelance rate changes the calculation.",2024-03-15,1,Complete
641
+ Pay electric bill,"March electric bill. Heating costs finally dropping.",2024-03-10,0.25,Complete
642
+ Grocery run for the week,"Weekly grocery run. Lots of fresh citrus this time of year.",2024-03-15,1.5,Complete
643
+ Sprint retrospective,"Sprint retro. Deployed two major features without issues.",2024-03-18,1,Complete
644
+ Visit grandparents,"Spring visit. Help Grandpa plant his vegetable garden.",2024-03-30,5,Complete
645
+ Oil change for the Honda,"Oil change at the dealership. Free tire rotation with service.",2024-04-05,1,Complete
646
+ Lawn mower maintenance,"First mow of the season prep. Check everything before the first cut.",2024-04-08,2,Complete
647
+ Wash and detail the car,"Spring car cleaning. Wash off all the winter road salt.",2024-04-10,0.5,Complete
648
+ Pay mortgage,"April mortgage payment.",2024-04-01,0.25,Complete
649
+ Pick up dry cleaning,"Spring wardrobe pieces from the cleaners.",2024-04-19,0.5,Complete
650
+ Renew homeowner's insurance,"Annual homeowner's insurance review. Update the home value estimate.",2024-04-21,1,Complete
651
+ Stock up on pantry staples,"Monthly Costco trip. Big BBQ season haul coming soon.",2024-04-25,1.5,Complete
652
+ Pay mortgage,"May mortgage payment.",2024-05-01,0.25,Complete
653
+ Flea and tick treatment for Max,"Monthly flea and tick treatment. Outdoor season is starting.",2024-05-10,0.25,Complete
654
+ Grocery run for the week,"Weekly grocery run. Getting ingredients for the birthday party food.",2024-05-04,1.5,Complete
655
+ Coffee catch-up with Lisa,"Coffee with Lisa. Celebrating her new promotion.",2024-05-18,1.5,Complete
656
+ Sprint retrospective,"Sprint retro. Discuss the load testing results from the staging push.",2024-05-20,1,Complete
657
+ Coach Jake's basketball practice,"Summer league tryouts prep. Extra practice session this week.",2024-05-25,1.5,Complete
658
+ Lawn mower maintenance,"Mid-season blade sharpening. The grass is thick this year.",2024-05-30,2,Complete
659
+ Pay mortgage,"June mortgage payment.",2024-06-01,0.25,Complete
660
+ Property tax payment,"Semi-annual property tax payment. Check the updated assessment value.",2024-06-05,0.5,Complete
661
+ Deep clean the kitchen,"Pre-party deep clean. Getting the house ready for the anniversary dinner.",2024-06-10,3,Complete
662
+ Visit grandparents,"Summer visit with the whole family. BBQ at Grandpa's.",2024-06-15,5,Complete
663
+ Update the home Wi-Fi password,"Change the password. Too many smart home devices are connected.",2024-06-20,0.25,Complete
664
+ Replace smoke detector batteries,"Annual battery replacement. Also test the carbon monoxide detectors.",2024-06-24,0.5,Complete
665
+ Pay electric bill,"June electric bill. AC usage is climbing.",2024-06-25,0.25,Complete
666
+ Finish reading for book club,"Need to finish the thriller before Wednesday's meeting.",2024-06-27,2,Complete
667
+ Pay mortgage,"July mortgage payment.",2024-07-01,0.25,Complete
668
+ Grocery run for the week,"4th of July shopping plus regular weekly groceries.",2024-07-01,1.5,Complete
669
+ Schedule kids' dental cleanings,"Summer cleaning appointments. Try to get them done before school starts.",2024-07-09,0.25,Complete
670
+ Renew homeowner's insurance,"Homeowner's insurance mid-year review. Add the new shed to the policy.",2024-07-11,1,Complete
671
+ Batch cook meals for the week,"Summer meal prep. Cold salads and grilled proteins for the heat.",2024-07-14,3,Complete
672
+ Pizza night with kids,"Outdoor pizza night using the grill pizza stone. Kids love it.",2024-07-18,2,Complete
673
+ Pick up prescription refills,"Summer prescription refills. Also get sunscreen from the pharmacy.",2024-07-20,0.5,Complete
674
+ Review investment portfolio,"Mid-year investment checkup. Market is doing well, stay the course.",2024-07-23,2,Complete
675
+ Flea and tick treatment for Max,"Monthly treatment. Max has been spending a lot of time in the tall grass.",2024-07-26,0.25,Complete
676
+ Schedule chimney inspection,"Schedule the fall chimney inspection early before the busy season.",2024-07-29,0.25,Complete
677
+ Pay mortgage,"August mortgage payment.",2024-08-01,0.25,Complete
678
+ Dermatology checkup,"Summer skin check. New mole appeared on the forearm.",2024-08-07,1,Complete
679
+ Replace windshield wipers,"Summer storm season destroyed the wipers. Replace both pairs.",2024-08-12,0.25,Complete
680
+ Organize garage,"End-of-summer garage cleanup. Sort through the camping gear.",2024-08-17,6,Complete
681
+ Grocery run for the week,"Back to school weekly groceries. Stock up on lunch box snacks.",2024-08-18,1.5,Complete
682
+ Pay electric bill,"August electric bill. Peak summer AC usage.",2024-08-20,0.25,Complete
683
+ File quarterly estimated taxes,"Q3 estimated taxes. The freelance income was strong this quarter.",2024-08-25,1,Complete
684
+ Sprint retrospective,"Sprint retro. Discuss the hotfix deployment and lessons learned.",2024-08-28,1,Complete
685
+ Pay mortgage,"September mortgage payment.",2024-09-01,0.25,Complete
686
+ Batch cook meals for the week,"Fall meal prep kickoff. Chili, soups, and casseroles for the week.",2024-09-07,3,Complete
687
+ Pick up dry cleaning,"Fall clothes from the cleaners. Plus the tablecloth for the dinner party.",2024-09-10,0.5,Complete
688
+ Grocery run for the week,"Weekly groceries. Fall produce is looking great at the farmers market.",2024-09-14,1.5,Complete
689
+ Coffee catch-up with Lisa,"Coffee catch-up. Lisa wants advice on a career change.",2024-09-17,1.5,Complete
690
+ Update the home Wi-Fi password,"Quarterly password rotation. Also update the smart home devices.",2024-09-20,0.25,Complete
691
+ Pay electric bill,"September electric bill. Cooling down, usage should drop.",2024-09-25,0.25,Complete
692
+ Flea and tick treatment for Max,"Monthly treatment. The vet said to continue through November.",2024-09-28,0.25,Complete
693
+ Lawn mower maintenance,"End of season mower storage. Clean, drain fuel, and cover.",2024-10-02,2,Complete
694
+ Grocery run for the week,"Weekly grocery run. Pumpkin everything season has arrived.",2024-10-06,1.5,Complete
695
+ Sprint retrospective,"Sprint retro. The platform migration sprint was tough but complete.",2024-10-09,1,Complete
696
+ Visit grandparents,"Fall visit. Help Grandma with the garden winterization.",2024-10-12,5,Complete
697
+ Wash and detail the car,"Fall detail. Get the interior cleaned before winter.",2024-10-15,0.5,Complete
698
+ Pay mortgage,"October mortgage payment.",2024-10-01,0.25,Complete
699
+ Pay electric bill,"October electric bill. Mild month so costs are down.",2024-10-22,0.25,Complete
700
+ Pick up prescription refills,"Monthly prescription pickup. Also ask about the new generic option.",2024-10-24,0.5,Complete
701
+ Stock up on pantry staples,"Big fall Costco haul. Thanksgiving prep starts early this year.",2024-10-27,1.5,Complete
702
+ Pay mortgage,"November mortgage payment.",2024-11-01,0.25,Complete
703
+ Batch cook meals for the week,"Pre-Thanksgiving meal prep. Make easy freezer meals for the busy week.",2024-11-02,3,Complete
704
+ Kids' soccer game,"Fall soccer playoffs. Emma's team made the semifinals!",2024-11-08,2,Complete
705
+ Grocery run for the week,"Weekly groceries plus Thanksgiving shopping list part one.",2024-11-10,1.5,Complete
706
+ Organize garage,"Quick garage tidy before winter. Make room for snow equipment.",2024-11-12,6,Complete
707
+ Renew car insurance,"Fall car insurance renewal. Same carrier, same plan.",2024-11-15,1,Complete
708
+ Review investment portfolio,"Pre-holiday investment review. Check tax loss harvesting opportunities.",2024-11-17,2,Complete
709
+ Schedule roof inspection,"Pre-winter roof inspection. The gutter crew noticed some loose flashing.",2024-11-19,0.5,Complete
710
+ Pay electric bill,"November electric bill. First month with the heat on full time.",2024-11-22,0.25,Complete
711
+ Visit grandparents,"Thanksgiving Eve visit. Drop off pies and spend the evening.",2024-11-26,5,Complete
712
+ Flea and tick treatment for Max,"November flea treatment. The vet said one more month then winter break.",2024-11-28,0.25,Complete
713
+ Grocery run for the week,"Post-Thanksgiving grocery reset. The fridge is empty after the feast.",2024-12-01,1.5,Complete
714
+ Property tax payment,"Semi-annual property tax due before year-end.",2024-12-05,0.5,Complete
715
+ Replace smoke detector batteries,"Pre-holiday battery swap. Also check the fire extinguisher date.",2024-12-07,0.5,Complete
716
+ Sprint retrospective,"Final sprint retro of the year. Celebrate the team's accomplishments.",2024-12-10,1,Complete
717
+ Pay electric bill,"December electric bill. Holiday lights adding to the total.",2024-12-14,0.25,Complete
718
+ Finish reading for book club,"December book club pick. A holiday-themed cozy mystery.",2024-12-17,2,Complete
719
+ Pick up prescription refills,"Year-end prescription refills before the insurance resets.",2024-12-22,0.5,Complete
720
+ File quarterly estimated taxes,"Q4 estimated taxes. Last payment of the year.",2024-12-27,1,Complete
721
+ Grocery run for the week,"New Year's Eve grocery run. Fondue ingredients and party snacks.",2024-12-29,1.5,Complete
722
+ Pay electric bill,"February electric bill. Heating season is winding down slightly.",2025-02-05,0.25,Complete
723
+ Grocery run for the week,"Weekly grocery run. Super Bowl party prep.",2025-02-07,1.5,Complete
724
+ Sprint retrospective,"Sprint retro. Good start to Q1 with the new team structure.",2025-02-10,1,Complete
725
+ Pick up dry cleaning,"Pick up Rachel's dress for the Valentine's dinner.",2025-02-12,0.5,Complete
726
+ Pay mortgage,"February mortgage payment.",2025-02-01,0.25,Complete
727
+ Property tax payment,"Semi-annual property tax. Increased slightly from reassessment.",2025-02-14,0.5,Complete
728
+ Visit grandparents,"Weekend visit. Grandma's 80th birthday party at the house.",2025-02-16,5,Complete
729
+ Batch cook meals for the week,"Weekly meal prep. Trying Mediterranean recipes this month.",2025-02-23,3,Complete
730
+ Replace windshield wipers,"Ice storms destroyed the wipers. Emergency replacement needed.",2025-02-26,0.25,Complete
731
+ Pay mortgage,"March mortgage payment.",2025-03-01,0.25,Complete
732
+ Flea and tick treatment for Max,"Spring flea season starting. Apply treatment and reorder supply.",2025-03-03,0.25,Complete
733
+ Grocery run for the week,"Weekly grocery trip. Stocking up before spring break.",2025-03-06,1.5,Complete
734
+ Oil change for the Honda,"Oil change plus tire rotation at Jiffy Lube.",2025-03-12,1,Complete
735
+ 1-on-1 with manager,"Check-in with Janet. Discuss the new project assignments.",2025-03-15,1,Complete
736
+ Pick up prescription refills,"Refills ready at Walgreens. Also need to pick up allergy meds.",2025-03-18,0.5,Complete
737
+ Sprint retrospective,"March sprint retro. The customer portal MVP is on track.",2025-03-22,1,Complete
738
+ Schedule chimney inspection,"Schedule spring chimney sweep. Need to check the damper.",2025-03-26,0.25,Complete
739
+ Pay electric bill,"March electric bill. Transition from heating to cooling.",2025-03-30,0.25,Complete
740
+ Pay mortgage,"April mortgage payment.",2025-04-01,0.25,Complete
741
+ Property tax payment,"Spring property tax payment due by April 30.",2025-04-05,0.5,Complete
742
+ File quarterly estimated taxes,"Q1 estimated tax payment. Calculate the new rate.",2025-04-08,1,Complete
743
+ Wash and detail the car,"Spring car wash. Salt damage from the winter roads.",2025-04-11,0.5,Complete
744
+ Organize garage,"Spring garage cleanup. Donate the items from the winter purge.",2025-04-13,6,Complete
745
+ Batch cook meals for the week,"Easter week meal prep. Keep it simple with the big brunch planned.",2025-04-12,3,Complete
746
+ Pay electric bill,"April electric bill. Nice shoulder season costs.",2025-04-20,0.25,Complete
747
+ Pick up dry cleaning,"Spring wardrobe pieces from the cleaners.",2025-04-22,0.5,Complete
748
+ Visit grandparents,"Spring visit. Help Grandpa with the garden planting.",2025-04-27,5,Complete
749
+ Replace smoke detector batteries,"Time for new batteries. The one in the hallway is beeping again.",2025-04-29,0.5,Complete
750
+ Pay mortgage,"May mortgage payment.",2025-05-01,0.25,Complete
751
+ Grocery run for the week,"Weekly grocery run. Getting pool party supplies for Emma's birthday.",2025-05-03,1.5,Complete
752
+ 1-on-1 with manager,"Check-in with Janet about the senior lead timeline.",2025-05-08,1,Complete
753
+ Pay electric bill,"May electric bill. AC is starting to kick in.",2025-05-12,0.25,Complete
754
+ Pick up prescription refills,"Monthly prescriptions. The pharmacy switched to a new generic brand.",2025-05-15,0.5,Complete
755
+ Sprint retrospective,"Sprint retro. The portal beta launch metrics look promising.",2025-05-19,1,Complete
756
+ Lawn mower maintenance,"Mid-season blade sharpening. Also replace the air filter.",2025-05-22,2,Complete
757
+ Flea and tick treatment for Max,"Monthly treatment. The ticks are bad this year according to the vet.",2025-05-27,0.25,Complete
758
+ Stock up on pantry staples,"Summer Costco haul. Pool snacks and bulk drinks.",2025-05-30,1.5,Complete
759
+ Pay mortgage,"June mortgage payment.",2025-06-01,0.25,Complete
760
+ Grocery run for the week,"Weekly grocery run. BBQ season ingredients.",2025-06-07,1.5,Complete
761
+ Property tax payment,"Semi-annual property tax. Paid through the county portal.",2025-06-09,0.5,Complete
762
+ Sprint retrospective,"Sprint retro. Preparing for the v4 launch next month.",2025-06-11,1,Complete
763
+ Pay electric bill,"June electric bill. AC costs climbing in the heat.",2025-06-16,0.25,Complete
764
+ Schedule chimney inspection,"Pre-winter chimney inspection booking. They fill up fast in fall.",2025-06-19,0.25,Complete
765
+ 1-on-1 with manager,"Mid-year check-in with Janet. Discuss the v4 launch timeline.",2025-06-23,1,Complete
766
+ Pick up prescription refills,"Summer prescription refills. Stock up before vacation.",2025-06-27,0.5,Complete
767
+ Flea and tick treatment for Max,"Monthly treatment. Max is spending lots of time outdoors.",2025-06-28,0.25,Complete
768
+ Pay mortgage,"July mortgage payment.",2025-07-01,0.25,Complete
769
+ Grocery run for the week,"4th of July BBQ shopping and regular groceries.",2025-07-01,1.5,Complete
770
+ File quarterly estimated taxes,"Q3 estimated tax payment.",2025-07-15,1,Complete
771
+ Pay electric bill,"July electric bill. Hottest month on record, AC running constantly.",2025-07-18,0.25,Complete
772
+ Kids' soccer game,"Summer league playoff game. Emma's team is undefeated!",2025-07-20,2,Complete
773
+ Sprint retrospective,"Sprint retro. v4 launch prep is 95% complete.",2025-07-21,1,Complete
774
+ Batch cook meals for the week,"Summer meal prep. Cold salads and wraps for the hot weather.",2025-07-27,3,Complete
775
+ Flea and tick treatment for Max,"Monthly flea and tick. Max rolled in something suspicious at the dog park.",2025-07-30,0.25,Complete
776
+ Grocery run for the week,"Weekly grocery run. Beach trip supplies for next week.",2025-08-03,1.5,Complete
777
+ Lawn mower maintenance,"Clean the mower deck. Grass buildup is reducing performance.",2025-08-07,2,Complete
778
+ 1-on-1 with manager,"Check-in with Janet. Post-v4-launch debrief.",2025-08-10,1,Complete
779
+ Pick up prescription refills,"Monthly prescriptions. Add sunscreen to the order.",2025-08-12,0.5,Complete
780
+ Pay electric bill,"August electric bill. Last big AC month hopefully.",2025-08-15,0.25,Complete
781
+ Sprint retrospective,"Sprint retro. v4 post-launch bug fixes were handled quickly.",2025-08-20,1,Complete
782
+ Property tax payment,"Summer property tax. Pay through the online portal.",2025-08-23,0.5,Complete
783
+ Flea and tick treatment for Max,"Monthly treatment. Continue through October per vet advice.",2025-08-26,0.25,Complete
784
+ Stock up on pantry staples,"Back to school Costco run. Lunch supplies and breakfast items.",2025-08-28,1.5,Complete
785
+ Pay mortgage,"September mortgage payment.",2025-09-01,0.25,Complete
786
+ Grocery run for the week,"Weekly groceries. Fall produce is starting to appear.",2025-09-06,1.5,Complete
787
+ Sprint retrospective,"Sprint retro. Q4 push is starting strong.",2025-09-10,1,Complete
788
+ 1-on-1 with manager,"Check-in with Janet. Discuss the Q4 product roadmap.",2025-09-14,1,Complete
789
+ Pay electric bill,"September electric bill. AC use is dropping nicely.",2025-09-17,0.25,Complete
790
+ Lawn mower maintenance,"Fall season mower prep. A few more weeks of mowing left.",2025-09-19,2,Complete
791
+ Pick up prescription refills,"Monthly prescriptions ready at Walgreens.",2025-09-23,0.5,Complete
792
+ Flea and tick treatment for Max,"Monthly treatment. Getting close to the end of flea season.",2025-09-26,0.25,Complete
793
+ Pay mortgage,"October mortgage payment.",2025-10-01,0.25,Complete
794
+ Batch cook meals for the week,"Fall meal prep. Hearty soups and stews for the cooler weather.",2025-10-05,3,Complete
795
+ File quarterly estimated taxes,"Q4 estimated tax payment. Last one of the year.",2025-10-15,1,Complete
796
+ Grocery run for the week,"Weekly grocery run. Fall baking ingredients.",2025-10-17,1.5,Complete
797
+ Sprint retrospective,"Sprint retro. Customer portal metrics are exceeding targets.",2025-10-21,1,Complete
798
+ Visit grandparents,"Fall visit. Help with leaf cleanup and enjoy Grandma's apple pie.",2025-10-24,5,Complete
799
+ Flea and tick treatment for Max,"Last flea treatment of the season. Resume in March.",2025-10-28,0.25,Complete
800
+ Pay mortgage,"November mortgage payment.",2025-11-01,0.25,Complete
801
+ Grocery run for the week,"Weekly groceries. Start stocking up for Thanksgiving.",2025-11-04,1.5,Complete
802
+ 1-on-1 with manager,"Check-in with Janet. Year-end review prep discussion.",2025-11-06,1,Complete
803
+ Pay electric bill,"November electric bill. Heating season begins.",2025-11-10,0.25,Complete
804
+ Property tax payment,"Semi-annual property tax. Due before Thanksgiving.",2025-11-13,0.5,Complete
805
+ Pick up prescription refills,"Pre-holiday prescription refills. Get the flu meds just in case.",2025-11-16,0.5,Complete
806
+ Wash and detail the car,"Pre-winter car detail. Apply wax before the salt season.",2025-11-18,0.5,Complete
807
+ Review 401k contributions,"Year-end 401k max-out check. A few more pay periods to contribute.",2025-11-20,0.5,Complete
808
+ Grocery run for the week,"Thanksgiving week grocery run. The big list.",2025-11-23,1.5,Complete
809
+ Batch cook meals for the week,"Post-Thanksgiving meal prep. Use up all the leftovers creatively.",2025-11-30,3,Complete
810
+ Grocery run for the week,"December grocery run. Holiday baking supplies.",2025-12-06,1.5,Complete
811
+ Schedule meeting with financial advisor,"Year-end meeting with Greg. Tax strategy and Roth conversion discussion.",2025-12-07,0.5,Complete
812
+ Pay electric bill,"December electric bill. Holiday lights are festive but costly.",2025-12-09,0.25,Complete
813
+ Pick up dry cleaning,"Holiday party outfits from the cleaners.",2025-12-11,0.5,Complete
814
+ Visit grandparents,"Pre-Christmas visit. Drop off gifts and spend the afternoon.",2025-12-14,5,Complete
815
+ 1-on-1 with manager,"Final check-in of the year with Janet. Set Q1 2026 expectations.",2025-12-17,1,Complete
816
+ Review investment portfolio,"Year-end portfolio review. Plan the January rebalancing.",2025-12-20,2,Complete
817
+ Pick up prescription refills,"Year-end prescriptions before the insurance deductible resets.",2025-12-21,0.5,Complete
818
+ Pay electric bill,"December electric bill. Final utility bill of the year.",2025-12-28,0.25,Complete
819
+ Pay credit card bill,"December credit card. Holiday spending wrapped up.",2025-12-30,0.25,Complete
820
+ Sprint retrospective,"First sprint retro of 2026. Set the tone for the year.",2026-01-09,1,Complete
821
+ Flea and tick treatment for Max,"Winter break from flea meds. Resume in March per vet.",2026-01-10,0.25,Complete
822
+ Visit grandparents,"New Year's weekend visit. Bring the holiday photo prints.",2026-01-11,5,Complete
823
+ Property tax payment,"First property tax payment of 2026.",2026-01-15,0.5,Complete
824
+ Pick up dry cleaning,"Winter coats and sweaters from the cleaners.",2026-01-19,0.5,Complete
825
+ Oil change for the Honda,"Start of year oil change. Car is running well at 88k miles.",2026-01-21,1,Complete
826
+ Grocery run for the week,"Weekly grocery run. Healthy eating resolution in full effect.",2026-01-24,1.5,Complete
827
+ Batch cook meals for the week,"January meal prep. Lean proteins and lots of vegetables.",2026-01-25,3,Complete
828
+ Pay mortgage,"February mortgage payment.",2026-02-01,0.25,Complete
829
+ Replace smoke detector batteries,"All smoke detectors due for fresh batteries.",2026-02-05,0.5,Complete
830
+ Pay credit card bill,"February credit card. New year spending is minimal.",2026-02-06,0.25,Complete
831
+ Sprint retrospective,"February sprint retro. Customer portal enhancements on track.",2026-02-09,1,Complete
832
+ Pick up prescription refills,"Monthly prescription pickup at Walgreens.",2026-02-10,0.5,Complete
833
+ Wash and detail the car,"Wash off the winter salt before it does more damage.",2026-02-15,0.5,Complete
834
+ Schedule roof inspection,"Spring roof inspection. The shingles took a beating this winter.",2022-02-20,0.5,Complete
835
+ Renew library card,"Library card expiring soon. Need to bring proof of address to renew.",2022-03-15,0.5,Complete
836
+ Cousin Tyler's wedding RSVP,"Wedding is in June. RSVP with the chicken option.",2022-04-02,0.25,Complete
837
+ Volunteer at food bank,"Saturday morning food bank shift at First Baptist Church.",2022-04-09,3,Complete
838
+ Recycle old electronics,"Drop off the old printer and router at Best Buy e-waste recycling.",2022-04-14,1,Complete
839
+ Photo album project,"Sort through the 2021 photos and order prints for the physical album.",2022-05-15,3,Complete
840
+ Order new running shoes,"Running shoes need replacing. Over 400 miles on the current pair.",2022-05-22,0.5,Complete
841
+ Research summer vacation options,"Compare Myrtle Beach vs Outer Banks for the family trip.",2022-05-28,1,Complete
842
+ Finish reading for book club,"Only three chapters left. Book club meeting is tomorrow night.",2022-06-07,2,Complete
843
+ Replace smoke detector batteries,"Annual battery check. The upstairs hallway one is chirping.",2022-06-12,0.5,Complete
844
+ Coffee catch-up with Lisa,"Haven't seen Lisa in months. Catch up at Blue Bottle on Saturday.",2022-06-19,1.5,Complete
845
+ Organize garage,"Summer garage organization project. Clear out space for the new tools.",2022-06-26,6,Complete
846
+ Renew homeowner's insurance,"Annual homeowner's insurance review and renewal.",2022-07-02,1,Complete
847
+ Batch cook meals for the week,"Summer meal prep. Light salads and grilled chicken.",2022-07-10,3,Complete
848
+ Install new light fixtures in hallway,"Replace the dated hallway fixtures with the new ones from Amazon.",2022-07-17,2,Complete
849
+ Power wash the driveway,"Borrow Dave's power washer and clean the driveway and sidewalk.",2022-07-24,2.5,Complete
850
+ Paint bedroom accent wall,"Accent wall project. Going with the dark blue paint we picked.",2022-08-06,4,Complete
851
+ Review investment portfolio,"Mid-year portfolio check. Tech stocks are volatile.",2022-08-09,2,Complete
852
+ Deep clean the kitchen,"End of summer deep kitchen clean. Scrub the grout and degrease everything.",2022-08-14,3,Complete
853
+ Lawn mower maintenance,"Mower needs the blade sharpened before the fall push.",2022-08-21,2,Complete
854
+ Water heater inspection,"Annual water heater flush. Prevent sediment buildup.",2022-09-03,1,Complete
855
+ Schedule roof inspection,"Roof check after the hailstorm last month. Need photos for insurance.",2022-09-09,0.5,Complete
856
+ Call pest control about ants,"Ants in the kitchen again. Call Terminix for a treatment.",2022-09-18,0.25,Complete
857
+ Assemble kids' new bookshelf,"The new bookshelf arrived for Emma's room. Allen wrenches are in the drawer.",2022-09-24,2,Complete
858
+ Renew car insurance,"Fall car insurance renewal. Get quotes from Progressive and State Farm.",2022-09-29,1,Complete
859
+ Grocery run for the week,"October grocery run. Stock up on fall baking supplies.",2022-10-05,1.5,Complete
860
+ Marathon training run - 10 miles,"10-mile training run for the November race. River trail route.",2022-10-10,2,Complete
861
+ File quarterly estimated taxes,"Q3 estimated tax payment due.",2022-10-15,1,Complete
862
+ Visit grandparents,"Fall visit to grandparents. Help with the yard cleanup.",2022-10-22,5,Complete
863
+ Pay mortgage,"October mortgage payment. Escrow adjusted this month.",2022-10-01,0.25,Complete
864
+ Meal prep Sunday,"Prep meals for the busy Halloween week.",2022-10-30,2,Complete
865
+ Grocery run for the week,"Thanksgiving shopping part one. Get the non-perishables early.",2022-11-12,1.5,Complete
866
+ Pick up prescription refills,"Fall prescription refills. Also ask about the generic alternatives.",2022-11-15,0.5,Complete
867
+ Cousin Tyler's wedding weekend,"Tyler and Jessica's wedding! Pack the suit and the gift.",2022-11-19,8,Complete
868
+ Batch cook meals for the week,"Post-Thanksgiving meal prep. Turkey soup and turkey sandwiches all week.",2022-11-27,3,Complete
869
+ Visit grandparents,"December visit. Bring the Christmas gifts early to avoid the rush.",2022-12-04,5,Complete
870
+ Pay electric bill,"December electric bill. The new LED holiday lights are saving money.",2022-12-12,0.25,Complete
871
+ Grocery run for the week,"Christmas week grocery run. Everything for the holiday dinner.",2022-12-19,1.5,Complete
872
+ Replace windshield wipers,"Wipers are falling apart in the ice. Emergency replacement.",2023-01-12,0.25,Complete
873
+ Schedule roof inspection,"Post-winter roof inspection. Ice dam damage possible.",2023-01-16,0.5,Complete
874
+ Flea and tick treatment for Max,"Winter flea treatment. Vet recommended continuing through winter.",2023-01-25,0.25,Complete
875
+ Oil change for the Honda,"New year oil change. The car is at 60k miles.",2023-01-28,1,Complete
876
+ Lawn mower maintenance,"Pre-season mower prep. Order the new air filter.",2023-02-05,2,Complete
877
+ Pick up prescription refills,"February prescription refills at CVS.",2023-02-08,0.5,Complete
878
+ Organize garage,"Quick garage tidy. Find the Valentine's Day decorations.",2023-02-11,6,Complete
879
+ Pay mortgage,"March mortgage payment.",2023-03-01,0.25,Complete
880
+ Batch cook meals for the week,"March meal prep. St. Patrick's Day corned beef and cabbage included.",2023-03-12,3,Complete
881
+ Visit grandparents,"Spring break visit with the kids to Grandma and Grandpa's.",2023-03-16,5,Complete
882
+ Schedule meeting with financial advisor,"Q1 meeting with Greg. Review the tax implications of the home office deduction.",2023-03-19,0.5,Complete
883
+ Stock up on pantry staples,"Quarterly Costco pantry restock.",2023-03-25,1.5,Complete
884
+ Grocery run for the week,"April grocery run. Easter supplies and regular items.",2023-04-03,1.5,Complete
885
+ Pay mortgage,"April mortgage payment.",2023-04-01,0.25,Complete
886
+ Replace kitchen faucet,"The kitchen faucet handle is loose. Replace with the new Kohler model.",2023-04-08,2,Complete
887
+ Install doorbell camera,"Upgrade to the Ring Doorbell Pro. Better night vision needed.",2023-04-15,1,Complete
888
+ Backup computer files,"Spring computer maintenance. Full backup and disk cleanup.",2023-04-19,1,Complete
889
+ Review 401k contributions,"Q1 401k check. Contribution rate is fine but consider Roth option.",2023-04-21,0.5,Complete
890
+ Grocery run for the week,"Weekly groceries. Farmers market opened for the season.",2023-05-06,1.5,Complete
891
+ Pay mortgage,"May mortgage payment.",2023-05-01,0.25,Complete
892
+ Order birthday gift for Mom,"Mom's birthday gift. She wants a new set of gardening gloves.",2023-05-10,0.5,Complete
893
+ Schedule kids' dental cleanings,"Spring dental appointments for both kids.",2023-05-12,0.25,Complete
894
+ Property tax payment,"Spring property tax payment due end of May.",2023-05-25,0.5,Complete
895
+ Pay electric bill,"May electric bill. AC starting up.",2023-05-28,0.25,Complete
896
+ Return Amazon packages,"Return the wrong-size shoes and the defective Bluetooth speaker.",2023-06-01,0.5,Complete
897
+ Pay mortgage,"June mortgage payment.",2023-06-01,0.25,Complete
898
+ Wash and detail the car,"Summer car detail. Getting ready for the road trip.",2023-06-08,0.5,Complete
899
+ Sprint retrospective,"June sprint retro. Feature velocity is great heading into summer.",2023-06-12,1,Complete
900
+ Replace windshield wipers,"Summer storm debris damaged the wipers. Quick replacement.",2023-06-16,0.25,Complete
901
+ Grocery run for the week,"June grocery run. Stocking up for the camping trip.",2023-06-22,1.5,Complete
902
+ Pay mortgage,"July mortgage payment.",2023-07-01,0.25,Complete
903
+ Review investment portfolio,"Mid-year investment review. The bond portfolio needs attention.",2023-07-03,2,Complete
904
+ Kids' soccer game,"Jake's summer league game. He's playing defender this season.",2023-07-07,2,Complete
905
+ Batch cook meals for the week,"Summer meal prep. Light meals for the hot weather.",2023-07-10,3,Complete
906
+ Grocery run for the week,"Weekly groceries. Lots of watermelon and berries.",2023-07-15,1.5,Complete
907
+ Backup computer files,"Mid-year backup. Clean up old files and update cloud sync.",2023-07-20,1,Complete
908
+ Pay electric bill,"July electric bill. AC is running full blast.",2023-07-23,0.25,Complete
909
+ Sprint retrospective,"July sprint retro. Database migration planning is on track.",2023-07-26,1,Complete
910
+ Replace smoke detector batteries,"Replace batteries in all detectors. CO detector batteries too.",2023-08-01,0.5,Complete
911
+ Pay mortgage,"August mortgage payment.",2023-08-01,0.25,Complete
912
+ Grocery run for the week,"August grocery run. Back to school is approaching.",2023-08-06,1.5,Complete
913
+ Schedule roof inspection,"Annual roof inspection before the fall storm season.",2023-08-09,0.5,Complete
914
+ Oil change for the Honda,"Summer oil change. Car is at 70k miles now.",2023-08-14,1,Complete
915
+ Pay electric bill,"August electric bill. Peak AC costs this month.",2023-08-17,0.25,Complete
916
+ File quarterly estimated taxes,"Q3 estimated tax payment due.",2023-09-15,1,Complete
917
+ Grocery run for the week,"September grocery run. Fall recipes starting up.",2023-09-10,1.5,Complete
918
+ Pay mortgage,"September mortgage payment.",2023-09-01,0.25,Complete
919
+ Property tax payment,"Fall property tax installment due this month.",2023-09-20,0.5,Complete
920
+ Wash and detail the car,"End of summer car detail. Clean up the camping dirt.",2023-09-24,0.5,Complete
921
+ Batch cook meals for the week,"Fall meal prep kickoff. Making beef stew and chicken pot pie.",2023-09-30,3,Complete
922
+ Grocery run for the week,"October grocery run. Pumpkin baking season!",2023-10-08,1.5,Complete
923
+ Pay mortgage,"October mortgage payment.",2023-10-01,0.25,Complete
924
+ Kids' soccer game,"Fall soccer. Emma's team is in first place!",2023-10-14,2,Complete
925
+ Backup computer files,"Fall backup. Quarter-end file organization.",2023-10-18,1,Complete
926
+ Grocery run for the week,"Weekly run. Stocking up for the Halloween party.",2023-10-25,1.5,Complete
927
+ Pay electric bill,"October electric bill. Reasonable shoulder month.",2023-10-28,0.25,Complete
928
+ Pay mortgage,"November mortgage payment.",2023-11-01,0.25,Complete
929
+ Property tax payment,"Semi-annual property tax. Due before end of November.",2023-11-08,0.5,Complete
930
+ Pay electric bill,"November electric bill. First heating month.",2023-11-15,0.25,Complete
931
+ Sprint retrospective,"November sprint retro. Year-end push is going well.",2023-11-17,1,Complete
932
+ Grocery run for the week,"Thanksgiving grocery trip. Getting everything in one big haul.",2023-11-18,1.5,Complete
933
+ Visit grandparents,"Pre-Thanksgiving visit. Deliver the pumpkin pie.",2023-11-21,5,Complete
934
+ Pay mortgage,"December mortgage payment. Final one of the year.",2023-12-01,0.25,Complete
935
+ Pick up prescription refills,"December prescription refills before the holiday travel.",2023-12-05,0.5,Complete
936
+ Pay electric bill,"December electric bill. Holiday lights and heating.",2023-12-12,0.25,Complete
937
+ Grocery run for the week,"Christmas week groceries. Prime rib and all the fixings.",2023-12-18,1.5,Complete
938
+ Review investment portfolio,"Year-end investment review. Strong finish to the market.",2023-12-22,2,Complete
939
+ Batch cook meals for the week,"Post-holiday meal prep using all the leftovers.",2023-12-29,3,Complete
940
+ Sprint retrospective,"First sprint retro of 2024. Planning the big platform push.",2024-01-07,1,Complete
941
+ Pay electric bill,"January electric bill. Cold snap drove up heating costs.",2024-01-15,0.25,Complete
942
+ Grocery run for the week,"Weekly groceries. Healthy eating for the new year.",2024-01-20,1.5,Complete
943
+ Backup computer files,"New year full backup. Archive all 2023 files.",2024-01-22,1,Complete
944
+ Flea and tick treatment for Max,"January flea treatment. Vet says keep it up year-round.",2024-01-27,0.25,Complete
945
+ Order birthday gift for Mom,"Mom's birthday coming up. Order the new cookbook she wanted.",2024-01-30,0.5,Complete
946
+ Sprint retrospective,"February sprint retro. Auth module refactor is complete.",2024-02-07,1,Complete
947
+ Property tax payment,"Q1 property tax installment. Check the updated amount online.",2024-02-10,0.5,Complete
948
+ Schedule meeting with financial advisor,"Annual meeting with Greg. Review the 529 plan and retirement timeline.",2024-02-14,0.5,Complete
949
+ Grocery run for the week,"February grocery run. Valentine's Day dinner ingredients.",2024-02-16,1.5,Complete
950
+ Batch cook meals for the week,"Meal prep for the short week. Simple one-pot meals.",2024-02-18,3,Complete
951
+ Pay credit card bill,"February credit card bill. Valentine's dinner was worth it.",2024-02-28,0.25,Complete
952
+ Finish reading for book club,"March book club pick. Only 50 pages left to read.",2024-03-04,2,Complete
953
+ Pay mortgage,"March mortgage payment.",2024-03-01,0.25,Complete
954
+ Pay electric bill,"March electric bill. Starting to use less heat.",2024-03-12,0.25,Complete
955
+ Grocery run for the week,"Weekly groceries. Spring produce is showing up at the market.",2024-03-16,1.5,Complete
956
+ Pay credit card bill,"April credit card. Tax season expenses included.",2024-04-30,0.25,Complete
957
+ Flea and tick treatment for Max,"Spring flea season. Apply treatment and order the next supply.",2024-04-02,0.25,Complete
958
+ Pay mortgage,"April mortgage payment.",2024-04-01,0.25,Complete
959
+ Grocery run for the week,"April grocery run. Lots of asparagus and strawberries.",2024-04-13,1.5,Complete
960
+ Sprint retrospective,"April sprint retro. Preparing for the summer feature release.",2024-04-16,1,Complete
961
+ Pick up prescription refills,"Spring prescription refills at Walgreens.",2024-04-18,0.5,Complete
962
+ Backup computer files,"Quarterly backup. External drive and cloud sync verified.",2024-04-20,1,Complete
963
+ Pay electric bill,"April electric bill. Great shoulder month.",2024-04-23,0.25,Complete
964
+ Batch cook meals for the week,"April meal prep. Mediterranean bowls and chicken wraps.",2024-04-27,3,Complete
965
+ Pay mortgage,"June mortgage payment.",2024-06-01,0.25,Complete
966
+ Grocery run for the week,"June grocery run. Picnic and BBQ supplies.",2024-06-08,1.5,Complete
967
+ Sprint retrospective,"June sprint retro. On track for the big summer deployment.",2024-06-12,1,Complete
968
+ Pick up dry cleaning,"Summer clothes from the cleaners. Rachel's sundress and my blazer.",2024-06-14,0.5,Complete
969
+ Flea and tick treatment for Max,"Monthly flea treatment. Peak tick season now.",2024-06-18,0.25,Complete
970
+ Backup computer files,"Mid-year backup. Clean up the downloads folder too.",2024-06-21,1,Complete
971
+ Lawn mower maintenance,"Mid-season blade sharpening. Grass is growing fast.",2024-06-26,2,Complete
972
+ Pay mortgage,"July mortgage payment.",2024-07-01,0.25,Complete
973
+ Sprint retrospective,"July sprint retro. Summer deployment was smooth.",2024-07-16,1,Complete
974
+ Kids' soccer game,"Summer league. Jake scored a hat trick!",2024-07-12,2,Complete
975
+ Batch cook meals for the week,"July meal prep. Poke bowls and grilled veggies.",2024-07-14,3,Complete
976
+ Pay electric bill,"July electric bill. Running the AC around the clock.",2024-07-21,0.25,Complete
977
+ Grocery run for the week,"Weekly groceries. Preparing for the beach trip.",2024-07-25,1.5,Complete
978
+ Pay mortgage,"September mortgage payment.",2024-09-01,0.25,Complete
979
+ Grocery run for the week,"September grocery run. Apple picking season!",2024-09-06,1.5,Complete
980
+ Sprint retrospective,"September sprint retro. Database migration went well.",2024-09-11,1,Complete
981
+ Backup computer files,"Quarter-end backup and file organization.",2024-09-14,1,Complete
982
+ Pick up prescription refills,"Fall prescriptions and flu season meds.",2024-09-18,0.5,Complete
983
+ Coffee catch-up with Lisa,"Coffee with Lisa. She landed the new job!",2024-09-22,1.5,Complete
984
+ Pay electric bill,"September electric bill. AC costs dropping.",2024-09-27,0.25,Complete
985
+ Visit grandparents,"Fall visit. Apple picking at the orchard near their house.",2024-10-13,5,Complete
986
+ Pick up dry cleaning,"Fall wardrobe pieces from the cleaners.",2024-10-20,0.5,Complete
987
+ Grocery run for the week,"October grocery run. Halloween candy and fall baking.",2024-10-25,1.5,Complete
988
+ Batch cook meals for the week,"October meal prep. Pumpkin soup and turkey meatballs.",2024-10-26,3,Complete
989
+ Sprint retrospective,"October sprint retro. Q4 is off to a strong start.",2024-10-30,1,Complete
990
+ Pay mortgage,"December mortgage payment. Year-end.",2024-12-01,0.25,Complete
991
+ Backup computer files,"Year-end backup. Archive everything from 2024.",2024-12-08,1,Complete
992
+ Flea and tick treatment for Max,"December flea treatment. Vet says skip Jan and Feb.",2024-12-12,0.25,Complete
993
+ Grocery run for the week,"December grocery run. Holiday baking and dinner party supplies.",2024-12-14,1.5,Complete
994
+ Visit grandparents,"Pre-Christmas visit. The kids put up decorations with Grandma.",2024-12-21,5,Complete
995
+ Pay electric bill,"December electric bill. End of year utilities.",2024-12-26,0.25,Complete
996
+ Grocery run for the week,"New Year's Eve grocery run. Party supplies.",2024-12-30,1.5,Complete
997
+ Pick up dry cleaning,"New year wardrobe items from the cleaners.",2025-01-03,0.5,Complete
998
+ Sprint retrospective,"January sprint retro. New year roadmap kickoff.",2025-01-08,1,Complete
999
+ Flea and tick treatment for Max,"February flea treatment. Indoor-only treatment per the vet.",2025-02-02,0.25,Complete
1000
+ Pick up prescription refills,"February prescriptions. Blood pressure and allergy meds.",2025-02-08,0.5,Complete
1001
+ Grocery run for the week,"February grocery run. Valentine's treats and weekly staples.",2025-02-09,1.5,Complete