this post was submitted on 14 Aug 2025
158 points (95.4% liked)

Programmer Humor

25699 readers
1626 users here now

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

founded 2 years ago
MODERATORS
 
top 27 comments
sorted by: hot top controversial new old
[–] dohpaz42@lemmy.world 46 points 8 hours ago (4 children)

I mean aside of the variable name, this is not entirely unreasonable.

[–] shape_warrior_t@programming.dev 17 points 6 hours ago

I would certainly rather see this than {isAdmin: bool; isLoggedIn: bool}. With boolean | null, at least illegal states are unrepresentable... even if the legal states are represented in an... interesting way.

[–] Drewmeister@lemmy.world 6 points 7 hours ago* (last edited 7 hours ago) (1 children)

E: omg forget my whole comment. I agree with you that the name sucks.


I mostly don't like that role is typically an intuitive name, and now suddenly it means something I wouldn't expect. Why add confusion to your code? I don't always remember what I meant week to week, much less if someone else wrote it.

[–] dohpaz42@lemmy.world 6 points 7 hours ago

If I had a nickel for every time that happened to me, I’d still be poor, but at least I’d have several nickels. 😁

[–] normalexit@lemmy.world 2 points 2 hours ago* (last edited 2 hours ago)

Product manager: "I want a new role for users that can only do x,y,z"

Developer: "uh.. yeah. About that... Give me a few days."

[–] orgrinrt@lemmy.world 0 points 45 minutes ago* (last edited 43 minutes ago)

Yeah let’s use a union of a boolean and null to represent role, something that inherently represents more than two (…or three, I guess) different values, as opposed to something like an integer.

Even if the name is clearly misleading in this specific case, the entire choice of using a bool here is just bad because it’s almost guaranteed you’re going to expand on that in future and then you’ll just have to entirely rewrite the logic because it simply can’t accommodate more than two values (or three with the null union… 🙈), while it gives absolute zero benefits over using something more reasonable like an integer to represent the roles, or in this case, admin, not-admin and guest. Even if you’ll end up with just admin, non-admin and guest, the integer would still work great with no disadvantages in terms of amount of code or whatever. Just increased legibility and semantical accuracy.

Not to mention that there’s zero reason to combine the state of being logged in and the role in which you’re logged in in one variable… those are two different things. They will remain two different things in future too…

I mean they’re already chaining elseifs (basically matching/switching, while doing it in an inefficient way to boot 🥴) as though there were an n amount of possible states. Why not just make it make sense from the start instead of whatever the hell this is?

[–] bhamlin@lemmy.world 30 points 8 hours ago

Ah, the ol' tristate boolean switcheroo

[–] cupcakezealot@piefed.blahaj.zone 27 points 8 hours ago (1 children)

i would say why would you just not to isAdmin = true but i also worked with someone who did just this so i'll instead just sigh.

also the real crime is the use of javascript tbh

[–] Lemminary@lemmy.world 17 points 8 hours ago (1 children)

That's TypeScript. I can tell by the pixels defining a type above.

[–] Maiq@lemy.lol 3 points 6 hours ago (1 children)

Was looking at it and could not figure out why their weren't any semicolon's.

[–] ScintillatingStruthio@programming.dev 7 points 4 hours ago (2 children)

Neither Javascript nor Typescript require semicolon, it is entirely a stylistic choice except in very rare circumstances that do not come up in normal code.

[–] Lemminary@lemmy.world 6 points 4 hours ago* (last edited 4 hours ago) (1 children)

Explanation for nerdsThe reason is the JS compiler removes whitespace and introduces semicolons only "where necessary".

So writing

function myFn() {
  return true;
}

Is not the same as

function myFn() {
  return 
    true;
}

Because the compiler will see that and make it:

function myFn() { return; true; }

You big ol' nerd. Tee-hee.

[–] exu@feditown.com 1 points 1 hour ago

Common JavaScript L

[–] Maiq@lemy.lol 3 points 4 hours ago (1 children)

That's good to know. Don't know how I didn't know this. Been writing JS since 2000. Always just used them I guess. Ecmascripts look funny to me without them

[–] Lemminary@lemmy.world 2 points 4 hours ago

Same here. My brain interprets them as one long run-on sentence and throws a parsing error.

[–] tdawg@lemmy.world 19 points 8 hours ago (1 children)

This is pretty clearly just rage bait. Nothing is actually setting the value so it's undef. Moreover there isn't any context here to suggest if the state definitions are determined by some weird api or are actually just made up

[–] victorz@lemmy.world 8 points 7 hours ago* (last edited 7 hours ago) (1 children)

Troof

I mean facts. Facts is what the kids say. Facts.

[–] user224@lemmy.sdf.org 3 points 7 hours ago (1 children)
[–] obinice@lemmy.world 3 points 5 hours ago

We don't use fax machines any more grandad! It's all twoggles now! Twoggle me a nurp!

[–] jbrains@sh.itjust.works 9 points 8 hours ago (1 children)

What if role is FILE_NOT_FOUND?!

[–] foxglove@lazysoci.al 10 points 8 hours ago (1 children)

if it's 'FILE_NOT_FOUND' then the string will be read as truthy and you will get 'User is admin' logged.

[–] bjoern_tantau@swg-empire.de 21 points 7 hours ago

Ackshually three equal signs check for type as well. So mere truthiness is not enough. It has to be exactly true.

Also, everyone knows FILE_NOT_FOUND isn't a string but a boolean value.

[–] ramble81@lemmy.zip 7 points 4 hours ago (1 children)

Sadly this is (or used to be) valid in PHP and it made for some debugging “fun”.

[–] marcos@lemmy.world 6 points 4 hours ago

There are several small details that PHP won't allow, but It's valid Javascript and it's the kind of thing you may find on that language.

[–] monkeyslikebananas2@lemmy.world 6 points 8 hours ago

What the fuck

[–] 9point6@lemmy.world 6 points 8 hours ago* (last edited 8 hours ago)

role is never instantiated, so the... privileged....logs.... will never be called

Edit: Actually no logs at all, I read the null as undefined on first skim

[–] livingcoder@programming.dev 2 points 48 minutes ago

I see this every sprint.