Tagged Questions

0
votes
3answers
41 views

Conditional comment for ‘Except IE8’ ?

I'm using <!--[if IE 8]><![endif]--> for targeting IE8, but there's some JS that I want to load for all browsers EXCEPT IE8, what conditional comment should I use? Edi …
9
votes
11answers
181 views

Are comments to show what version code was added/modified for useful?

Some of the developers on the project I work on have a habit of commenting their code to show which version of the product it was added for, e.g. // added for superEnterpriseyWond …
0
votes
1answer
17 views

special comments and pre-processing.

Is a comment of the form /*:[url=users/%id]:*/ going to be a problem with any documentation toolkits out there (especially for PHP)? Or any other comment pre-preprocessors? (Rel …
1
vote
3answers
173 views

How are C++-style comments handled in GCC 4.3.3 by default?

I'm using GCC 4.3.3 on Ubuntu 9.04 64-bit and was getting errors using C++-style comments in C code. When I say "by default" in the title, I mean simply invoking gcc test.c Accord …
7
votes
6answers
127 views

2nd or 3rd Person Comments

Do you write comments in 2nd or 3rd person? What would you prefer? // go somewhere and do something (2nd person comment) or // goes somewhere and does something (3rd person co …
0
votes
3answers
60 views

Request for comments: What should the syntax be to include code snippets in Markdown? (from external files)

I've been using Markdown recently. One of my biggest problems with Markdown is that Markdown has no syntax for including files within a document (vs., say, the listings package fo …
0
votes
3answers
43 views

Java - regular expression finding comments in code

A little fun with Java this time. I want to write a program that reads a code from standard input (line by line, for example), like: // some comment class Main { /* blah */ …
0
votes
4answers
63 views

Regex to match specific comments in code

Are there any regex experts who can help me clean up the following source code? I'm going through some existing code and I see several instances similar to the following: public …
2
votes
1answer
60 views

Google Code: Force comment on commit

I just started using Google code hosting and am a beginner at working with Subversion. I was wondering if there is a way to enforce a rule that no commits can be made without comme …
0
votes
7answers
281 views

Can you give me examples of odd single line comments in C++?

I wrote a method to remove single line comments from a C++ source file: def stripRegularComments(text) { def builder = new StringBuilder() text.eachLine { def singleComme …
0
votes
11answers
183 views

What are best practices to follow while commenting in code ? [closed]

Possible Duplicate: How do you like your comments? ( Best Practices ) What are best practices to follow while commenting code ?
0
votes
3answers
46 views

Comments within style= attributes - safe?

I am working on a CMS that generates CSS "style='xyz'" statements from user input. The user input will be validated but as an additional safeguard, I want to check the validity of …
7
votes
82answers
4k views

What’s the least useful comment you’ve ever seen?

We all know that commenting our code is an important part of coding style for making our code understandable to the next person who comes along, or even ourselves in 6 months or so …
27
votes
57answers
3k views

When NOT to comment code

What are your "favourite" overuses / misconceptions about commenting the code? Why do you sometimes think commenting is a pain? What arguments would you use to convince others that …
0
votes
2answers
61 views

[C++] Where are doxygen comments appropriate/necessary?

I don't have much experience with documentation tools like doxygen, so I'm not sure exactly how in-code documentation should look. Should I write doxygen-style comments for each m …

1 2 3 4 5 19 next
15 30 50 per page