Pick a depth. Each prompt opens in your AI pre-loaded with the lesson. Click a row to preview the prompt.
HTTP/1.1 head-of-line blocking and the 6-connection-per-host limit dictate why your site loads fonts in waves; HTTP/2 multiplexing fixes one HOL blocking layer but TCP retransmits still stall every stream. HTTP/3 over QUIC is now standard on every major CDN and has different debugging tools — Wireshark won't decode QUIC payloads without keylogs.
Inspect which HTTP versions a cloud load balancer negotiates per request.
--http1.1, --http2, --http3 — record which the server actually returns.alt-svc response header on an HTTP/2 response — note the h3 advertisement that triggers QUIC for the next visit.curl -Z.# Force HTTP/1.1
curl -v --http1.1 https://example.com -o /dev/null 2>&1 | grep -i "HTTP/"
# Force HTTP/2 (negotiated via ALPN)
curl -v --http2 https://example.com -o /dev/null 2>&1 | grep -i "HTTP/"
# CloudFront supports HTTP/3; check distribution config
aws cloudfront get-distribution-config --id <dist-id> \
--query 'DistributionConfig.HttpVersion'
# Probe HTTP/3 support
curl --http3 https://cloudflare.com -o /dev/null -w "%{http_version}\n"