3
votes
3answers
112 views
templated operator() overload C++
someone already asked this question, but the thread ended up with the original question not getting answered.
suppose you have this:
template<size_t i, class f_type>
void c …
0
votes
10answers
93 views
PHP specific - clean code, naming conventions and documentation
What are some of the best practices for clean code, naming conventions and documentation for PHP?
I see users/people saying this is a bad practice, Example:
// Create an array to …
1
vote
5answers
150 views
Is there a performance hit in using the ‘var’ keyword in C#? [closed]
Possible Duplicate:
C# ‘var’ vs specific type performance
I use the 'var' keyword extensively. A colleague told me there was a performance hit in using it, but …
4
votes
2answers
75 views
What is the reasoning behind the Makefile whitespace syntax?
G'day,
I'm revisiting Python after Michael Sparks's excellent walkthrough of Peter Norvig's Python spell checker at the SO DevDay in London.
One of the points he highlighted was …
0
votes
4answers
74 views
Why 3 equal symbols in boolean comparisons? [closed]
Possible Duplicate:
Javascript === vs == : Does it matter which “equal” operator I use?
Why do I see lots of javascript code lately with expressions that look …
0
votes
5answers
38 views
MySQL deleting multiple columns from two table
Hello. I have Two tables like this:
Table categories:
columns: id, name, parent
1, Foods, 0
2, Drinks, 0
3, FastFood, 1
4, Hamburger, 3
Table documents:
columns: id, name, catego …
0
votes
2answers
39 views
Syntax query please help me????? [closed]
Hello All,
Please can anyone tell me all the properties or methods which I can use while using the following method of HTML syntax
<%= Html.TextBox("email", "", new { maxleng …
0
votes
2answers
89 views
What’s wrong with my grammar
I try to input the following into my yacc parser:
int main(void)
{
return;
}
It looks valid to me according to what's defined in the yacc file, but I get a "syntax error" messag …
5
votes
8answers
95 views
Do you use the OUTER keyword when writing left/right JOINs in SQL?
I often see people who write SQL like this:
SELECT * from TableA LEFT OUTER JOIN TableB ON (ID1=I2)
I myself write simply:
SELECT * from TableA LEFT JOIN TableB ON (ID1=I2)
T …
0
votes
1answer
12 views
GraphViz: How to change arrowhead type?
I want to simulate non-directional graphs with .dot. To that end, I want the arrowhead type to be "none". How do I set this?
"f" -> "t" [label=2],[arrowhead=none]
"m" -> "d" …
2
votes
2answers
72 views
Adding code in constructor with alternative class syntax
type Foo =
class
inherit Bar
val _stuff : int
new (stuff : int) = {
inherit Bar()
_stuff = stuff
}
end
I want t …
1
vote
2answers
73 views
SQL Syntax question
What does the following statement mean? Is it an equivalent for TOP?
select +10 as ContentID
0
votes
1answer
46 views
VC++ Error on template inheritance
This is child's play, but I'm a bit of a vc n00b.
I get an error: error C2143: syntax error : missing ',' before '<'. on the second line of the following code:
template<int …
0
votes
7answers
309 views
What does 0x0A mean?
What does 0x0A mean in C++?
if (version < 760 || version > 760){
disconnectClient(0x0A, STRING_CLIENT_VERSION);
}
uint32_t accnumber = msg.GetU32();
std::string passwor …
6
votes
7answers
203 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, f …
