1
vote
Tips on becoming a better Software Engineer
If you play a lot of long, thoughtful chess games (not blitz) against challenging opponents, almost anyone will improve at chess, just from playing.
Likewise, if you write software that pre …
1
vote
Distinguishing instruments in a music file
The easiest way to do this is to maintain the instruments separately in the first place, which is why many intermediate musical processing applications use MIDI to store instrument messages in an a …
3
votes
Boolean types
If you're absent-minded, it's easy to refactor some code from this:
private bool ConsiderTheOstrich()
{
/* do ostrich things */
if(someCondition && unpredictableThi …
0
votes
Should a developer know perfectly one language or know fairly well multiple languages?
This is a false dichotomy, because it's impossible to become "really good" in a single language without becoming familiar with other languages. Language exposure is necessary so that you can disco …
25
votes
When does Big-O notation fail?
When N is small, the constant factor dominates. Looking up an item in an array of five items is probably faster than looking it up in a hash table.
…
1
vote
How to unit-test sequential logic?
Why don't you want all those tests?
Go has very different behavior if you call it before or after, say, InsertKey, right? So you ought to be testing both behavior …
1
vote
How could you improve this code design?
If you're using the same design pattern all over the place, perhaps you should either switch to a language that has better support for what you're trying to do or rethink your code to be more idiom …
1
vote
The benefits and advantages of being a jack of all trades programmer?
I know I'm usually stuck thinking inside the box, so I like to have a very big box.
…
0
votes
