Tagged Questions
The commenting tag has no wiki summary.
13
votes
3answers
176 views
Function commenting conventions in R
I'm fairly new to R, and I have been defining some of my own functions in script files. I'm intending for others to re-use them later, and I can't find any guides on R function commenting conventions. ...
11
votes
26answers
1k views
What is your personal approach/take on commenting?
Duplicate
What are your hard rules about commenting?
A Developer I work with had some things to say about commenting that were interesting to me (see below). What is your personal approach/take ...
9
votes
2answers
743 views
Keyboard shortcut to Un/Comment out code in Mathematica 7?
A keyboard shortcut to comment/uncomment out a piece of code is common in other programming IDE's for languages like Java, .Net. I find it a very useful technique when experimenting through trial and ...
9
votes
3answers
760 views
.NET // vs /// Comments convention
I am just checking out F#, so apologies if this is a silly question, but in the VS2008 F# CTP 1.9.6.2 'Tutorial' project, both // and /// are used for commenting code.
Is there a functional ...
8
votes
2answers
548 views
Coffeescript: How to comment? - “/* my comments */” doesn't work?
In what ways can you comment in Coffeescript? The docs say you can use 3 hash symbols to start and close a comment block
###
comments
go
here
###
I've found that I can sometimes use the ...
8
votes
2answers
126 views
javascript: what does /*@ @*/ mean?
Can someone explain how the beginning and end of the html5shim script works?
the script starts with /*@ and ends with @*/like this:
/*@cc_on(function(a,b){function ........ (this,document);@*/
...
8
votes
6answers
304 views
2nd or 3rd person comments?
Do you write comments in 2nd or 3rd person?
// go somewhere and do something (2nd person comment)
or
// goes somewhere and does something (3rd person comment)
8
votes
8answers
1k views
Best documentation system for .NET? [closed]
I've never used a documentation system before, typically using commenting by hand but I think it would be nice to do so for a new project. What do you guys/gals advise? I've heard of Sandcastle but ...
7
votes
3answers
307 views
Adding Class Descriptions To Code?
I'm finishing up a project I've been working on for a while, and am just putting on the final touches.
One thing I would like to do is add class descriptions at the top of each class file (to help ...
7
votes
4answers
724 views
Commenting C code, header and source files
I'm looking for a "best practice" to document my C code. Like in any project I have some header files ".h" and the respective source file ".c"
In the header file what kind of comment you put in? And ...
7
votes
9answers
2k 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 ...
6
votes
5answers
441 views
What is your favorite way to comment several lines in vim?
It happens more often than not that I have to comment several lines at once in vim. Methods that I know are not as fast as say TextMate way to comment lines out.
What is your favorite way to do it?
...
6
votes
7answers
868 views
Unable to find/build a commenting system similar as at Djangobook
I want to open-source my notes similarly as at DjangoBook.
I have not found any similar open-source system as at the website.
I am particularly interested in the vertical commenting system.
This ...
5
votes
3answers
3k views
How do you comment out code in Powershell?
How do you comment out code in Powershell (1.0 or 2.0)?
This is a basic question, but I couldn't find it on stackoverflow.
5
votes
2answers
136 views
Is it considered acceptable to have no comments in good Ruby code?
I'm new to Ruby but an experienced developer in various other languages.
I have recently had an opportunity to review some professionally written code written in Ruby and found absolutely no comments ...
5
votes
4answers
103 views
What are The Valid & Readable approaches to Commenting in PHP5?
In the past 2 months that I have been learning PHP, I have identified more than two styles people use to comment code! I haven't seen much consistency... which I think usually means artists at work. ...
5
votes
2answers
61 views
Website Reviewing Application/Interface
I am the technology director at a small nonprofit, and we are in the process of making a new website. We have several proposed mock-ups of different homepage designs, and need to receive input from ...
5
votes
10answers
267 views
Maintenance commenting
What special techniques you use when modifying existing code?
Eg: Say you modify a business rule inside a method. Do you mark the modified section with special comments?
Any coding/commenting ...
4
votes
4answers
84 views
Keeping track of what's in a Collection in pre-generics Java?
For a bunch of reasons that (believe it or not) are not as unsound as you may think, we are still (sigh) using Java 1.4 to build and run our code (though we plan to finally move to Java 7 by the end ...
4
votes
6answers
293 views
Dual purpose code commenting(users & maintainers)…HOW?
I am writing a C++ static library and I have been commenting with doxygen comments in the implementation files. I have never really had to care very much about documentation but I am working on ...
4
votes
2answers
1k views
What's the best way to document ExtJS code?
Is there a good way to document ExtJS classes and functions and display them in html similar to the ExtJS documentation itself? I've looked into JSdoc but this doesn't seem to work with ExtJS. Are ...
3
votes
2answers
87 views
How can i configure Vim to use PHP style auto-complete for D comments too?
When I'm coding using PHP in Vim I can create a comment block like this:
/**
* Mary had a little lamb.|
*/
When my cursor | is at the end of the sentence, I press return and get a new comment ...
3
votes
2answers
372 views
PHP Nested Comments (parent/child) [closed]
Possible Duplicate:
Display hierarchical data
I'm looking to create a nested comments system - I realise this has been covered before on SO and the net but I cant seem to get anything to ...
3
votes
5answers
85 views
process of commenting and improving already written program?
Please allow my intro to properly define the scope of my question:
I'm still very new to the programming world. This all started for me when I had an idea for a software program, but no programming ...
3
votes
7answers
406 views
PHP/C/C++ - How does your initial comment block look in your programs?
I am on a large project, and have not really made any comment 'headers' in my program yet. I just started using SVN for the project the other day. I want to add the SVN tag $id$, but have not ...
3
votes
6answers
227 views
How much to comment code sample when writing an article?
When you read a "howto"-style article with a code sample, which do you prefer:
All the code off to the side with very few comments, and a complete line-by-line breakdown in the article
OR
All ...
3
votes
3answers
304 views
How can I perform an action n-many times in TextMate ( both Emacs and Vim can do it easily! )?
Emacs: C-U (79) # » a pretty 79 character length divider
VIM: 79-i-# » see above
Textmate: ????
Or is it just assumed that we'll make a Ruby call or have a snippet somewhere?
2
votes
6answers
93 views
Commenting interpreted code and performance
I always (well try) to comment my code. I have configured my server to remove those comments/extra white space before delivery. Would it be better not to have comments in the live systems code ...
2
votes
2answers
88 views
Eclipse: How to get TODOs from SQL and XML files in tasks
In Java files I can write TODO comments and they show up in the Tasks window.
// TODO: Do something about this
However, when I write TODO comments in for example SQL scripts and XML files, they ...
2
votes
1answer
47 views
Third party commenting system
I am thinking of using a third party commenting system on one of my websites. It is developed from scratch in PHP. And I was thinking if I can use an existing third party commenting system on it. Can ...
2
votes
5answers
87 views
Is it possible to comment comments
I'm having this inconvenience while commenting. But I was wondering how you guys would do this. Lets say you have the following code:
/*Fancy function*/
function fancyFunction(){
echo "Oh yeah"
...
2
votes
1answer
68 views
Where can I find Windows Live Style comment box for Windows Phone 7?
I am looking for a nice comment box, instead of creating something with textbox and a button. Windows live photos has a nice comment box under each photo, it is one line with a small triangle on left ...
2
votes
4answers
215 views
Commenting system for RoR Blogging Platform
I'm trying to design a comment system for my RoR blogging site, and I am having some conceptual problems with the architecture. As far as models are concerned, I have Blogposts, Users, and Comments.
...
2
votes
2answers
154 views
XML Comments in C# don't show summary they show xml
I have regions and various methods within those regions. When I add XML comments to the top of the methods and collapse the xml comment it shows something like "/// ..." which is ueseless. How can ...
2
votes
7answers
172 views
When does whitespace impact on performance?
This is something I've always wondered about, so here goes.
When writing code, I was/am taught to space out lines, comment them, etc... to improve the readibility (as I guess most of us are). I ...
2
votes
0answers
229 views
Commenting system using popup login
I want to post a comment to website. Comment can be posted using normal procedure: typing name, email and comment. User can post data using Facebook account. When he does so, name and email textbox ...
2
votes
5answers
149 views
Should i use HTML comments in my email templates?
Trying to see if there are any negatives to adding HTML comments to my html emails?
Any feedback is great.
Thanks
2
votes
1answer
781 views
Open source js-kit/disqus like tool
is there any open-source and extendable tool like what js-kit/disqus provides that could be self hosted ?
1
vote
3answers
121 views
Commenting c++ codes in Vim
I want to map \c to comment the current line in vim (add '// ' to before the first non-blank to the line) and \d to delete the '// ' at the beginning of line(uncomment).
I've added these two lines in ...
1
vote
1answer
113 views
getting notification when someone comments using comments plugin
So I have an iFrame app on a fan page, which includes the comments plugin. Is there a way I/any admin can receive a notification or email every time someone adds a comment?
1
vote
2answers
37 views
blog without any server side scripting, is it a good idea?
I am planning to build a website. I can build the front end with html,css and javascript with the help of twitter bootstrap and jquery ui. Actually i have done a bit of work and it looks good to me.
...
1
vote
3answers
169 views
What is the algorithm behind nested comments?
Possible Duplicate:
How is designed/programmed the reddit comment system?
I want to learn the comment displaying algorithm behind Reddit. How is a comment related with its child and so on? ...
1
vote
2answers
135 views
Word-wrapping comments in Netbeans
/*
*
* This is a long comment. I tried to manually break it into lines, but that made it impossible to edit without screwing up the formatting. Is there a way to add line breaks automatically? I use ...
1
vote
3answers
122 views
Is this Good PHP Commenting Practice? [closed]
I am writing a PHP package library, and I'd like it to have a really good method for commenting and documenting my code. I am using this page from the Joomla CMS as an example to help me comment my ...
1
vote
2answers
62 views
Javascript/Jquery commenting causing errors in IE
So this post is not so much of a "please help me fix it" post as much as it is a "why would changing that make it work?". So I had some javascript/jquery written that was working in firefox and ...
1
vote
1answer
163 views
Is there any way to comment out text in textile?
LaTeX has %, html has <!--
Does textile have anyway of commenting out text? I couldn't find one, and it seems like it would be a nice feature to have.
1
vote
2answers
241 views
How to use Django template tags and filters with jQuery?
The problem in general is this: I have a page with content and user can comment it. Inserting comment should happen without reloading the page.
Commenting form gets handled in a view which saves the ...
1
vote
3answers
274 views
I am looking for examples of good svn commit comments
I just started own svn server to develop my application. I am learning English and I want to write comments on svn commits in English, how words, pattern and tenses should I use?
How are common words ...
1
vote
3answers
1k views
Not all the comments visible when pulling a post using Facebook graph API iphone
I searched through all the posts about Facebook graph API and didn't find anything about it.
Here's the issue.
I'm working on the iphone app for one company. And for the news section in this app, i'm ...
1
vote
2answers
174 views
Best way to show “live” comments
I want to show user comments in a grid (easy enough) but I want to show the new records as they come in as well. In theory, the user stays on this page a while, adding their own comments and viewing ...