Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in coding-style

What is the difference between if (NULL == pointer) vs if (pointer == NULL)?

Java coding style

Is it bad style to use NullPointerException to test for null? [closed]

Java: What is considered more readable, "this" or no "this"

Python, best way to write a sum of two for loops

Conditions in loops, best practices?

java c++ loops coding-style

how do you make a For loop when you don't need index in python?

C++: When is it acceptable to have code in the header file?

c++ coding-style header

What is the difference between these two declarations?

c# coding-style

Is it bad that I don't follow PEP 8 and cut my lines at 79 characters?

python coding-style pep8

Good book on c# style? [closed]

c# coding-style

Is using labels in Perl subroutines considered a bad practice?

What is the most pythonic way to exclude elements of a list that start with a specific character?

python coding-style

Best way to write a conversion function

coding-style

Use of conditional operator to select which object calls a particular method?

do interfaces belong in files of their own

c# coding-style interface

Functional style for this Scala code

scala coding-style

Should I really use static_cast every single time I want to convert between primitive types?

why C# and C++ use _<variableName> coding convention?

c# c++ coding-style

Should I use $hash{"string"} or $hash{string} in Perl?

string perl hash coding-style