Thursday, November 29, 2007

What is a Java application?

Any standard series 40 and series 60 phone has a built-in Java environment which allows you to run all sorts of fresh applications and games. The installation and management of such applications is easy, once you know how to do it.

A MIDlet is a Java application that conforms to the Mobile Information Device Profile (MIDP) standard. The MIDP specification defines the Java Virtual Machine and API available on most Java-enabled smart phones, including all Nokia smartphones.

Java technology is widely used to develop mobile games and entertainment applications for Nokia phones. In fact, your Nokia was probably preinstalled with a few Java games (eg Golf and Beach Rally) and utilities (for example, and the converter Clock), courtesy of Nokia and your wireless operator. Here is a list of Web sites where you can buy or download MIDlets:

Handango is the largest online store for mobile software. It runs Nokia and Motorola online software stores. Visit to http://www.handango.com/ Handango.

The mpowerplayer website (http://www.mpowerplayer.com/) provides "previews" of mobile Java games right on your computer screen. You can download a game and play it on your computer. You just have to pay for the game once you choose to install on your phone. It is nice. Try!

The Midlet Review (http://www.midlet-review.com) publishes reports and evaluations of new MIDlets, especially games.

A Java application consists of two files. Java Archive (JAR) file contains the application executable code. Descriptor Java application (JAD) file is a text file containing the attributes of the application and the location of JAR file. During the installation process, the phone went to the JAD file, analyzes its contents, and checks whether the device has the required software and storage space to install the application. If everything looks OK, the camera follows the URL in the JAD file to locate and download the JAR file. Then, the camera compares the JAR file with attributes in the JAD file (for example, application name, vendor, size, digital signature, and so on.) If everything is, the application is installed and becomes the disposal.

How to do bluetooth pairing in Linux?

Pairing
Most bluetooth devices require pairing to be performed before a Bluetooth connection is established. Desktop computer or any remote device may initiate pairing to other bluetooth devices.

When the computer starts pairing, usually the outgoing connection is performed by pin_helper program (usually bluepin), which will show a graph of the dialog box asking the user to enter a PIN, which must match with the serial code on the remote device. If the serial code on the remote devices match, then the remote device is required to provide a PIN that match with the contents of /etc/Bluetooth/pin file.

In some Linux distributions, the PIN is set to the string alphabetical in the BlueZ. This is may cause inconveniences as many Bluetooth devices, including most cell phones are only capable of delivering digital PIN. It is therefore recommended that you change the contents of /etc/Bluetooth/pin to reflect a numeric code.

If pairing is successful, the hcid demon stores the resulting link key used to authenticate all future relations between the two devices involved in the /etc/Bluetooth /link_key database file.

Pinging a remote device
The ping command is a great useful utility to know if remote computers are able to be connected on a TCP/IP network. BlueZ has an analog to ping, called l2ping. Its name related to the fact that it creates a connection to the bluetooth device using the logical link control and adaptation protocol (L2CAP), the lowest-level link-based protocol in Bluetooth.

Therefore, before you feel despair because you cannot connect to a bluetooth device, you may check it with l2ping. There could be an error with software higher up the chain; l2ping allows you to check if a connection can be established with a remote bluetooth device. Here's an example of l2ping in operation (you must to run l2ping as root user):

# l2ping 00:0A:D9:15:CB:B4
Ping: 00:0A:D9:15:CB:B4 from 00:80:98:24:15:6D (data size 20) …
0 bytes from 00:0A:D9:15:CB:B4 id 200 time 54.85ms
0 bytes from 00:0A:D9:15:CB:B4 id 201 time 49.35ms
0 bytes from 00:0A:D9:15:CB:B4 id 202 time 34.35ms
0 bytes from 00:0A:D9:15:CB:B4 id 203 time 28.33ms
4 sent, 4 received, 0% loss

Tuesday, November 27, 2007

Initializing bluetooth-enabled phones and devices in Linux

The bluez-utils package as mentioned in the previous post contains the everything you need to configure and test your Bluetooth configuration. After you've installed the tool package, run the init script (/etc/init.d/bluez-utils start on Debian, /etc/init.d/bluetooth start on Red Hat) to initialize the Bluetooth subsystem. In latest kernels these scripts normally run on boot, so they may be started already if you installed from RPMs or especially Debian distributions.

The hcid daemon should now be loaded after your run this package. This daemon controls the initialization of Bluetooth devices on the system and handles the pairing process with other devices.

hci is short initial for Host Controller Interface.


Examine the local devices.
The hciconfig tool allows the configuration of the characteristics of your Bluetooth adapter. If you are used to modify configuration of network interfaces, you will find it to have many similarities in operation to ifconfig. Use -a to show detailed information about each Bluetooth device attached to the computer:

# hciconfig -a
hci0: Type: USB
BD Address: 00:80:98:24:15:6D ACL MTU: 128:8 SCO MTU: 64:8
UP RUNNING PSCAN ISCAN
RX bytes:4923 acl:129 sco:0 events:168 errors:0
TX bytes:2326 acl:87 sco:0 commands:40 errors:0
Features: 0xff 0xff 0x05 0x00
Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3
Link policy: HOLD SNIFF PARK
Link mode: SLAVE ACCEPT
Name: 'saag-0'
Class: 0x100100
Service Classes: Object Transfer
Device Class: Computer, Uncategorized
HCI Ver: 1.1 (0x1) HCI Rev: 0x73 LMP Ver: 1.1 (0x1) LMP Subver: 0x73
Manufacturer: Cambridge Silicon Radio (10)

Scanning for remote devices.
The normal test is to see if your computer can detect other Bluetooth devices. You can utilize the hcitool tool to do this. Switch on your other Bluetooth device, and ensure it is in "discoverable" mode. Issue the command hcitool scan and wait. You don't need to be root to run this command.

$ hcitool scan
Scanning …
00:0A:D9:15:CB:B4 N 6600
00:40:05:D0:DD:69 saag-1


I tested this with Nokia 6600 and Bluetooth adapter, saag-1, are shown as discoverable.

BlueZ, bluetooth device management utility for Linux

First of all, you have to be sure that you have the newer Linux kernel release, the you need a set of utility programs for Bluetooth devices management. The table below shows the packages name and its purpose. You may install the versions of these tools that could be included with your Linux distribution or compile and install them from source.

Utility programs for managing Bluetooth devices

Package

Purpose

bluez-libs

The application library that all other Bluetooth tools require to function

bluez-utils

Main utilities that enable you to initialize and control Bluetooth devices

bluez-sdp

Service discovery protocol tools that enable the advertisement and discovery of Bluetooth services

bluez-pan

Tools that enable personal area networking using Bluetooth

bluez-hcidump

A debugging tool that permits the monitoring of Bluetooth packets

bluez-bluefw

The firmware for Broadcom chipset-based Bluetooth devices

If you want to compile the tools from source code, compile and install the by the order shown in the above table to avoid dependency problems.

You may obtain pre-compiled versions of the BlueZ for Red Hat Linux as RPMs, for Debian stable as .deb packages (current Debian releases are already include BlueZ), and as packages suitable for the Sharp Zaurus Linux PDA. You can download them, along with the source code packages, from the BlueZ download page at http://www.bluez.org/.

To determine whether your Bluetooth system is working, you need to install only the bluez-libs and bluez-utils packages, and also bluez-bluefw if your dongle contains a Broadcom chip (you can determine this from Marcel Holtmann's Bluetooth hardware page at http://www.holtmann.org/linux/bluetooth/devices.html). Install the rest when you have verified that everything is working properly.

Monday, November 26, 2007

How to connect bluetooth with non-SP2 Windows version?

Windows XP SP2 has complete set of drivers to connect your bluetooth devices, however if you have older Windows versions, including Windows 2000, you need to install the vendor-supplied package for the Bluetooth device. The software usually contains a device driver and Bluetooth service management tools. There are many different kinds of Bluetooth adapters available in market.

Each bluetooth adapter brand has slight variation of installation procedure, however the general steps are,
1. Once you install the software package, there would a new My Bluetooth Places shortcut in user's desktop and a Bluetooth icon to the system tray. My Bluetooth Places opens like an ordinary folder in Windows Explorer. The content in this folder are the devices in the network and the supported services available. The available Bluetooth services, such as new devices searching and commencing/terminating local services, are shown in the Bluetooth Tasks sidebar.

2. You can open the system Bluetooth configuration utility in system tray icon or by using the "View or modify configuration" task in the My Bluetooth Places browser. Through this configuration utility, you may edit the Bluetooth settings, searching for devices in the network, and pair with the devices. There are also a number of unique vendor tools for services with paired mobile phones, such as dialing numbers, exchanging files and business cards, and others.

Saturday, November 24, 2007

Short codes for US network providers

Short # codes

Short code

Result

Operator

#MIN# (#646#)

Sends the minutes usage to your handset as a message

T-Mobile USA

#NUM# (#686#)

Sends your mobile number to you as a message

T-Mobile USA

#999#

Sends the balance of your prepaid account to you as a message

T-Mobile USA

#BAL# (#225#)

Sends your balance to you as a message

T-Mobile USA


Short * codes

Short code

Result

Operator

*MIN# (*646#)

Sends your minutes usage to your phone as a message

Cingular

*BAL# (*225#)

Gives you an update on your outstanding balance

Cingular

*NUM (*686)

Reads your mobile number to you with a voice recording

T-Mobile USA

*PAY (*729)

Enables you to make a free phone call to pay your bill

Cingular

*#100#

Sends you your mobile number as a message

Vodafone

*#1345#

Sends you your balance as a message

Vodafone

*#103#

Displays network time and date

Vodafone

*#147#

Displays the last incoming call, including time and date

Vodafone

*#105#

Displays cell tower information

Vodafone


Call codes for GSM networks

Command string

Result of command

#31#PhoneNumber

Masks your phone number from Caller ID (your call to PhoneNumber shows up as "Private Call").

*#21#

Checks status of call forwarding.

**21*PhoneNumber#

Forwards all calls to PhoneNumber.

##21#

Resets call forwarding to default.

*#67#

Checks status of forwarding for calls that arrive when you are busy.

**67*PhoneNumber#

Forwards all busy calls to PhoneNumber.

##67#

Resets busy call forwarding to default.

*#61#

Checks status of forwarding for calls that you don't answer.

**61*PhoneNumber#

Forwards all unanswered calls to PhoneNumber.

##61#

Resets unanswered call forwarding to default.

*#62#

Checks status of forwarding for calls that arrive when you are out of reach (when your phone is off or out of a service area).

**62*PhoneNumber#

Forwards all unreachable calls to PhoneNumber.

##62#

Resets unreachable call forwarding to default.


Verizon Wireless short codes

Short Code

Result

#MIN (#646)

Sends the minutes usage to your handset as a text message or voice message

#BAL (#225)

Gives account balance information as a text message or voice message

#PMT (#768)

Enables you to make a free phone call to pay your bill

*DWI (*394)

Reports a suspected drunk driver (might not work in all service areas)

How to unlock phone by calculating the code?

Locked phones are wasted investments
  • If you change to a new service provider, your old locked phone is useless and you must buy a completely new phone.
  • When you travel abroad, a locked phone cannot be used with local prepaid SIM card.
  • Locked phone cannot be sold.
There are a number of freewares for calculating the code, however they often have a less-polished UI and require you to know more about jargons. It can be frustrating to calculate the code. You may find the list of unlock code calculator programs here. You might need to try a number of unlock programs because they run in different Windows versions.

You might also try NokiaFREE with its online calculator at http://unlock.nokiafree.org/, which does the same thing as the offline software.

Older Nokia models usually use the old DCT3 firmware, while, most of today's Series 40 and Series 60 phones utilize the DCT4 firmware, which is luckily supported by most calculator programs. Examine the list of DCT3 phones at http://www.unlockme.co.uk/softwareversions.html. If your phone is not listed in this table, perhaps it is a DCT4 phone.

http://homepage.ntlworld.com/danluik/downloads/dct4nck.zip, is one of the simplest code calculator.

When it runs in DOS shell, it would display

DCT4NCK by jozso v0.0a
Usage: dct4nck locktype imei provider [boxserial]

In older phone locktype usually 2, but if you are using 3650 and 7650 above it is usually 5, also put your IMEI number and the provider code. You can get the provider code here.

This calculator would generate seven possible codes, however you only have 5 tries before the phone is locked,

Typically, you want to try the fourth one first, then the first one, and then the seventh one.

Locking mechanism is increasingly complex, this method will not probably work on newest phones.

Thursday, November 22, 2007

How to most accurately get reliable information on account usage?

The best way to get reliable information on your account is by utilizing your telephone service operator. Some operators allow their subscribers to send text messages to obtain account information.

Some examples for operators in the USA:
  • If you are a T-Mobile subscriber, you can call special service #646# (#MIN#) to check the account usage and service number #225# (#BAL#) to check the current account usage.
  • If you subscribe to Sprint PCS, you can call the service *4 to know the current account usage.
  • If you subscribe to Cingular, the number of service #2455 (#BILL) is available in some markets to check account usage.

The SMS based request may take form as sending a blank message to a service and acquire the account number via the message reply. It is most popular in Europe and Asia than in the United States most of these numbers are freely accessible.

Not all operators offer such services to their subscribers. The information provided may also very short, considering the limited size of reply. Your most up-to-date source of information is the customer service of your wireless network operator.

Wednesday, November 21, 2007

Call logging softwares for Symbian

If you use a Nokia Series 60 phone, you can substitute the built-in log feature with a commercially available in third-party programs. One of the is Moov Software's Minute Manager.

Minutes Manager tracks the minutes of airtime, data bandwidth, and email usage. You can configure it further to support the more complex services package. For example, you can configure it based on the different peak times and weekends periods used by the various operators. It would starts to register after two minutes the phone rings or after the called person picks the phone up. This application may also ignore call logging for toll-free numbers specified in the contract (for example, families members, 611 and 911 calls). It even handles important details such as whether peak minutes can be carried over to off-peak time and if the plan allows you to carry more minutes since the last billing cycle (for example, plans Cingular Rollover Minutes).

Minutes Manager resets itself at the beginning of each billing cycle. It displays the unused minutes left in the current billing cycle, both in the program and on the phone display slowed. This is a very handy feature that lets you know instantly available minutes, without the pressure of a button.
However, Minutes Manager, which made certain limits. For example, it is only available on Series 60 devices. Also, it cannot distinguish between regular calls made between the numbers inside the network, which can become free during promotional campaign.

Extended Log Symbian is another utility that analyzes the phone's call log and helps in tracking the account usage.

Tuesday, November 20, 2007

Use built-in log to monitor your call and data usage

Nokia Series 40 and Series 60 devices come with a small program to keep track of mobile phone use. In Series 60 device, it is called 'Log' this program can be accessed at main menu display. In Series 40 device, this phone features is called as 'Registry'. The log shows the total number of minutes of calls made and received, as well as data bandwidth GPRS redeemed. This log can be reset at the start of billing cycle to make it easier to track your monthly usage.

The problem is this feature is too simple to keep track today's complex service plans. -- The log cannot distinguish between the charged fee during off peak and peak hours. It counts free call services (for example, 611 or 911 telephone), family plan calls, and regular phone calls similarly. Once the call button is pressed, the log register that call at the same moment. At older Series 60 devices, this log does not count the number of SMS/MMS received and sent.

Monday, November 19, 2007

Watch your account to avoid costly fees !

Today, contracts for wireless services are developed by the operator . Consumer pay a fixed monthly fee to subscribe to an offered service plan. The plan may includes a number of minutes of voice calls and SMS / MMS, and a number of data bandwidth. Calls made at peak or off-peak time, from different locations (home or roaming areas), and to various destinations (family members, in the network of mobile numbers, etc.) are all calculated differently in the plan. If you exceed the limits of use of this plan, you will have to pay more. Due to these additional fees, many subscribers tend to choose plans that are somewhat more expensive than what they need to ensure that they do not exceed the limit. The unused portion of the service plan is wasted at the end of each month or billing cycle. That would mean a lot of extra profit for the operator and the subscribers throw that money needlessly

Some wireless network operators in the United States provide solutions to the problem of wasted minutes. Cingular lets you to transfer unused minutes from one month to another. Sprint proposes a different solution: a flexible service plans, you will be automatically upgraded to the next higher plan if your usage exceeds the limit.

You can do better! Let's beat the system and don't throw your money away by monitoring the use of your account regularly and adjust your usage habits accordingly. Well, if you are short of peak time minutes left near the end of month/billing cycle, you can make less important calls during off-peak hours, or even postpone to the next billing cycle. In a more aggressive planning, you may also reduce your month-to-month fluctuations of usage. This would allows you to choose an affodable plan that closely matches your need. The key to good planning is to research for accurate and real-time data on the use of your account at any time. I will show you how to do this in my next posts!

Saturday, November 17, 2007

How to know your software version?

Another piece of useful information about your phone number is its software version. Devices with the same model number (for example, the same material), but different versions of the software may have slightly different behavior and features. Some of the tricks and advanced applications depend on the device software version.

Technical bulletins published by the Forum Nokia identify issues and bugs with version numbers of specific software. For the version number of your phone, enter the code *#0000# on your keyboard, as if you are calling a phone number.

If your phone has an older version of firmware, you can update the firmware by reflashing the main phone memory. You can send the phone to a phone store to make these upgrades.


Reflashing your phone firmware can damage the device in some cases. It is not covered by your warranty, so do this at your own risk!

How to know the IMEI number?

The International Mobile Equipment Identity (IMEI) is a 15 digit code that uniquely identifies your mobile phone. It is a very useful code, for example, the wireless operator will use your IMEI code to relate to your account and identify stolen phones, locking them from using the network. Nokia Series 60 devices often uses IMEI codes to register the purchase of software. There are two ways to find out your phone's IMEI number:

The first method is to search on label. The IMEI number appear on the packaging of the telephone box. If you lose the original package box, it can also be found on the white label under the battery.

The second method is to type *#06# on your keyboard, as if you call a phone number (do not press the Send key green). Immediately after you type in these numbers, the phone will display its IMEI number.

If you buy a used phone from a third broker, it's a good idea to ensure that the IMEI number returned by the phone software is similar with the IMEI number on the inner label and the box. A mismatch may indicate that the phone is stolen or counterfeit.




How to know the model number?

Numbering for Nokia smartphones is somewhat cryptic, such as Nokia 9300, 3250, 3650, etc. Do you know the model number of your phone? Well, it is indeed easy to find the model number, even if you lost the box and purchase receipt. First, turn off your phone, and then open the back cover of the device and remove the battery. You will find the sticker which contains IMEI number and phone model number. Write it down, these number would be important for the optimization of your phone and would be used for tips and trick in this blog

Available data plan technologies

Wireless phone usually based on the data network operator to connect to the Internet. The technologies of wireless network is known as a data bearer of mobile data. Here is a brief overview of the data available to carriers today plans for wireless services. Given that the vast majority of Nokia handsets based on GSM, I refocus the topic of this blog on GSM-related technologies on this technology.

GSM
The GSM network provides access to the phone (call data). It works the same way as the modem on a PC. The advantage of this technology is that it is available anywhere you can get coverage. However, the disadvantages are the slow data rate (between 9.6 and 13.2 kbit/s) and phone dedicated to the connection. Since the call must be connected throughout the session data, it relies on your air time minutes. If you want to make a voice call, you must first disconnect the data call. All Nokia Series 40 and Series 60 devices support GSM data connection. GSM data connection is known as 2G (second generation).

GPRS
The GPRS network allows the phone to have direct access to the packet data network. The phone does not need to dial calls. This feature allows the phone, always on access to data without the use of airtime minutes. GPRS is known as the 2.5 G (midway between the second and third generation). The data speed of 2.5 G data carriers (between 20 and 40 kbit / s) is also faster than the 2G data carriers. All Nokia Series 40 and Series 60 devices supporting bearer GPRS data.

EDGE
The EDGE network works a bit like the GPRS network, except that EDGE has a much faster pace of data (up to 230 kbps).

UMTS
The UMTS network is the so-called third generation (3G) wireless networking technology. It offers data speeds broadband approximately 384 kbps and higher.

Which data plan that is available to you depends on your wireless operator, your location, and your service plan. GPRS service will be available from all GSM operators where you have the voice of coverage. If your service plan does not include data service, you can call your carrier wireless and added to a monthly fee. The data service is generally determined by the bandwidth you use in a billing period. Most operators also offer flat-rate subscriptions for unlimited data use.

Similar data bearers also exist in CDMA networks and are available on CDMA phones Nokia (Series 40). CDMA unique data carries Carrier Radio Transmission Technology (1xRTT) and the Single Carrier-Evolution Data Only (1xEV-DO). 1 xRTT is typical rates of 70120 kbit/s, and 1xEV-DO has typical downstream speeds of 300-500 kbit/s (with upstream speeds the same as 1xRTT).

About choosing data plan

With their full wireless support, Nokia smartphones are some of the most favorable gadgets available. If you are going to use your phone to connect to the Internet, make sure you choose the right data plan.

Your Nokia smartphone phone can connect to the Internet in many ways, but it will cost you some cash. Before you commit to the plan data, you must consider what you are going to do with the phone. Will you send and receive messages on the phone? Do you intend to send lot of pictures or video clips taken with camera phone? Publishing your blog? Do you use your Nokia phone to connect, your laptop to the Internet? It is possible that you use your phone for a lot of what the computer can do, and yes, there are many hotspot around the world for your WiFi and 3G device.

Data plans are divided into two versions: meter and unlimited. With metered plan, you get anywhere from 500 Mb to 10 Gb per month, or you can pay per kilobyte. There are two types of plans unlimited: handset plan and a truly unlimited plans, which allow you to use your phone as a wireless modem for your laptop or PDA.

What to do after signing up to a voice plan?

Most network operators give you a trial period of 15 to 30 days. Use these days to your greatest advantage! Go to your home, your office, anywhere you used to go and you need to expect good service. Call customer service. Call several times and talk to different representatives. In such cases, if the service does not perform as you wish, you can move out of your contract.

You can also get all kinds of scary stories about customer service of the various operators. Customer service needs to be improved in almost all operators. Customer Service Representatives (CSR) need to be better trained in general, and specially trained to handle complaints and issues of service. I think the general feeling is that they are yours for the duration of your contract, and that if you already become a customer for a while, you will become depended to the telephone number assigned to you, they, so that they are not scared of losing you.

However, the ability to port your number from one operator to another may cause some customer service department to rethink that assumption.

I know I can be annoying sometimes, but I will always notify a supervisor when a representative was particularly attentive, polite, and helpful. I think it's more important to give a high five to the CSR that really care to the customers.

Choosing the best voice plan

Network operators constantly change their plans and frequently offer attractive promotions. However, these promotions are generally based on two-year contracts, and the only thing you usually get is the agreement on the price of the phone. If you factor in the Early Termination Fee (ETF), which is usually $ 175 to $ 200, the situation is not very good. It can be difficult to find someone who is delighted with the signing of a two-year contract. As a result, many people break their contracts, opting to pay the ETF so that they can move to an operator who has a more attractive plan or data service.

So, look for a permanent promotion that includes greatly reduced the monthly rates. These plans do exist. When AT & T Wireless launched its GSM service, the $ 39.95 /500 minutes plan, it includes an additional 500 minutes, one of my friends was still active on this package until this day.

Many of these promotion plans disappear eventually, and you should switch to another plan. With regard to which plan to choose, consider a minimum of 1000 minutes package if you are a professional user who is going to use the telephone to a lot of calls during busy work day. If you use the phone for personal use, you can get away with a lot less minutes, between 300 and 600 minutes, especially if your operator promotion package flows into the night hours and weekends free calls.

Each operator has a different definition of the night and on weekends, and these definitions change from time to time. Over the years, operators have defined as nights from 9:00 pm and on weekends starting on Friday at midnight, which gives you only two days of weekend. On the downside, some have defined weekends from Thursday at midnight, and thus include all Fridays, Saturdays and Sundays. In this case, a business user may be able to get away with a plan with a low number of minutes, assuming he can schedule all its conference calls on Friday.

Once you have choose a plan, it does not stop there. Keep an eye on the number of minutes you use and plans to move away if necessary. If you switch plans, make sure to know what is the requirement of contract termination.

How to conduct research in choosing the best voice plan?

In order to help you in doing a serious research on your market and the service is offered to them, www.WirelessAdvisor.com provides discussion forums. In addition, HowardForums (http://www.howardforums.com/) is the place where people talk about all things related to mobile phone. You can use the search function in HowardForums for example, to search for information on your market (just browse this forum and use the search box at the bottom of the page). Make sure you use the search function first, it is a very busy site, and I am willing to bet that the question you want to ask has been asked before.

HowardForums also has forums for all manufacturers of mobile phones available today, in fact, Nokia has a group of followers at HowardForums. It is also a good place to learn about new plans and promotions before the operator made an official announcement. In addition, all operators have several employees who read this forums regularly. I saw a lot of mobile users get help as if they are addressing phone's customer service.

How to pick the best cellular phone provider?

Maybe you really want to use a Nokia N-82 Smartphone. It is a GSM phone, you enter your Zip Code in the www.WirelessAdvisor.com search form, which will gives you all operators who have licenses GSM radio in that region.

At this stage, you need to start listening to other customers experience with the operator. Ask your family, friends and colleagues about the operator they use. They will tell us if they hate the service, and you know from personal experience that they drop calls all the time when we talk to you on their mobiles. This can be a sign of poor equipment, excessive use of the network, or low coverage in your area. I used one of the CDMA operators for years in the Washington, DC market. After decent services for a time, they quickly went downhill. I regularly received "network busy" messages on my phone and I had a very long and painful history call to the customer service. Despite using this operator for years (almost five, in fact), I could no longer believe it to be reliable network provider. Now, I made it very clear to anyone, I knew what I think about this company. For each network operator, I hear a lot of complaints, and we found that the quality of service depends not only on the operator, but also on how this system is implemented in a given geographical region .
So, you can pick a temporary operator for your service with the phone you want (or the one you already have). Go to the operator of the Web site and verify their coverage maps. Typically, these map are not very accurate, but it would give you a general idea about the coverage, check if you areas covered are the most common. If they are not, see another operator who can take charge of the same equipment. Otherwise, the options to reconsider your equipment or lower your standards.

How to pick the best smartphone based on voice plan?

CDMA operators are generally not very keen to let you go to them and bring CDMA device you bought from a rival operator, but still it can not hurt to ask. You will have a better chance of changing operator with a GSM mobile phone operator because you can usually swap a small card called SIM card from one phone to another, the SIM card identifies your unique account and you are allowed to access a specific network operator's GSM network.

After choosing a right phone, you will be able to determine from its description of what kind of network it uses (CDMA or GSM). Once you have determined what type of network you need, you can use WirelessAdvisor for what operators in your area operate such a network. Yo can go to http://www.wirelessadvisor.com/ to find which operators who have a spectrum in all major cities or in a specific US ZIP codes. It does not mean that these companies provide services; they may just only hold licensing radio spectrum. This site also list what type of network they are using, whether GSM, CDMA, iDEN, or TDMA.

What to prioritize when choosing a provider?

Those cool gadgets and new equipments are coming out each week. However, priority on gadgetry should not be your main determining factor when choosing an operator of wireless network (carrier). Unless you live in a major city with at least two million people and choices and coverage in abundance, there are considerations more important than the voice quality or the choice of downloading games. A mobile phone is simply not good without a quality service. You must first focus on the coverage and the spectrum available in your most frequent use markets. Use the Web site to search your home and office, and if you travel regularly to another city or town, check that too. Make sure that the coverage maps of the network operator covers your areas. Nothing is worse than discovering that you can not get a signal in the areas you visit regularly, or if you are subject to high roaming charges!

There is no such thing as a the best wireless operator. It is really not possible to be the best on all around factors, for many reasons, but I hope to give you the means to make informed decisions regarding the operator that you should use in your primary market.


Picking the right phone for the available network

All Nokia mobile phone works with either the GSM network or the CDMA network. Therefore, you need to choose the right model to match your wireless operator.

Unfortunately, not all Nokia smartphones work with all wireless operators everywhere in the world. Each wireless operators build their networks using different kind of technologies, and a phone model typically works with only one of the network technologies.

If you obtain your Nokia smartphone from the wireless operator when you signed up to a service plan, it can be rest assured that the device is compatible with the operator's wireless network in your current area. However, as smartphone power users and gadget lovers, many of us actually buy cutting-edge devices directly from electronics stores at bargain price and then use them with existing service plans. If that the case, you have to be a little extra careful to picking a phone that works correctly with your operator's network.

Purchasing a smartphone from a third-party electronics store without a service plan will often cost you more, because the mobile operator does not subsidize the cost of the device with service revenues in this case. However, you will have access to the latest devices available that have not been officially supported by the operator, and you will be freed from operator lock-in. Additionally, you get a handset unmolested by the mobile operator. Many operators apply custom firmware and branding to their handsets, such as adding new icons or removing functionality from the device. This would limit the full potentials of your smartphone. Even if you get a device unlocked from your operator, it will still have some customizations in place, and sometimes this can produce very undesirable effects in the long term.

Thse are the most common technology for cellular phones

GSM
The GSM technology was developed in Europe to provide digital voice networks. It has been now extended to support fast wireless data access via the General Packet Radio Service (GPRS; 2040 kbps), EDGE (40 230 kbps), and UMTS (384 kbps and up) protocols. GSM phones operate at frequencies of around 900, 850, 1800, and 1900 MHz. It is now become the most widely used wireless phone network technology in the world. All Nokia smart phones support both GSM and GPRS. Newer models, such as Nokia N-series also support EDGE and UMTS.

iDEN
iDEN is Motorola's proprietary wireless networking technology based on (but unfortunately not compatible with the prevalent) GSM. It attempts to combine the digital phone, two-way radio, alphanumeric pager, and data/fax modem in a single network. The iDEN network is only used in about a dozen countries. In North America, Nextel and Mike (Telus Mobility) are iDEN operators. No Nokia phones currently works with iDEN networks.

CDMA
The CDMA technology is developed and licensed by Qualcomm. It is based on the spread-spectrum technology which uses a single-frequency band for all traffic. Each individual transmission is differentiated by a unique code assigned by the network before transmission. CDMA supports wireless data at a peak speed of 153 kbps, about three times the speed of GPRS. Nokia's CDMA devices are not as technically advanced as its GSM-based devices, such as the lack of Symbian S60 OS.


Network availability is a prime consideration if you frequently travel abroad. For instance, most wireless operators in Western Europe use the GSM network. Your CDMA phone will have limited coverage there. On the other hand, South Korea uses mostly CDMA networks.

To get a complete list of GSM and CDMA devices from Nokia, go to the Forum Nokia device matrix at http://www.forum.nokia.com/ devices and choose GSM or CDMA in the "Devices filtered by" drop-down box.

What is a smartphone?

Casual mobile phone users use their phones only for voice calls. The phone's keypad and small screen are well designed for such kind of use. Modern Nokia mobile phone is a lot more than an ordinary voice communications device. In fact, the phone comes with a 200-page user manual, which explains many of the phone's advanced features.

Today, Nokia mobile phone is a voice, text, and multimedia communications hub, a personal information manager, a web browser, a multimedia entertainment center, game console, and an extensible platform for new applications all in one single hand-held device. In this blog, I will discuss tricks and tips on how to make the best use of those great features. However, before you start on these optimization tricks, you need to understand the Nokia phone's features and how they relate to network services.

A smartphone is defined as a mobile phone that has computer functionalities and integrated with an operating system, it provides features, such as a web browser, an email client, a personal information manager, a media player, and video games. Based on this definition, almost all Nokia mobile phones sold since 2003 are smartphones.

Official Nokia web site is the best place to find information about Nokia phones. However, the Nokia web site is hard to navigate and bookmark, since most links are generated dynamically. If you are curious about a specific model, you can just enter the word Nokia, along with the four-digit number of the model you're interested in (e.g., Nokia N-82), into the Google search engine (http://www.google.com/). The Nokia product page is typically the top-ranked search result. From that page, you can learn more about the phone, read the technical specifications, download the user manual, obtain additional software, and buy accessories
.

About Smartphones

Smartphones are one of the smallest computers and also the most connected computers. They interconnected with the voice telephone network as well as to the short and long-range digital data network, including the Internet itself. In its raw computing power, an ordinary smartphone in 2005 is roughly equivalent to a top-of-the-line PC of the middle 1990s in terms of both CPU speed and memory size inside a light handheld device. It combines all the most disruptive technologies of our times, including wireless networks, mobile phones, digital media, photography, PCs, and the Internet, smartphones have profoundly changed our lives and our social interactions. There is certainly a "mobility divide" similar to the "digital divide" in our societies: the people who know how to take advantage of smartphones will eventually have a strong competitive edge. If you are interested in learning how to make the best use of your smartphone, this blog is for you.

About This Blog

This blog is created to provide tips, trick and how-to's to the feature-rich Nokia Symbian Mobile Smartphone, visit often to get the most out of your smartphone.