it took me 2.5 hour to comment my code for my new file… :S
this is just a pain 
Did you have to comment a file that was already complete?
If you’re not already, get in the habit of commenting often in your code. Personally, i comment almost every line of code. Not only does it help people read my code (including myself), but it makes it more clear what must be done next. It forces you to ask the question: “So what does this code really do in relation the rest of the program?”
I often see organizational errors after commenting my code. I might find that it’s hard to explain what the line of code does, and this is usually because it is also unclear to me what i was really doing there.
Posted 2 months ago
Yes, i agree too, to all that was said before ..
Try to comment your code when you’re writing it, because if it gets really complicated, then you will have to look a lot after a particular variable, function, etc. And if you comment ALMOST EVERY LINE , you will find errors faster.