Naming conventions refer to general rules governing names assigned to programming constructs such as variables and methods. These conventions facilitate improved maintainability of code by enforcing naming consistency across disparate modules.
-4
votes
2answers
67 views
Best Practices for class naming ( Products or ProductList ) [closed]
Which one of them is better and best practice?
1:
Products or ProductList or ProductCollections
2:
Product or ShowProduct
0
votes
1answer
11 views
What are some best practises for function naming in LiveCode (RunRev)
In the spirit of LiveCode's move towards open source, I have been working on writing some library stacks that would be very useful to the community. I have written libraries on game scoring systems, ...
-2
votes
0answers
56 views
c and c++ naming convention [closed]
I've been trying to standardize my function (and variable) naming conventions in c and c++. I wanted to take a sort of poll, and see what naming conventions people here used. What are your naming ...
0
votes
1answer
36 views
How to deal with the naming convention gap between the frontend (camelCase) and the backend (lower_case_with_underscores)?
The current project that I am working on uses angularjs/javascript for its frontend and django/python for its backend. The combination of the frameworks/languages that I chose works out pretty well, ...
0
votes
2answers
41 views
Is the method naming for property getters/setters standardized in IL?
I have the following two methods that I am wondering if they are appropriate:
public bool IsGetter(MethodInfo method)
{
return method.IsSpecialName
&& ...
0
votes
1answer
18 views
Naming string variables which point to files and directories [closed]
This is the kind of question where if you ask 10 people, you'll get 10 answers, but I'm trying to work out how best to name the following variables:
Variable 1) A string which points to a folder ...
0
votes
1answer
70 views
Java logging: is it log or logger? [closed]
Every now and then I run across code that looks like this:
private final Logger log = LoggerFactory.getLogger(MyClass.class);
Let's assume this is an slf4j logger object. If one uses Apache Commons ...
2
votes
2answers
42 views
When to use the Y-Namespace
Is there a generally accepted convention among ABAP developers when to use the Y-Namespace and when to use the Z-Namespace for customer repository objects?
0
votes
2answers
48 views
Python module names starting with numerals [duplicate]
When I try to import a module in python(.py file) it gives a syntax error. The module name starts with a numeral. Is that the reason for the syntax error?
0
votes
1answer
23 views
Yii: Naming relations and fields
I wrote some Yii code with the same name for a DB field and a relation:
public function relations()
{
return array(
'kin' => array(self::BELONGS_TO, 'Kin', 'kin'),
'child' ...
2
votes
2answers
36 views
In Ruby, what are the naming conventions for mixins when there is no proper english “<verb>able”?
Example: I have a Person class and a Role class. I want to extract the role functionality from both Role and Person into a mixin. I get two mixins: Actable to be included in Role and Adaptable for ...
1
vote
2answers
34 views
Ruby naming conventions? [closed]
For instance, for constants, is it:
THIS_CONSTANT
This_Constant
ThisConstant
Or something else...?
In fact, is there any sort of (quasi|)official reference for this whole subject?
I'd also like ...
3
votes
1answer
86 views
IntelliSense do not work with extension method when property name is the same as class name
Based on this answer: " Giving a property the same name as its class ", I've started to use property names the same as their class names. But recently I've met a strange corner case and I don't know ...
0
votes
5answers
85 views
Class name convention in java [closed]
What is the naming convention of classes in java, for example should all classes be in upper case like MYCLASS.java ?
as some classes like com.sun.org.apache.bcel.internal.generic. ANEWARRAY. can be ...
4
votes
3answers
122 views
Why is the C++ STL set container's count() method thus named?
What it really checks for is contains() and not the count of the number of occurrences, right? Duplicates are not permitted either so wouldn't contains() be a better name than count()?
0
votes
2answers
23 views
Naming constants on a boilerplate class
I'm creating a boilerplate class to use on every wordpress plugin i create . (Mods feel free to edit if "boilerplate" is not the correct way to call this). I have some constants that I use on all my ...
2
votes
1answer
32 views
image naming convection for ipad mini
I have a question about image naming conventions in universal apps, especially for ipad mini.
I am developing a universal App across iphone 4s, ipad 3 (i.e., ipad with retina), and ipad mini. I have ...
0
votes
0answers
46 views
What does it mean when a definition is surrounded by asterisks? [duplicate]
I see definitions in clojure code that are named like *ns* and I don't know what that means. What does it mean when there are two asterisks surrounding a definition name?
0
votes
1answer
25 views
EL can't handle a single character before an underscore?
I am using EL to pull an object from a bean stored in the session.
The object is question is called P_COV_MOULT and is declared as follows:
this.P_COV_MOULT = new FormField("F_B_P_COV_MOULT","");
...
0
votes
2answers
17 views
maven - Help me understand the tag naming relevance
I needed to add a MainClass to the manifest file in the jar that is generated by the maven. Searching on SO and else-where shows several options- 2 of those are
Approach 1 : Add to ...
0
votes
3answers
33 views
What does a percentage symbol mean as part of a variable name?
I'm just looking at some VB.NET code and I came across this:
Dim var%
Later var is set to 0.
What's the purpose of the percent sign (%)?
(Google and SO search failed me)
4
votes
1answer
40 views
In the source files of an Eclipse plug-in, why are a lot of variables prefixed with “f”?
I'm going through the source code for Eclipse plugins (right now I'm exploring the class TextMergeView) and I notice ALOT of variables are given the starting letter f.
I know that we often give ...
5
votes
9answers
199 views
Would you call it level or depth?
Which word would you pick to label the absolute stack level of an element—in other words its degree of nesting relative to the root/document element?
Between level and depth which one would you ...
0
votes
2answers
61 views
How to name my packages
I worked with object oriented programming for a while now and I also used packages a few times.
But I really wonder if there is an easy way to choose the package names? I know the MVC-Pattern, which ...
0
votes
1answer
25 views
z3 variable naming standards
Is it that z3 doesn't allow variables starting with
__*
After I run the following code in python
__a = BitVec('__a', 3)
Program terminates due to some error but doesn't give the reason ...
0
votes
2answers
31 views
Naming convetion when using hibernate
Me and my team are building java EE app as a school project and we've decided to use hibernate. We also want to make the whole project as nice and clean as possible, so we're trying to follow ...
2
votes
2answers
32 views
Mixing REST API plural and singular for different resources?
Plural form for REST api is more natural and more used e.g. /api/users or api/users/123.
But for some resources is not natural e.g.:
/api/login - log in exact one user
/api/profile - get profile ...
0
votes
1answer
48 views
In a web project, what is the difference between a dist and build directory (traditionally)?
Am I correct in thinking, a dist directory and a build directory are both production directories that contain the files that need to be deployed to the web server.
Which to use?
A dist directory ...
1
vote
2answers
44 views
What does it mean when a css property starts with a dash?
I just downloaded a css file from this website and it contains properties such as -webkit-transform and -moz-transform. What does the dash mean and under what circumstances is it required?
For the ...
2
votes
0answers
35 views
Naming convention for a property setter that change two properties values in python
I have a class with two properties, when i set a new value for foo i want that the value
of bar also change, so i can go with something like this:
class MyClass(object):
_foo = ''
_bar = ''
...
0
votes
0answers
81 views
Namespacing events in Javascript/AngularJS?
I'm wondering if is there a naming convention to namespacing events with AngularJS?
jQuery defines its convention as it (event.namespace): http://docs.jquery.com/Namespaced_Events
I've seen some ...
-1
votes
1answer
41 views
Python Boolean method naming readability [closed]
Which of these ways is more readable for Boolean Method in Python?
document.is_editable
document.editable
document.has_editable
document.can_be_editable
document.can_edit
0
votes
1answer
41 views
What is a name that can represent both a file or directory?
I am naming some variables in my code and I am trying to avoid naming things such as nameOfFileOrFolder or pathOfFileOrFolder. What is a good name or way to represent both of them? Does one exist?
...
0
votes
0answers
52 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 ...
2
votes
1answer
57 views
Naming convention for number range
What are some possible ways to name a variable representing a range of numbers? For example, I am working on a metrics application that displays the age of certain items in a person's queue. They are ...
0
votes
1answer
21 views
What's the correct name for the data structure (object) representing collection of GPS tracks
I want to implement, for personal use, an object representing a structured collection of GPS data.
Currently, there are a lot of file formats to represent this data, all of them with some minor ...
3
votes
1answer
45 views
Is there a python naming convention for avoiding conflicts with standard module names?
PEP 8 recommends using a single trailing underscore to avoid conflicts with python keywords, but what about conflicts with module names for standard python modules? Should that also be a single ...
1
vote
1answer
85 views
How to name a Class whose only purpose is to return a Boolean
I have a class whose sole responsibility is to tell me if a remote command has returned yes or no and I'm not sure how to name it.
More specifically, my application is a front end for a collection of ...
2
votes
2answers
101 views
Using UNNEST with a JOIN
I want to be able to use unnest() function in PostgreSQL in a complicated SQL query that has many JOINs. Here's the example query:
SELECT 9 as keyword_id, COUNT(DISTINCT mentions.id) as total, ...
3
votes
1answer
164 views
What are the naming conventions for Mac and iOS frameworks?
Or put another way:
What are the 'Kit', 'Toolbox', 'Core', and 'Foundation' prefix/suffix naming conventions in Mac and iOS frameworks?
Going through Apple's frameworks these prefixes and suffixes ...
0
votes
1answer
30 views
Any way to enforce naming standards in android?
I am aware of http://omnidroid.googlecode.com/svn/tools/Eclipse_Formatter-ITP_Conventions.xml that can be imported into my Android projects Formatter , but it doesn't enforce naming convention ...
0
votes
1answer
44 views
To put space before method signature or not?
I would like to know what the overall recommendation is for whitespace between a method's name and its parameters.
That is, the general preference between the following two lines:
public static void ...
2
votes
1answer
88 views
How should I name classes? Is this name too long or unnecessarily long? [closed]
I have the following top-level package: "com.gmail.email.aviersproject".
In this top-level package I have the class containing my main method and a package ".summonerdata".
My question is what I ...
0
votes
3answers
48 views
In MVC dotnet, should the model class name must be same as database name?
I was going throught this example in this site,
http://www.w3schools.com/aspnet/mvc_models.asp
(see "Note" after the code in the page. )
In MVC dotnet, should the model class name must be same as ...
1
vote
0answers
32 views
File names conventions in glibc/math?
If we look to the directory math of the C library glibc, we have the following files :
atest-exp2.c
atest-exp.c
atest-sincos.c
basic-test.c
bits
bug-nextafter.c
bug-nexttoward.c
bug-tgmath1.c
cabs.c
...
0
votes
0answers
35 views
Grails package naming conventions
I am new Groovy/Grails and I want to make sure I understand the naming conventions behind packages.
So since I work for a college whose website address is mssu.edu, my class names need to be ...
5
votes
10answers
413 views
Is there a difference between int *x and int* x in C++? [duplicate]
I'm getting back into my C++ studies, and really trying to understand the basics. Pointers have always given me trouble, and I want to make sure I really get it before I carry on and get confused down ...
0
votes
1answer
29 views
Cakephp automatically filled form select for two word named belongTo model
What is right naming or what am I missing to get automagic run for two word named Model. Actual model belong to the two words named model.
Exact example:
Tour belongs to Accommodation type.
in ...
2
votes
2answers
101 views
Table or column name cannot start with numeric?
I tried to create table named 15909434_user with syntax like below:
CREATE TABLE 15909434_user ( ... )
It would produced error of course. Then, after I tried to have a bit research with google, I ...
-1
votes
2answers
47 views
Naming a Package in Java after an e-mail address, when said e-mail address contains periods before the “@” symbol [closed]
As I'm sure we all know, one can name packages for their Java products by purchasing a domain name like "somedomain.org", in which case the packages would follow the "org.somedomain.packagename" ...




