Quizzes

Browse the public Catalog and filter quizzes by Tag.

Filter by tags
/
29 questions

Read the Network Waterfall

The network panel already knows why your page is slow. It just says so in a language most people never learned to read. This quiz teaches the bars: what each segment of a...

web-performance
frontend
http
networking
browser
29 questions

Read the Trace: Spans, Waterfalls & What They Confess

A distributed trace is a picture of one request's life across every service it touched. Once you can read the shape, the bug is often obvious before you open a single log line....

observability
tracing
performance
debugging
system-design
15 questions

Real-Time Delivery: Polling → SSE → WebSockets

"Make it real-time" hides a ladder of escalating tradeoffs. Climb it: short polling, long polling, Server-Sent Events, and WebSockets — when each is the right tool, what they...

real-time
websockets
networking
system-design
13 questions

Scaling a Node.js Service

A single Node process runs your JavaScript on one event-loop thread — so scaling it is a system-design problem, not a config flag. Build intuition for statelessness as the...

system-design
nodejs
38 questions

Sociology of Queues: Waiting Lines as Social Systems

Thirty-eight questions about waiting lines as social systems: first-come-first-served as a social contract, single serpentine queues, perceived waiting time, priority queues,...

psychology
everyday-life
42 questions

SQL Query Detective

Work out what each query returns and find the bug when it returns the wrong result. The quiz covers joins, fan-out, NULL, aggregation, and misleading filters. Unless stated...

sql
joins
null
aggregation
debugging
11 questions

Server-Sent Events Deep Dive: The Event Stream Format

The precise SSE wire format from the WHATWG HTML spec: comment/keep-alive lines, multi-line data, the dispatch rule, named vs default events, the id and retry fields, stopping...

real-time
http
networking
javascript
50 questions

Time Zones Will Ruin Your Day

Dates the way production hits them. Local times that never happen, offsets that are not time zones, instants versus wall clocks, leap seconds, ISO 8601 traps, meetings that...

dates
timezones
i18n
gotchas