0
votes
What Language Feature Can You Just Not Live Without?
Operator overloading (Python-style, a la str())
…
1
vote
Hidden features of Python
The first-classness of everything ('everything is an object'), and the mayhem this can cause.
>>> x = 5
>>> y = 10
>>>
>>> def sq(x):
... retu …
2
votes
When did you know it was time to leave your job?
Your boss insists on not only telling you what to do, but how to do it. When your job needs two descriptions. When it's obvious that your company doesn't care about its employees.
Examples: …
3
votes
Which chemical stimulation do you require while coding?
Ritalin (prescription). Of course, I require it while doing anything that requires conversation, including conversations.
…
1
vote
What font size do you use in your code editor?
12 point Monaco - tempted to switch to 12 point Consolas like I have at home. On a larger monitor larger text means I can sit back comfortably, see better, and run less of a risk of eyestrain. I us …
1
vote
What is a good GUI text editor for the Mac?
I'll second (fourth? eighth?) TextMate. The first piece of (non-game) software I've ever purchased (not including bundled OSes), and worth every penny. Oh, and then I bought two other licenses for …
112
votes
Good excuses NOT to use version control
A delightful mix of laziness and incompetence.
An anecdote I heard one time in regards to version control:
A younger programmer asked an elder
about his code and hi …
2
votes
Presentations on switching from Perl to Python
Eric S. Raymond wrote an interesting article/essay on his experience with Python, which were hugely favorable.
On writi …
1
vote
What is the best reason for unit testing?
Because it's easier for a machine to test each object/function with 10,000 possible (and impossible) values than for a person to sit down and use the program in 10 different ways.
I worked …
1
vote
Are booleans as method arguments unacceptable?
Booleans make sense when you have an obvious toggle which can only be one of two things (i.e. the state of a light bulb, on or off). Other than that, it's good to write it in such a way that it's o …
3
votes
What is the worst class/variable/function name you have ever encountered
Anything that uses i, I, l, 1, o, O, or 0.
…
1
vote
Development with a tablet, not a mouse
For development, I tend to switch between the keyboard for typing and shortcuts, and the mouse for pointing at things. Given that context:
I've heard no end of praise for this approach from …
1
vote
Why did you start using Python?
Because I hated programming, but had to program. Python had always sounded distasteful because of its whitespace issue, and because of some bad company (zope and yum, to name a few) that gave me a …
