• Simulation6@sopuli.xyz
    link
    fedilink
    arrow-up
    30
    ·
    2 hours ago

    Figuring out what the code is doing is not the hard part. Documenting the reason you want it to do that (domain knowledge) is the hard part.

    • tatterdemalion@programming.dev
      link
      fedilink
      arrow-up
      7
      ·
      1 hour ago

      Agreed.

      And sometimes code is not the right medium for communicating domain knowledge. For example, if you are writing code the does some geometric calculations, with lot of trigonometry, etc. Even with clear variable names, it can be hard to decipher without a generous comment or splitting it up into functions with verbose names. Sometimes you really just want a picture of what’s happening, in SVG format, embedded into the function documentation HTML.

  • koper@feddit.nl
    link
    fedilink
    arrow-up
    14
    ·
    edit-2
    2 hours ago

    Why the password.trim()? Silently removing parts of the password can lead to dangerous bugs and tells me the developer didn’t peoperly consider how to sanitize input.

    I remember once my password for a particular organization had a space at the end. I could log in to all LDAP-connected applications, except for one that would insist my password was wrong. A trim() or similar was likely the culprit.

    • spechter@lemmy.ml
      link
      fedilink
      arrow-up
      11
      ·
      1 hour ago

      Another favorite of mine is truncating the password to a certain length w/o informing the user.

  • steventhedev@lemmy.world
    link
    fedilink
    arrow-up
    19
    ·
    2 hours ago

    Ew no.

    Abusing language features like this (boolean expression short circuit) just makes it harder for other people to come and maintain your code.

    The function does have opportunity for improvement by checking one thing at a time. This flattens the ifs and changes them into proper sentry clauses. It also opens the door to encapsulating their logic and refactoring this function into a proper validator that can return all the reasons a user is invalid.

    Good code is not “elegant” code. It’s code that is simple and unsurprising and can be easily understood by a hungover fresh graduate new hire.

    • traches@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      19
      ·
      2 hours ago

      Agreed. OP was doing well until they replaced the if statements with ‚function call || throw error’. That’s still an if statement, but obfuscated.

    • verstra@programming.dev
      link
      fedilink
      arrow-up
      5
      ·
      1 hour ago

      I agree, this is an anti-pattern for me.

      Having explicit throw keywords is much more readable compared to hiding flow-control into helper functions.

    • Womble@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      arrow-down
      2
      ·
      edit-2
      29 minutes ago

      Good code is not “elegant” code. It’s code that is simple and unsurprising and can be easily understood by a hungover fresh graduate new hire.

      I wouldnt go that far, both elegance are simplicity are important. Sure using obvious and well known language feaures is a plus, but give me three lines that solve the problem as a graph search over 200 lines of object oriented boilerplate any day. Like most things it’s a trade-off, going too far in either direction is bad.

  • graycube@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    50 minutes ago

    I would have liked some comments explaining the rules we are trying to enforce or a link to the product requirements for it. Changing the rules requirements is the most likely reason this code will ever be looked at again. The easier you can make it for someone to change them the better. Another reason to need to touch the code is if the user model changes. I suppose we might also want a different password hash or to store the password separately even a different outcome if the validation fails. Or maybe have different ruled for different user types. When building a function like this I think less about “ideals” and more about why someone might need to change what I just did and how can I make it easier for them.