Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in coding-style

Ratio of real code to supporting code

What is the preferred way in C++ for converting a builtin type (int) to bool?

c++ coding-style boolean

New line at the end of source code

Ternary operator should not be used on a single line in Node.js. Why?

Are there issues using Dim foo As Foo in VB.NET?

x or y: acceptable idiom, or obfuscation?

Why is the use of a constant considered better programming style than the use of a literal?

c coding-style

Java calling methods on instance variable

java coding-style

Is it common to declare const pointers in C++?

c++ coding-style

Origin of discouraged perl idioms: &x(...) and sub x($$) { ... }

perl coding-style

Tool that shows unit dependencies for Delphi 2010 or Delphi 7 program

Excel c# convert cell to percentage

c# excel coding-style range

Try/Catch Use Convention(s)

Change default position of "{" in VS2010?

Is "using std::begin;" a good practice?

How to avoid duplicating logic on two similar WinForms?

c# .net coding-style

Should I use string constants or string literals

.net string coding-style

Pimp my Perl code

What's the more elegant way to declare a const in C# [duplicate]

c# coding-style constants

if(null!=variable) why not if(variable!=null)

java coding-style