Top "Naming-conventions" questions

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

Standard conventions for indicating a function argument is unused in JavaScript

Are there any standard ways of marking a function argument as unused in JavaScript, analogous to starting a method argument …

javascript naming-conventions unused-variables
Efficient PHP auto-loading and naming strategies

Like most web developers these days, I'm thoroughly enjoying the benefits of solid MVC architecture for web apps and sites. …

php naming-conventions spl-autoload-register
Underscores or camelCase in PostgreSQL identifiers, when the programming language uses camelCase?

This has been bothering me for a while, and I can't arrive at a solution that feels right... Given an …

oop postgresql database-design naming-conventions camelcasing
ASP.NET MVC Controller Naming Pluralization

RESTful conventions indicate using plural nouns over singular objects. What is the pluralization convention for naming ASP.NET MVC controllers, …

asp.net-mvc naming-conventions pluralize asp.net-mvc-controller
Java boolean getters "is" vs "are"

I know that the convention in Java for boolean getters is include the prefix "is". isEnabled isStoreOpen But what if …

java naming-conventions boolean
_Underscores in Function Names

In a lot of languages with simple OO capability (PHP 4), or misunderstood OO capabilities (Javascript, C using function pointers, etc.), …

php javascript oop naming-conventions history
Interface naming convention Golang

I'll just post my code: /* * Role will ALWAYS reserve the session key "role". */ package goserver const ( ROLE_KEY string = "role" ) …

go interface naming-conventions naming
Valid JavaBeans names for boolean getter methods

I know most variable names will work with "is", such as isBlue(), but is "has" also a valid prefix, like …

java boolean naming-conventions javabeans
.htm or .html extension - which one is correct and what is different?

When I save a file with an .htm or .html extension, which one is correct and what is different?

html naming-conventions filenames
An Ideal Folder Structure for .NET MVC

When I started in .NET Webforms I didn't have much trouble finding a folder structure to follow since VS offered …

asp.net-mvc asp.net-mvc-2 asp.net-mvc-3 naming-conventions conventions