Tagged Questions
5
votes
11answers
1k 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 ...
4
votes
4answers
277 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 ...
1
vote
6answers
153 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 ...