A personal website should feel alive before it feels finished.
This space is where I will share work in progress, useful lessons, and the details that rarely fit inside a project card.
What I am exploring
Right now I am interested in small systems that make complex work feel calm. Here is a tiny Python example that captures the idea:
def next_action(tasks):
ready = (task for task in tasks if not task.blocked)
return min(ready, key=lambda task: task.effort, default=None)
The code matters, but the real goal is clarity: make the next useful thing obvious.
This is starter writing from ShipBio. Edit it, unpublish it, or replace it with your own voice.
No comments yet. Start the conversation with something worth discussing.