/din'r/
noun — “a quantity of data large enough to stop nibbling and start committing.”
[by analogy with nybble and Byte]
Dynner is hacker jargon for a quantity of 32 bits. The name extends a long-running tradition of food-themed computing units: if a nybble is a small snack and a byte is a bite, then eventually someone looked at a larger data quantity and decided the only logical progression was dinner.
Unlike formal units such as bits, bytes, kilobytes, and words, dynner never became standard technical terminology. It survives mostly as a piece of playful hacker language—a reminder that engineers, left unsupervised around naming conventions long enough, will eventually invent a meal hierarchy.
Numerically, a dynner equals:
1 dynner = 32 bits
= 4 bytes
= 8 nybblesWhich means a dynner can represent:
// possible values
00000000000000000000000000000000
→ 0
11111111111111111111111111111111
→ 4,294,967,295Historically, 32 bits became an extremely important quantity in computing. Entire processor generations were built around 32-bit word sizes. Operating systems, memory addressing schemes, graphics systems, networking stacks, and application formats treated 32 bits as a practical balance between range, performance, and storage efficiency.
That historical significance makes the term dynner mildly amusing—because behind the joke sits an actually important quantity.
In practice:
// 32-bit examples
IPv4 address
192.168.0.1
Stored internally:
11000000101010000000000000000001
----------------
// RGBA color
0xFFAA7700
= 32 bits
----------------
// signed integer
2147483647Unlike smaller units such as Bit or nybble, people rarely reason directly in groups of 32 bits anymore because modern systems often operate in 64-bit environments. Even so, 32-bit structures remain everywhere beneath the surface: file formats, network packets, image channels, hashes, and APIs still quietly pass dynner-sized chunks around all day.
The joke naming also reveals something oddly characteristic about hacker culture. Technical communities often respond to increasing complexity with increasingly unserious vocabulary. Once someone invents nybble, the existence of larger imaginary meals becomes difficult to resist.
Conceptually, dynner marks the point where information stops feeling atomic and starts feeling substantial. A single bit answers a question. A byte stores a character. A dynner begins to feel like an actual object.
Usage: rare and extremely silly… which, historically, has never stopped jargon from surviving.