Spyke
lemmy.world

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.

10

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.

11
BatmanAoDreply
lemmy.world

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

7
sopuli.xyz

Don’t forget the invocation

if (CompareBooleans(a, b) == true)
85
lemm.ee

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:

58

I'm sure it was meant as a joke, not a serious criticism.

I think we can all agree that managers who have no idea what's important absolutely suck

4
OpenStarsreply
discuss.online

Which is all the easier to do when you start off with a higher number...

5

Add heavily verbose/redundant math equations that take up multiple lines with each operation saving to a new variable, then either decrease the number of variable declarations or condense/simplify the math occasionally. Repeat with each new function. Killing two metrics at once LOC and the removal of LOC for older functions. Guaranteed promotions. lol

2

I love deleting code, including my own, more than writing code. That's a killer metric imo.

4

At first, I thought the shitty methods were the joke 😱😱😱

18
lemm.ee

This is code after working 16 hours

50
Maalusreply
lemmy.world

I'd give my right hand this is a code review problem. Someone extracted a method returning true false. Then an intern came along and was told to refactor. They saw a lot of comparisons and "extracted" them.

11

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?

8

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.

30
lemmy.world

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.

22
Xanvialreply
lemmy.world

you can also use XOR operation

return (X || Y) && !(X && Y)
9

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

2
InFerNoreply
lemmy.ml

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

6
Actersreply
lemmy.world

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

8
servoboboreply
feddit.nl

Surely we could optimize the return value with a switch statement and store the result as an integer to hide the compiler warning about our clearly correct code:

internal static bool AreBooleansEqual(bool orig, bool val)
{
    int result;
    if(orig) 
    {
        if(val)
        {
            result = 0;
        }
        else
        {
            result = 1;
        }
    }
    else
    {
        if(val)
        {
            result = 1;
        }
        else
        {
            result = 0;
        }
    }
    switch (result)
    {
         case(1):
             return true;
         case(0):
             return false;
         default:
             return AreBooleansEqual(orig, val);
    }
}

New LOC: 35

4
InFerNoreply
lemmy.ml

Make the input variables nullable, then add checks if the values are null, then assign default values if they are, otherwise continue with the passed values.

2

Good idea but not feasible as that could introduce unknowns. Unfortunately making defaults when null is counterproductive as we are looking to increase LOC without introducing odd behavior and having no changes to how the overall function works. The only objective is to increase LOC.

2

Is this part of Elons "How many lines of choice have you written?" interview?

21
lemmy.ca

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

18
Serinusreply
lemmy.world

They clearly need an abstract boolean comparison factory.

19
marcosreply
lemmy.world
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.

21

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.

18

I can definitely understand why they did that but it's still very funny

5
dohpaz42reply
lemmy.world

Shoot me now. Just get it over with. I can’t anymore.

3
bdonvrreply
thelemmy.club

GitHub page of this program:

I created this in 2014, when I was learning how to program.

4
Elgenzayreply
lemmy.ml

I always figured it was a joke. I mean, it has another package called is-odd as a dependency. That's comedy

9
InFerNoreply
lemmy.ml

I noticed is-odd also has 1 dependency but I didn't dare to check what it was 😂

2
dohpaz42reply
lemmy.world

If you’re trying to suggest that it’s a nothing package that should be ignored, let me remind you that it has 641k/month in downloads, with 17m downloads total.

1

Have you seen the repository's name (or rather the name of the owner of that repository) on github?

2
mlg
lemmy.world

"We need to obfuscate our code to prevent reverse engineering"

The obfuscation in question:

17
Wrenchreply
lemmy.world

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.

5

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.

4
offspecreply
lemmy.world

To match the current behavior it should be orig != val

34
lemmy.world

I misread it as CompareBolians. No more Star Trek memes for me today.

6

I’ve asked ChatGPT to create boiler plate code and it will offer these nested functions so you can change the logic in the future. It’s not smart enough to ask why you’re doing something a particular way or suggest a better alternative.

1

can't believe they forgot to implement bool IsTrue(bool) and bool IsFalse(bool) 🙄

2
lemmy.world

You're right, this is just not oop AT ALL.

For the correct OOP solution, you would need consider whether this can be thought of as a kind of stateless leaf method, and therefore implement it as an abstract (singleton) factory, but on the other hand, if you're using a context object with the registry pattern, you should probably do this properly with IoC containers. Of course, if your object graph isn't too complex or entangled, you could always just do constructor injection but you risk manging your unit tests, so I would go cautiously if I were looking in that direction.

5
lemmy.ml

Shouldn't there be a call to the boolean comparison microservices server in there somewhere? Also, we should consider the possibility that booleans and their operators could be overloaded to do something else entirely. We might need a server farm to handle all of the boolean comparison service requests.

5

SOLVED. On reflection, @[email protected] has come up with the perfect solution - let me explain,

Parallelism

YES. We should utilise a microservices architecture so that we can leverage a fundamental distributed interconnected parallelism to these boolean comparisons which is bound to beat naive single-thread, single-core calculation hands down. Already. But it gets better.

Load balancing

Of course a load balancing microservice would be useful because you don't want one of the boolean comparison microservices accidentally taking too great a share of the computation, making the whole topology more brittle than it needs to be.

Heuristics

A boolean comparison request-comparing analytics microservice could evaluate different request distribution heuristics to the individual microservice nodes (for example targetting similar requests resolving to true/true or false/true etc versus fair-balancing-oriented server targetting versus pseudo-random distribution etc etc), and do so for randomly selected proportions of the uptime.

Analysis

The incoming boolean comparison requests would be tagged and logged for cross-reference and analysis, together with the computation times, the then-current request-distribution heuristic and the selected server, so that each heuristic can be analysed for effectiveness in different circumstances.

Non-generative AI

In fact, the simplest way of evaluating the different heuristic pragmas would be to input the aforementioned boolean comparison request logs, together with some general data on time of day/week/year and general performance metrics, into a neural network with a straightforward faster-is-better training programme, and pretty soon you'll ORGANICALLY find the MOST EFFICIENT way of managing the boolean comparison requests.

Executive summary:

Organically evaluated stochastically-selected heuristics leverage AI for a monotonically-improving service metric, reducing costs and upscaling customer productivity on an ongoing basis without unnecessary unbillable human-led code improvement costs. Neural networks can be marketed under separate brands both as AI solutions and as LLM-free solutions, leveraging well-understood market segmentation techniques to drive revenues from disparate customer bases. Upgrade routes between the different marketing pathways can of course be monetised, but applying a 3%-above inflation mid-term customer inertia fee allows for prima-facia discounts when customers seek cost reduction-inspired pathway transfers, whilst ensuring underlying income increases that can be modelled as pervasive and overriding lower bounds for the two SAAS branches, independent of any customer churn, whilst well-placed marketing strategies can reasonably be expected to drive billable customer "upgrades" between pathways, mitigating any prima-facia discounts even before the underlying monotonicity price-structuring schemas.

3

What about a factory for the factories! There's nothing more efficient than a tool making tool making tool.

3

I know. I didn't say this was OOP, I said this was your brain when you OD on OOP. While we are not dealing with objects, I'd argue that the kind of approach that would lead one to needlessly overcompartmentalise code like this is the product of having a little too much OOP.

1