this post was submitted on 21 Mar 2026
770 points (98.2% liked)

Programmer Humor

30494 readers
2605 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
 
top 34 comments
sorted by: hot top controversial new old

It's not a stack, it's a heap.

[–] HeyThisIsntTheYMCA@lemmy.world 4 points 3 hours ago (1 children)

so like, my wife and i kept disagreeing on my cache. in part because she didn't know what i was doing, in part because i hadn't told her explicitly what i was doing. for example, i like to rewear my jeans a few times until they are dirty enough to need washing. i was hanging them on the side of the laundry basket. and would flip and fold and hang them differently to indicate how many times i had worn them i case i had forgotten because my brain is a rusty sieve lately.

[–] psud@aussie.zone 3 points 2 hours ago (1 children)

I don't subscribe to tracking how long something has been worn. I wear the same shorts or jeans for days in summer and months in winter

I judge them on whether they still look and smell good

My eyes are not that reliable my glasses are so full of smudge and i'm used enough to peering through smudge that like, i had to get a vevor brand electrified hypersonic desmudger and it can't even keep up and i have the tinnitus so i'm not sure i trust my nose anyways i try to only have one pair of jeans in use and the problem was really that my wife was not asking me before tossing my jeans in the wash. we found a different place for me to hang my jeans than the laundry basket and i can still use her eyes (they are not so full of smudge and she does not have the tinnitus)

[–] cogman@lemmy.world 19 points 6 hours ago

Silly commenter.

L1 cache shouldn't be large. Increasing the size of the L1 cache increases the latency. Maybe if you shrink the size of the cloths you wear you can squeeze more into the chair, but the ideal L1 cache has to minimize it's distance from processing. Oversizing adds latency.

Your L2 cache is where you generally try and shove a much bigger cache into it, but it's still got a size constraint for the latency you are after. Further, typically L1 and L2 only serve 1 CPU. To multi-process stuff you'll typically need an even larger L3 cache which is shared among cores.

So the cloths on your chair should be minimal for fast access (L1). You can put more cloths on your bed and dressers or in laundry baskets that can be promoted to the chair if you start needing them more often (L2). You can throw a bunch of cloths into a pile in the corner which sit there for a few years and serve many occasions (L3).

The worst thing is going back to main memory (your closet) to search for specialty cloths you are ultimately going to need to send back to the closet. And heavy help you if you have to swap (do laundry).

While I miss my parents after having moved out, I do appreciate my array of clothes being nonvolatile memory. It's become a comfort, knowing that it stays in the same configuration unless I actively recompile it.

[–] SirHaxalot@nord.pub 9 points 7 hours ago (1 children)

You're saying this as if there isn't multiple piles mixed fresh and dirty clothes with an O(n^2) complexity to find something you want.

I personally prefer to have my clothes indexed in an ordered storage so I know exactly which row in the drawers clean shirts are in.

[–] Zink@programming.dev 3 points 6 hours ago

That makes me think of how much it annoys me when things are really messy and disorganized in our house, which is very often.

It's like there's no indexing. Where is thing X that somebody else used last? Time to start a fresh empty-cache brute force search of the whole space!

[–] trougnouf@lemmy.world 24 points 11 hours ago* (last edited 11 hours ago) (4 children)

Wouldn't a pile of clothes have O(n) complexity? They'd still have to go through them one at a time unless the clothes have a really distinct color/shape and are in a somewhat tidy pile s.t. they can be pulled from anywhere.

[–] a_non_monotonic_function@lemmy.world 6 points 7 hours ago (1 children)

Not if the pile has a maximum capacity. At that point it's bounded as a fixed constant.

[–] TheseusNow@lemmy.zip 2 points 3 hours ago* (last edited 3 hours ago)

Exactly. Since n is represented by the collection of clothes, it is O(1) if you are only going through a finite subset of the clothes. If everything is in the closet, and in no particular order, you would then do O(n) because you potentially have to go through the entire collection to find one article of clothing.

It gets even worse if your idea of organization is placing the clothes neatly yet with no real order in a closet with multiple drawers and containers inside. In this last scenario you get O(n²) because you now have to repeatedly search through n numbers of clothing containers.

[–] sloppy_diffuser@sh.itjust.works 19 points 11 hours ago

Items are in a hash table using color/material type/shape as the hashing method optimized for human pattern recognition providing O(1) access. The table is smaller than the number of items causing some collisions. Those items are in a randomly sorted vector. Average case is still around O(1) with an O(n) worst case.

[–] ByteJunk@lemmy.world 6 points 9 hours ago

A well organized drawer or cabinet should still be O(1). It takes at least 2 more steps, assuming you don't leave them open all the time, but the number of operations doesn't change depending on the number of clothing items you need to retrieve.

A pile of clothes is faster, but only for a small number of items. As the number of articles pile up, they hide older items and need to be pushed side before the intended article can be found and then retrieved. This is now O(N), and less efficient than just storing things in the proper place...

[–] searabbit@piefed.social 4 points 11 hours ago

Idk about your pile, but mine is precariously balanced on top of a chair so it's O(1) until a literal tipping point when everything falls and then it's O(k*n) where k is the time it takes me to put away a piece of clothing in the closet/laundry (or start a new pile elsewhere).

[–] ViatorOmnium@piefed.social 60 points 14 hours ago* (last edited 14 hours ago) (1 children)

Unironically this. In a related note, most people confuse "tidy", which is about aesthetics, with "organised" that is about efficiency. That's why my long term storage is extremely tidy, and my short term storage (mostly my desk, and a small table next to it) looks like a modern art installation.

[–] clb92@feddit.dk 9 points 10 hours ago

Ah, so my problem is actually that I just fail to put things into long-term storage.

[–] WanderingThoughts@europe.pub 10 points 11 hours ago* (last edited 11 hours ago) (1 children)

Moms are binary. There are only clean and dirty clothes. Kids are ternary: clean, usable and dirty.

[–] prettybunnys@piefed.social 5 points 11 hours ago* (last edited 5 hours ago) (1 children)

Once my son hit 14 …. It just became “his laundry” instead of clean or dirty.

[–] Agrivar@lemmy.world 4 points 9 hours ago (1 children)
[–] prettybunnys@piefed.social 7 points 9 hours ago (1 children)

Yes.

Because it’s covered in come, again.

[–] Zagorath@quokk.au 7 points 12 hours ago (4 children)

I like the joke, but my pile of clothes is entirely about things that I want to reuse. They're too dirty to hang back up in the wardrobe, but too clean to throw in the dirty clothes basket. I'm sure there's an analogy someone could make for this, but Async's analogy doesn't work in my case.

[–] kieron115@startrek.website 2 points 3 hours ago* (last edited 3 hours ago)

The Queen of Shitty Robots herself designed a chair for exactly this purpose!

youtube short

longer vid on invidious

edit: i believe it's out of kickstarter now.

[–] Viceversa@lemmy.world 5 points 10 hours ago (1 children)

They're too dirty to hang back up in the wardrobe

Why? Can they smear other clothes?

[–] Zagorath@quokk.au 3 points 10 hours ago (1 children)
[–] Agrivar@lemmy.world 2 points 9 hours ago (1 children)

Which one? There are so many good Fillion GIFs!

[–] Zagorath@quokk.au 2 points 8 hours ago* (last edited 8 hours ago) (1 children)
[–] Agrivar@lemmy.world 2 points 7 hours ago

As I suspected, but thanks for the confirmation!

[–] binarytobis@lemmy.world 2 points 9 hours ago

If I wear a shirt for like 30 min and it’s not really dirty yet, I’ll hang it on the for right facing left. All of the clean clothes face right so I know at a glance. When I wear it again it’s dirty no matter what.

[–] Deceptichum@quokk.au 5 points 12 hours ago (1 children)

Isn’t RAM for stuff you’re kinda using or keeping open to use in the future? Otherwise you’d put it away/save it to a disk.

[–] Alberat@lemmy.world 2 points 10 hours ago

l1 cache is a cache for ram and ram is a cache for hdd/ssd

[–] kubica@fedia.io 8 points 14 hours ago

Except that my L1 cache is more like a top layer, which doesn't hold very well in place because of analogic world being so crumbly.

[–] Arghblarg@lemmy.ca 9 points 14 hours ago

80/20 rule redux

[–] vga@sopuli.xyz 1 points 10 hours ago

Real HP:MOR energy right there