How to simulate a retina display (HiDPI mode) in Mac OS X 10.8 Mountain Lion on a non-retina display?

Search for, download, and install Apple’s free Additional Tools for Xcode 8 (for previous Xcode releases search for Graphics Tools for Xcode according to your version). Note: free Apple Developer account required. Launch Quartz Debug application. Go to menu: Window —> UI Resolution. Check Enable HiDPI display modes. Quit Quartz Debug. Open System Preferences. Select … Read more

How to upgrade Git to latest version on macOS?

It’s simple if you already have Homebrew: Assuming you have homebrew installed, type the following: brew install git This should automatically install git and set it in your path, replacing the Apple one. Now quit and restart your terminal. Then check git version to confirm. git –version If the output of the above command shows … Read more

Building OSX App Bundle

There are two ways to create an app bundle on MacOSX, the Easy and the Ugly. The easy way is just to use XCode. Done. The problem is sometimes you can’t. In my case I’m building an app that builds other apps. I can’t assume the user has XCode installed. I’m also using MacPorts to … Read more