Convert Javascript Date from UTC to Local Timezone
var strdate = ‘2013/05/03 03:13:00’;
var d = new Date(strdate);
var d = new Date(d.getTime() – d.getTimezoneOffset() * 60 * 1000);
used it with Titanium Appcelerator
Written by iassael on . Posted in android, computing, iOS
var strdate = ‘2013/05/03 03:13:00’;
var d = new Date(strdate);
var d = new Date(d.getTime() – d.getTimezoneOffset() * 60 * 1000);
used it with Titanium Appcelerator
Written by iassael on . Posted in computing, general, iOS
Fully working Magic Mouse everything is here: http://www.trackpadmagic.com/magic-mouse/download
Written by iassael on . Posted in computing, iOS
Crops your iOS screenshots to remove the status bar. Removing the status bar is recommended by apple before submitting to iTunes Connect and being displayed on the app store (Page 13 in the iTunes Connect Developer Guide).
Supports:
-iPod/iPhone non retina display (portrait & landscape)
-iPod/iPhone retina display (portrait & landscape)
-iPad (portrait & landscape)