0
votes
2answers
91 views
<!— --> comment brackets in PHP
I just found out you can use <!-- --> brackets in PHP to inject commands in unsecured forms. I couldn't find any information about these brackets in PHP. I know they're used in XML structures. …
0
votes
1answer
14 views
Excel comment invisible under cell
My excel comment is gone under the cell ...how to make it always on top?
1
vote
3answers
69 views
How do I render all Comments in a Rails view?
I am new to rails so go easy. I have created a blog. I have successfully implemented comments and attached them to each post. Now...I would like to display, in the sidebar, a list of the most recent …
4
votes
4answers
108 views
PHP Comment Code Help
Hi guys! I'm in the process of coding my very first blog. With the help of various tutorials, and other forums I have managed to gather a semi-working code.
Right now I have a code that takes and …
0
votes
2answers
211 views
Ugly Code: Amusing comment?
Here's a fragment of code I'm prototyping that should, by all accounts, never see the light of day. I'll refactor it and clean it up before I merge it into my project.
However, it seems to be …
6
votes
9answers
181 views
Should we be adding comments after code blocks, rather than before?
This post (When not to comment code) has a great discussion about commenting styles.
I agree with the sentiment to commenting the intent of the code ("why") rather than the "what".
It occurred to me …
0
votes
3answers
51 views
File header or general comment
Does anybody have a nice well structured starting comment for a file? I'm looking for something that looks nice, either fancy or very professional.
By general comment I mean the comment at the top of …
1
vote
2answers
42 views
To comment out matches in Vim - independent on comment leader?
Hi!
I want to comment out lines in some code I have. I have different kinds of codes, and they use different comment leaders. E.g. in latex: '%', in Fortran 90: '!' and in python: '#'. I want to …
1
vote
3answers
64 views
Is it ok for different implementing classes to throw different exception types?
If i have an interface, which i add comments to to identify that a specific exception will be thrown, is it ok for implementing classes to throw different exceptions?
A (bad) example is:
public …
6
votes
7answers
206 views
Why is the usage of “#” comments frequently discouraged in PHP?
As far as I know, there are 3 types of comments recognized by PHP:
/* A block comment */
// A single-line comment
# Also a single-line comment
However, many coding standards, for example, those of …
1
vote
3answers
79 views
Script to remove python comments/docstrings
Is there a python script or tool available which can remove comments and docstrings from python source?
it should take care of cases like
"""
aas
"""
def f():
m = {
u'x':
…
0
votes
4answers
68 views
Including commented Class declaration in implementation file
Hi All,
Everyone knows the advantages of a more readable code. So in order to make my code more readable what i do normally is include the commented class declaration in the implementation file of …
9
votes
11answers
230 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 superEnterpriseyWonder v2.5
string …
2
votes
5answers
252 views
Python: How to ignore #comment lines when reading in a file.
In Python, I have just read a line form a text file and I'd like to know how to code to ignore comments with a hash # at the beginning of the line.
I think it should be something like this:
for
…
1
vote
7answers
99 views
Comments & OpenSource software.
This may sound like a foolish question or an observation, but i have seen that most of the times when one tries to look at the opensource code, there are no comments or just one or two lines at the …
