Top "Standards-compliance" questions

What is the "-->" operator in C++?

After reading Hidden Features and Dark Corners of C++/STL on comp.lang.c++.moderated, I was completely surprised that …

c++ c operators code-formatting standards-compliance
Can an html element have multiple ids?

I understand that an id must be unique within an HTML/XHTML page. My question is, for a given element, …

html xhtml standards-compliance
Is it valid to have a html form inside another html form?

Is it valid html to have the following: <form action="a"> <input.../> <form action="b"&…

html web-standards standards-compliance
Declaration of Methods should be Compatible with Parent Methods in PHP

Strict Standards: Declaration of childClass::customMethod() should be compatible with that of parentClass::customMethod() What are possible causes of this …

php methods standards-compliance
RegEx to parse or validate Base64 data

Is it possible to use a RegEx to validate, or sanitize Base64 data? That's the simple question, but the factors …

regex base64 standards-compliance rfc
Clean way to launch the web browser from shell script?

In a bash script, I need to launch the user web browser. There seems to be many ways of doing …

bash shell command-line standards standards-compliance
Do the JSON keys have to be surrounded by quotes?

Example: Is the following code valid against the JSON Spec? { precision: "zip" } Or should I always use the following syntax? (…

json specifications standards-compliance json5
C++ new int[0] -- will it allocate memory?

A simple test app: cout << new int[0] << endl; outputs: 0x876c0b8 So it looks like …

c++ memory-management new-operator standards-compliance
Using the correct, or preferable, not equal operator in MySQL

Which of the two (semantically equivalent) ways is preferable to test for inequality? 'foo' != 'bar' (exclamation mark and equals sign) …

mysql sql standards-compliance inequality
How to programmatically turn off quirks mode in IE8 WebBrowser control?

I want to use IE8 as a WebBrowser control in a C# application. How can I disable "quirks mode" and …

c# internet-explorer-8 webbrowser-control standards-compliance quirks-mode