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