• affiliate@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    3 months ago

    back in my day we only had one language. it was called ASSEMBLY. wanted to make the computer do something? you had to ask it yourself. and that worked JUST FINE

    • jaybone@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      3 months ago

      Well la-tee-da, fuck my AND gates and inverters.

      Look at moneybags over here with his instruction sets.

      • trashgirlfriend@lemmy.world
        link
        fedilink
        arrow-up
        2
        ·
        3 months ago

        Back in my day when you wanted a computer to do something, you just asked her to do it and then underpaid her because women can’t hold real jobs.

      • Aceticon@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        3 months ago

        Gates and inverters!!?

        Luxury!

        In my day we had to use transitors and resistors and, if we were lucky, maybe capacitors.

  • invertedspear@lemm.ee
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    3 months ago

    One project I worked on had 10 different languages. That was rough. But even your basic full stack web application is usually 5 languages: SQL, a backend language, HTML, CSS and JS. Usually some wheel reinventing frameworks thrown in for good measure. 5 languages is light these days.

      • mctoasterson@reddthat.com
        link
        fedilink
        arrow-up
        1
        ·
        3 months ago

        Probably a bunch of hacked together Python to copy stuff between fileshares. Bonus points if it runs with a .bat file and a Windows scheduled task.

    • Aisteru@lemmy.aisteru.ch
      link
      fedilink
      arrow-up
      0
      ·
      3 months ago

      You’re not wrong, it’s still a staple today, but it lost a lot of its shine a while ago. They are mimicking “new” features introduced in other languages, but make a point to preserve retrocompatibility.

      I can’t imagine how convoluted the JVM has become in the last 10 years.

      • abbadon420@lemm.ee
        link
        fedilink
        arrow-up
        1
        ·
        3 months ago

        I don’t really see how that is bad…? Java wants to be widely applicable and taking the best features from other languages helps that goal, right?

        • jaybone@lemmy.world
          link
          fedilink
          arrow-up
          1
          ·
          3 months ago

          C++ fanboys will talk a bunch of shit about Java for this, but c++ has been doing this same shit (and more poorly) pretty much since its inception.

          And most of the newer Java stuff is syntactic sugar, so I’m not sure why that commenter is calling out JVM implementations. I’m guessing they don’t know much about the JVM, since you can compile these higher level syntax tricks down into bytecode just like you might compile more verbose source code.

          Static analysis of compiled code with javap might be more difficult, but I’m betting the commenter doesn’t know what that is either.