Tagged Questions
The naming tag has no wiki summary.
87
votes
14answers
4k views
Why are we using i as a counter in loops?
Why are we using
for (int i = 0 ; i < count ; i++){ }
Why the i?
Why not
for (int a = 0; a < count; a++){ }
I do it, you do it, everyone does it, but WHY?
*Edit
I found out an old ...
55
votes
29answers
5k views
What is the opposite of 'parse'?
I have a function, parseQuery, that parses a SQL query into an abstract representation of that query.
I'm about to write a function that takes an abstract representation of a query and returns a SQL ...
54
votes
12answers
2k views
Naming Classes - How to avoid calling everything a “<WhatEver>Manager”?
A long time ago I have read an article (I believe a blog entry) which put me on the "right" track on naming objects: Be very very scrupulous about naming things in your program.
For example if my ...
50
votes
18answers
49k views
How to come up with a fun project name? [closed]
I was thinking, that all of my projects have boring names. For example, if making a math library, I'd call it math. Sometimes, I would add a prefix with my initials, so it'd become pmmath or ...
37
votes
6answers
4k views
What's the use/meaning of the @ character in variable names in C#?
I discovered that you can start your variable name with a '@' character in C#.
In my C# project I was using a web service (I added a web reference to my project) that was written in Java. One of the ...
27
votes
7answers
3k views
What's the best approach to naming classes?
Coming up with good, precise names for classes is notoriously difficult. Done right, it makes code more self-documenting and provides a vocabulary for reasoning about code at a higher level of ...
25
votes
24answers
4k views
How do you choose your project codename?
We use code names to name branches and to have an easy way to reference the next version, before Marketing has decided what number or even name to give it when it is officially launched.
I have used ...
23
votes
12answers
2k views
C# .NET instance variable naming convention?
I'm doing a small internship at a business and in their code I find classes that are named like this:
public class FlagsConfig
{
private static FlagsConfig _instance;
}
Is the _instance a ...
22
votes
11answers
2k views
Source control vs. Revision Control?
Which is the correct name for a system which stores versions of source code, like SVN or TFS?
I've always called it source control, but places like Wikipedia calls it revision control?
To make this ...
19
votes
24answers
2k views
How to name variables
What rules do you use to name your variables?
Where are single letter vars allows?
How much info do you put in the name?
how about for example code?
what are your preferred meaningless variable ...
18
votes
12answers
730 views
Will bad things happen to me if I name my arrays, collections, lists, enumerables, etc. just the plural of what they contain?
I have always thought it was "best practice" to be explicit in naming my collection variables. So, if I had a collection of Car objects, I would typically name a Car[] carArray and a List<Car> ...
17
votes
5answers
4k views
What is AM/PM called?
I know what AM/PM stand for (ante-meridiem and post-meridiem), but what are they called?
For example, if I want a user to be able to select a time from drop down boxes with values 1-12, 00-60, and ...
16
votes
2answers
272 views
What is the reason function names are prefixed with an underscore by the compiler?
When I see the assembly code of a C app, like this:
emacs hello.c
clang -S -O hello.c -o hello.s
cat hello.s
Function names are prefixed with an underscore (e.g. callq _printf). Why is this done ...
15
votes
5answers
1k views
Why are x86 registers named the way they are?
For example, the accumulator is named EAX and, while the instruction pointer is called IP. I also know that there are bytes called CL and DH. I know there must be a convention to all of the names, ...
15
votes
8answers
1k views
Parameter naming: filename or fileName?
I try to be grammatically correct in my naming*. I've always used filename instead of fileName. The java convention also seems to use this, but FxCop prefers fileName.
There's a discussion on ...
15
votes
27answers
2k views
Do you use “kibibyte” as a unit of measurement in your programs?
For decades, in the field of computing (except disk manufacturers), a KB (kilobyte) was understood to mean 1024 bytes. In the past few years, there has been a movement to use KiB ("kibibyte") to mean ...
14
votes
6answers
774 views
Is the word “Helper” in a class name a code smell?
We seems to be abstracting a lot of logic way from web pages and creating "helper" classes. Sadly, these classes are all sounding the same, e.g
ADHelper, (Active Directory)
AuthenicationHelper,
...
14
votes
24answers
5k views
What naming convention do you use for member variables?
What do you use to denote a member variable in a class?
The most common time this is a problem is when you have a parameter passed into a constructor to set a member variable. Here is an example:
...
13
votes
1answer
137 views
What is the name of this generalization of idempotence?
Lots of commonly useful properties of functions have concise names. For example, associativity, commutativity, transitivity, etc.
I am making a library for use with QuickCheck that provides shorthand ...
13
votes
9answers
298 views
Programmers dictionary/lexicon for non native speakers
I'm not an English speaker, and I'm not very good at English. I'm self thought. I have not worked together with others on a common codebase. I don't have any friends who program. I don't work with ...
12
votes
8answers
985 views
What does “o” mean as a variable prefix?
in oCn? What is the rule?
using(SqlConnection oCn = new SqlConnection(
"Server=(local);Database=Pubs;User ID=TestUser1;Password=foo1;")) {
oCn.Open();
...
}
I found that ...
12
votes
4answers
5k views
iPhone Application Name Availability
Is there a way to check whether an iphone application name is available to use? Would a search on iTunes and checking to see if there is an existing application already out there be indicative that an ...
12
votes
13answers
830 views
Naming your projects: does it matter?
I work on a variety of projects using different languages and platforms. Parts of them I abstract out into their own separate projects, and I want to open some of these up to the public.
What gets me ...
10
votes
3answers
192 views
How to deal with a proprietary Python package name conflicting with a public one?
Background
The group I work with has been using and developing a Python package, which for the purposes of this question I'll call foobuilder. We serve updates for Linux systems using private RPM and ...
10
votes
7answers
275 views
Is it a common practice to re-use the same buffer name for various things in C?
For example, suppose I have a buffer called char journal_name[25] which I use to store the journal name. Now suppose a few lines later in the code I want to store someone's name into a buffer. Should ...
10
votes
8answers
405 views
What is the name of the question mark in my URL?
http://example.com/foo.aspx?foo=bar
I'm refactoring and need to name the constant which will hold only the question mark character of this string. I'm not sure what best to name the variable, as ...
10
votes
5answers
498 views
Class naming chaos
I often struggle with deciding how to name a class. Not so much because the class's purpose is unclear, but because of names like xxx*Controller*, xxx*Manager*, xxx*Info*, xxx*Helper*, xxx*Util* etc ...
10
votes
12answers
857 views
What are some class names that would signal a need for refactoring?
I came across a few articles like this one, which suggest that some words should never be used as part of a class name. When a class has one of those words in the name, it means the code should be ...
10
votes
4answers
4k views
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. When doing MVC with PHP, autoloading obviously comes in extremely handy.
...
9
votes
4answers
358 views
What should I know when choosing a namespace name?
I'm tasked with choosing a name that will in effect be the internal name of our architecture. I'm taking this responsibility seriously, as I have worked with a lot of "bad" namespaces and don't want ...
9
votes
3answers
97 views
What do we call this?
I'm wondering what do we call this kind of assignment.
<?php
class SimpleClass
{
public $var1;
public $var2;
public $var3;
public function SimpleClass()
{
...
8
votes
0answers
237 views
Do Python's `*` and `**` specifiers have a name? [closed]
Possible Duplicate:
proper name for python * operator?
* is clearly used when unpacking an arbitrary number of arguments and
** is used when unpacking keyword arguments as a dictionary.
...
8
votes
1answer
191 views
Is naming a software product the same as [someone else's] book legally problematic?
I came up with a name for a software product I'm developing. It's composed of two common English words put together (for example, Firefox, Silverlight, etc.). I Googled the name to see if it was being ...
8
votes
8answers
262 views
Non-English domain naming issues in programming
Most programming code, I imagine is written in English. But I'm curious how people are handling the issue of naming herein. A lot of programming is done within some bussiness domain, usually with well ...
8
votes
10answers
2k views
Semantic difference between “Find” and “Search”?
When building an application, is there any meaningful difference between the idea of "Find" vs "Search" ? Do you think of them more or less as synonymous?
I'm asking in terms of labeling for ...
8
votes
9answers
1k views
Should .NET Assembly names include a version number?
We currently have a heated internal debate as to whether the actual .NET assembly name should include the code's version number (e.g. CodeName02.exe or CompanyName.CodeName02.dll). Does anyone know of ...
8
votes
9answers
755 views
What is the technical term for C# or Java type languages?
This is probably a very simple question, but what is the technical term for this class of language?
They use an "intermediate" assembly type language which is sent through the JVM or CLR. They ...
8
votes
4answers
771 views
Is there a .NET function to validate a class name?
I am using CodeDom to generate dynamic code based on user values. One of those values controls what the name of the class I'm generating is. I know I could sterilize the name based on language rules ...
7
votes
2answers
185 views
LINQ: Why is it called “Comprehension Syntax”
Why is the following LINQ syntax (sometimes called "query" syntax) called "comprehension" syntax? What's being comprehended (surely that's wrong)? Or, what is comprehensively represented (maybe I'm ...
7
votes
2answers
165 views
What is “timmy whinge” all about?
The SciTE text editor has an option in its configuration files called "tab.timmy.whinge.level".
What's the story behind this name?
As I understand it, "whinge" is a British-ism for "whine" -- Google ...
7
votes
3answers
223 views
Are there human-friendly names for applicative (and friends) methods?
I've been using applicative (and alternative) a fair bit lately, and one thing that has been frustrating me is my lack of knowledge of the nomenclature. As an example, I'd like to be able to say ...
7
votes
9answers
478 views
Is naming variables after their type a bad practice?
I'm programming C++ using the underscore naming style (as opposed to camel case) which is also used by the STL and boost. However, since both types and variables/functions are named all lower case, a ...
7
votes
2answers
190 views
Naming of `pure` function in Control.Applicative
Why is the function for lifting a value into a functor named pure in Control.Applicative?
7
votes
5answers
258 views
Name for a bitmask with 1-bit set
In C and embedded, one frequently uses enumerated constants where every value is a bit mask with exactly 1-bit set. (e.g. 0x0001, 0x0002, 0x0004, etc.) Is there a standard name for this type of ...
7
votes
4answers
534 views
Is there a reason Image.FromFile throws an OutOfMemoryException for an invalid image format?
I am writing code that catches this OutOfMemoryException and throws a new, more intuitive exception:
/// ...
/// <exception cref="FormatException">The file does not have a valid image ...
7
votes
9answers
335 views
suggestions wanted: what to name a class that represents a real-life “event”
I need to define a class that represents a real-life event -- like a "movie premier", "party", etc. I will be creating a set of DB objects to store the data for each event and define relationships ...
7
votes
2answers
3k views
Naming Generic DataContracts in WCF
I am using a Generic Class as a Response Data Contract. All is good and this is streamlining the design of my WCF service significantly.
Each request is given a standard response object with the ...
7
votes
12answers
1k views
Reserved words as variable or method names
Is there any tricky way to use Java reserved words as variable or method names?
6
votes
2answers
75 views
WCF Naming Guidelines/Best Practices
What are the best practices for naming WCF endpoints and methods? What are the conventions you usually follow?
6
votes
2answers
157 views
Why can't file names in the drawable folder contain special characters or start with a capital letter?
Is there a point to these rules?