• not_woody_shaw@lemmy.world
      link
      fedilink
      English
      arrow-up
      10
      ·
      23 days ago

      That’s not even the worst part. What the fuck does a function named Compare_anything do? Does it return anything? It sounds like nothing but a side effect.

      • idunnololz@lemmy.world
        link
        fedilink
        English
        arrow-up
        11
        ·
        23 days ago

        Usually comparison functions are supposed to return an integer and are usually useful for sorting. However this one returns a bool so it’s both useless and terribly named.

      • BatmanAoD@lemmy.world
        link
        fedilink
        English
        arrow-up
        7
        ·
        23 days ago

        The unnecessary and confusing functions are horrible, yes, but I’d still say that the fact that they’re wrong is the “worst” part.

  • becausechemistry@lemm.ee
    link
    fedilink
    English
    arrow-up
    56
    ·
    24 days ago

    Management: Gee whiz, we really have no idea how to gauge productivity to decide who gets promoted. We could manage. Or, better, we could just have someone write a script that pulls info from git on how many lines of code each person has written.

    Programmers:

    • LovableSidekick@lemmy.world
      link
      fedilink
      English
      arrow-up
      8
      ·
      22 days ago

      My boss’s boss, a former Ops manager who liked to keep track of system stats, once asked her why the CPU usage on the dev box had decreased that month. Weren’t the devs doing any work?

  • Grandwolf319@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    28
    ·
    24 days ago

    Two wrongs don’t make a right, but sometimes in programming, two bugs can cancel each other out.

    Whoever wrote this is more than capable of using it incorrectly.

  • Acters@lemmy.world
    link
    fedilink
    English
    arrow-up
    21
    ·
    edit-2
    24 days ago

    Those are rookie lines of code numbers right there.
    I would have done it without the ==

    internal static bool AreBooleansEqual(bool orig, bool val)
    {
        if(orig) 
        {
            if(val)
                return false
            return true
        }
        if(val)
            return true 
        return false
    }
    

    Don’t know why their code returns false when they are equal but I’m not going to dig through old code to refactor to use true instead of false.

      • Acters@lemmy.world
        link
        fedilink
        English
        arrow-up
        2
        ·
        edit-2
        23 days ago

        I was debating on bitwise operations, but decided on super basic if statements which I think the compiler would optimize, happy to see the logical operation form too

    • InFerNo@lemmy.ml
      link
      fedilink
      English
      arrow-up
      5
      ·
      24 days ago

      Put more curly brackets around your if (val) true statement for 4 more lines, put elses in there for more lines even.

      • Acters@lemmy.world
        link
        fedilink
        English
        arrow-up
        7
        ·
        edit-2
        23 days ago

        I should have created a local variable to store the result variable and return after the if statements. I just couldn’t help to make it look partially nice. My brain just doesn’t think at this high caliber of LOC optimizations.

        New optimized LOC version:

        internal static bool AreBooleansEqual(bool orig, bool val)
        {
            bool result;
            if(orig) 
            {
                if(val)
                {
                    result = false;
                }
                else
                {
                    result = true;
                }
            }
            else
            {
                if(val)
                {
                    result = true;
                }
                else
                {
                    result = false;
                }
            }
            return result;
        }
        

        My previous LOC: 12
        New LOC version: 27

  • magic_lobster_party@fedia.io
    link
    fedilink
    arrow-up
    18
    ·
    24 days ago

    My guess to why there’s two functions is because it was originally only internal, and the programmer realized they needed public as well, but changing internal to public is too scary so they created a new method instead.

  • Cyborganism@lemmy.ca
    link
    fedilink
    English
    arrow-up
    18
    ·
    24 days ago

    You can tell they’re amateurs. It’s not obfuscated enough. They won’t be able to keep their job.

      • marcos@lemmy.world
        link
        fedilink
        English
        arrow-up
        21
        ·
        edit-2
        24 days ago
        var CompareBooleans = new ComparatorFactory().BooleanComparator(new BooleanComparisonByEqualityPolicy());
        if (CompareBooleans(a, b) == true) {
             System.Out.PrintLn("Sames!!!");
        }
        

        But now that I’ve written this, it’s C#, so it’s missing dependency injection.

  • mlg@lemmy.world
    link
    fedilink
    English
    arrow-up
    17
    ·
    24 days ago

    “We need to obfuscate our code to prevent reverse engineering”

    The obfuscation in question:

    • Wrench@lemmy.world
      link
      fedilink
      English
      arrow-up
      5
      ·
      24 days ago

      We affectionately called it “subscurity” on the FE team.

      When our BE apis would not give us any information why something failed, nor would they give us access to their logs. Complete black box of undocumented doodoo, and they would proudly say “security through obscurity” every time we asked why they couldn’t make improvements to usability.

      • frezik
        link
        fedilink
        English
        arrow-up
        4
        ·
        24 days ago

        You must have been working with the Redditors who told me that avoiding the use of JavaScript’s eval() to parse JSON was a false sense of security.