Vector drawing programs

Matt Inman made a video where he discussed how he does his illustrations for his website: www.theoatmeal.com. If you haven’t seen any of this stuff, I would recommend that you only do it while you are home because his site is a big productivity killer. Anyway, it got me very interested in doing illustrations again, … Read more

Code review time

Right now, I’m reviewing code I copied into my own code branch (p4) and I’m finding that I’m doing something I thought I’d never do. I’m actually lining up functions and parameters into columns. I have to admit, it’s much easier to read code this way then when code is all smushed together. Now, I … Read more

“Selectively Disable Warnings” with clang

I saw this demo done at WWDC on how to turn off warnings, only when truly warranted, while compiling with clang: #if defined (__clang__) #pragma clang diagnostic push #pragma clang diagnostic ignored “-Wunused-value” #endif // defined __clang__ void ImAUselessLittleFunction ( int pleaseUseMe ) { pleaseUseMe; // Nope, you are not going to be used } … Read more