81
pepega
5y

Who does that anyway...

Comments
  • 2
    Unit tests too. Ughhhhhh
  • 5
    @tokumei I feel like beginners add too many comments on things that aren't needed then don't comment things they don't understand.

    Usually when you see shit like this:
    Print("Mass: " & Mass") // Prints mass
  • 3
    // /* */ # ; REM are all shortcuts that represent one thing:

    TODO: Remove this comment by renaming variables and methods.

    All comments must die in a fire.

    If you have to comment, be decent and comment in your methods and variables. This day and age, intellisense and compiler will handle the length. Make your CODE human readable!
  • 2
    Hahahaha, fucking comments... All the time my PRs get rejected because "you must add more comments to the new code"... Fuck that
  • 3
    I hate the fact that so many devs seem to believe that comments somehow magically make the code better.
    Comments should be written only when absolutely neccessary and only to describe why the code is there. Not what it does.
    Describe your intent by naming variables and functions properly. Not with comments.
    It's that simple.
  • 3
    @Lensflare I was writing a huge comment asserting yours, and then I remember this... Haha, an image truly speaks more than a thousand words
  • 2
    @marcorodnav This pains me in ways I cannot articulate.
  • 1
    @AmyShackles but at least the comment is accurate 😂
Add Comment