38
votes
47answers
2k views
What’s the best name for a non-mutating “add” method on an immutable collection?
Sorry for the waffly title - if I could come up with a concise title, I wouldn't have to ask the question.
Suppose I have an immutable list type. It has an operation Foo(x) which …
37
votes
15answers
2k 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 fo …
29
votes
26answers
2k 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 quer …
18
votes
16answers
4k views
How to come up with a fun project name?
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 …
18
votes
7answers
601 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 hig …
15
votes
12answers
543 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 …
15
votes
5answers
1k 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 …
13
votes
24answers
1k 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 lau …
10
votes
5answers
519 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 …
10
votes
8answers
1k views
What is an Average that does not include outliers?
What do you call an Average that does not include outliers?
for example if you have a set:
{90,89,92,91,5} avg = 73.4
but excluding the outlier (5) we have
{90,89,92,91(,5)} av …
10
votes
24answers
1k 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 meanin …
10
votes
13answers
592 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 p …
10
votes
26answers
1k 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 ( …
10
votes
83answers
3k views
What is the worst class/variable/function name you have ever encountered
Naming things well is arguably Job 1 for professional programmers. Yet we have all suffered from some bad naming choices from time to time. So just to vent a little, what are some …
9
votes
12answers
545 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 th …
