Comments

I am never good at using Git.

But it’s not my fault. Git has too many commands, and I am not a command line guy. That’s why I usually use SmartGit, a Git software with user interface that supports Mac.

However, there are times when you have to run on the command line (eg. scripting or you just want to be real fast).

These are my common use cases during development work flow. I don’t cover everything, or advanced stuff.

Continue reading →
iOS
Comments

This post is a guide to updating existing app for iPhone 5.

As you already knew, the new iPhone 5 introduced a taller screen at 4 inch, while all iPhones before is at 3.5 inch.

There are a couple of steps that you have to do to support the taller screen, and it really depends on how you develop your app in the first place. You might use all of the techniques below, or none.

These techniques are inspired by answers on Stackoverflow. The result is a Device class I created at https://gist.github.com/3926123

Continue reading →