Search Results

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

Humor in code

I have a habit of making testing values the names of fictional countries. Leading to several co-workers playing "guess the movie" once. …
0
votes

Your favourite algorithm and the lesson it taught you.

An algorithm that generates a list of primes by comparing each number to the current list of primes, adding it if it's not found, and returning the list of primes at the end. Mind-bending in severa …
2
votes

I’ve heard of DRY and KISS, what other maxims do I need?

"Do the simplest thing that can possibly work." It gives you a good place to start, and has the side effect of encouraging an end product that is both effective and simple to explain, which …
0
votes

Code Reusability: Is it worth it?

IMHO, certain code is likely to be reused often, and it makes sense to prepare it for frequent reuse. Other code isn't, and probably doesn't need to be developed beyond solving the immediate proble …
1
vote

What should every programmer know?

How to talk to non-programmers about programming concepts. It's tricky to get the hang of, but it will increase your value and the ease of your life greatly. …
0
votes

Should we compare floating point numbers for equality against a *relative* error?

As an alternative solution, why not just round or truncate the numbers and then make a straight comparison? By setting the number of significant digits in advance, you can be certain of the accurac …
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. …
0
votes

Is 1 for TRUE or FALSE ?

Relative to Python: I enjoy mathematics, so I'm fairly booked up on the mathematical idea that "zero is not a number." Ergo, I thought of it as "numbers" are true and "not a number" …
6
votes

What “already invented” algorithm did you invent?

I can honestly claim I never "invented" bubble sort. Nope, I went and "invented" bucket sort instead. I'm so ashamed. :) …
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 …
0
votes

Should I use `!IsGood` or `IsGood == false`?

One size doesn't fit all. Sometimes a more terse form can be made plain or is idiomatic, like !(x % y) , which returns "True" if y is a factor of x. Other times, a more explicit comparison …
0
votes

Generating a unique reference number strategies

One way may be to generate the numbers based on a smaller subset of numbers. For example, you could use a binary sequence to generate based on a godel numbering. For example, mapping 000 to 111 on …
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 …