Measuring Web Performance — TTFB, Page Weight, Image Audit with curl, sips, and Python
You don't need Lighthouse to diagnose page speed — curl -w gives TTFB and total time, sips reads image bytes, and Python sums per-page weight in a CI script.
5 posts
You don't need Lighthouse to diagnose page speed — curl -w gives TTFB and total time, sips reads image bytes, and Python sums per-page weight in a CI script.

Get started with Python FastAPI — why async and the GIL matter, pip install uvicorn, ASGI vs WSGI, run the server two ways in PyCharm, plus built-in Swagger UI.

When overwriting PATH on Linux or macOS breaks commands like ls, vi, and vim with 'command not found' — check echo $PATH and restore base paths via export.

Why Windows CMD's cd can't switch drives and you must type 'D:' to move from C: to D — Windows gives each drive its own root, unlike Linux's single root.

Install Python on Windows and add the install and Scripts (pip) paths to your PATH so 'python' and 'pip' work in cmd — plus user vs system variables explained.