200

It makes me so angry when they don't...

Comments
  • 11
    THIS THIS THIS
  • 11
    Originally I didn't do it, but pep8 threw a billion error saying: HEY, PUT A SPACE BEFORE YOUR COMMENT, PLSSSS, and now I'm used to it..
  • 3
    @marci010101 I just go ctrl+alt+f before push
  • 1
    I do not even know which one I'm doing 😋
  • 23
    @marci010101 you can also fix that by not commenting. Comments are a waste of time anyways *stay woke*
  • 5
    I use to put the extra space only if it is a real comment. In case of commented code I tend to avoid it, make the difference immediately recognizable
  • 1
    PEP8 Agrees. 😯
  • 4
    The first one is so ugly.
  • 2
    Why not a tab instead of a space?

    /jk
  • 4
    // Loops through array

    foreach (var item in arr)

    *shudders*
  • 1
    //yea cqn i get uuuuhhhhh
  • 1
    I actually used to do this and didn't even know it wasn't preferance before I worked at a time
  • 2
    /*
    *What about the multi-line comment?
    *When I comment a method, I do this. But code I comment like down:
    */

    //return 0;
  • 0
    // Loops through array.

    That fullstop is sorely needed. 🤓
  • 4
    Here's my guideline for comments:
  • 0
    So much YES. The // is not part of the word!

    If that makes you cringe though I work on a codebase where the author would literally only use a space when syntactically necessary. His for loops looked like this:

    for(var i=0;i<items.length;i++)//Loop through items
  • 1
    Didn’t even realize this was a debate. I didn’t even know the second one existed
  • 1
    that's so whiny
Add Comment