2
votes
8answers
166 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 …
0
votes
2answers
69 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 …
0
votes
5answers
93 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
50 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
196 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 …
36
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 …
5
votes
3answers
78 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 …
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 …
2
votes
4answers
91 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
77 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 …
2
votes
6answers
248 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):
…
0
votes
1answer
18 views
Is it acceptable to use role based controllers in a MVC framework
If my site has several user roles say Admin, User, Manager and there are several modules of functionality that may be used by one particular user or by all users how should I go ab …
15
votes
12answers
533 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 …
0
votes
4answers
96 views
SQL Server 2008 resolving localhost to a computer name
We're in the process of switching from Windows Server 2003 to Windows Server 2008, and we've encountered a frustrating problem:
In the old environment, some developers used sql se …
28
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 …
