-1
votes
Why do software engineers hate writing documentation?
@Kristijan: LaTex is able to do all of that, and more.
…
0
votes
Why is it that people write free software, such as openoffice, spybot etc?
The reason I chose an open source license for my current project is simple: most of the knowledge I have about software development was available for free to begin with. The net result is that the …
1
vote
What is the single most influential book every programmer should read?
Masters of doom. As far as motivation and love for your profession go: it won't get any better than what's been desc …
4
votes
Perks for new programmers
These are all personal :-).
Free coffee. I have solved countless problems while waiting for my coffee to finish, or even walking to the coffee vending machine.
Laptops. I don …
1
vote
What have you done to customize your IDE?
In visual studio 2005 I do these:
Bind F11 to fullscreen mode
Enable a vertical line at 80 characters: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\8.0\Text Editor …
2
votes
8
votes
Programming Related Songs
Kraftwerk - Computerwelt
Probably not the strongest association ever, but someone had to mention Kraftwerk!
…
22
votes
Significant new inventions in computing since 1980
JIT compilation was invented in the late 1980s.
…
12
votes
What was your first computer game that got you interested in computers?
Deus Ex. It's also the thing that got me into video game development.
Looking at the other answers, I feel young, hehe. …
1
vote
Does “English” hinder you to enhance your programming skills?
I'm not a native speaker myself, but I feel that English has, if anything, enhanced my programming abilities because there are not that as good resources available in my native language (Dutch). Th …
7
votes
What is your favorite C programming trick?
In C99
typedef struct{
int value;
int otherValue;
} s;
s test = {.value = 15, .otherValue = 16};
/* or */
int a[100] = {1,2,[50]=3,4,5,[23]=6,7};
…
0
votes
What Is the most beautiful code you have ever seen or written?
This one is from an in-house level editor I had developed a while ago and I think it's beautiful because even though it's easy to take this concept and make it more complicated, I think it's hard t …
0
votes
What is the first thing you do when you install Visual Studio?
Add /nosplash to the shortcut to make it boot faster.
…
0
votes
What is the first thing you do when you install Visual Studio?
Type Ctrl+D and ">alias ff Edit.FindinFiles" so I can do Ctrl+D ">ff $term" next time I want to search all my files for $term.
…
2
votes
Why do programmers for widely recognizeable products rarely tell their story?
The game development part of the industry has loads of postmortems; books such as Postmortems from Game Developer or …
