Tagged Questions

Standards are officially published or well agreed upon formats, procedures, or protocols. They allow individuals or organizations to collaborate but setting ground rules or boundaries. Standards often come with a set of preconditions or assumptions, which allow collaborators to take those conditions or assumptions as ground truth.

learn more… | top users | synonyms (1)

248
votes
44answers
9k views

How do you handle poor quality code from team members? [closed]

I know most people have code review and standards in place, but I work at a place with poor standards. I'm not saying that my code is flawless by any means, but I find the code my fellow members ...
109
votes
8answers
25k views

What are the rules about using an underscore in a C++ identifier?

It's common in C++ to name member variables with some kind of prefix to denote the fact that they're member variables, rather than local variables or parameters. If you've come from an MFC background, ...
96
votes
26answers
31k views

Are there any suggestions for developing a C# coding standards / best practices document?

I'm a recent AI graduate (circa 2 years) working for a modest operation. It has fallen to me (primarily as I'm the first 'adopter' in the department) to create a basic (read useful?) C# coding ...
73
votes
15answers
31k views

Is there a W3C valid way to disable autocomplete in a HTML form?

When using the xhtml1-transitional.dtd doctype, collecting a credit card number with the following HTML <input type="text" id="cardNumber" name="cardNumber" autocomplete='off'/> will flag a ...
69
votes
18answers
4k views

Where do I find the current C or C++ standard documents?

For many questions, especially for C-related ones, the answer seems to be found in "the standard". However, where do we find that - online? Googling can sometimes feel futile, again especially for the ...
64
votes
8answers
2k views

Standard use of 'Z' instead of NULL to represent missing data?

Outside of the argument of whether or not NULLs should ever be used: I am responsible for an existing database that uses NULL to mean "missing or never entered" data. It is different from empty ...
51
votes
14answers
2k views

Java getter chaining bad or good?

To prevent monster constructors and monster interfaces with oversized delegating classes, I use alot of classes that hold other objects which again hold other objects. Therefore my code looks like ...
49
votes
8answers
4k views

Non-Standard Attributes on HTML Tags. Good Thing? Bad Thing? Your Thoughts?

HTML (or maybe just XHTML?) is relatively strict when it comes to non-standard attributes on tags. If they aren't part of the spec, then your code is considered non-compliant. Non-standard attributes ...
47
votes
8answers
15k views

Are iframes considered 'bad practice'?

Somewhere along the line I picked up the notion that using iframes is 'bad practice'. Is this true? What are the pros/cons of using them?
44
votes
30answers
2k views

What are some of your most useful database standards?

I have some ideas, some that I have accumulated over time, but I really want to know what makes things go smoothly for you when modeling database: Table name matches Primary Key name and description ...
43
votes
8answers
4k views

What is currently the best way to get a favicon to display in all browsers that support Favicons?

What is currently the best way to get a favicon to display in all browsers that currently support it? Please include: Which image formats are supported by which browsers. Which lines are needed in ...
42
votes
6answers
21k views

How is the default submit button on an HTML form determined?

If a form is submitted but not by any specific button, such as by pressing Enter using HTMLFormElement.submit() in JS how is a browser supposed to determine which of multiple submit buttons, if ...
38
votes
10answers
8k views

List of standard lengths for database fields

I'm designing a database table and once again asking myself the same stupid question: How long should the firstname field be? Does anyone have a list of reasonable lengths for the most common fields, ...
33
votes
16answers
2k views

Why is `i = ++i + 1` unspecified behavior?

Consider the following C++ Standard ISO/IEC 14882:2003(E) citation (section 5, paragraph 4): Except where noted, the order of evaluation of operands of individual operators and subexpressions ...
30
votes
5answers
5k views

Normalizing Human Skin Colors for User Interaction

A while ago I came across this answer that introduced me to the obscure (at least for me) ISO 5218: a standard for representing human sexes (or is it genders? - thanks @Paul). For a pet project I'm ...
30
votes
4answers
9k views

jQuery Standards and Best Practice

I’m currently responsible for rolling out the use of jQuery to the community of Web Developers within our company. Part of this involves presenting a course, however another part involves ...
30
votes
10answers
9k views

Should I use char** argv or char* argv[] in C?

I'm just learning C and was wondering which one of these I should use in my main method. Is there any difference? Edit: So which one is more common to use?
28
votes
4answers
1k views

Is it legal to recurse into main() in C++?

I read that the C++ standard forbids recursion in main(), but g++ compiles the following code without complaint: int main() { main(); } Can anyone clarify this?
28
votes
5answers
1k views

Is `long` guaranteed to be at least 32 bits?

By my reading of the C++ Standard, I have always understood that the sizes of the integral fundamental types in C++ were as follows: sizeof(char) <= sizeof(short int) <= sizeof(int) <= ...
24
votes
4answers
1k views

Are there machines, where sizeof(char) != 1?

Are there machines (or compilers), where sizeof(char) != 1 ? Does C99 standard says that sizeof(char) on standard compliance implementation MUST be exactly 1? If it does, please, give me section ...
24
votes
14answers
2k views

How are you using C++11 today?

This is a question in two parts, the first is the most important and concerns now: Are you following the design and evolution of C++11? What blogs, newsgroups, committee papers, and other resources ...
22
votes
4answers
357 views

Array placement-new requires unspecified overhead in the buffer?

5.3.4 [expr.new] of the C++11 Feb draft gives the example: new(2,f) T[5] results in a call of operator new[](sizeof(T)*5+y,2,f). Here, x and y are non-negative unspecified values ...
22
votes
8answers
744 views

Can sizeof(int) ever be 1 on a hosted implementation?

My view is that a C implementation cannot satisfy the specification of certain stdio functions (particularly fputc/fgetc) if sizeof(int)==1, since the int needs to be able to hold any possible value ...
22
votes
13answers
1k views

Take the address of a one-past-the-end array element via subscript: legal by the C++ Standard or not?

I have seen it asserted several times now that the following code is not allowed by the C++ Standard: int array[5]; int *array_begin = &array[0]; int *array_end = &array[5]; Is ...
21
votes
4answers
396 views

Mystical restriction on std::binary_search

Problem desicription: Consider some structure having an std::string name member. For clearness let's suppose that it's a struct Human, representing information about people. Besides the name it can ...
21
votes
7answers
621 views

Why do compilers give a warning about returning a reference to a local stack variable if it is undefined behaviour?

The C++ standard states that returning reference to a local variable (on the stack) is undefined behaviour, so why do many (if not all) of the current compilers only give a warning for doing so? ...
21
votes
2answers
349 views

Should this be ambiguous or not? (implicit casts)

struct A { A(const A& src); A(const char* src); }; struct B { operator A(); operator char*(); }; void test() { B v; A s(v); } EDG/Comeau and MSVC ...
20
votes
2answers
6k views

What differences are expected of XHTML5 versus HTML5?

What differences are expected of XHTML5 versus HTML5? I understand that XHTML5 is the XML form of the language and HTML5 is the SGML form of the language, which means obvious minor syntax ...
20
votes
10answers
678 views

Why are Page Titles on some websites (including Stack Overflow) Clickable URLs?

Why on sites like Stack Overflow, Techcrunch, Smashingmagazine, etc. are the page titles (i.e. the text at the top of the page) clickable URLs that redirect to the same page that the user is on? Some ...
18
votes
2answers
550 views

Latest changes in C11

C1x has become ISO/IEC 9899:2011 aka C11. Does anyone know what changes (if any) there are in the Standard from the April 2011 draft n1570? ETA: There are the Committee minutes from London (March ...
18
votes
1answer
458 views

Why a variable can't be defined twice in 2 files in C

Why can't I have int a; in 2 C files. I intend to combine both to make executable. I know from experience that I can't, but I want to find where the standard C99 says this and seal my understanding. ...
18
votes
10answers
1k views

If transactions over REST are unachievable, how can REST ever be really useful? [closed]

When looking into REST one of the first things probably anybody will notice is there isn't any transaction semantics defined, some say this is implicitly against what REST is, whilst others say any ...
18
votes
1answer
3k views

New unicode characters in C++0x

I'm buiding an API that allows me to fetch strings in various encodings, including utf8, utf16, utf32 and wchar_t (that may be utf32 or utf16 according to OS). New C++ standard had introduced new ...
18
votes
13answers
1k views

Why do no databases fully support ANSI or ISO SQL standards?

If I were designing a oil refinery, I wouldn't expect that materials from different vendors would not comply with published standards in subtle yet important ways. Pipework, valves and other ...
17
votes
1answer
249 views

When an array is created by a subexpression, what happens with the temporaries therein?

I was reading these two paragraphs of the FDIS (12.2p{4,5}): There are two contexts in which temporaries are destroyed at a different point than the end of the full-expression. The first context ...
16
votes
2answers
377 views

double negation in C : is it guaranteed to return 0/1?

Is !!(x) guaranteed by the standard to return 0/1? Note that I am not asking about c++, where a bool type is defined.
16
votes
8answers
380 views

Standards for Date/Time addition?

I'm looking for standards for Date/Time addition. I haven't been able to find any. In particular I'm hoping to find a spec that defines what should happen when you add a month to a date like January ...
16
votes
2answers
235 views

Why is it forbidden to open multiple namespaces at a stretch?

It's possible to do using namespace foo::bar; (i.e., using the inner namespace without using the outer namespace first / at all), why does the standard forbid to do the following? namespace foo::bar ...
16
votes
3answers
267 views

Why does std::exception have extra constructors in VC++?

Something I noticed just now. Definition of exception in the standard (18.6.1): class exception { public : exception() throw(); exception(const exception &) throw(); exception& ...
16
votes
3answers
3k views

Is auto_ptr deprecated?

Will auto_ptr be deprecated in incoming C++ standard? Should unique_ptr be used for ownership transfer instead of shared_ptr? If unique_ptr is not in the standard, then do I need to use shared_ptr ...
16
votes
7answers
441 views

Is there a “canonical” name for a function combining min() and max()?

I find that I frequently end up writing a function that I always call "clamp()", that is kind of a combination of min() and max(). Is there a standard, "canonical" name for this function? It always ...
15
votes
7answers
3k views

When to use ellipsis after menu items

In pretty much all applications that have a menu bar, some of the items have an ellipsis (...) after them, and some don't. Is there a well known convention on when to put that ellipsis there and when ...
15
votes
10answers
642 views

Is it practical to build a web site using strict XHTML and relying on CSS 100% for visual style?

I tend to take the academic approach all too often and adhere to strict principles in my development when the reality is that I could have finished the project sooner had I been a little less ...
14
votes
2answers
228 views

When to use each method of launching a subprocess in Ruby

1. `` The Backtick defined in Kernel 1. a) %x{} Percent X < alternate syntax for The Backtick defined in parse.y, see discussion 2. system() Kernel#system 3. fork() Kernel#fork, ...
14
votes
4answers
710 views

Why unnamed namespace is a“ superior” alternative to static?

The section $7.3.1.1/2 from the C++ Standard reads, The use of the static keyword is deprecated when declaring objects in a namespace scope; the unnamed-namespace provides a superior ...
14
votes
2answers
6k views

<nav> or <menu> (HTML5)

W3Schools.com and I'm pretty sure I remember seeing W3C.org state that <menu> should be used for Toolbar menus and listing form control commands. So, which one should I use for my main menu? ...
14
votes
7answers
614 views

Is it okay to use “and”, “or” etc. instead of “&&”, “||”?

I'm used to the and and or keywords in C++. I've always used them and typing them is fast and comfortable for me. Once I've heard that these aliases are non-standard and may not work on all compilers. ...
14
votes
1answer
353 views

How many versions of the C++ Standards are there?

In C there's C89 and C99, what about C++? Is there any upgrade since it came out?
14
votes
8answers
477 views

ISO/IEC Website and Charging for C and C++ Standards

The ISO C Standard (ISO/IEC 9899) and the ISO C++ Standard (ISO/IEC 14882) are not published online; instead, one must purchase the PDF for each of those standards. I am wondering what the rationale ...
14
votes
4answers
436 views

Can a conforming C implementation #define NULL to be something wacky

I'm asking because of the discussion that's been provoked in this thread. Trying to have a serious back-and-forth discussion using comments under other people's replies is not easy or fun. So I'd ...

1 2 3 4 5 18