← all posts

A simple rule for better product decisions

▲ 0 upvotes ◯ 0 comments

When a team is stuck between two reasonable directions, I ask one question:

Which option will teach us something useful sooner?

Speed is not the same as rushing. A small, observable decision creates evidence. Evidence makes the next decision easier.

const chooseExperiment = (ideas: Idea[]) =>
  ideas
    .filter((idea) => idea.isReversible)
    .sort((a, b) => b.learningValue - a.learningValue)[0];

The best experiments are easy to understand, cheap to reverse, and connected to a real uncertainty.

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.