Latest posts
-
UUID Collisions: UUID v4 Collision Probability Math

UUID Collisions: UUID v4 Collision Probability Math The uuid v4 collision probability is not zero, but it is close enough to zero for any real system to treat it that way. A version 4 UUID packs 122 random bits, giving a space of about 5.3 times 10^36 possible values. Using the birthday bound, the point…
-
How to Compare Two API Responses Before Prod Breaks

How to Compare Two API Responses Before Prod Breaks The fastest way to answer how to compare two API responses is to paste both JSON payloads into a diff tool built for structured data, one that ignores key order and highlights every added, removed, renamed, or type changed field. A plain text diff will bury…
-
What Does JS Minification Do to Your Code?

What Does JS Minification Do to Your Code? So what does JS minification do? It takes your JavaScript file and strips out everything a browser does not need to run it, extra whitespace, line breaks, comments, and long variable names, then often shortens those names to single letters. The result is a smaller file that…