0
votes
3answers
61 views
What to call the intermediate layer of the program?
We have a program consisting of three parts. There's the backend which is the NT service handling the requests. Also there's a COM object that implements a predefined interface, is …
1
vote
4answers
45 views
naming a finance management / tracking application
I am about to start develop a finance/expenses tracking/management/statistics webapplication, somewhat similar to xpenser.com , mint.com (except bank integration), for a college pr …
2
votes
8answers
175 views
What should I name this Extension method ?
I have written an extension method for string manipulation. I'm confused what should I name it - since this will become part of the base library front-end developers in the team wi …
37
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 …
0
votes
2answers
72 views
Why name threads in .NET?
I've always been in the habit of naming my threads like this because I read sometime to do so, but it occurred to me that I've never used any debugging tool that showed a thread's …
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 …
0
votes
5answers
95 views
How do I name this simple method?
First of all, this is not really a programming question. It's more a question of "how do I satisfy McConnels naming conventions?"
I have this Delphi-application that manipulates w …
0
votes
2answers
57 views
Why ReSharper offers a variable name with a “class” suffix?
Hi guys,
I was wondering why R# offers a variable name with a "class" suffix? When I am creating an instance of a class, why would I put a class suffix of my instance? Can there b …
1
vote
7answers
235 views
How do you explain the fashionable “cool” job title names? [closed]
Since a few years I've seen job title names like
Javascript Assassin
Rails Master
PHP Guru
Python Ninja
Lisp Middle Earth Wizard
Perl Golfer
What do you think is the reason for …
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 …
5
votes
3answers
80 views
Naming decision: “Create it if it doesn’t exist” in one word
Exact duplicate of
http://stackoverflow.com/questions/1238386/function-name-for-creating-something-if-its-not-there-yet
I have a function which checks if a certain thing exists …
15
votes
12answers
541 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 …
2
votes
6answers
250 views
Is there a standard name for this function?
What would you name a function that takes a list and a function, and returns True if applying the function to all elements gives the same result?
def identical_results(l, func):
…
2
votes
4answers
92 views
What is the official name of a class that must be inherited from to instantiate?
In OOP terms what is the name of a class that is always a parent, and the class cannot be used on its own, it can only be used if a class inherits from it.
I don't need code samp …
0
votes
5answers
81 views
Designing a class with **Exceptions**
When I design a class I often have trouble deciding if I should throw an exception or have 2 func with the 2nd returning an err value. In the case of 2 functions how should I name …
