New posts in coding-style

What open source C++ static analysis tools are available? [closed]

Coding Conventions - Naming Enums

Acronyms in CamelCase [closed]

Which comment style should I use in batch files?

Should methods in a Java interface be declared with or without a public access modifier?

Prefixing property names with an underscore in Objective C [duplicate]

What's the purpose of using braces (i.e. {}) for a single-line if or loop?

Good Haskell source to read and learn from [closed]

Declaring multiple variables in JavaScript

What kinds of patterns could I enforce on the code to make it easier to translate to another programming language? [closed]

Vim 80 column layout concerns

Why do most fields (class members) in Android tutorial start with `m`?

Is there a better way of writing v = (v == 0 ? 1 : 0); [closed]

What is the most effective way to get the index of an iterator of an std::vector?

typeof !== "undefined" vs. != null

Do you use the TR 24731 'safe' functions? [closed]

Why is it considered a bad practice to omit curly braces? [closed]

#pragma once vs include guards? [duplicate]

Why use def main()? [duplicate]

What is the purpose of wrapping whole Javascript files in anonymous functions like “(function(){ … })()”?