this post was submitted on 13 Dec 2025
224 points (98.7% liked)

Mildly Interesting

23959 readers
1111 users here now

This is for strictly mildly interesting material. If it's too interesting, it doesn't belong. If it's not interesting, it doesn't belong.

This is obviously an objective criteria, so the mods are always right. Or maybe mildly right? Ahh.. what do we know?

Just post some stuff and don't spam.

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Rentlar@lemmy.ca 2 points 2 weeks ago (1 children)

Interesting that numbers can be excluded from the ordering system like that. I wonder if other numbers considered unlucky or meme numbers have been excluded before...

[–] GreenCrunch@piefed.blahaj.zone 14 points 2 weeks ago (1 children)

the article mentions 69 being skipped as well. I assume it's pretty simple, just check it against the list and increment until it's valid.

int getNextOrderNumber(int currentNumber) {
    currentNumber++; 
    while(isBanned(currentNumber)) {
        currentNumber++; 
    } 
    return currentNumber; 
} 

where bool isBanned(int orderNumber) simply checks the order number against the banned list and returns true if it's not allowed.

[–] Rentlar@lemmy.ca 2 points 2 weeks ago

Not that it's hard to implement, but neat that it is already being practiced in tgese systems, similar to noticing floors 4, 13 or 14 being skipped in a building.