358
votes
529answers
345k 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?
2
votes
2answers
61 views
Code documentation style guidelines for Perl?
Does anyone know of a perlstyle-like guideline for how to document Perl code? Like this bit from javadoc guidelines:
"Gets the label of this button. (preferred)" vs.
"Thi …
5
votes
6answers
227 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
159 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
66 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
33 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
89 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
26 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
94 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
157 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
513 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
323 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
127 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 …
1
vote
5answers
596 views
Get all Comment ID’s within a Drupal node
I have a node in Drupal with a few comments. Is there an easyish way to get the CID of every comment within the node? Also, is there a way to sort them by various parameters, chron …
-1
votes
2answers
137 views
What is the best wiki software if the site is all about individual people
Hi Everyone
I would like to build a wiki based website about professors, so that students can share information and check the reputation of the professor before working for him.
…
