The Dream Steps Journal

Working notes on design, technology, and AI.

No fluff. No listicles. Writing from inside the work — for founders, product teams, and marketers who care about getting the details right. We publish what we wish someone had told us before we shipped.

From the journal

What to automate with AI — and what to leave to rules

The mistake teams make with AI automation is not being too cautious. It is automating the wrong things — pointing an expensive model at work that rules did better, while leaving the hard judgment work manual. Here is a framework for deciding.

Why your AI feature gives wrong answers — and how to stop it

When an AI feature gives a wrong answer in production, the cause is rarely the model being dumb. It is almost always one of five fixable engineering gaps. Here is how to find which one you have — and how to fix it.

Why is your Django app slow? The ORM, the queries, and the seven fixes

Django is not slow, and Python is not slow. Slow Django apps are slow because of the same seven decisions on every project — N+1 queries, missing select_related and prefetch_related, missing indexes, no caching, synchronous external calls, and an ORM used without watching the SQL it writes.

Why is your Node.js app slow? The event loop, blocking code, and the seven fixes

Node.js is not slow. Slow Node apps are slow because something blocks the single-threaded event loop, or the database is untuned, or async code runs in series when it could run in parallel. Seven fixes, in order of impact.

UX vs UI design — what’s the actual difference?

Hiring one when you need the other is the most common — and most expensive — mistake in product teams. Here's what each discipline actually does, where they overlap, and how to tell which one you need right now.

Why is your React app slow? Bundle size, hydration, and the seven fixes

Most slow React apps are slow for the same seven reasons. None are inherent to React itself; all are decisions that can be reversed. Here is the order to fix them, in order of impact.

Why is your Shopify store slow? (And how to actually fix it.)

Every second of mobile load time costs roughly 7% of conversions. Here are the seven reasons Shopify stores are slow — apps, themes, images, scripts, Liquid, cart, theme JavaScript — and the order to fix them.

Why does your mobile app crash? Stability, performance, and the seven fixes

Below 99% crash-free is invisible to most teams and obvious to App Store algorithms. Seven engineering fixes that move a typical unstable app from 96% to 99.5%+ in 2 to 4 weeks.

Why is your Laravel app slow? N+1 queries, caching, and the seven fixes

Laravel is not slow. Slow Laravel apps are slow because of the same seven decisions on every project — N+1 queries, missing indexes, missing caches, untriaged queue work, Eloquent over-fetching, no Octane, no profiled production database.

Shopify vs WooCommerce — which is right for your D2C brand?

Two platforms, two different bets. Shopify wins on operational simplicity and speed-to-launch. WooCommerce wins on flexibility and total cost of ownership at scale. Here is how to decide based on where your business will be in three years.