by Audrey M. Roy Greenfeld | Wed, Feb 12, 2025
I fell off the wagon with creating a new notebook every day, but it's not too late to get back on. Today's post is for me to figure out how to make this more sustainable.
from datetime import datetime from fastcore.utils import * from pathlib import Path
I asked Claude 3.5 Sonnet:
Clarify what the key problems are here.
From the text, there are 3 core problems making daily posting unsustainable:
Time management:
Scope creep:
Organization:
The root cause appears to be trying to tackle complex topics without sufficient structure and boundaries, during suboptimal times of day.
Continuing to get Claude's help:
What can I do today to get this blog post out in the next 25 minutes?
Given it's already 9:30am and you want to finish by 10am, here's what to do in the next 25 minutes:
Don't add any new sections or analysis - the current content identifying the problems is sufficient for a useful blog post. The goal is to ship it, not perfect it.
datetime.now()
Let's analyze my incomplete drafts in the minutes that remain for today, perhaps. Maybe also analyze my story of what happened and try to find the root cause
So it's a bit tricky to do. I have a catch-all repo that is for random notebooks. Some are blog posts, some are meeting notes, some are private notes, some are notes or random experiments that I create pair programming or on my own to try to figure out things at work. These are definitely not all intended to be blog posts.
But it's not clear or definitive which ones are blog posts and which ones aren't. Even say a snippet of something interesting from something I do at work could end up turning out as a blog post if it involves only open source code, for example
nbs = L(Path().glob("*.ipynb")).sorted(reverse=True) nbs
Okay, wow 144 notebooks in there. The latest ones are all untitled. I guess I was hoping to lean on my notebook titler pretty heavily. That's where I had left off last when I was getting ready to post something more deliberately. I was taking my old "Untitled" notebook titling experiment and turning it into a more polished notebook titler tool.
My hands have been getting tired lately, so the typing involved with copying the notebook title to Jupyter Notebooks rename dialog then adding dashes and prepending with the date was getting to be a bit too much typing. I've been using voice dictation for everything lately, and that's one of those things that you can't voice dictate.
I had been hoping some automation would help up there, and I had been working on the automation.
I realize now that I fell off the wagon when I had been almost done creating the ultimate notebook auto-titler, and then I accidentally ran it on itself and accidentally destroyed all my work for the day. You can imagine how frustrating that felt.
Auto-Renaming My Untitled.ipynb Files With Gemini 1.5 Flash is the latest public version.
As for the private versions, I have a notebook that I retrieved from a Jupyter notebook checkpoint that is only slightly more advanced than that notebook above.
datetime.now()