Search Results

0
votes

What’s your favorite implementation of producing the fibonacci sequence?

I came across this little beauty the other day: function f($n) { $sqrt5 = pow(5, 0.5); $gr = (1+$sqrt5)/2; return floor(0.5+(pow($g, $n)/$sqrt5)); } …
72
votes

What are five things you hate about your favorite language?

Javascript: It's fugly All the coolest things are insanely complex, but then, all the coolness is also wrapped up in such a small amount of code th …
3
votes

What is the most interesting bug you have fixed?

Way-back-when, I wrote a function for a game I was working on in my spare time, to return the distance between two tiles on a slightly odd square/hexagonal grid. The grid looked hexagonal in the ga …
-1
votes

Monkey-patching Vs. S.O.L.I.D. principles?

Monkey-patching is just plain wrong, IMHO. I've not come across the open/closed principle you mention before, but it's a principle I've long held myself, I agree with it 100%. I think of m …
2
votes

Rules With Most Significant Exceptions

I've always been annoyed by "give 'em what they want". Fair enough in theory, but in practice what they ask for is rarely what they want, it's more like the real problem half-solved in the first ma …
0
votes

How do you like your primary keys?

I've always used a surrogate key - an autoincrementing integer called 'id'. I can see plenty of reasons to do this even when another option is obvious: Consistency Data indep …
-7
votes

What’s your most controversial programming opinion?

I know everything there is to know about everything. …
0
votes

What do you mean by “programming ability”?

What makes the best athlete? Stamina? Strength? Speed? Skill? Is the best swimmer the best pole-vaulter? Is the best archer the best sprinter? Does the best archer care if he can't run 100m in unde …
0
votes

Ethics of using a “fringe” language for your job?

So much discussion for such a clear-cut situation... It's not up to you, it's up to them. If they're not technical enough to make the call, as it seems, then you have to make it for them …