1
vote
3answers
37 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 …
358
votes
529answers
354k 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 …
1
vote
1answer
36 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
64 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
290 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 …
0
votes
2answers
116 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 -> …
4
votes
5answers
170 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
1answer
48 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
…
1
vote
2answers
116 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
41 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
282 views
Boundary for comment box
In my java application, I need to create a comment box for the users to add comments. Moreover, I need to provide the user with the provision for resizing and dragging the comment box. For this, I …
1
vote
5answers
658 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, chronology, karma of the …
0
votes
3answers
204 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 …
