Top "Naming-conventions" questions

Naming conventions refer to general rules governing names assigned to programming constructs such as variables and methods.

PersistenceConstructor argument variable name doesn't match instance variable name

I'm trying to persist the following object with spring-data-mongodb version 1.1.1.RELEASE: @Document public static class TestObject { private final int m_…

java naming-conventions spring-data mongodb-java spring-data-mongodb
Can anyone explain the gcc cross-compiler naming convention?

I have tried to understand the naming conventions behind the gcc cross-compilers, but there seems to be conflicting answers. I …

gcc compiler-construction naming-conventions cross-compiling
Storyboard Segue Identifier naming conventions

I'm building a large storyboard and I was wondering if anyone has come up with helpful naming conventions for segue …

naming-conventions uistoryboardsegue
JavaScript naming convention for promises?

I feel it would be useful to have a naming convention for JavaScript variables which hold a promise. I don't …

javascript naming-conventions deferred promise
Laravel Migrations Naming Convention

Is there a naming convention or guide that one should follow while naming Laravel migrations or should the name only …

php laravel naming-conventions database-migration
Glued acronyms and golang naming convention

Is there a way to make the constants below to be more readable without breaking golang naming convention? const ( // stream …

go naming-conventions acronym
instance variable/ method argument naming in Objective C

What conventions are people here following for naming of instance variables and method arguments - particularly when method arguments are …

objective-c naming-conventions coding-style prefix
Naming convention for Django URL, templates, models and views

I know there are a lot of naming conventions to build apps (name database tables in the singular, models in …

python django templates naming-conventions crud
C# naming convention for extension methods for interface

I typically name my C# interfaces as IThing. I'm creating an extension method class for IThing, but I don't know …

.net interface naming-conventions extension-methods
Naming convention for partial classes file names?

If I have partial classes in C#, what should the file names be? The class is called partial class Logic …

c# naming-conventions partial-classes