6
votes
9answers
170 views
Should we be adding comments after code blocks, rather than before?
This post (When not to comment code) has a great discussion about commenting styles.
I agree with the sentiment to commenting the intent of the code ("why") rather than the "what" …
1
vote
3answers
72 views
Script to remove python comments/docstrings
Is there a python script or tool available which can remove comments and docstrings from python source?
it should take care of cases like
"""
aas
"""
def f():
m = {
u …
0
votes
4answers
21 views
How to get info: The Author/his Comments for the last subversion revision via command line?
I can't seem to find this one!
So say someone like "Joe" (the Author) submits his code into the svn repository with the message "Fixed this bug and that bug yada yada" (his Commen …
1
vote
4answers
58 views
Is it ok for different implementing classes to throw different exception types?
If i have an interface, which i add comments to to identify that a specific exception will be thrown, is it ok for implementing classes to throw different exceptions?
A (bad) exam …
0
votes
2answers
24 views
How to make a Small system to comment on a individuals in a group in PHP?
I am building a team roster application. It takes a team class (this is a quick mockup not the actual class as my question does not pertain to it)
class Team {
function __cons …
1
vote
0answers
16 views
VS 10 mangles html comments?
Using the latest VS 10 we created html markup, then commented it with html comments. The file on disk is not mangled, but when it renders, it renders the html comment tags, then r …
1
vote
7answers
94 views
Comments & OpenSource software.
This may sound like a foolish question or an observation, but i have seen that most of the times when one tries to look at the opensource code, there are no comments or just one or …
1
vote
2answers
30 views
To comment out matches in Vim - independent on comment leader?
Hi!
I want to comment out lines in some code I have. I have different kinds of codes, and they use different comment leaders. E.g. in latex: '%', in Fortran 90: '!' and in pytho …
0
votes
4answers
67 views
Including commented Class declaration in implementation file
Hi All,
Everyone knows the advantages of a more readable code. So in order to make my code more readable what i do normally is include the commented class declaration in the imple …
0
votes
1answer
28 views
Adding my comments to the index view…Ruby on Rails
Ok...I am new to rails so this may be a stupid question but need help. I just watched and implemented Ryan Bates screencaset about setting up a blog. You can see it here http://med …
6
votes
7answers
203 views
Why is the usage of “#” comments frequently discouraged in PHP?
As far as I know, there are 3 types of comments recognized by PHP:
/* A block comment */
// A single-line comment
# Also a single-line comment
However, many coding standards, f …
2
votes
5answers
239 views
Python: How to ignore #comment lines when reading in a file.
In Python, I have just read a line form a text file and I'd like to know how to code to ignore comments with a hash # at the beginning of the line.
I think it should be something …
9
votes
11answers
229 views
Are comments to show what version code was added/modified for useful?
Some of the developers on the project I work on have a habit of commenting their code to show which version of the product it was added for, e.g.
// added for superEnterpriseyWond …
2
votes
5answers
96 views
pair programming with comments
Over the years, I've discovered that green-programmers tend to read the comments rather than the code to debug issues.
Does having one person document the other person's code (and …
1
vote
1answer
28 views
Custom comment form in CCK template
Pre-abmle: I am using MakeMeeting module to create/display meeting polls.
This module has its own Content Type and I can't get comments to show on the
screen (whether I choose to s …
