this post was submitted on 17 Feb 2026
681 points (97.6% liked)

Programmer Humor

29960 readers
621 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 30 comments
sorted by: hot top controversial new old
[–] a14o@feddit.org 33 points 6 days ago (1 children)
[–] entwine@programming.dev 15 points 6 days ago

sieze(worker, ObjectFactory.meansOfProduction);

[–] Lili_Thana@lemmy.dbzer0.com 10 points 6 days ago (1 children)

Fuck OOP all my homies use DOD.

[–] pipe01@programming.dev 12 points 6 days ago (2 children)
[–] SexualPolytope@lemmy.sdf.org 9 points 6 days ago* (last edited 6 days ago)

It's DoW now, baby. And apparently, it's over 50,000!

[–] Lili_Thana@lemmy.dbzer0.com 8 points 6 days ago* (last edited 6 days ago)
[–] Bazell@lemmy.zip 3 points 6 days ago

And then the code has removed your whole database.

[–] ms_lane@lemmy.world 98 points 1 week ago (1 children)

replaces Classes with Functions

code is still parsed from the top down and some functions are more privileged than others

It's just like Lenin wanted!

[–] Juice@midwest.social 31 points 1 week ago

The Comintern has reviewed this comment and found it quite funny

[–] jjjalljs@ttrpg.network 78 points 1 week ago (3 children)

Sometimes I still see job postings that are like "MUST KNOW OBJECT ORIENTED PROGRAMMING" and I'm wondering who in 2026 isn't at least passably familiar with it.

But then again I also see job posts that are like "must know Java or JavaScript"

[–] ThirdConsul@lemmy.zip 3 points 5 days ago

Considering most people only know procedural programming and are calling it functional/objective...

[–] favoredponcho@lemmy.zip 33 points 1 week ago (3 children)

A lot of those posts will also include shit like must know XML and AJAX and it’s clear the recruitment division hadn’t updated their template in ages.

[–] irelephant@lemmy.dbzer0.com 1 points 3 days ago

So many sites still use that with a shiny UI slapped on top.

[–] marcos@lemmy.world 25 points 6 days ago (1 children)

What is not clear is if the software development division updated their practices.

[–] MirrorGiraffe@piefed.social 5 points 6 days ago

Exactly, if there's even the slightest risk that I'll need to dust off the good ol ajax that's a nope from me.

There’s a lot of legacy stuff around. I saw some CORBA in the wild recently.

[–] Cube6392@beehaw.org 27 points 1 week ago

in 2026 you really have to ask an employer what they mean by object oriented programming in the interview. do they mean a methodology of organizing pure functional code into actors and message busses? do they mean imperitive code that's interacted with through generic interfaces as with python? or do they mean javascipt style OOP where you define classes to organize your imperitive code within a functional language without any concern for the generic interfaces this could hypothetically enable?

[–] red_tomato@lemmy.world 47 points 1 week ago (1 children)
[–] xep@discuss.online 22 points 1 week ago (1 children)
[–] squaresinger@lemmy.world 14 points 6 days ago (1 children)

Deploy broken code straight to prod?

[–] cows_are_underrated@feddit.org 13 points 6 days ago (1 children)

Testing is for those who are not confident in their programming skills.

[–] Zos_Kia@jlai.lu 5 points 5 days ago

testing is doubting

[–] ZomieChicken@sh.itjust.works 28 points 1 week ago (2 children)

Or do as Alan Kay wants and start calling it "Message-Oriented Programming".

"I'm sorry that I long ago coined the term "objects" for this topic because it gets many people to focus on the lesser idea. The big idea is "messaging"."

https://lists.squeakfoundation.org/pipermail/squeak-dev/1998-October/017019.html

[–] entwine@programming.dev 7 points 6 days ago (2 children)

I still get sad when I think about Objective C and how it didn't take off vs C++ just because it had ugly syntax (which becomes beautiful once you understand why it is the way it is)

[–] bestboyfriendintheworld@sh.itjust.works 3 points 5 days ago* (last edited 5 days ago)

I’m still mad at Apple for making Swift instead of Objective-C 3.0. It was such a powerful and small language.

C++ has a billion features and Swift is getting more every year.

Objective-C was fast to compile, great in a debugger, and allowed lots of creativity and patching broken system components.

Lots of great software was written with it. CocoaBindings are magical.

[–] plyth@feddit.org 4 points 6 days ago (1 children)
[–] entwine@programming.dev 5 points 6 days ago

Both C++ and Objective-C aimed to be "C with classes". C++ does it by hijacking existing syntax (struct), Objective-C does it by adding new syntax, while leaving the original minimalism of C untouched.

In fact, it's a strict superset of C, which means it doesn't change anything at all in C, it only appends. So every valid C program is a valid Objective C program (which is not true for C++).

You know how some C programs are valid C++ programs though? Well, those same programs can use Objective C features too, meaning you're able to use them in C++... Meaning you're able to code in "Objective C++" (which is very common for interop purposes)

[–] presoak@lazysoci.al 1 points 5 days ago* (last edited 5 days ago) (1 children)

I skimmed that.

So you've got a bunch of message transceivers (aka objects). And the magic is in the message soup.

Yes?

[–] ZomieChicken@sh.itjust.works 1 points 5 days ago

From my understanding, yes. Personally, I've seen so many different definitions of "OOP" (most of which were incoherent), I developed my own definition of what an 'object' is, and just go on with life.

[–] Juice@midwest.social 3 points 1 week ago

This but unironically