11
votes
10answers
176 views
Good Use Cases of Comments
I've always hated comments that fill half the screen with asterisks just to tell you that the function returns a string, I never read those comments.
However, I do read comments that describe why …
17
votes
4answers
264 views
Why does Amazon.com have <!— MEOW --> at the end of their landing page? [closed]
Why does Amazon.com have <!-- MEOW --> at the end of their landing page? I have heard that it is just some text that some sort of script or component looks for to tell if the entire page was …
1
vote
3answers
32 views
HTML Comments to detect IE6 and IE7
<!--[if IE 6]>
I am using IE6
<![endif]-->
That works.
How do I do "or" IE7?
2
votes
1answer
20 views
Uncomment XML using Java (DOM)
I'm trying to access an XML file using DOM. One node is already commented out. How do I uncomment it using java code?
1
vote
2answers
94 views
How to use Emacs to write comments with proper indentation, line-length, and wrapping?
I'm tired of writing comments that look like this
{
# bla bla blabla bla blabla bla blabla
# bla bla blabla bla blabla bla blabla bla blabla bla blabla bla bla
# blaaa bla
}
I have to …
3
votes
4answers
48 views
SQL function to sort by most popular content
I don't know if this is possible with SQL:
I have two tables, one of content, each with an integer ID, and a table of comments each with an "On" field denoting the content it is on. I'd like to …
6
votes
6answers
165 views
Best practice for C++ function commenting
Is there an accepted best practice for commenting functions? I only know of the doxygen style but it is not officially supported by C++ like Javadocs is for Java so just wondering what is best.
3
votes
2answers
76 views
Lack of block comments in VB .NET?
Just a question of interest: Does anyone know why there's no block comment capability in VB .NET? (Unless there really is - but I've never yet come across it.)
1
vote
1answer
30 views
Can I buy a Digg-like comment system for asp.net?
I'm looking into integrating a Digg-like comment system into a website with an existing user base.
I know there are things out there like Disqus and Intense Debate, that are meant for people to add …
0
votes
1answer
39 views
Visual Studio 2008 indenting C comment /* */
I'm new to using Visual Studio 2008 IDE. Switching from vim. Is there a way to setup Visual Studio to automatically indent C comments /* */ such as:
/*<ENTER>
I want this:
/*
* …
0
votes
1answer
45 views
Rails - embedded polymorphic comment list + add comment form - example?
Hey, all. Working on my first Rails app.
I've searched all around - read a bunch of tutorials, articles, and forum posts, watched some screencasts, and I've found a few examples that come close to …
5
votes
9answers
220 views
python equivalent of ‘#define func() ’ or how to comment out a function call in python
my python code is interlaced with lots of function calls used for (debugging|profiling|tracing etc.)
for example:
import logging
logging.root.setLevel(logging.DEBUG)
logging.debug('hello')
j = 0
for …
1
vote
2answers
45 views
jQuery AJAX POST New Line Problem
So on our site we currently have a textarea for commenting on certain items. The site uses AJAX so the user can press the button and see their message fade in (Imagine a Facebook style commenting.)
…
2
votes
9answers
84 views
Positioning of comments relative to code [closed]
What is the best way to put comments in your code? I see at least three different ways:
1:
int i = 10; //Set i to 10
2:
//Set i to 10
int i = 10;
3:
int i = 10;
//Set i to 10
The disadvantage …
0
votes
3answers
41 views
Any Method to remove comment characters from JSON response in XCode?
I am new to JSON. Are there any methods in JSON parser to remove the comment characters from a response.
Eg. //{"response":"success".......
its SBJson for iPhone.
from …
