0
votes
2answers
21 views
XCode find and replace in project problem with XIB
I wanted to rename one badly named variable to something more naturally named (UITableView myListView --> myTableView). Did that with XCode "Edit - Find - Find in project" and replaced all found 7 …
0
votes
2answers
33 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 …
0
votes
3answers
31 views
How to create a generic id reference with jQuery
I have about 6 div elements with the same class. When I mouseover any one of them I want to show a nother div next to them.
I am thinking of giving them all an id of the form id="mydiv-divname" where …
8
votes
18answers
1k views
Why can’t variable names start with numbers?
I was working with a new c++ developer a while back when he asked the question: "Why can't variable names start with numbers?"
I couldn't come up with an answer except that some numbers can have text …
4
votes
5answers
227 views
Do you use particular conventions for naming complementary variables?
I often find myself trying to come up with good names for complementary pairs of variables; where two variables denote opposing concepts, two participants in some sort of duologue, and so on.
This …
5
votes
6answers
255 views
Programmatic way to get variable name in C?
I am developing a tool to dump data from variables.
I need to dump the variable name, and also the values.
My solution: Store variable name as a string, and print the "variable name", followed by its …
43
votes
30answers
2k views
Am I immoral for using a variable name that differs from its type only by case?
For instance, take this piece of code:
var person = new Person();
or for you Pythonistas:
person = Person()
I'm told constantly how bad this is, but have yet to see an example of the immorality …
1
vote
6answers
101 views
What variable name do you use for file descriptors?
A pretty silly trivial question. The canonical example is f = open('filename'), but
f is not very descriptive. After not looking at code in a while,
you can forget whether it means
"file" or …
3
votes
9answers
327 views
Really long class/variable/property/method names
Some friends and colleagues of mine have a little running contest to find or write the longest class/variable/property/method names possible. Keep in mind, we try to be good boys and girls and keep …
1
vote
9answers
134 views
What would be a good variable name for a rectangle the describes an objects position and size?
The title is fairly self-explanatory, but I'll reiterate: What would be a good variable name for a rectangle that describes an objects position and size.
EDIT - The object is a paddle for a Pong-like …
4
votes
3answers
402 views
What does the @ in this code sample mean?
Html.TextBox("ParentPassword", "", new { @class = "required" })
what the gosh darned heck is the @ for the @class.
