Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

agnos.is Forums

  1. Home
  2. Programmer Humor
  3. True crime

True crime

Scheduled Pinned Locked Moved Programmer Humor
programmerhumor
71 Posts 33 Posters 2 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • dohpaz42@lemmy.worldD [email protected]

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

    S This user is from outside of this forum
    S This user is from outside of this forum
    [email protected]
    wrote last edited by
    #16

    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.

    N 1 Reply Last reply
    29
    • maiq@lemy.lolM [email protected]

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

      S This user is from outside of this forum
      S This user is from outside of this forum
      [email protected]
      wrote last edited by
      #17

      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.

      maiq@lemy.lolM L E 3 Replies Last reply
      11
      • T [email protected]
        This post did not contain any content.
        R This user is from outside of this forum
        R This user is from outside of this forum
        [email protected]
        wrote last edited by
        #18

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

        M 1 Reply Last reply
        8
        • S [email protected]

          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.

          maiq@lemy.lolM This user is from outside of this forum
          maiq@lemy.lolM This user is from outside of this forum
          [email protected]
          wrote last edited by
          #19

          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

          L S 2 Replies Last reply
          2
          • R [email protected]

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

            M This user is from outside of this forum
            M This user is from outside of this forum
            [email protected]
            wrote last edited by
            #20

            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.

            1 Reply Last reply
            4
            • S [email protected]

              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.

              L This user is from outside of this forum
              L This user is from outside of this forum
              [email protected]
              wrote last edited by [email protected]
              #21

              ::: spoiler Explanation for nerds
              The 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.
              :::

              E exu@feditown.comE 2 Replies Last reply
              12
              • maiq@lemy.lolM [email protected]

                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

                L This user is from outside of this forum
                L This user is from outside of this forum
                [email protected]
                wrote last edited by
                #22

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

                1 Reply Last reply
                2
                • S [email protected]

                  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.

                  E This user is from outside of this forum
                  E This user is from outside of this forum
                  [email protected]
                  wrote last edited by
                  #23

                  Hmm, a webdev colleague said he'd normally prefer without semicolons, but used them anyways for better compile errors.

                  S 1 Reply Last reply
                  2
                  • L [email protected]

                    ::: spoiler Explanation for nerds
                    The 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.
                    :::

                    E This user is from outside of this forum
                    E This user is from outside of this forum
                    [email protected]
                    wrote last edited by
                    #24

                    That's terrifying, especially in JS where no type system will fuck you up for returning nothing when you should've returned a boolean.

                    1 Reply Last reply
                    7
                    • dohpaz42@lemmy.worldD [email protected]

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

                      N This user is from outside of this forum
                      N This user is from outside of this forum
                      [email protected]
                      wrote last edited by [email protected]
                      #25

                      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."

                      grrgyle@slrpnk.netG 1 Reply Last reply
                      2
                      • L [email protected]

                        ::: spoiler Explanation for nerds
                        The 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.comE This user is from outside of this forum
                        exu@feditown.comE This user is from outside of this forum
                        [email protected]
                        wrote last edited by
                        #26

                        Common JavaScript L

                        L 1 Reply Last reply
                        4
                        • T [email protected]
                          This post did not contain any content.
                          L This user is from outside of this forum
                          L This user is from outside of this forum
                          [email protected]
                          wrote last edited by
                          #27

                          I see this every sprint.

                          1 Reply Last reply
                          12
                          • dohpaz42@lemmy.worldD [email protected]

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

                            O This user is from outside of this forum
                            O This user is from outside of this forum
                            [email protected]
                            wrote last edited by [email protected]
                            #28

                            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?

                            D 1 Reply Last reply
                            0
                            • O [email protected]

                              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?

                              D This user is from outside of this forum
                              D This user is from outside of this forum
                              [email protected]
                              wrote last edited by
                              #29

                              This is quite reasonable, aside from the variable name which should be isAdmin. A user either is an admin, or isn't. Unless we don't know, then it's null. You are correct this is bad if the point was to represent roles, but it's not supposed to.

                              O 1 Reply Last reply
                              4
                              • exu@feditown.comE [email protected]

                                Common JavaScript L

                                L This user is from outside of this forum
                                L This user is from outside of this forum
                                [email protected]
                                wrote last edited by
                                #30

                                Not wrong, but funnily enough, it's a linting rule win. I'd go nuts if I didn't have my type checks and my linters. My current L, though, is setting up the projects initially and dealing with the configuration files if I raw dog it, but that's a problem with ESLint configs and the ecosystem as a whole having to deal with those headaches. So in the end, the JS devs got clever and shifted the blame to the tooling. 😅

                                1 Reply Last reply
                                0
                                • D [email protected]

                                  This is quite reasonable, aside from the variable name which should be isAdmin. A user either is an admin, or isn't. Unless we don't know, then it's null. You are correct this is bad if the point was to represent roles, but it's not supposed to.

                                  O This user is from outside of this forum
                                  O This user is from outside of this forum
                                  [email protected]
                                  wrote last edited by
                                  #31

                                  Admin is a role though, was my point. And besides, if you check for three different states, and you decide to go with a boolean to represent that, I really find it hard to believe anyone would think it reasonable. It’s valid and it’s practical, but can you really say it’s reasonable?

                                  I don’t do typescript, but wouldn’t a union of a null and a bool be just more resource intensive than simply using an unsigned byte-sized integer? I struggle to find reasons to ever go for that over something more reasonable and appropriate for what it attempts to represent (3 distinct states as it stands, and likely in future more than just 3 when they have a need for more granularity, as you’d often do with anything you’d need an admin role distinction in the first place), but likely I’m just not familiar with ts conventions. Happy to hear the reasoning for this though.

                                  D S 2 Replies Last reply
                                  0
                                  • O [email protected]

                                    Admin is a role though, was my point. And besides, if you check for three different states, and you decide to go with a boolean to represent that, I really find it hard to believe anyone would think it reasonable. It’s valid and it’s practical, but can you really say it’s reasonable?

                                    I don’t do typescript, but wouldn’t a union of a null and a bool be just more resource intensive than simply using an unsigned byte-sized integer? I struggle to find reasons to ever go for that over something more reasonable and appropriate for what it attempts to represent (3 distinct states as it stands, and likely in future more than just 3 when they have a need for more granularity, as you’d often do with anything you’d need an admin role distinction in the first place), but likely I’m just not familiar with ts conventions. Happy to hear the reasoning for this though.

                                    D This user is from outside of this forum
                                    D This user is from outside of this forum
                                    [email protected]
                                    wrote last edited by [email protected]
                                    #32

                                    So in a language with nullable types, are you against a boolean ever being nullable? Null means "empty, missing info". Let's say we have role variable with a enum type of possible roles. It could still reasonably be nullable, because in some scenarios you don't know the role yet, like before log in.

                                    In any use case where we need to store some boolean, it's a common occurrence that we don't have the data and it's null. It would be overkill to use an enum with True, False, NoData for these cases, where there is already a language feature made just for that, nullable values.

                                    I've never used TypeScript, just writing from experience in other languages.

                                    O 1 Reply Last reply
                                    0
                                    • T [email protected]
                                      This post did not contain any content.
                                      U This user is from outside of this forum
                                      U This user is from outside of this forum
                                      [email protected]
                                      wrote last edited by
                                      #33

                                      Same as ?

                                      std::optional<bool> role;
                                      
                                      if (role.value())
                                      { std::cerr ("User is admin");}
                                      else if (!role.value())
                                      { std::cerr ("User is not admin");}
                                      else if (!role.has_value())
                                      { std::cerr ("User is not logged in");}
                                      

                                      Here has_value() should have been checked first, but the JS seems kinda fine.
                                      Which is it?

                                      S 1 Reply Last reply
                                      2
                                      • D [email protected]

                                        So in a language with nullable types, are you against a boolean ever being nullable? Null means "empty, missing info". Let's say we have role variable with a enum type of possible roles. It could still reasonably be nullable, because in some scenarios you don't know the role yet, like before log in.

                                        In any use case where we need to store some boolean, it's a common occurrence that we don't have the data and it's null. It would be overkill to use an enum with True, False, NoData for these cases, where there is already a language feature made just for that, nullable values.

                                        I've never used TypeScript, just writing from experience in other languages.

                                        O This user is from outside of this forum
                                        O This user is from outside of this forum
                                        [email protected]
                                        wrote last edited by [email protected]
                                        #34

                                        Yeah, but if it is about being an admin or not, hence the bool, it’d be idiomatic and reasonable to assume it to be false if we have no data. Unless we want to try and allow admin access based on no data. Having three states for a simple binary state is weird. And if it is not about just being an admin or not, the bool is inherently a too limited choice for representation.

                                        D 1 Reply Last reply
                                        1
                                        • dohpaz42@lemmy.worldD [email protected]

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

                                          grrgyle@slrpnk.netG This user is from outside of this forum
                                          grrgyle@slrpnk.netG This user is from outside of this forum
                                          [email protected]
                                          wrote last edited by
                                          #35

                                          The variable name is 90% why this is so unreasonable. Code is for humans to read, so names matter.

                                          1 Reply Last reply
                                          5
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups