150
votes
15answers
6k views
What is the name of this operator: “-->”?
After reading this post on comp.lang.c++.moderated, I was completely surprised that it compiled and worked in both VS 2008 and G++ 4.4. The code:
#include <stdio.h>
int main …
1
vote
1answer
29 views
Can a child influence its parent’s size in Standards mode?
Take this page for example, is it possible to insert a child into mydiv such that it will cause mydiv's height to grow beyond 500px?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML …
1
vote
1answer
168 views
Why is the XSLT disable-output-escaping not implemented in Firefox?
This is an issue that recently came up for me while writing a new XSLT for some XML generated by an application with XTHML embedded using CDATA. Normally I've been able to use disa …
0
votes
3answers
140 views
Why are JS scripts usually place in the header of a document?
Why are JS scripts usually place in the header of a document? Is it required by standards, or is it just a convention with no particular reason?
0
votes
2answers
57 views
What problems might occur if a USB device is not USB 2.0 compliant?
I have a Full Speed device that specifies the max packet size as 256 bytes. This is not USB compliant since the maxiumum packet size for a Full Speed Device should be 64 bytes. I …
0
votes
1answer
467 views
Netbeans J2ME SVG Compliance
Hello guys, I coded some svg images for a project i'm working on. But when i try to put them on a screen(form) in the netbeans software (j2me), it says "the image is not SVG Tiny c …
0
votes
2answers
42 views
Standard and Best practice in dealing with Muliple/Complex Columns with Forms
Hi,
I've want to know what is the best practice or approach in dealing with multiple and complex columns with a form inside.
here's an example of the form I'm dealing with
htt …
1
vote
3answers
79 views
Which FTP transfer modes are widely used?
Reading the FTP RFC (RFC959), I notice some modes that I've never seen used, and indeed don't seem to be implemented by popular FTP software (vsftpd for example). In particular, f …
7
votes
3answers
116 views
Can threads be safely created during static initialization?
At some point I remember reading that threads can't be safely created until the first line of main(), because compilers insert special code to make threading work that runs during …
6
votes
8answers
428 views
Difference between scanf() and strtol() / strtod() in parsing numbers
Note: I completely reworked the question to more properly reflect what I am setting the bounty for. Please excuse any inconsistencies with already-given answers this might have cre …
1
vote
4answers
112 views
Is this a valid XML?
I have a feeling this XML is not valid, can someone please explain why?
I think it has something todo this the dot i the element name?
estate_price.price_suggestion
Any thing el …
3
votes
5answers
364 views
How useful is PHP CodeSniffer? Code Standards Enforcement in General?
I'm dabbling with the idea of setting up PHP CodeSniffer on our continuous integration server in an effort to improve the quality of our code-base. After reading the documentation …
2
votes
3answers
135 views
Is it legal C++ to use a typedef in a method declaration but the canonical type in the method definition?
The GNU C++ (g++ -pedantic -Wall) accepts this:
typedef int MyInt;
class Test
{
public:
MyInt foo();
void bar(MyInt baz);
};
int Test::foo()
{
return 10;
}
void Te …
2
votes
8answers
155 views
behavior of bool with non-boolean operators
What I really want is a ||= operator.
old_value = old_value || possible_new_value;
old_value ||= possible_new_value;
The second line is a compiler error (c++ doesn't have a ||= …
11
votes
6answers
655 views
How universally is C99 supported ?
How universally is the C99 standard supported in today's compilers ? I understand that not even GCC fully supports it. Is this right ?
Which features of C99 are supported more tha …
