Saturday, March 31, 2012

Hi, I've never imagined that playing a HTML5 Youtube video inside a WebView would be such a tedious task. I even didn't think of it as a separate task. The problem is that the video doesn't play. YES, it's as simple as that. Any way, I found a work around solution that causes the video to run inside the media player instead of the WebView and of-course instead...

Saturday, March 24, 2012

Hi, The problem can be solved by opening the keypad and pressing the following keys: *2767*3855# CAUTION: Once you press the ( # ) key, the device will start the process. No menus will appear and No options will be available, The process will just start. The original thread is here. That's it, don't hesitate to comment, to share your knowledge and to correct me.&nb...

Wednesday, March 21, 2012

Hi, I was wondering how Google can find my location when I'm using WiFi, and I kept digging the Internet to find an answer. To collect information about WiFi access points, Google uses information provided by   cellphone handsets. computer applications. radio receivers attached to vehicles. Google used wardriving to collect data about access points. It used the same vehicles...

Friday, March 9, 2012

This Post Is Deprecated ... Hi, Once upon a time I was developing an application for platforms starting from 2.1 ( API level 7 ) and it happened that I needed the app to receive notifications from the server. Actually, I achieved this using C2DM directly ( with no external libraries ) by following this tutorial, AND then I  achieved this  once again...

Thursday, March 1, 2012

Objective-C: Hello World!

Hi, This is the famous (Hello, World!) example using the Objective-C programming language. #import <Foundation/Foundation.h> int main(int arg, const char * argv[]){ NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; NSLog(@"Hello, World!"); [pool drain]; return 0; } Explanation: #import: It's used to include what's in a file (classes, functions,...