Learn
Short technical reference articles. Companion pieces to the tools section — quick explainers of the concepts engineers reach for daily.
Networking7 articles
·3 min read
What is CIDR?
A short reference on Classless Inter-Domain Routing notation — what `/N` means, how the prefix and host bits divide, why it replaced the A/B/C class system in 1993, and the common sizes you see in real-world networks.
#networking
#cidr
#ipv4
#ipv6
·3 min read
What is anycast?
A short reference on anycast — one IP address announced from many locations, how routing picks the nearest one, why CDNs and DNS root servers use it, and where the edge cases bite.
#networking
#anycast
#bgp
#cdn
·2 min read
What is a subnet?
A short reference on subnets — what they actually are, how the mask separates network bits from host bits, why subnetting exists, and how to think about sizing one.
#networking
#subnet
#cidr
#ipv4
·3 min read
IPv4 vs IPv6: what actually changed
A short comparison of IPv4 and IPv6 — address size, format, why IPv6 was designed in 1998, what changed beyond the obvious 32-vs-128-bit width, and why the migration is still going thirty years later.
#networking
#ipv4
#ipv6
·3 min read
Dynamic vs static IP addresses
A short reference on dynamic vs static IPs — what each means, how DHCP leases work, when each is the right choice for clients and servers, and where the boundary between them gets blurry in cloud and home networks.
#networking
#dhcp
#ip
·3 min read
What is DNS?
A short reference on the Domain Name System — the hierarchy, common record types, how a recursive resolver actually looks up a name, and the caching that keeps the whole thing usable.
#networking
#dns
#protocols
·3 min read
How to perform a traceroute
A short reference on traceroute — what it actually does with TTL, when to reach for it, the differences between traceroute, tracert, and mtr, and how to read the output without misinterpreting the hops.
#networking
#traceroute
#mtr
#debugging
Operating systems1 article
Programming5 articles
·4 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
·3 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
Web & HTTP2
·3 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
·3 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