Trip to Arabnet Shift Digital Summit in Beirut

Last week I got an opportunity to do a presentation in Arabnet Shift Digital Summit about iPhone development. This took place at Beirut in Lebanon. The submit was held for three days and was an outstanding experience for me. Had a chance to meet lot of people from the middle east region. On the second… Continue reading Trip to Arabnet Shift Digital Summit in Beirut

Book Review – WordPress 3 Complete

“WordPress 3 Complete” book written by April Hodge Silver is a excellent guide to kickstart, tweak and to play with your wordpress blog. This books comprises of 11 chapters which covers from installing wordpress to writing your own plugin (This book author recommends some programming knowledge in PHP, HTML and CSS). Chapters covered in this… Continue reading Book Review – WordPress 3 Complete

Energy & Dynamic Braking

Energy: You can’t destroy it, but you can certainly waste it. That’s what most motorized vehicles do, including trains. Usually, the energy generated when you stop a moving vehicle is dissipated as heat, and is lost to the atmosphere. With GE’s ecomagination we’ve discovered that you can capture and store that energy, then reuse it… Continue reading Energy & Dynamic Braking

iPhone SDK base64 encode / decode

I found this useful class for base64 encoding / decoding. It is written by Kiichi Takeuchi Base64.h @interface Base64 : NSObject { } + (void) initialize; + (NSString*) encode:(const uint8_t*) input length:(NSInteger) length; + (NSString*) encode:(NSData*) rawBytes; + (NSData*) decode:(const char*) string length:(NSInteger) inputLength; + (NSData*) decode:(NSString*) string; @end Sample Usage [Base64 initialize]; NSData *… Continue reading iPhone SDK base64 encode / decode