Minor notebook update

I started a new notebook last week and thought it worth writing another update on how I’m using it.

Current notebook

I’m still using Feela A5 notebooks because they hold up well and are cheap—as am I. I’m still using a Pentel Kerry mechanical pencil; that’s it tucked in the notebook’s loop. I’m still keeping my index of pages in an iCloud file called Notebook index.txt, and most of the index entries are still added through dictation via a Shortcut on my iPhone.

What’s new is that I’ve started keeping a to-do list in the notebook. I’m not busy enough to have a daily list, but a weekly list works well. Every Monday I write out two lists on a two-page spread: this week’s tasks on the left side and future tasks on the right:

Open notebook showing this week’s and later tasks

A few things I want to mention:

My notebook index file currently covers 8 notebooks and has over 500 entries. I got those numbers via egrep. The entries for each new book start with a line like

Book: 2023-06-12 to 2023-09-24

so I can count the number of books using

egrep -c '^Book:' 'Notebook index.txt'

Each entry line starts with the date in yyyy-mm-dd format, so they’re counted using

egrep -c '^\d{4}-\d\d-\d\d' 'Notebook index.txt'

I’ve been doing the one-notebook thing for about three years now. It’s one of the few productivity undertakings that I’ve stayed with for multiple years with no breaks.