Search Results

0
votes

Where do you declare variables? The top of a method or when you need them?

My personal preference is to place any globals in a block at the top of the code, and place locals as close as possible to their own scope. …
0
votes

Side effects in an iterator considered harmful?

My rule of thumb is if I'm iterating over a collection, no. But in Python, a for loop is often used idiomatically to execute code a certain number of times, in which case I have no problem using it …
1
vote

Best practices for shipping software on time

Know what the mission-critical features are for the client. Protect the progress on them. It is often very true that 80% of the success comes from 20% of the work. …
0
votes

what is an ideal variable naming convention for loop variables?

In Python, I use i, j, and k if I'm only counting times through. I use x, y, and z if the iteration count is being used as an index. If I'm actually generating a series of arguments, however, I'll …
0
votes

GOTO still considered harmful?

Once, early in my programming life, I produced a program that consisted of a series of functions in a chain, where each function called its successor given successful conditions and completions. …
0
votes

I need this baby in a month - send me nine women!

Adding more people to a late project will only help if the sole problem with the project is not enough people to do the work. If there is one additional problem, adding people will most likely make …
0
votes

How can we identify “good code”?

My favorite sign is a complete and total lack of magic numbers. Preferably initialized in a block with meaningful names, but I'll settle for inline comments if absolutely necessary. …
3
votes

How do you report your project status?

I have a whiteboard outside my cubicle. On it is a smiley face. When there is a status change in the project, it switches between frown, worried squiggle, grim determination, smile, and grin. Next …
0
votes

What “bad practice” do you do, and why?

In Python, I stack multiple If statements with no elif/else/finally blocks to simulate a case-statement fall-through. If it helps in my defense, I always comment the start with the purpose …
1
vote

What is your “favorite” anti pattern?

A sub-type of the Gas-Factory I like to call the "Class-Factory." A module that implements prime-number factorization should not take six classes to do so, and it's bad if it has them anywa …
0
votes

How can we protect the vulnerable online?

Live moderators are probably your best bet. Disney's Toontown actually ran into quite a few privacy/security problems when they missed that kids are often rather clever. Although I don't kn …
1
vote

Is it a good idea to put Easter Eggs in applications?

I think small ones are usually ok, and by small I mean 5 minutes or less. Python has "From future import braces," which is nothing more than a specialized exception, and "import an …
11
votes

zen of python

"Beautiful is better than ugly." Behold, Euler's Algorithm to find the greatest common denominator in 4 lines: def gcd(x, y): while y: x, y = y, x % y return …