>>6
I'm just going to take a moment to stop trolling and say that you aren't a true software developer / computer scientist without a love for learning new frameworks/languages. Every new tool you collect makes you more efficient and knowledgeable. Even PHP (it teaches you how to not design a scripting language littered with C bindings).
Name:
Anonymous2009-10-03 1:31
Don't trust books that speak to you like a seven-year old.
Name:
Anonymous2009-10-03 1:45
>>9
You're referring of course, to Structure and Interpretation of CP?
Name:
Anonymous2009-10-03 1:52
>>10
Structure and Interpretation of Child Porn, yes.
The most important thing you'll ever read is SIWJ (Structure and Interpretation of Wooden Joints). If you can't find a copy of this book, K&R have created a fine book called 'The Joint Carpentry Language' which talks in depth about the art of mortise and tenon joints (something which SIWJ sorely lacks).
Name:
Anonymous2009-10-03 3:41
Don't free all your malloc's. Free is a very expensive code no matter how you measure it, and the OS will take care of it when your program exits. If you aren't coming close to running out of memory, let it leak 'till the program exits and let the OS do the work. It will make your program run up to x16 times as fast.
Name:
Anonymous2009-10-03 3:47
>>14
What? You are kidding right? To the readers at home, I would not recommend intentionally leaking memory in this manner.
If you do not do this your computer will run out of memory very, very fast and can cause a virus to infect your motherboard!
Name:
Anonymous2009-10-03 4:33
when photographing windmills, always attach a handkerchief to one of the sails. This will provide invaluable information on wind direction and sail rotation when the picture is developed
Name:
Anonymous2009-10-03 4:34
>>18
That actually helps optimize the code for the assembler.
Name:
Anonymous2009-10-03 5:56
>>14
Even better - write your own memory allocator!