• redcalcium@lemmy.institute
    link
    fedilink
    arrow-up
    126
    ·
    edit-2
    1 year ago

    This is a new satire site, right? These days it’s getting harder and harder to differentiate between reality and fiction in tech. The rest of their posts are pretty much spot on.

      • hansl@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        1 year ago

        It’s a good thing that Engineer is a protected profession and not everyone can claim it, like Lawyer or Doctor.

        In the US now it’s “oh you’re an engineer? Do you have any idea how little that narrows it down?”

        • macaroni1556@lemmy.ca
          link
          fedilink
          arrow-up
          0
          ·
          1 year ago

          I disagree, I believe the regulatory agencies do nothing in Canada to legitimize their claim to regulating software development. Heck, they do nothing for electronics or semiconductors or anything smaller than the power grid.

          • hansl@lemmy.world
            link
            fedilink
            arrow-up
            0
            ·
            1 year ago

            Software development is done by developers. If you are a software engineer chances are you’re working on software infrastructure that actually apply at scales that are not “add a shopping cart to this blog”.

            There are reasons you ask a civil engineer for work.

            • macaroni1556@lemmy.ca
              link
              fedilink
              arrow-up
              1
              ·
              1 year ago

              You missed my point that if professional engineering societies in Canada want to take ownership of software and electronics, they better do something and not just say they’re regulating it and sit on it with no clear definition for what it even is.

              If they were doing their job, we wouldn’t need to debate what a software engineer is. They’ve let us down and they’re getting away with it.

    • CanadaPlus@lemmy.sdf.org
      link
      fedilink
      arrow-up
      8
      ·
      edit-2
      1 year ago

      Thanks, I didn’t even notice. It’s not a normal decision that would be made, but sometimes there’s weird stuff buried deep in the paperwork.

    • soggy_kitty@sopuli.xyz
      link
      fedilink
      arrow-up
      2
      ·
      1 year ago

      I don’t take any article post or comment seriously anymore. Between the era of misinformation and advancements in AI, my trust in the internet is at an all time low.

      Make your own decisions, second guess everything

    • sunbeam60@lemmy.one
      link
      fedilink
      arrow-up
      3
      ·
      1 year ago

      Ninjas, super-heroes, black-belt and terms like that are known gender-excluders. I’ve been through a couple of adjustment sessions for company standard job descriptions and it’s unreal how you can change the applicant mix by wording.

          • _MusicJunkie@beehaw.org
            link
            fedilink
            arrow-up
            13
            ·
            1 year ago

            In the railway context an engineer was the person who worked the engine.

            In German the word comes from Latin roughly meaning inventor. Presumably the general usage of the word engineer in English has the same etymology.

          • captsneeze@lemmy.one
            link
            fedilink
            arrow-up
            15
            ·
            1 year ago

            In the US, a conductor is the one who checks tickets, makes announcements, and delegates tasks to the crew to help ensure things keep moving on time.

            The locomotive engineer is the one who is “driving” the train. They run the engine and communicate with dispatch and traffic control to keep them informed where this particular train is fitting into the overall juggling act,. They also make every effort to keep things safe (watching for signals, obstructions, etc.).

            I’m not 100% sure if the terminology is different outside of the Us.

            (Source: My father is a 3rd generation locomotive engineer.)

          • MiDaBa@lemmy.ml
            link
            fedilink
            arrow-up
            4
            ·
            1 year ago

            See I thought a conductor was a person who grabs a live main wire while standing in water.

    • Omega_Haxors@lemmy.ml
      link
      fedilink
      English
      arrow-up
      9
      ·
      edit-2
      1 year ago

      Infrastructure erasure in the states is so bad that people who build it for a living aren’t even considered anymore.

      • survivalmachine@beehaw.org
        link
        fedilink
        arrow-up
        1
        ·
        1 year ago

        Yes, driving trains is becoming more and more important as we find out how terrible cars are for the environment. We should protect the profession fiercely!

  • xor@infosec.pub
    link
    fedilink
    arrow-up
    42
    arrow-down
    22
    ·
    1 year ago

    can we ban web developers who call themselves “developers”?

    also php programmers who call themselves anything?

        • dan@upvote.au
          link
          fedilink
          arrow-up
          6
          arrow-down
          1
          ·
          1 year ago

          That article is over a decade old. A lot of these issues aren’t relevant any more or have been fixed. Some weren’t even PHP issues, for example mysql_real_escape_string is a MySQL API (https://dev.mysql.com/doc/c-api/8.0/en/mysql-real-escape-string.html).

          PHP isn’t the best language, but it’s not as bad as some people claim it to be, especially if you use a good framework like Laravel.

          • xor@infosec.pub
            link
            fedilink
            arrow-up
            1
            arrow-down
            7
            ·
            1 year ago

            lol, no… it sucks
            trust me, if you’ve already gotten used to php, you’re smart enough to learn a better language.
            really just use node if you’re going that sorta route…

            • dan@upvote.au
              link
              fedilink
              arrow-up
              1
              ·
              1 year ago

              JavaScript has a lot of the same issues as PHP. It doesn’t have some of the same core library issues because it doesn’t have a good core library.

                • dan@upvote.au
                  link
                  fedilink
                  arrow-up
                  1
                  arrow-down
                  1
                  ·
                  1 year ago

                  Adding a third-party library in PHP is just as easy. The composer.json file looks very similar to a package.json.

              • xor@infosec.pub
                link
                fedilink
                arrow-up
                1
                ·
                1 year ago

                ECMA 6 has had drastic improvements over the past js…
                however node is still infinitely better than php, and since javascript is inexorably a part of web development, it’s a lot more logical to use it on the backend too…

                i don’t mean that node is great, i mean that it’s an easy transition from php, a billion times better, and much more modern and useful… so a very natural transition…

                • dan@upvote.au
                  link
                  fedilink
                  arrow-up
                  2
                  arrow-down
                  1
                  ·
                  edit-2
                  1 year ago

                  ECMA 6 has had drastic improvements over the past js…

                  Sure, but it still lacks basic built-in features. For example, why do maps and sets not have sort or filter methods? In Node, why is there no built-in way to connect to a database of any sort? Why can Node.js apps only use a single time zone? Requiring libraries for everything is not ideal as the libraries vary wildly in quality and they can end up either abandoned or containing malware (which has happened several times in the Node ecosystem).

                  still infinitely better than php

                  They each have their pros and cons, depending on use case. Node.js does some things better than PHP, but the opposite is true too.

                  • You can build a whole PHP website without using any third-party libraries, and it’ll work on any web host that supports PHP (literally any good web host that exists today). There’s value in having that level of flexibility.
                  • You can build a PHP site today and it’ll mostly still be working (maybe with some minor changes) in 5 years, whereas for some of my Node.js sites I have to switch to an older version of Node just to build them. For example https://obviousspoilers.com/ has been practically untouched since 2009.
                  • The fact that PHP can run multiple apps in the same FPM process means that you can run thousands of sites on a single server without issues. There’s some non-Node solutions to this (like Cloudflare workers) but they’re mostly proprietary at the moment.
                  • There are more PHP than Node.js jobs, and far more sites use PHP. Wordpress uses PHP and powers over 40% of the web, so that means that at least 40% of all websites use PHP.
        • Phoenixz@lemmy.ca
          link
          fedilink
          arrow-up
          1
          arrow-down
          1
          ·
          1 year ago

          That is literally a decade old article with basically 1 complaint that sometimes functions are strpos() and sometimes str_len(). Anything else it’s saying is “I don’t even know how to say it”. Really now? Any of your complaints have been fixed since about a decade ago, so why don’t you give it a try?

          • xor@infosec.pub
            link
            fedilink
            arrow-up
            1
            arrow-down
            1
            ·
            1 year ago

            lol, no…
            also this is a joke sub so stop trying to sea lion me about it.
            also your “summation” of the article is pretty stupid

      • xor@infosec.pub
        link
        fedilink
        arrow-up
        3
        arrow-down
        5
        ·
        1 year ago

        c# and .net? ewww…

        gimme c, c++, go, rust, ruby, python…
        and umm, no dude, native apps are a lot more powerful than web apps… they are not usurped at all

        there’s more of them, but there’s more scooters than motorcycles…

        • astraeus@programming.dev
          link
          fedilink
          arrow-up
          5
          arrow-down
          2
          ·
          1 year ago

          Scooters are more efficient, get you where you need to go and cost less to maintain. Your analogy is actually pretty good in that regard.

          • xor@infosec.pub
            link
            fedilink
            arrow-up
            2
            arrow-down
            9
            ·
            edit-2
            1 year ago

            yeah and they only get you around the neighborhood, any actual distance and a motorcycle is infinitely better…
            but, it figures you’d miss that, since you’re a dumby dumbo mcpoopoo head webdev

            • astraeus@programming.dev
              link
              fedilink
              arrow-up
              4
              arrow-down
              1
              ·
              1 year ago

              Now you’re throwing ad hominem around. You don’t need to be toxic to communicate your point, web development did at one point have a lot of growing to do and I can admit that there is still plenty of progress to be made. In 2024 however, ignoring the web ecosystem as any type of developer is purely traditionalist elitism.

              • xor@infosec.pub
                link
                fedilink
                arrow-up
                1
                arrow-down
                4
                ·
                1 year ago

                bruh, this is programming_humor… chill, im sure you’re a fine human being

            • adr1an@programming.devM
              link
              fedilink
              arrow-up
              1
              ·
              1 year ago

              Please refrain of using offensive words, specially if you are trying to actually communicate an idea that is by all means demeaning to other people. The community is about humour, keep that in mind ;)

              • xor@infosec.pub
                link
                fedilink
                arrow-up
                1
                ·
                1 year ago

                word, “dumb ass” was supposed to be a joke too, but i edited it to be less offensive

    • TheHarpyEagle@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      1 year ago

      Nah, no need for this kind of gatekeeping. Anyone who deals with js and its billions of frameworks on a daily basis deserves to be called a developer.

  • rizoid@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    21
    arrow-down
    1
    ·
    1 year ago

    I mean who cares? But also why? My old job title was “software engineer” and I just did web dev.

  • jonsnothere@beehaw.org
    link
    fedilink
    arrow-up
    14
    ·
    1 year ago

    As long as they don’t start building tunnels under their house because they’re an ‘engineer’…

  • invertedspear@lemm.ee
    link
    fedilink
    arrow-up
    13
    ·
    1 year ago

    I mean, engineering is really problem solving, and not do we web developers solve problems. We may have made most of them ourselves, and new ones when we solve those, but we do solve problems.

    • Kissaki@programming.dev
      link
      fedilink
      English
      arrow-up
      6
      ·
      1 year ago

      The term engineering is not about problem-solving, especially when differentiated from development. Engineering is about deliberate understanding and decision-making, about giving it an architecture, a structure.

      You can develop without any structure, solving an issue, without understanding a bigger context or picture or behavior. But that’s not engineering.

  • Daxtron2@startrek.website
    link
    fedilink
    arrow-up
    11
    arrow-down
    1
    ·
    1 year ago

    I get this is satire but people truly believe this. Web devs literally create software that runs nearly every facet of modern life.

  • e8d79@feddit.de
    link
    fedilink
    arrow-up
    9
    ·
    1 year ago

    Now this is the kind of ‘news’ I’d like to see posted on hackernews just to read their techbro shit takes.

  • Zikeji@programming.dev
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    1 year ago

    What if my job title says that? Who’s going to tell my employer they’re wrong.

    Then again, “full stack software engineer” as a title might also well just be buzzwords.

    !And yes, I know the site is satire lol.!<