Nokia Asha 300 Specs Review Price in India

Nokia once the most trusted mobile brand in India, is losing its market share to companies dealing in high end smart phones, but it still holds a major stake in the Indian cellular markets, and to salvage that the tiny hold in market, it has come out with the Asha series which provides features and Quality at very cheap rates. From below you can see Nokia Asha 300 Specifications Review Price in India.
Read more »


Download iPhoto for Apple iPhone 4, 4S and New iPad

The bitten apple says it all when it comes to their mobile devices, tablet PC’s and home computing. The revolutionary Apple Inc. who is also known for their gigantic app store with millions of apps has come up with a new app which they have named as “iPhoto” for the iOS users.

Apple with its new app has introduced a whole new experience of photo editing. Download iPhoto for Apple iPhone 4, 4S, Macbook and New iPad. Just before the release of this app, people thought of photo editing only on big computer screen, with loads of messy and unclear options which ultimately confuse the user and at the end, ends up with a worse photo edit. But with the introduction of iPhoto a new category is made for photo editing for iPhone. Download here
Read more »

How Create shortcut for Safely Remove Hardware

This tutorial will tell you how to create a desktop shortcut for safely removable hardware like pen drive. We use pen drive many times in our PC for transferring the data but if we eject or remove pen drive form PC without clicking safely remove hardware then there are many chance to corrupt the data or hardware.

 
Although, in Windows Safely Remove icon shows in Windows tray but if you want to create a shortcut on your desktop then follow these simple steps.


How to do :


  • First go to desktop and create new shortcut like this


  • after it will ask location of the item, copy this code and paste.
     rundll32.exe shell32.dll,Control_RunDLL hotplug.dll

  • Click Next, and Give any name of  this shortcut. 


If you want change shortcut icon, then go to property of the shortcut file and choose any icon.


Download Free Dictionary Apps for Android

Android have a large of numbers dictionary apps although some of them are not useful. So here we listed the Top 5 Best and Free Dictionary Apps for Android Phones you must have download and use it. All this applications will enhance the functionality of your devices and helps to find you accurate definitions of every word what you are searching for. With the help of applications, the function of a gadget like a cell phone extends beyond its main role of making and receiving calls to a gadget of multiple functions. It can help you in your work or studies. It can also offer you ample amount of entertainment. In this regard, the applications for the powerful Android are worth mentioning. Android with its brilliant technology supports a number of applications which can be pretty enthralling.
Read more »

Google plus Keyboard shortcuts

Google Plus (Google + or G+) is growing up as your friends circle in social networking. So you require more time to spend in G+. Knowing Google + Keyboard shortcuts helps you to work fast in Google Plus.
google plus keyboard shortcut keys

Google Plus Keyboard Short cuts



Space : Scroll Down Streams
Shift + Space : Scroll Up Streams
J : Single Post Scroll Down
K : Single Post Scroll Up
Q : Jump to chat
Enter key (Return) : Open comments box & start Comment
Tab+Enter: Post comment
Tab: To scroll through comments on a post.
@ or +: mention someone in a post



Angry Birds Space v1.0.0 apk download

Angry Birds Space

After a giant claw kidnaps their eggs, the Angry Birds chase it into a wormhole and find themselves floating in a strange new galaxy – surrounded by space pigs! Luckily the Angry Birds have super powers of their own...

Angry Birds Space features 60 interstellar levels on planets and in zero gravity, resulting in spectacular gameplay ranging from slow-motion puzzles to lightspeed destruction. With regular free updates, brand new birds, brand new superpowers, and a whole galaxy to explore, the sky is no longer the limit!

FEATURES

• 60 interstellar levels!
• Regular free updates!
• Brand new birds!
• Brand new superpowers!
• Zero-gravity space adventures!
• Trick shots using planets' gravity!
• Hidden bonus levels!
• Beautifully detailed backgrounds!

Join the global phenomenon as it goes galactic!

Download the APK here:

Google Maps 6.5.0 + world nav apk download

Image

             

Download the latest release of Google Maps, and never carry a paper map again. Google Maps for Android with Navigation (Beta) has:

* Detailed maps with 3D buildings
* Voice guided turn-by-turn GPS navigation
* Driving, public transit, biking, and walking directions
* Live traffic information to avoid congestion
* Local search and business reviews
* Google Maps Street View
* Indoor maps for select airports, hotels, retail stores, and more

Whether you need directions to your destination, the closest good place for a bite to eat, or just a sense of where you are, Google Maps for Android can help.

V6.5.0 update:

    1. New home screen design for Google Maps Navigation (Beta)
    2. Options to get transit directions for preferred transit mode

You can download the APK here:

To learn more visit Google Maps Mobile page. Enjoy!

Permalink: http://goo.gl/c6bqC



How to Create a Captcha enabled Web Form in 5 Minutes

In this tutorial, you will learn about how to create a contact form with captcha verification using PHP / HTML. I assume you have the prior knowledge of HTML and PHP to understand this tutorial.

Let's understand Captcha first:

It's a kind of test to know if the response is generated by a human or generated by a software / bot.

Common Captcha Test:

The user needs to enter the letters from a distorted image in the text box. This text is difficult to read / decode by softwares / bots but can be easily read by humans.

Here is the step by step procedure:

Step 1: This requires you to create a PHP file for creating captcha image with text. Create a PHP file Captcha.php and save it in your local folder. Copy and paste the code below in this file.

<?php

session_start();

//To generate 5 digit random number
$text = rand(10000,99999);

//To assign this number to session variable
$_SESSION["captchacode"] = $text;

//To set image height and width
$height = 25;
$width = 65;

//To create image using imagecreate function 
$cimage = imagecreate($width, $height);
$bg_color = imagecolorallocate($cimage, 0, 0, 0);
$text_color = imagecolorallocate($cimage, 255, 255, 255);

$font_size = 14;//To set the fint size of teh captcha text
 
imagestring($cimage, $font_size, 5, 5, $text, $text_color);//Create captcha text on image
imagepng($cimage);

?>

Step 2: This requires you to create a PHP file for creating a contact form. Create a PHP file Captcha_Form.php and save it in your local folder. Copy and paste the code below in this file.

<table width="300" align="left" cellpadding="1" cellspacing="1">

<form action="submit_form.php" method="post">

<tr>
    <td>Name: </td>
    <td><input type="text" name="name" size="10" maxlength="10" tabindex="1"></td>
</tr>

<tr>
    <td>Email:</td>
    <td><input type="text" name="email" size="20" maxlength="20" tabindex="2"></td>
</tr>

<tr>
    <td>Enter Code:  </td>
    <td><input type="text" name="captchacode" size="5" maxlength="5" tabindex="3" />
    <span style= "margin-left: 10px; margin-bottom: 0px;">
        <img src="captcha.php"></span>
    </td>
</tr>

<tr>
    <td/>
     <td><input type="submit" name="Submit" value="Submit"/></td>
</tr>

</form>

</table>

Step 3: This requires you to create a PHP file to verify the cpatcha code with the code in captcha image. Create a PHP file Submit_Form.php and save it in your local folder. Copy and paste the code below in this file.

<?php

session_start();

if ($_POST["captchacode"] != $_SESSION["captchacode"] OR $_SESSION["captchacode"]=='') 
     echo  '<strong>You are not Human.</strong>';
else
{
     // add form data processing code here
     echo  '<strong>You are Human.</strong>';
}

?>

Final Output:

You need to test the captcha in a browser. Open Captcha_Form.php in your browser. The form will look like this:


How to Test:

You can test the this form by entering captcha code from the image in the Enter Code text box. If the captcha code matches with the code in captcha image it will display You are Human else it will display You are not Human.

Change The Default Location For Installing Apps In PC










XP uses the C:\Program Files directory asthe default base directory into which new programs are installed.



However, you can change the default installation drive and/ or directory by using a Registry hack.
Run the Registry Editor (Go To Run And Type : regedit)and go to

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion

Look for the value named ProgramFilesDir.

By default,this value will be C:\Program Files.To Change Right Click On It And Select Modify.And Change It As You Wish.

Free SMS Apps For Android Phones

There are several apps for Android that can be used to enjoy easy text messaging. Below we present some of the Top 4 Best and Free SMS Apps for Android Phones which help you to send free sms to your friends. If you wonder how to best enjoy messaging from Android devices using the best of applications, you need to take some time and find out the most promising and useful apps available in the android market which was recently named as Google Play. All the apps provide you free services you will not be charged by sending the text messages to your buddies. One more thing to say all this apps will work only when you have either Wi-Fi or 3G internet connection.
Read more »


How to Install Official Android ICS 4.0 XXLPQ Firmware on Samsung Galaxy S2 i9100

Today I will guide you How to Install Official Android ICS 4.0 XXLPQ Firmware on Samsung Galaxy S2 i9100. Samsung Galaxy S 2 was the most buzzed android phone last year, released by Samsung in the MWC of 2011. It also got a revolutionary design and perhaps that was the reason why it was buzzed in the phone market apart from its features. Moreover it also having Android v2.3 by default but recently Samsung Company has announced that they will release the latest version of Android v4.0 (ICS) update on march 19th 2012. As far as we know that this update is only available for certain regions like Baltic, Poland, Hungary and other Nordic countries. The above we listed country users can update their device with Android 4.0 ICS version with either over the air (OTA) or by using Samsung Kies Software. Frome below image you check Samsung has revamped the original ics theme with their touchwiz Interface.
Read more »


How to hack Windows 7 password


 How to hack Windows 7 password when you forgot password? It is not so simple to hack than on Windows XP. If you ever forgot Windows 7 password, you may find that several fruitful Windows password hack replies employed for Windows XP doesn't work for Windows 7 due to its superior security characteristics and you may have to find a new reply for your disregarded Windows 7 password hack.
Need to recover Windows 7 password? Windows 7 password reset or recovery solution is quite easy if you pick up the right way. In case you may lose important data during your recovery, here we give a full detail of the solution. In this, we take the most used  laptop or computer for example.


The  laptop is widely used for its excellent quality. It gives customers all the power and performance to enjoy the computing life. Windows 7 system is the latest popular system, and it allows you create several accounts for each users. So it may raise a risk to forget the password.



It is really frustrated if you realize your windows 7 login password lost. Are there any methods to get it back?
I forgot Windows 7 password to my  computer, how to I do reset it? Please help, I am locked out from my important data!!
Windows 7 password reset or recovery solution isn't so difficult if you pick up the right way. In case you may lose important data during your recovery, here we give a full detail of the solution. In this, we take the most used  laptop or computer for example.
The laptop is widely used for its excellent quality. It gives customers all the power and performance to enjoy the computing life. Windows 7 system is the latest popular system, and it allows you create several accounts for each users. So it may raise a risk to forget the password.


Password lost often happens; there are many reasons for losing password. If you don’t pick up a good way, it could ruin your days completely. Here we share some practical solutions for you.


 Password reset disc only use in a certain account which you have created before losing that account password, or it won’t help. So it’s better to create password reset disc when you add a password to a new account. If you have problems with how to create USB windows 7 password reset disk, you can see more details in MS website.

Here is how to recover windows 7 password with  password reset disk

Step 1: When entering a wrong password, it will show you the Password hint and you can reset password as following picture. Click “Reset password” it will show you the Password Reset Wizard.

Step 2: Click NEXT and select your USB password key disk drive to reset the password with a new one.

Step 3: Then you can use the new password enter your computer.


Windows 7 OS has a built-in administrator account that is created during Windows installation, and disable by default. The account has no password in it. You need to enable that account before losing your other admin account password. Or in this tip your built-in administrator account won’t appear in the screen.

1. Start your computer and press "F8" while the computer boots up. Scroll down to "Safe Mode with Command Prompt" with the arrow keys on the keyboard and press "Enter." Your computer starts in Safe Mode with Command Prompt.

2. Select the Administrator account that appear in the screen, then enter command prompt. Type: net user XXX 123456 and enter (XXX is the account name which password you need to reset 123456 is the new password), it will show you a message that” the command completed successfully.

3. Restart your computer, then you can log in as XXX with the password 123456. You can go to control Panel to change your account password if necessary.



If you didn’t enable the built-in administrator account or you’ve reset the default administrator account password before and you forgot the password. Or you don’t have a password reset disk. In this situation you need to find Windows Password Key to wipe up the password, it is the best and quick choice.

1: Log in any available computer that you can access to and allow you download. Download and install Windows Password Key in that computer.

2: Run and burn Windows Password Key to a blank CD/DVD or USB flash drive.

3: Insert the disk to your locked Computer and then boot it from the disk, then you can follow the instruction to reset your password. The command line just like this:

Step1: Location selection
Please select Windows installation to be processed

Step 2: Select User Name
Here are the user names detected in Windows:
1 Administrator
2 Dvai
3 Guest
4 Sarah
5 HelpAssistant
Please enter your selection 1..5

Step 3: Confirmation
You are about to reset the password of 'Administrator' Are you sure? (y/n)
Password of 'Administrator' reset.Your computer will be restarted.Please remove the Windows password key bootable media and press any key to restart.

It’s 100% recovery, so I’m sure you’ll enter your Windows 7 system with that account.

Five JRPGs You Must Download and Play on Your Android Handsets

Today we listed the Top Five Best JRPGs You Must Download and Play on Your Android Handsets. Role play games are in demand and Japanese Role Playing Games (JRPGs) have their own special place. Given below there are five games which you are sure to fall in love with. Download all five to have a great gaming experience.

1. Alphadia

The first in the line is Alphadia. This JRPG is played and loved by a large number of gamers world- wide. It came in the year 2011
Read more »


Hack Windows xp Login Password








Hack Admin Password From User Mode

Follow these steps:
1. Open command prompt

(Start->Run->cmd)

2. Enter the following command, then press ENTER
3. Enter the following command, then press ENTER:
compmgmt.msc
This should open the computer management console.


4. Go to local users & groups->users. Right click on any user and select "set password".

if you get a "access denied" do the following:
start>run>cmd

Then use following commands:
1) net user test /add (this command will make test named user)
2) net local group administrators test /add (this command will maket est user as administrators rights)and use net user command to reset your admin password

Alternative

What if u don't know the password of your admin and still want to hack and change ..
yes u can do it ..in a very easy manner.. check this.
just follow the steps:

(this doesn't require u to know the admin password but still u can change it..)

Start >> Run >> [type]cmd // this will open your command
prompt[type] net(space)user(press enter)[type]
net(space)user(space)[windowsloginid](sp ace)*(press enter)
// for e.g. : net user HOME *(press enter)
[type] new password (press enter) and retype it (press enter)..
it will show u confirmation… // caution it wont show u the password u type..
but it still types.. the blinking pointer will b there at the same place..
but it still works..
// for e.g. : password changed successfully.

How To Trace Facebook User

This is a simple methods to trace Facebook user

Read the below steps carefully

open start -> select run -> type “CMD”    (With out   "   "   )

  • Now chat with your friend
  • and in CMD write “NETSTAT
  • and it will show all the IP address connected with your IP address.

The Next Step is to Trace that user using his IP address.


To do so we will be using IP tracer service. Go to the below address and paste the IP address in the box that says “lookup this ip or website”. and it will show you the location of the user.

CLICK HERE

It will show you all the information about that user along with his ISP and a Location in the MAP. Now in the MAP Just click on “click for big ip address location” in the big picture you can actually zoom in. and try to recognize the area. If any serious matter just note down the ISP details in that page and contact them about the IP. they will respond you.

Other netstat commands:
-a
Displays all connections and listening ports.
-e
Displays Ethernet statistics. This may be combined with the -s option.
-n
Displays addresses and port numbers in numerical form.
-p
proto Shows connections for the protocol specified by proto; proto may be TCP or UDP.
-s
option to display per-protocol statistics, proto may be TCP, UDP, or IP.
-r
Displays the routing table.
-s
Displays per-protocol statistics. By default, statistics are shown for TCP, UDP and IP; the
-p
option may be used to specify a subset of the default.
That's it.

Send Password Protected Email via Lockbin






Follow the below steps for do this.

  • Click here to go LockBin online service.
  • Fill the form with your desired password.
  • In the text filled write your message. You can also attach a file if you want.






















  • After this, click on Submit button.
  • Now your password protected mail will be sent. (Receiver will only get a link to your password protected and encrypted email)
  • When receiver clicks on that link  it will prompt to enter the password otherwise it will not be open.




Gsm Mobile Secrets Tips

Type *#61# and press call – Check call redirection status.
Cancel all redirection: ##002#  .


*43# to activate call waiting, to deactivate #43#
If your phone doesn’t have incoming call barring and outgoing call barring, you can try this. For outgoing call barring dial *33*barcode*# and pres OK. To deactivate it dial #33#barcode*#


On any phone on any network type in **43# to enable conference calls. You can make up to 7 calls at once
If you need to  block SMS reception (if you are spammed by someone) just press this code: *35*xxxx*16# xxxx is your Call Barring code (default is 0000). To remove this barring type: #35*xxxx#
If you want to hide/show your phone number when calling, put one of these codes below in front of the number that you are going to call. (*#30# / *#31# or *31# / #31# ) Works on some networks.
Typing *0# or *nm# on the beginning of a txt message gives you detailed delivery report on some networks.. But turn off reports in message settings before.
When the sim card-pin blocked type **042*pin2 old*newpin2*newpin2*
Important:
If you know any other tips & tricks & secrets about GSM mobile or any other mobile which is not listed here then you can post in Guestbook and it will be updated soon with your name.
Warning:
You can try these codes at your own responsibility ! We are not responsible for any malfunction and we don’t accept any complaints.


Apple iPhone 4 Gets iPhone 4S Features with iOS 5 Update

A good news for all Apple iPhone 4 users, now they can get all iPhone 4S features with the help of newly released iOS 5 update. Check out this interesting article, you will know many more interesting information about recent Apple iOS updates.

Which Version Do You Own?

For a large number of users who have opted for an iPhone 4 and then got to know about the release of iPhone 4S version were unable to buy a latest version as they are still bound to their prevailing contracts and they cannot withdraw it easily. However, it may turn out to be good news for them.
Read more »


Top 10 Best Android Cell Phones in 2011

10. Google Nexus one:

 Though Nexus One was released a long time ago but still it makes his way to the top ten android based smartphones. It runs Android 2.1(éclair) and what makes it best is its extended features and unique designed and of course users acceptance.

Specification: CPU: 1 GHz Scorpion processor, Adreno 200 GPU, Qualcomm QSD8250 Snapdragon chipset
Display: AMOLED capacitive touch screen, 16M colors, 480 x 800 pixels, 3.7 inche
Memory: 512MB RAM, 512MB ROM, Extended memory upto 32GB
Battery Time: upto 290 hours with10 hours of talktime.
9. HTC Desire: 
 
Another brilliant smartphone by HTC. Although it bears a strong resemblance to Nexus One but it has many other strong features that makes it more desirable samrtphone. It runs the Android 2.2 (froyo) OS and has 5mp camera.
Specification: CPU: 1 GHz Scorpion processor, Adreno 200 GPU, Qualcomm QSD8250 Snapdragon chipset
Display: AMOLED or SLCD capacitive touchscreen, 16M colors, 480 x 800 pixels, 3.7 inches
Memory: 576 MB RAM; 512 MB ROM, extended memory upto 32 GB
Battery Time: 340 hours and 7 hours of talktime
8. HTC Droid Incredible: 
Well HTC smartphones has always been at the top of the leading smartphones list and why is that because they have always satisfied their users with their unique features. HTC Droid Incredible is one of the HTC’s best android based smartphone. It features Android 2.1 (éclair) operating system and 8mp autofocus camera with other important features as follows.
Specification: CPU: 1 GHz Scorpion processor, Adreno 200 GPU, Qualcomm QSD8650 Snapdragon chipset
Display: AMOLED capacitive touchscreen, 16M colors, 480 x 800 pixels, 3.7 inches
Memory: 8 GB storage, with 32 Gb memory card option.
Battery Time: upto 146 hours with 5 hours talktime.
7. Samsung Epic 4g:
Samsung Epic is the one fastest smartphones and it has also dominated HTC recently but failed to make an impact over Motorola who is currently leading the whole market. Samsung Epic contains the Android 2.1(éclair) operating system and has many other power packed features that will rock the user.
Specification: CPU: 1 GHz ARM Cortex-A8 processor, PowerVR SGX540 GPU, Hummingbird chipset
Display: Super AMOLED capacitive touchscreen, 16M colors, 480 x 800 pixels, 4.0 inches
Memory: 512 MB RAM, 512 MB ROM, upto 32gb extended microSD option
Battery Time: upto 300h with 6 hours talktime. 
6. HTC EVO shift 4G:
Another glory set but HTC called EVO shift. This smartphone is another one of the most wanted smartphones in the world. It contains Android 2.2 (froyo) with 5mp camera and huge storage option.
Specification: CPU: 800 MHz Scorpion processor, Adreno 205 GPU, Qualcomm MSM7630 Snapdragon chipset
Display: TFT capacitive touchscreen, 65K colors, 480 x 800 pixels, 3.6 inches
Memory: 512 MB RAM / 2048 MB ROM, 2GB in external memory included upto 32 GB
Battery Time: upto 146 hours with 6 hours talktime.
5. Motorola Droid X:
Another blockbuster in the smartphones market, Motorola Droid X is a perfect competitor in the leading smartphones list and contains the Android 2.1 (Éclair) operating system and 8mp camera.
Specification: CPU: 1 GHz Cortex-A8 processor, ; PowerVR SGX530 GPU, TI OMAP 3630-1000 chipset
Display: TFT capacitive touchscreen, 16M colors, 480 x 854 pixels, 4.3 inches.
Memory: 6.5 GB storage, 512 MB RAM, 16 Gb included
Battery Time: upto 220 hours with 8 hours talktime
4. HTC Thunderbolt:
The master of the android based smartphone HTC delivered yet another super bomb smartphone with Android 2.2 (froyo) OS that has won many users heart. But this phone has faced tough competition with other smartphones so currently it stands at no.4.
Specification:
CPU: 1GHz Scorpion processor, Adreno 205 GPU, Qualcomm MSM8655 Snapdragon
Display: TFT capacitive touchscreen, 16M colors, 480 x 800 pixels, 4.3 inches
Memory: 8GB storage, 768 MB RAM, with external memory option upto 32GB.
Battery Time: unknown.
3. Sony Ericsson Xperia Play:
Those who want a “play station” along with other features like phone and internet can now find all these things in Sony Ericsson Xperia Play. This uniquely designed set has all the power packed specs and features the brand new operating system Android 2.3 (Gingerbird) and so it is ranked 3rd in the list.
Specification:
CPU: 1GHz Scorpion processor, Adreno 205 GPU, Qualcomm MSM8255 Snapdragon
Display: LED-backlit LCD, capacitive touchscreen, 16M colors, 480 x 854 pixels, 4.0 inches
Memory: 400 MB, 512 MB RAM with 8Gb microSD. Memory extendable to 32Gb.
Battery Time: 425 hours with 8 hours of talktime.
2. Samsung Galaxy S 4G:
 
Samsung has delivered one of the best smartphones in the world. But it has fell just short to Motorola Atrix. However this Android based smartphone is still good enough to be ranked at no.2.
Specification:
CPU: 1GHz ARM Cortex A8, PowerVR SGX540 GPU, Hummingbird chipset
Display: Super AMOLED capacitive touchscreen, 16M colors, 480 x 800 pixels, 4.0 inches
Memory: 1GB ROM, 512 MB RAM including 16GB microSD memory card.
Battery Time: 300 hours with 7 hours talktime.
1. Motorola Atrix 4G:













Motorola Atrix is currently leading the list of best Android smartphones. It has a beautiful sleek design and 5mp camera. It is also known as mini laptop because it features dual core processor and 2.2 Android OS.
Specification:
CPU: Dual Core 1GHz ARM Cortex-A9 proccessor, ULP GeForce GPU, Tegra 2 chipset.
Display: TFT capacitive touchscreen, 16M colors, 540 x 960 pixels, 4.0 inches
Memory: 16 GB storage, 1 GB RAM, external memory up to 32GB.
Battery Time: Up to 250 hours and 9 hours talktime.

.

m