this post was submitted on 25 Feb 2026
887 points (99.0% liked)

Programmer Humor

30162 readers
1145 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 

A photo of a cake with 8 candles in a row. The first and fifth candle from the right are lit. The caption reads "Happy 17th Birthday"

you are viewing a single comment's thread
view the rest of the comments
[โ€“] ITGuyLevi@programming.dev 2 points 5 days ago (1 children)

In a normal byte format it wouldn't help, the byte standard breaks off bits into 8 bit chunks and calls them bytes (I'm not trying to explain basics, just putting it there for background), little-endian excels at using the least number of bits to express larger numbers in a stream. If you wanted to send any number from 0-255 you only need 1 byte, for 256-512 you need two bytes (or 16 bits), in little-endian it can be represented in just 9 bits, or up to 1024 in 10 bits, etc.

Doesn't matter for much to many people, but when the number gets big enough you can save a lot of bandwidth.

[โ€“] MaggiWuerze@feddit.org 2 points 5 days ago

Yeah, that digs up some long lost memories :D

Thanks