0
votes
0answers
51 views

Handlebars - Naming Convention for Template Files

I've read through a whole lot of tutorials regarding Handlebars but all of them seem to focus on rather small applications, where the templates are defined within appropriate <script/> tags in ...
1
vote
1answer
51 views

Naming conventions for parameters in Objective-C

When naming parameters in Objective-C, does it matter -that is, it is advisable for documentation / legibility - if I use the same name for similar methods? For example: @interface Zookeeper : ...
1
vote
1answer
66 views

camelCase methods, under_score method parameters

Here's a function declaration that belongs to PHP's PDOStatement class: public function bindValue ($parameter, $value, $data_type = 'PDO::PARAM_STR') It demonstrates something peculiar about the ...
3
votes
1answer
84 views

Using uncommon characters `$` and `_` in java Identifiers

Is there any catch in using these uncommon characters in Java identifiers? From Java Language Specification The "Java letters" include uppercase and lowercase ASCII Latin letters A-Z ...
1
vote
1answer
33 views

Adding external libraries to project

In my case I'm developing a Java web app and I want to add the Jersey JAX-RS API, but this question is general: Is there any recommended/professional/best way to add external APIs to our projects? I ...
0
votes
1answer
18 views

When is it ever appropriate to have class and instance names be identical?

I've seen times when people will have code that looks like this: class SomeClass { /* lorem ipsum */ }; int main() { SomeClass someClass; /* dolor sit amet */ } I feel ...
1
vote
2answers
112 views

Ruby on rails convention for naming date/time fields

I want to make a scaffold like this: rails generate scaffold Job started_at:datetime completed_at:datetime price:decimal paid_at:datetime estimated_completion_at:datetime comment:text I've added ...
1
vote
2answers
113 views

Python naming convention for functions returning functions [closed]

What is the Python naming convention, if any, for functions that return another function?
0
votes
4answers
97 views

If the convention in Python is to capitalize classes, why then is list() not capitalized? Is it not a class?

Often when I see class definitions class Foo:, I always see them start with upper case letters. However, isn't a list [] or a dict {} or some other built-in type, a class as well? For that matter, ...
2
votes
0answers
72 views

What is an argument name specification (for)?

Resharper proposed me to add argument name specifications changing the method call from: MyEvent(sender, e); to MyEvent(sender: sender, e: e); Have not ever seen this syntax before and ...
1
vote
0answers
39 views

Common practice to name project directory which hold support scripts, configs, docs, etc for developers

I work with small set of projects so lack of knowledge about naming convention for directory in software project file hierarchy which desired to hold project development. I look to well-known ...
2
votes
0answers
113 views

How to manage the chaos if a team drops its coding-standards (for C++ coding) [closed]

Currently our team is working largely without coding standards - supposedly we've evolved to a higher level where we don't need standards (as I hear is proposed by C++ gurus such as Herb Sutter). I ...
28
votes
3answers
933 views

Why does the STL/Boost C++ coding style differ so much from everyone elses? [closed]

So this is something that I've only just started wondering about. I'm a fairly rookie C++ programmer, but in my limited experience with the language, most standard C++ style guidelines (e.g. Google ...
0
votes
1answer
54 views

What is best file naming style for protobuf?

There is a Style Guide for Protocol Buffers. But it does not clearly say how a .proto file should be named. MyProtos.proto, my_protos.proto or my-protos.proto, which is the better name?
3
votes
3answers
161 views

c# naming convention for variables with same data but different types

I've consulted a few msdn articles that address c# coding conventions and naming guidelines (C# Coding Conventions and Naming Guidelines) as well as a similar question on stack overflow from a few ...
0
votes
3answers
204 views

What are the naming conventions of functions that return boolean? [closed]

I'm not a native English speaker, so I got confused by the naming convention of functions that return boolean. I have known the following function names are conventional: bool is_valid(); bool ...
1
vote
0answers
83 views

Variable naming conventions verifier for C/C++ [duplicate]

Possible Duplicate: A free tool to check C/C++ source code against a set of coding standards? Currently for my project, I'm using AStyle for indentation, and other issues, But I'm looking ...
3
votes
5answers
112 views

What is this high-order function called?

I'm in doubt what to call a high-order function that transforms a function so it uses an array instead of an argument-list. It's complicated to explain in words, so there's an example in JavaScript: ...
2
votes
2answers
64 views

Is there a convention for naming mutable and predicate functions in Javascript?

Is there a convention for naming mutable and predicate functions in Javascript? For example, in Ruby, Lisp, etc., functions that mutate their contents, like gsub!, usually have an exclamation point ...
1
vote
1answer
69 views

Naming convention for nested block variables (causing variable shadows warnings)

Just curious, in this example: [array1 enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) { [array2 enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) { // ...
1
vote
4answers
36 views

Naming convention - isEnable vs isDisable

Let say you are using an API and you need to set a value to enable or disable a component. Would you prefer to have: control.isEnable = true or control.isDisable = false Imo, the first one ...
0
votes
2answers
71 views

How long can variable and function names actually be in Javascript? [duplicate]

Possible Duplicate: Maximum length of variable name in JavaScript While reading on a bit of JS, I thought to myself: how long can my names be? function myNormalFuncName () {//...} ...
0
votes
0answers
13 views

Differences between “includes” and “library” for folder’s name

I hope it’s not a silly question, but I’m writing a WordPress plugin that has a parent folder with some sub-folders inside of it. I know that is a normal convention to name the parent folder such as ...
1
vote
4answers
376 views

What is the proper naming convention for instance variables? [closed]

In my introductory programming course, my teacher always uses the following naming convention when declaring instance variables in his code: public class Snowman { private Ellipse _top; ...
0
votes
3answers
107 views

Java Naming Convention for Variable Type Clarity

I'm new to core Java so I'm trying to start off in the right direction. I'm trying to determine if there is an accepted convention for using 'type abbreviations' for variable naming. For instance ...
1
vote
1answer
66 views

Insisting on “Coding Style”, “Naming Conventions” and “Documenting the Code” [closed]

I really don't know it this question fits stackoverflow and so sorry if it doesn't. I will really appreciate it if you let me know where should I ask such Qs. Working in an small company as head of ...
0
votes
1answer
36 views

What are possible pros and cons for prefixing folders with digits?

My company strongly suggests to use subfolder names prefixed by digits for larger projects. This is recorded in the companies code convention articles. This should look something like this ...
0
votes
0answers
16 views

Conventions: `foo2Bar` or `barFromFoo`? [closed]

There are lots of programs, functions and methods that convert something to something else. A common naming convention for them is foo2Bar or fooToBar for something that converts an object of type ...
0
votes
6answers
102 views

Good naming convention for getter [closed]

If I have a variable called value and if I want to write its getter, will getvalue() be a good name for the getter. Or is getValue() is better? Someone told me that the getter name should match the ...
0
votes
5answers
174 views

Class Naming Convention [closed]

As the size of my project becomes larger, I feel there should be a convention for class names that have similar functionality. Let's assume that there are three data handlers having similar ...
0
votes
2answers
31 views

name for parameter that overrides other values

it's a clean-code type question. application sends emails on appropriate addresses. but when variable X is set, it overrides all email addresses. all emails are sent to the address specified in X. ...
3
votes
3answers
119 views

Parameter naming convention in Python

For functions with closely related formal parameters, such as def add_two_numbers(n1, n2): return n1 + n2 def multiply_two_numbers(n1, n2): return n1 * n2 Is it a good idea to give the ...
2
votes
4answers
185 views

How to use Pascal Casing and Camel Casing for Short Acronyms in C#?

A short acronym is like ID or DB which has only 2 characters. How to name these when pascal casing (for Property or Class names) and for Camel Casing (input prameters, arguments)? I know each ...
0
votes
4answers
63 views

Variable pre-fixes, Visual Studio 2010 onwards? [closed]

I'm a bit bewildered on this subject, as I relate variable prefixes to being a thing of the past now, but with Visual Studio 2010 onwards (I'm currently using 2012), do people still do this and why? ...
5
votes
6answers
107 views

Java convention on reference to methods and variables

Section 10.2 of Java conventions recommends using class names instead of objects to use static variables or methods, i.e. MyClass.variable1 or MyClass.methodName1() instead of MyClass Obj1 = new ...
3
votes
5answers
217 views

Protected properties prefixed with underscores

Like: public $foo = null, $bar = 10; protected $_stuff = null, $_moreStuff = 5; A lot of people seem to do this. Why? Isn't this inconsistent naming (like some PHP ...
3
votes
4answers
148 views

Is there a common naming convention for private virtual functions in C++?

Is there a common naming convention for private virtual functions in C++? I've seen conventions such as do_something(...), something_vfunc(...), etc. Which convention is usually used in C++ projects?
3
votes
4answers
137 views

Variables Naming Conventions- var1,var2 or firstVar, secondVar?

In cases where you have 2 variables from the same type that play a similar roll, like for example a merge function of 2 arrays: IntArray merge(IntArray array1,IntArray array2); What do you think is ...
0
votes
2answers
55 views

What prefix to use for methods that create or calculate a value

I wonder what prefix you guys use for methods that create or calculate a value based on given parameters. I tend to use "get", but that feels wrong, because it looks like a getter then. For methods ...
1
vote
2answers
103 views

To follow the Symfony 2 code guidelines, should I use StudlyCase for acronyms or UPPERCASE?

In other words, should I name my class AcmeBundle\ETL\Transform or AcmeBundle\Etl\Transform? EDIT I found examples in the symfony core code to follow either case: Symfony\Component\HttpFoundation ...
0
votes
3answers
103 views

Is 'Protection' an acceptable Java class name [closed]

I'm trying my best to write good readable, code, but often have doubts in my work! I'm creating some code to check the status of some protected software, and have created a class which has methods ...
0
votes
3answers
2k views

Google's C++ style guide's file naming rules [duplicate]

Possible Duplicate: Correct C++ code file extension? .cc vs .cpp In Google C++ Style Guide, C++ source file name should end with ".cc", and file names should be all lowercase. Is ".cc" ...
2
votes
2answers
330 views

Should I use upper-case naming to declare java constant variables?

My question: Should names of constant Java variables (within methods) be upper-case? I've always been under the impression that a) if a variable is never going to change, it should be declared ...
0
votes
3answers
188 views

What are some universal “clean-coding” conventions?

Aside from language-specific constructs, for someone who is programming in PHP, javascript, java, and python, what are the top 10 clean coding must-do's? I would like to keep my code as clean as ...
1
vote
1answer
102 views

Rails naming conventions when having two relations to the same model

My question is more related to naming conventions than programmation I guess. Let's assume an application where users can create new articles (so they are the owner of these articles) and where you ...
3
votes
4answers
209 views

Naming convention for descriptors

I have a descriptor class ReferredItem(): def __init__(self, method): self.method = method def __get__(self, obj, objtype): ... I use it as decorator: class MyClass(): ...
0
votes
1answer
25 views

What is the notation used in references called?

I'm trying to find out how to read/write notations like this: jQuery.getJSON( url [, data] [, success(data, textStatus, jqXHR)] ) or string http_build_query ( mixed $query_data [, string ...
2
votes
3answers
233 views

Why is “lower-case with dashes” the standard for HTML classes? [duplicate]

Possible Duplicate: Why are dashes preferred for CSS selectors / HTML attributes? Personally I use "lower-case with dashes" to format my HTML classes, which seems to be the standard these ...
0
votes
2answers
624 views

SQL Table / Sub-Query Alias Conventions

I've been writing SQL for a number of years now on various DBMS (Oracle, SQL Server, MySQL, Access etc.) and one thing that has always struck me is the seemingly lack of naming convention when it ...
0
votes
0answers
108 views

Is the [verb][noun][details] naming standard for Methods outdated within VS? [closed]

The longstanding standard for a method name is something like getEmployeeByName. I've always abided by it but have never really had a good reason to question it ... but VS has now presented one and ...

1 2 3