Skip to content
tezvyn:

All bites

The whole library, newest first. Filter by what you are here for, or pick a topic if you already know.

8668 bites

Page 77

Growth & Experimentation1 min read

Communicate experiment results and check guardrails

Explain the lift and confidence in plain business terms, report a confidence interval not just a point, and verify guardrails before shipping.

Growth & Experimentation1 min read

Components of a testable A/B hypothesis

A specific change, a predicted directional effect on one primary metric, a rationale, and a measurable success threshold.

Growth & Experimentation1 min read

Design a streak-saver mechanism

Timezone-aware streak state, capped saver inventory with replenish rules, and A/B testing forgiveness against retention plus guardrails.

Growth & Experimentation1 min read

Migrate a breaking analytics schema change

Dual-write both fields during overlap, backfill history, migrate consumers, then deprecate the old field.

Growth & Experimentation1 min read

Design an analytics event schema

Consistent object-action naming, snake_case, typed properties with units, and shared context like user, session, timestamp.

Growth & Experimentation1 min read

Client-side vs server-side event tracking

Client captures UI intent but loses data to ad blockers and tampering; server is trustworthy for transactions but blind to UI interactions.

Growth & Experimentation1 min read

Experiment design under network effects

Cluster-level randomization, graph or geo clustering to contain spillover, and analysis at the cluster unit.

Growth & Experimentation1 min read

Design a centralized experimentation service

A config/assignment API, deterministic SDK-side bucketing, and a separate exposure-logging pipeline.

Growth & Experimentation1 min read

Set up a client-side button color A/B test

Stable hashing of a persistent ID into buckets, conditional rendering of the variant, exposure plus click event logging.

Growth & Experimentation2 min read

Attribute a mobile install to a desktop ad

Deterministic matching via a shared login is accurate but needs auth on both ends; probabilistic fingerprinting scales without login but is noisy and privacy-fraught.

Growth & Experimentation2 min read

Handle interaction effects on a shared page

Combined variants may produce effects neither has alone; use mutual exclusion for likely interactions, orthogonal designs with interaction monitoring otherwise.

Growth & Experimentation2 min read

Why repeatedly extending a test inflates false positives

Repeatedly checking and extending until significance is p-hacking via optional stopping, which inflates the false-positive rate; fix with fixed sample sizes or sequential…

Growth & Experimentation2 min read

Architect a configurable, goal-based onboarding flow

Capture the goal, let the backend return a server-driven flow definition mapping goal to steps and content, render generic components on the client.

Growth & Experimentation2 min read

Increase experiment velocity for non-engineers

Server-driven config, feature flags, and a self-serve UI let non-engineers ship copy or layout variants instantly; add guardrails and metric checks.

Growth & Experimentation2 min read

Prevent conflicting experiments with layers

Group conflicting experiments into one layer so a user's per-layer bucket maps to at most one of them; orthogonal layers can overlap.

Growth & Experimentation2 min read

Design a contamination-safe pricing experiment

User-level price tests leak via fairness perception, so use geo holdouts or time-based cohorts where everyone in a unit sees one price.

Growth & Experimentation2 min read

Run concurrent experiments without interference

Independent non-interacting tests can share traffic through orthogonal layers; interacting ones need mutual exclusion in a shared layer.

Growth & Experimentation2 min read

Design a referral feature's lifecycle and races

A referral entity with explicit states, a unique constraint on the invited user, and atomic transactions plus idempotency to prevent double credits.

Growth & Experimentation2 min read

Why consistent user IDs matter in experiments

The user id seeds deterministic bucketing and ties events to one person across devices; achieve it via authenticated ids and anonymous-to-known stitching.

Growth & Experimentation2 min read

Trace an event from click to analysis

Client SDK captures and batches, a collection endpoint ingests, a stream and ETL enrich and load into a warehouse for analysis.