Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in coding-style

Is nested function a good approach when required by only one function? [closed]

Why should I use var instead of a type? [duplicate]

Unique ways to use the null coalescing operator [closed]

How to name factory like methods?

What was the strangest coding standard rule that you were forced to follow? [closed]

coding-style

Checking for NULL pointer in C/C++ [closed]

Setting variable to NULL after free

Are there any coding standards for JavaScript? [closed]

javascript coding-style

Relational table naming convention [closed]

Check if a string contains an element from a list (of strings)

String output: format or concat in C#?

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

java c# c++ c coding-style

pythonic way to do something N times without an index variable?

Advantages of std::for_each over for loop

c++ stl foreach coding-style

Internal typedefs in C++ - good style or bad style?

c++ coding-style typedef

Should enums in C# have their own file? [closed]

c# coding-style enums

codestyle; put javadoc before or after annotation?

Why do some scripts omit the closing PHP tag, '?>'? [duplicate]

php coding-style

.toArray(new MyClass[0]) or .toArray(new MyClass[myList.size()])?

What's the correct way to sort Python `import x` and `from x import y` statements?