I’ve been using the Things app to track all my personal to-do’s and projects for a couple of years now. I love this Mac-assed Mac app and use it all the time.
I recently discovered how to get access to the Things database and took the chance to reflect on how Iβm spending my time.
So here are some highlights of all my “Things” in 2020.
Lastly year, I completed 108 personal projects. Each project consists of a number of specific to-do items (tasks). A project can be something small like π³ Renew passport (6 tasks) or big like πΈConvert guest room to a music studio (31 tasks).
I generally include an emoji in my project names because somehow they help motivate me. π€·π»ββοΈ
Some favorite completed projects of 2020 were:
- π³Vote (3 tasks)
- π€ΉββοΈPlan for best self (7 tasks)
- π¦ Corona (5 tasks), my most fitting “project” for 2020
I canceled 9 projects, such as:
- πΆHome gardening
- π₯Grav Maga
- π¦ Holiday family plans, the most fitting cancellation for 2020
I completed 11 projects to “fix” things, including:
- πFix that gap under my door (3 tasks)
- π₯Fix drums (luckily only 2 tasks and zero dollars)
- βοΈBlog fix up (6 tasks)
Top project in progress:
- πWrite a book (43 tasks completed, many more to go — and growing)
In 2020, I completed about 7 per day on average. This is useful because it tells me how to pace myself.
I canceled about 1.4 per day. Canceling isnβt a bad thing β itβs just the opposite. Itβs a conscious choice not to do something you thought you needed to do.
Going into the new year, I have 62 projects in progress. Hmm, it already looks like a busy year coming up. π€
Here is one of the SQLite queries I used for this post. π¨π»βπ»
SELECT title, date(creationDate, 'unixepoch') as start, date(stopDate, 'unixepoch') as stop from TMTask
WHERE type = 1
AND status = 3
AND date(creationDate, 'unixepoch') BETWEEN '2020-01-01' AND '2020-12-31'
ORDER BY creationDate