0
votes
4answers
69 views
What is the most interesting server name you have ever seen? [closed]
There's some funny kids out there writing code for production machines. I think sometimes the only way to express yourself in enterprise development is in naming things. What are the funniest, …
1
vote
5answers
97 views
What is the most interesting server name you have seen? [closed]
There's some funny kids out there writing code for production machines. I think sometimes the only way to express yourself in enterprise development is in naming things. What are the funniest, …
0
votes
1answer
18 views
What names do you use for the “Solution Platforms” in Visual Studio?
The Visual Studio Default config says: “Any CPU”, does anybody change that? If so, what would you use and why?
2
votes
5answers
85 views
Cool Class/Variable Names [closed]
What are some of the coolest/geeky class/variable names you have encountered. I'm getting bored of all the builders, factories, managers and controllers. Surely, they must have cooler counterparts!
1
vote
4answers
47 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 project and I am …
0
votes
3answers
63 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 consumed by client …
0
votes
2answers
73 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 name.
When would …
2
votes
8answers
178 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 will use. Here's the …
0
votes
1answer
22 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 about naming my …
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 word-documents. One …
0
votes
2answers
58 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 be any reason to have …
1
vote
7answers
250 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 these names? What …
5
votes
3answers
82 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, and if not, …
0
votes
1answer
39 views
What to name an object that encapsulates its identifer?
In other words, what would you call a class that has a public property that contains the identifier for that class which will uniquely identify an instance of that class within a system?
e.g.:
…
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 the exception and …
