MadJuggla9
2[H]4U
- Joined
- Oct 9, 2002
- Messages
- 3,515
I know this is a rather odd question at first glance, but I always feel my comments are bulking my code up making it 'look hefty'. Of course when I later review it, I'm somewhat greatful; but it's usually easy stuff.
I guess you just adapt your comments to only go where your expertise extends to. I like to REALLY seperate blocks of code with full lines of commented dashes if i dwell into the later lines of the code for my functions section and other important large blocks of code, but not so much small code like:
//read a line
$line_from_socket = fread($socket_handle, 1024);
What's your practice on stuff that doesnt make 1 lick of difference in the overall output?
I guess you just adapt your comments to only go where your expertise extends to. I like to REALLY seperate blocks of code with full lines of commented dashes if i dwell into the later lines of the code for my functions section and other important large blocks of code, but not so much small code like:
//read a line
$line_from_socket = fread($socket_handle, 1024);
What's your practice on stuff that doesnt make 1 lick of difference in the overall output?