← all posts

Welcome to my new corner of the internet

▲ 0 upvotes ◯ 0 comments

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.

Notes worth keeping

Occasional ideas about craft, work, and building things that last.

Conversation 0

Have something to add? Join with a one-time email code to comment, upvote, and follow replies.

No comments yet. Start the conversation with something worth discussing.