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.

8664 bites

Page 4

UX Research2 min read

Confidence intervals versus p-values, explained simply

Define a CI as a plausible range for the true effect with its precision, contrast it with a binary p-value, and read [-1%, 7%] as inconclusive because it spans zero.

UX Research1 min read

Diagnose and validate a failing usability task

Pinpoint the failure step from session and telemetry data, form a root-cause hypothesis, ship a targeted fix, and re-test to validate.

UX Research1 min read

Build a compliant participant recruitment database

Capture granular, timestamped consent with lawful basis; minimize, encrypt, and retention-limit storage; and build self-service deletion that cascades.

UX Research1 min read

Anonymization vs pseudonymization and key handling

Anonymization is irreversible and exits GDPR scope; pseudonymization is reversible via a separated key; secure that key in a KMS with strict access.

UX Research1 min read

What is PII and how to keep it out of logs

Define PII, redact or mask at the logging boundary, and avoid logging sensitive fields at the source.

UX Research1 min read

Aesthetics-Usability Effect

The aesthetics-usability effect is the tendency for users to perceive attractive designs as easier to use and to be more tolerant of minor usability problems in them, which can mask real issues during testing.

UX Research1 min read

Data Visualization for Qualitative Data

Visualizing qualitative data turns coded themes, quotes, and patterns from interviews into affinity maps, theme matrices, and journey artifacts. It makes non-numeric findings scannable and persuasive without distorting nuance into false precision through…

UX Research1 min read

Exposure Hours

Exposure hours measure the time each team member spends directly observing real users. Research by UIE found teams that watch users at least two hours every six weeks make markedly better design decisions, because firsthand empathy beats secondhand reports.

UX Research1 min read

Mental Model Diagram

A mental model diagram aligns what users think and do, gathered from research, against what a product actually offers, exposing gaps where features are missing or unused so teams build for real behavior rather than assumptions.

UI Design & Figma2 min read

Refactor a legacy UI for accessible DOM flow

Align DOM order with reading order, use semantic landmarks and headings, and ensure a sensible tab order with managed focus.

UI Design & Figma1 min read

Manage light and dark themes with Variables and Modes

Separate primitive and semantic variables, define light and dark modes in one collection, and bind UI fills to semantic tokens.

UI Design & Figma1 min read

Make a complex component accessible by design

Define keyboard model and focus order, map to ARIA roles and states, and document interactions for engineers.

UI Design & Figma1 min read

Diagnose a slow, laggy Figma prototype

Heavy raster images and effects, layer and node count, and excessive prototype interactions.

UI Design & Figma1 min read

Prototype a draggable carousel with On Drag

Lay frames side by side, use On Drag with Smart Animate, and clamp ends.

UI Design & Figma2 min read

SVG icons versus icon fonts: technical trade-offs

SVG is vector markup, crisp, multicolor, accessible, and tree-shakeable; icon fonts ship as glyphs, risk anti-aliasing blur, accessibility hacks, and load-failure boxes. Advocate SVG for modern apps.

UI Design & Figma2 min read

Limitations of Figma Dev Mode generated code

Dev Mode output is static, absolute-positioned, non-semantic, and ignores responsiveness, state, and your component system; use it for values and structure, then refactor to semantic, tokenized…

UI Design & Figma2 min read

Designing and documenting focus order in Figma

Focus order is the sequence keyboard and screen-reader users traverse interactive elements; it should follow meaning and reading order, documented in Figma via layer order, numbered annotations…

UI Design & Figma2 min read

Profile card with nested Auto Layout sizing

Outer vertical frame set to fixed width and hug height, an inner horizontal frame for avatar and name, and a bio text set to fill width and auto-height so the card grows down.

UI Design & Figma2 min read

Building a scalable icon system in Figma

Standardize a grid, size, and stroke; make each icon a component with consistent naming, use currentColor-friendly single-color paths, and export optimized SVGs.

TypeScript & Web APIs2 min read

What isolatedModules enforces and why bundlers need it

IsolatedModules forbids features needing cross-file type info because Babel and esbuild compile each file alone; const enums, certain re-exports, and namespace tricks are flagged.