Latest Tweets

Are you going to flash and format your android system and want to backup your any application. so dont wait anymore here is the solution for this.

Step-by-step Instructions:
1. Go to your Android Market, search for and install the app “File Expert” [Market Link]
2. Open the “File Expert” app
3. Click on the top right “App” tab
4. Simply click the checkmark box on the app that you want to backup as an APK file
5 . Click on the “Backup” button located on the bottom left
6. All the APK files of the apps you selected will now be saved and located in the “backup_apps” folder located in
the root of your SD card.

important:
That’s it! You can now do whatever you’d like with the APK backup files of the Android App. Just make sure you don’t share the
apps with the whole world! That would be pirating and it hurts the whole Android community when people steal apps. These
instructions are strictly for personal use and for educational purposes only. Enjoy!

The offer is for Karbonn's A9+, A15, A21 and A30 smartphones.
Airtel has announced that it will offer 500 MB of 2G and 3G data for free each month for six months to people buying Karbonn Mobile's
smartphones like A9+, A15, A21 and A30.
This Airtel data offer will be auto activated for all buyers of the select Karbonn smartphones models.
While Airtel has similar tie-ups with other leading smartphone brands, it mostly offers the data benefit for three months only and in
that sense this offer is very attractive.

Shashin Devsare,
executive director, Karbonn Mobiles said,
"We at Karbonn Mobiles believe in returning the trust that our consumers
have reposed in us, through gestures which endeavour to bring a smile onto the faces of our consumers. By associating with Airtel, we
seek to bring faster and greater internet and data outreach to our consumers".

Sometime many people have a internet connection or sometime not or may be its slow.. so its a good deal to download full website in your pc and surf that downloaded website without having any internet connection in your pc. for downloading your favorite website there are many download managers do that, i don't remember exactly which ones there also some site
downloaders.

this software one of the best:

HTTrack
http://www.httrack.com/

IMEI Number
Code : *#06#
This code will display IMEI (International Mobile Equipment Identity) Number / code of your device.

Complete Information about  your Phone and Battery
Code : *#*#4636#*#*
This will list the complete information about your Android Phone & Battery.

Factory Data Reset
Code : *#*#7780#*#*
This will reset the complete data to factory state.

Full Factory Format
Code : *2767*3855#
This will format your phone, use this code at your own risk. We will not be responsible for anything that happens during or after format with your phone.

GTalk Service Monitor
Code : *#*#8255#*#*
This will monitor the services of GTalk.

Camera Firmware Settings
Code : *#*#34971539#*#*
This will list all the setting of your camera.

End Call / Power
Code : *#*#7594#*#*
This one is my favorite one. This code can be used to change the “End Call / Power” button action in your phone. Be default, if you long press the button, it shows a screen asking you to select any option from Silent mode, Mute mode, Data Network mode, Flight mode and Power off. You can change this action using this code. You can enable direct power off on this button so you don’t need to waste your time in selecting the option.

Backup Mode
Code : *#*#273283*255*663282*#*#*
This code can be used to take backup of your phone, here you will come across a screen where you can backup your images, songs, videos, etc.

Service Mode
Codes : *#*#197328640#*#*
This code can be used to enter into Service mode so that you can run various tests and change settings.

WLAN, GPS and Bluetooth Test
Codes : *#*#232339#*#* OR *#*#526#*#* OR *#*#528#*#*
WLAN test (Use “Menu” button to start various tests).
Code : *#*#232338#*#*
This code will show WiFi MAC address.
Codes : *#*#1472365#*#* OR *#*#1575#*#*
This code used for GPS test.
Code : *#*#232331#*#*
Use this code to test Bluetooth.
Code : *#*#232337#*#*
This code will show Bluetooth device address.

Firmware Version
Code : *#*#4986*2650468#*#*
Use this code to check version of PDA, Phone, H/W, RF Call Date.
Code : *#*#1234#*#*
Use this code to check version of PDA & Phone.
Code : *#*#2663#*#*
This code is used to check Touch Screen version.
Code : *#*#3264#*#*
This code is used to check RAM version.
Code : *#*#1111#*#*
Use this code to check version of FTA SW Version.
Code : *#*#2222#*#*
Use this code to check version of FTA HW Version.
Code : *#*#44336#*#*
Use this code to check version of PDA, Phone, CSC, Build Time, Changelist number.

Factory Tests
Code : *#*#0283#*#*
This code is used to send a Packet which Loops back.
Code : *#*#0*#*#*
This code is used to test your LCD.
Code : *#*#0673#*#* OR *#*#0289#*#*
This code can be used to test Melody of your Android Phone.
Code : *#*#0842#*#*
This code will test your Android device / phone for Vibration and Back light.
Code : *#*#2664#*#*
This code is used to check Touch Screen Test.
Code : *#*#0588#*#*
This code is useful to test Proximity Sensor.
Enjoy & have fun with your Android phone / device.


Google Books is nice collections of catalogue from all around world. You can download books at free of cost by using this trick. This trick works without installation with g software. As all knows it has nice collections of magazines,books and novels all these stuffs.


I m giving the procedure how you can download google books. Follow carefully. You will get what you want. So steps to be followed is -

 1) Download Google Books Downloader

                               Download Google Books Downloader  

2) First go to your google book page the book which you want to be download.
3) After reaching there you see this thing in your browser URL.

Copy the whole url of book which you have to insert in your software. Copy it and don't miss any single character.
 
4) Paste your Url in the software and Click on start it will start to extract book pages & convert into PDF.
 
5) Thats it ! Enjoy with any books as you can download any reading materials with this trick. 
 
 

History Of C..

In the beginning was Charles Babbage and his Analytical Engine, a machine he built in 1822 that could be programmed to carry out different computations. Move forward more than 100 years, where the U.S. government in 1942 used concepts from Babbage’s engine to create the ENIAC, the first modern computer. Meanwhile, over at the AT&T Bell Labs, in 1972 Dennis Ritchie was working with two languages: B (for Bell) and BCPL (Basic Combined Programming Language). Inspired by Pascal, Mr. Ritchie developed the C programming language.in this post we learn how to display mouse pointer in c language console application .

C program which display mouse pointer and position of pointer.(In x coordinate, y coordinate)



#include <"dos.h">
#include <"stdio.h">
#include <"conio.h>
void main()
{
union REGS i,o;
int x,y,k;
//show mouse pointer
i.x.ax=1;
int86(0x33,&i,&o);
while(!kbhit())
{
i.x.ax=3; //get mouse position
x=o.x.cx;
y=o.x.dx;
clrscr();
printf("(%d , %d)",x,y);
delay(250);
int86(0x33,&i,&o);
}
getch();
}

WhatsApp is undoubtedly the most popular cross-platform mobile messaging application, which is currently available for most of the major mobile platforms including Android, iOS, Blackberry, Windows Phone and even Symbian. So Today i am going to tell you how to run Whatsapp and other android application /games run on your pc/laptop.

Steps for running WhatsApp for PC

BlueStacks is a free application for Windows that can run applications such as WhatsApp for Android on Windows and that too, more smoothly than the official Android emulator. In this Tutorial we’ll be using BlueStacks for running Whatsapp on PC. So, before we start, download a copy of BlueStacks on your computer:

        Download: BlueStacks [99 MB]               
  
Launch BlueStacks and you should see the WhatsApp application in it’s AppStore, install it.

Search Whatsapp and click on it to download
Whatsapp is downloading

 2  . You will be asked for phone number verification, all you have to do is select your country and enter your phone number and then click ok.


Yey ! whatsapp messenger is installed successfully and working fine on the PC (Here you can use your physical keyboard to enjoy text conversation)