Idea Vault: When is that?

I guess like me there will be many people often confuse appointments/client calls due to timezone differences.

I am not talking about people who send/receive schedules from Outlook (or similar apps).

Read more...


Custom UISplitViewController now available on GitHub

I created this custom UISplitViewController as one of my iPad project required Split view for only one screen. The default UISplitViewController provided by Apple can only be added to UIWindow which means you can’t use it with normal UINavigation based project with only one splitview screen.

Read more...




Snow Leopard (Retail) on Lenovo 3000 N100

lenovo

Disclaimer: There is no alternative to real Mac, if you like Mac go and buy it. If buying a real Mac is too much, you can at least buy a license for Mac OS X Snow Leopard which costs $29 only. This post is to test the Snow Leopard compatibility with Lenovo 3000 N100.

Read more...



iPad - My Experience

Warning: My observations are biased as I’m not an Apple Fanboy, at least right now (was one in the past, I both respect and hate Apple & Microsoft)

Read more...



WinDirStat | My Software Toolbox

No matter how large your hard drive is, the data will grow to fill the disk!

Recently I was running out of space on both of my internal 120Gig and external 320Gig HDD. I don’t have any clue on what to delete I have tried CCleaner to delete the history to save some space.

Read more...


Batch renaming of files (Mac OSX / *nix)

How to batch/bulk rename files with automatic sequence number? Try the following shell script from your terminal (OSX/*nix)

  1. Create a new directory
  2. Run the following command (you can replace newdir with the your directory name and some_prefix with your prefix the same applicable for extension as well. My eg., rename only the png files of the directory (there were no other extensions available).

i=0; for x in *.png; do cp \"$x\" "newdir/some_prefix_$i.png"; i=$(($i+1)); done

Read more...


iPhone – Accessibility

What if iPhone provides an accessibility option for users with bigger finger?

photo

I found that pinch to zoom and screenshot capturing can be considered as good photo cropping tool. This was done in the following sequence screenshot + zoom + screenshot. You can see the same with the UIPageControl aligned little left instead of center.

Read more...