LibreTechni.ca
  • Communities
  • Create Post
  • Create Community
  • heart
    Support Lemmy
  • search
    Search
  • Login
  • Sign Up
da_cow (she/her)@feddit.org to Programmer Humor@programming.dev · 4 months ago

OOP is a construct of oppression installed by the burgoise

feddit.org

message-square
30
fedilink
709

OOP is a construct of oppression installed by the burgoise

feddit.org

da_cow (she/her)@feddit.org to Programmer Humor@programming.dev · 4 months ago
message-square
30
fedilink
alert-triangle
You must log in or register to comment.
  • ms.lane@lemmy.world
    link
    fedilink
    English
    arrow-up
    102
    ·
    4 months ago

    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
      link
      fedilink
      arrow-up
      32
      ·
      4 months ago

      The Comintern has reviewed this comment and found it quite funny

  • jjjalljs@ttrpg.network
    link
    fedilink
    arrow-up
    79
    ·
    4 months ago

    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”

    • favoredponcho@lemmy.zip
      link
      fedilink
      arrow-up
      34
      ·
      edit-2
      18 hours ago

      deleted by creator

      • marcos@lemmy.world
        link
        fedilink
        arrow-up
        25
        ·
        4 months ago

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

        • Mirror Giraffe@piefed.social
          link
          fedilink
          English
          arrow-up
          5
          ·
          4 months 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.

      • bestboyfriendintheworld@sh.itjust.works
        link
        fedilink
        arrow-up
        4
        ·
        4 months ago

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

      • irelephant [he/him]@lemmy.dbzer0.com
        link
        fedilink
        arrow-up
        1
        ·
        4 months ago

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

    • The Cuuuuube@beehaw.org
      link
      fedilink
      English
      arrow-up
      27
      ·
      4 months 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?

    • ThirdConsul@lemmy.zip
      link
      fedilink
      arrow-up
      5
      ·
      4 months ago

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

  • red_tomato@lemmy.world
    link
    fedilink
    arrow-up
    48
    ·
    4 months ago

    Seize the means of prod!

    • xep@discuss.online
      link
      fedilink
      arrow-up
      22
      ·
      4 months ago

      Or just prod! Seize prod

      • squaresinger@lemmy.world
        link
        fedilink
        arrow-up
        14
        ·
        4 months ago

        Deploy broken code straight to prod?

        • da_cow (she/her)@feddit.orgOP
          link
          fedilink
          arrow-up
          15
          ·
          4 months ago

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

          • Zos_Kia@jlai.lu
            link
            fedilink
            arrow-up
            5
            ·
            4 months ago

            testing is doubting

  • a14o@feddit.org
    link
    fedilink
    arrow-up
    33
    ·
    4 months ago

    Object.property = theft;

    • entwine@programming.dev
      link
      fedilink
      arrow-up
      15
      ·
      4 months ago

      sieze(worker, ObjectFactory.meansOfProduction);

  • ZombieChicken@sh.itjust.works
    link
    fedilink
    arrow-up
    30
    ·
    4 months ago

    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
      link
      fedilink
      arrow-up
      8
      ·
      4 months ago

      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
        link
        fedilink
        arrow-up
        4
        ·
        edit-2
        4 months 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
        link
        fedilink
        English
        arrow-up
        4
        ·
        4 months ago

        Why is it the way it is?

        • entwine@programming.dev
          link
          fedilink
          arrow-up
          6
          ·
          4 months 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
      link
      fedilink
      arrow-up
      2
      ·
      edit-2
      4 months ago

      I skimmed that.

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

      Yes?

      • ZombieChicken@sh.itjust.works
        link
        fedilink
        arrow-up
        1
        ·
        4 months 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.

  • Lili_Thana@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    12
    ·
    4 months ago

    Fuck OOP all my homies use DOD.

    • pipe01@programming.dev
      link
      fedilink
      arrow-up
      12
      ·
      4 months ago

      Department of defense?

      • ѕєχυαℓ ρσℓутσρє@lemmy.sdf.org
        link
        fedilink
        arrow-up
        9
        ·
        edit-2
        4 months ago

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

      • Lili_Thana@lemmy.dbzer0.com
        link
        fedilink
        English
        arrow-up
        8
        ·
        edit-2
        4 months ago

        Data Oriented Design

  • Juice@midwest.social
    link
    fedilink
    arrow-up
    4
    ·
    4 months ago

    This but unironically

  • Bazell@lemmy.zip
    link
    fedilink
    arrow-up
    3
    ·
    4 months ago

    And then the code has removed your whole database.

  • Rain World: Slugcat Game@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    4 months ago

    in scheme, everything* is first class!
    *i haven’t checked

Programmer Humor@programming.dev

programmer_humor@programming.dev

Subscribe from Remote Instance

Create a post
You are not logged in. However you can subscribe from another Fediverse account, for example Lemmy or Mastodon. To do this, paste the following into the search field of your instance: !programmer_humor@programming.dev

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

  • Keep content in english
  • No advertisements
  • Posts must be related to programming or programmer topics
Visibility: Public
globe

This community can be federated to other instances and be posted/commented in by their users.

  • 1.56K users / day
  • 3.33K users / week
  • 7.59K users / month
  • 17.1K users / 6 months
  • 1 local subscriber
  • 31.9K subscribers
  • 1.33K Posts
  • 26.4K Comments
  • Modlog
  • mods:
  • adr1an@programming.dev
  • Feyter@programming.dev
  • BurningTurtle@programming.dev
  • Pierre-Yves Lapersonne@programming.dev
  • BE: 0.19.5
  • Modlog
  • Instances
  • Docs
  • Code
  • join-lemmy.org