358
votes
529answers
348k 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?
1
vote
1answer
14 views
Selecting Comments by their inner xml in xpath/xsl
Hi,
Given the following xml document
<root>
<childnode0/>
<childnode2/>
<!--Comment1-->
<childnode3/>
<childnode4/>
<!--C …
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 …
2
votes
3answers
55 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. …
5
votes
6answers
259 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 …
4
votes
5answers
163 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>
…
1
vote
2answers
89 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 …
0
votes
3answers
39 views
How should page and author information be displayed in the sourcecode of html pages?
I'm creating web pages (html) every day, but I would like the pages to have a comment in the source code.
In php you can set something like this
/**
* this is the info on the pag …
0
votes
2answers
93 views
Is there a way to comment code in Notepad2?
Notepad2 is by far my most favorite editor to do quick edits to HTML, XML, etc...
One thing that would be absolutely awesome is the ability to highlight a chunk of XML and comment …
1
vote
1answer
36 views
.NET Resgen.exe file comment?
Anyone know if there is a way to add comments to a file passed to resgen.exe?
Example:
ApplicationName=Hello World
ApplicationVersion=1.0
ApplicationMaker=Hello World Maker
;Comm …
0
votes
2answers
98 views
Tag, comment, rating etc. database design
Hi i want to implement modules such as comment, rating, tag etc to my entities. What i thought was:
comments_table -> comment_id, comment_text
entity1 -> entitity1_id, entity1_te …
0
votes
3answers
168 views
Designing a comment system using ASP.NET/C#
I'm coding a comment system for an ASP.NET application written in C#. Ideally, I want something similar to what we have on Stack Overflow. Is there an existing library that would a …
0
votes
6answers
564 views
PHP/MySQL: How to create a comment section in your website.
Instead of asking 'how to use PHP/MySQL to let users affect webpages' I'll ask this, because I learn better from projects and examples.
So how would I incorporate a VERY basic com …
3
votes
12answers
327 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 an …
3
votes
1answer
132 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 yield …
