0
votes
1answer
9 views
Comment out FBML
Using <!-- fbml --> isn't working.
Is there some special way to comment out FBML?
0
votes
1answer
21 views
Text editor with comment wrapping
I usually use Geany or Hi-Tide under Debian (GNU/Linux) for firmware development, mainly C (but also reading old assembler). I document code using single-line comments, and it really annoys me when I …
0
votes
0answers
10 views
Add Comment and Reaction Count in Wordpress with Disqus plugin
Okay I'm trying to add comments and reactions count just like what you would normally see http://mashable.com/ where on the left top of each post there is ** comment and * reactions*
My problem is I …
0
votes
2answers
36 views
Collecting additional parameter Ruby on Rails…
I am building a project management app and need some help with how to pass a parameter (I think that is how you say it). Here is what I have going on.
I have a table called "proposals" and …
2
votes
8answers
104 views
C++ Automatic Comment Documentation
When I work on C# projects, I can use Microsoft's SandCastle application to generate nice, easy to read and use documentation for my entire code base. I'm curious: Does such an automagic documentation …
0
votes
2answers
47 views
ANTLR parse problem
I need to be able to match a certain string ('[' then any number of equals signs or none then '['), then i need to match a matching close bracket (']' then the same number of equals signs then ']') …
0
votes
6answers
111 views
What kind of grammar do you use for comments? [closed]
For example, for a comment describing
mq_open() {
}
Do you use the imperative
// open a message queue
or third person?
// opens a message queue
0
votes
4answers
168 views
R code examples/best practices
I'm new to R and having a hard time piecing together information from various sources online related to what is considered a "good" practice with writing R code. I've read basic guides but I've been …
1
vote
3answers
54 views
Importing text files with comments in MATLAB
Is there any character or character combination that MATLAB interprets as comments, when importing data from text files? Being that when it detects it at the beginning of a line, will know all the …
4
votes
6answers
73 views
General - Preferred commenting objective
Hello,
I highly like to comment my code for my own reference, and also since i keep (most) of my projects open-source.
I current comment as if I'm the narrator:
// Check if y is higher than x.
…
1
vote
1answer
45 views
StackOverflow: Favoriting Comments [closed]
Is it possible to "favorite" comments and have them shown in the user profile?
I know I can favorite a question, but sometimes, comments reveal a great piece of information too and it'd be great to …
0
votes
2answers
39 views
Standard change comments
I am looking for some direction as to a standard format for commenting changes in PHP. Continually while working with an assortment of developers on large scale projects, comments run wild and in most …
0
votes
2answers
34 views
Anonymous comments not saved in Drupal
For some reason I can no longer post a comment as an Anonymous user in my Drupal installation. I haven't tried in a while, so I'm not quite sure when this functionality was broken.
I have Services …
4
votes
14answers
232 views
Is it ok to put comments about bug fixes in the source code?
And if so, where do you draw the line? My coworkers and I disagree on this subject. I have seen such things as
// fixes bug # 22
to
// fixed bug: shouldnt be decrementing
i++;
Is it ok if the …
7
votes
9answers
193 views
Code Commenting: Do you put your code comments on Interfaces or on Concrete classes, or both?
What is the best practice in documenting classes and interfaces. Say if you have a concrete class called Foo, that derives from an interface called IFoo. Where do you put your comments for your …
