358
votes
529answers
355k views
What is the best comment in source code you have ever encountered? [closed]
What is the best comment in source code you have ever encountered?
11
votes
8answers
3k views
Is there a way to comment out markup in an .ASPX page?
Is there a way to comment out markup in an .ASPX page so that it isnt delivered to the client? I have tried the standard comments but this just gets delivered as a comment and doesn't prevent the …
5
votes
6answers
302 views
Does the C preprocessor strip comments or expand macros first?
Consider this (horrible, terrible, no good, very bad) code structure:
#define foo(x) // commented out debugging code
// Misformatted to not obscure the point
if (a)
foo(a);
bar(a);
I've seen two …
5
votes
2answers
581 views
Comment Inheritance for C# (actually any language)
Hi All,
Suppose I have this interface
public interface IFoo
{
///<summary>
/// Foo method
///</summary>
void Foo();
///<summary>
/// Bar method
…
4
votes
5answers
173 views
Is there any tool for commenting JavaScript code?
Hi All,
Is there any tool for javascript commenting as it is in c# like ghost doc.
/// <summary>
/// Method to calculate distance between two points
/// </summary>
/// <param …
4
votes
2answers
712 views
Setting the comment of a column to that of another column in Postgresql
Suppose I create a table in Postgresql with a comment on a column:
create table t1 (
c1 varchar(10)
);
comment on column t1.c1 is 'foo';
Some time later, I decide to add another column:
alter …
3
votes
1answer
137 views
How can I reference a constructor from C# XML comment?
Dear ladies and sirs.
Is it possible to reference a constructor from a C# XML comment without resorting to the explicit prefixes (like M: or T:)?
For instance, the following yields compilation …
3
votes
12answers
341 views
Old Code in comments
How long should you keep old code commented out in your code base. The contractors continue to keep old code in code base by turning it into comments. This is really frustrating and I want them to …
3
votes
5answers
312 views
What information to put in comments at the top of a sourcecode file?
What information do you consider worth to put in the comment at the beginning of a sourcecode file?
All I could think about was the name of the author and perhaps the date the file was created …
2
votes
3answers
58 views
Commenting JavaScript functions á la Python Docstrings
It is valid JavaScript to write something like this:
function example(x) {
"Here is a short doc what I do.";
// code of the function
}
The string actually does nothing. Is there any reason, …
2
votes
2answers
258 views
How do I print a single comment in drupal?
I want to print a individual comment in drupal based on it's comment ID. How can I do this? Google and other sources have yielded me nothing. Thank you.
2
votes
3answers
1k views
How to reformat multi-line comments in Eclipse PDT?
In Eclipse PDT, Ctrl-Shift-F reformats code. However, it doesn't modify comments at all. Is there some way to reformat ragged multi-line comments to 80 characters per line (or whatever)?
i.e. …
1
vote
3answers
43 views
How do you remove a table COMMENT in MySQL?
We have a MySQL table that was altered with
ALTER TABLE t COMMENT 'foo'
we later realize that we don't want that comment. Is there a way to delete it?
simply saying
ALTER TABLE t COMMENT 'NOT …
1
vote
1answer
40 views
Selecting Comments by their inner xml in xpath/xsl
Hi,
Given the following xml document
<root>
<childnode0/>
<childnode2/>
<!--Comment1-->
<childnode3/>
<childnode4/>
<!--Comment2-->
…
1
vote
2answers
124 views
Subversion for revision history and logging on Source codes
I have tried to find some resource for Subversion how to make revision history and logging message on source code; This question might be a simple
We changed our CVS to Subversion. I am having a …
