Programming
6 articles in this category and its sub-categories.
· min read
HTTP status codes explained
A short reference on HTTP status codes — the three-digit grammar, what each class means, the twenty codes you actually meet, 401 vs 403, 301 vs 302, the 502/503/504 triage table for reverse proxies, and the retry semantics most clients get wrong.
#web
#http
#protocols
#debugging
· min read
Understanding CORS
A short reference on Cross-Origin Resource Sharing — what counts as a cross-origin request, the simple vs preflight distinction, the headers that matter, and why CORS is a browser-side restriction rather than a server-side one.
#web
#cors
#security
#http
· min read
What is a JWT?
A short reference on JSON Web Tokens — the three-part structure, the algorithms that sign them, what they are good for, what they are bad for, and why you should not roll your own auth on top.
#auth
#jwt
#security
More in Programming
· min read
What is a regular expression?
A short reference on regular expressions — what a pattern actually describes, the building blocks (character classes, quantifiers, anchors, groups, lookarounds), the flags, how flavours differ across languages, and the catastrophic-backtracking footgun to avoid.
#regex
#regular-expression
#pattern-matching
· min read
Unix timestamps explained
A short reference on Unix timestamps — what the epoch is, why time is counted from 1970, the seconds vs milliseconds confusion, what happens in 2038, and why leap seconds quietly do not exist in Unix time.
#time
#unix-time
#epoch
#programming