358
votes
529answers
352k 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
24 views
Selecting Comments by their inner xml in xpath/xsl
Hi,
Given the following xml document
<root>
<childnode0/>
<childnode2/>
<!--Comment1-->
<childnode3/>
<childnode4/>
<!--Comment2-->
…
0
votes
1answer
40 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 …
2
votes
3answers
57 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, …
5
votes
6answers
276 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 …
4
votes
5answers
168 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 …
1
vote
2answers
100 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 …
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 page
* @param x
* …
0
votes
2answers
94 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 it out or uncomment …
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 …
1
vote
1answer
40 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
;CommentHere
ValueYes=Yes
…
0
votes
2answers
112 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_text
entity2 -> …
0
votes
3answers
178 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 allow me to parse …
0
votes
6answers
634 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 comment feature using …
3
votes
12answers
335 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 …
