this post was submitted on 15 May 2025
1157 points (98.6% liked)

Programmer Humor

23417 readers
1857 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
 
(page 3) 50 comments
sorted by: hot top controversial new old
[–] [email protected] 8 points 1 week ago

We need to be able to express 0 and 1 as integers so that functionality is just being overloaded to express another concept.

Wait until the person who made this meme finds out about how many bits are being wasted on modern CPU architectures. 7 is the minimum possible wasted bits but it would be 31 on every modern computer (even 64b machines since they default to 32b ints).

[–] [email protected] 6 points 1 week ago

This guy never coded in KEIL C on an 8051 architecture. They actually use bit addressable RAM for booleans. And if you set the compiler to pass function parameters in registers, it uses the carry flag for the first bit or bool type parameter.

[–] [email protected] 6 points 1 week ago (1 children)

3GPP has an interesting way of serialising bools on the wire with ASN.1

NULL OPTIONAL

meaning only the type would be stored if true, otherwise it won't be set at all

load more comments (1 replies)
[–] [email protected] 6 points 1 week ago

Wait till you realise the size of SSD sectors

[–] [email protected] 5 points 1 week ago (1 children)

I swore I read that mysql dbs will store multiple bools in a row as bit maps in one byte. I can't prove it though

load more comments (1 replies)
[–] [email protected] 5 points 1 week ago

pragma(pack) {

int a:1, b:1, ... h:1;

}

IIRC.

[–] [email protected] 5 points 1 week ago

...or you can be coding assembler - it's all just bits to me

[–] [email protected] 5 points 1 week ago

7 Shades of Truth

[–] [email protected] 5 points 1 week ago (3 children)

Redundancy is nice in the event of bitflip errors

load more comments (3 replies)
[–] [email protected] 5 points 1 week ago* (last edited 1 week ago) (2 children)

I mean is it really a waste? What's minimum amount of bits most CPUs read in one cycle.

load more comments (2 replies)
[–] [email protected] 4 points 1 week ago

Pl/1 did it right:

Dcl 1 mybools, 3 bool1 bit(1) unaligned, 3 bool2 bit(1) unaligned, … 3 bool8 bit(1) unaligned;

All eight bools are in the same byte.

[–] [email protected] 2 points 1 week ago (1 children)

Does anybody ever figure in parity when comparing bit sizes and all that jazz or are we only ever concerned with storage space?

load more comments (1 replies)
[–] [email protected] 2 points 1 week ago

Now store the numbers (array):

0 0 0 1 0 1 1 2

think 8 bytes???

load more comments
view more: ‹ prev next ›