0
votes
2answers
30 views
Which name is more correct in my case: manager or factory (or something else)?
I have next code:
PhotoFactory factory = PhotoFactory.getFactory (PhotoResource.PICASA);
PhotoSession session = factory.openSession (login, password);
PhotoAlbum album = factory.createAlbum ();
Photo …
3
votes
3answers
764 views
Max name length of variable or method in Java
Is there a max length for class/method/variable names in Java? the JLS doesn't seem to mention that. I know very long names are problematic anyway from code readability and maintainability …
0
votes
4answers
73 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
104 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!
0
votes
3answers
65 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 …
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 …
2
votes
12answers
452 views
Reserved words as variable or method names
Is there any tricky way to use Java reserved words as variable or method names?
0
votes
1answer
122 views
How to prevent illegal file and folder name creation in Windows Server 2003 or Windows Server 2008
Preventing illegal file and Folder name creation on a Windows 2003/2008 file server is the goal. We know from articles like …
0
votes
5answers
752 views
How to generate random variable names in C++ using macros?
I'm creating a macro in C++ that declares a variable and assigns some value to it. Depending on how the macro is used, the second occurrence of the macro can override the value of the first variable. …
0
votes
2answers
74 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
179 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
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 …
3
votes
13answers
403 views
Do you prefer verbose naming when it comes to database columns?
Which is your preference?
Let's say we have a generic Product table that has an ID, a name, and a foreign key reference to a category. Would you prefer to name your table like:
CREATE TABLE …
