Cleaning house

Today I am actually taking time to clean the house. And with that, I traded in my Xbox 360 games. I finally bought myself a PS3 and I … Love … It! The only games I have left for the Xbox is Halo and Gears of War. The only reason why I haven’t sold off … Read more

Cleaning up those CRT warnings in Visual Studio

When you need to clean up the CRT warnings about unsecure functions, like printf or sprintf, in favor for secure functions like printf_s or sprintf_s, you don’t have to scour through all of your code to clean up the warnings. You can declare the following for Visual Studio builds and the functions are overridden with … Read more

Using regex to replace a path

This is for me, not you, a reference for me. So if you are wondering why I wrote this… it’s because it’s for me. Here is a regex string I used in TextWrangler to search and replace paths in a Xcode project file… you know, the one that is inside the .xcodeproj bundle… Search string: … Read more