4

Two tipes of devs...

Comments
  • 1
  • 2
    First for life.
  • 1
    Mine depends on language 😅
  • 1
  • 1
    Second, fired a dev sometime ago for refusing to code this way....
  • 0
    @GieltjE isn't that a bit to far.. you could of just used a beautifier that whenever you open it modify it to look like that instead
  • 1
    Tbh the second is painfull to look at. How can you find this good? All the wasted lines...
  • 0
    @Maxeh exactly. And I find it just shy of repulsive to look at. There is just something so satisfying about everything about the first version.

    // indentation of "if"...
    if (condition) {
    /* ... */
    } // ... matches up with this bracket.

    if (condition)
    { //just... WHY
    /* ... */
    } /* it feels like now I have to keep track of bracket indentation for not only just closing brackets but opening ones too! */
  • 0
    The first is painfull to look at, takes to much te to precisely determine what is inside a block.
    When coding with a group adhere to a single coding style, it prevents stupid cockups and improves efficiency.
  • 2
    @GieltjE i can agree that when coding as a group, there should be a single standard established. Neatly written, beautified code with blocks indented consistently and all that such.
Add Comment