Search Results

0
votes

Is 1 for TRUE or FALSE ?

For most contexts, 0 is considered FALSE. Any non-zero value is considered TRUE, though 1 is most often used. …
0
votes

Programming tips with Japanese Language/Characters

If I recall correctly (and I slacked off a lot the year I took Japanese so I could be wrong), the replacements you want to do are determined by the last symbol or two in the word. Taking your firs …
6
votes

What is your longest-held programming assumption that turned out to be incorrect?

That I should always optimize my code. That's not to say I shouldn't think through it before I write it, but that I should think hard about how to squeeze every bit of performance out of each stat …
0
votes

Which is preferred: (var==null) or (null==var)

I prefer to use (var==null) myself. It makes more sense to me, since I'm checking "if var is null". The other order comes across when I read it as "if null is var", which never makes sense. I al …
1
vote

What “already invented” algorithm did you invent?

During an interview, I came up with the Knuth shuffle (or Fisher-Yates Shuffle, as it is also known). I was quite proud af …