Stop Commenting Your Code

  • > Heavy code commenting is a symptom of bad code.

    I used to believe that comments were unnecessary for good code but eventually found this to be false.

    Now I do code annotation where every single line of code is commented.

    This allows the entire program to be read as plain english which is much faster and less mentally taxing than trying to read code.

  • No.