Posts tagged "data"
4 posts tagged with data.
Your server already compresses responses with gzip or Brotli — but do you know what those algorithms actually do? Understanding compression helps you optimize assets and set correct headers.
JSONL puts one JSON object per line, making it streamable, appendable, and easy to process without loading the entire file into memory. Here is why that trade-off matters.
CSV files look trivial until you encounter a value with a comma inside it, a newline in a cell, or a file saved in the wrong encoding. This post covers everything you need to handle CSV correctly.
A checksum is a small number computed from a block of data that lets you verify the data has not changed. Here is why this simple idea underpins file downloads, network protocols, and storage systems.