Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in coding-style

Am I immoral for using a variable name that differs from its type only by case?

Implicit conversion vs. type class

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

Checking in of "commented out" code [closed]

Where should I put @Transactional annotation: at an interface definition or at an implementing class?

What is the gain from declaring a method as static

Correct way of declaring pointer variables in C/C++ [closed]

c++ c pointers coding-style

JavaScript style for optional callbacks

Space Before Closing Slash?

html xml xhtml coding-style

Is using assert() in C++ bad practice?

c++ coding-style assert

Why do most C developers use define instead of const? [duplicate]

Is there a standard naming convention for XML elements? [closed]

Any reason to clean up unused imports in Java, other than reducing clutter?

Should commit messages be written in present or past tense? [closed]

Singular or plural for enumerations?

coding-style enumeration

Why does one often see "null != variable" instead of "variable != null" in C#?

c# coding-style

Java naming convention for static final variables [duplicate]

java coding-style

Why should a function have only one exit-point? [closed]

coding-style

In C++, is it still bad practice to return a vector from a function?

Line continuation for list comprehensions or generator expressions in python