Subscribe in a reader About All The Latest: Nokia N97 Smrtphone

Tuesday, January 20, 2009

Nokia N97 Smrtphone


This Phone Is Really Smart -- And Expensive
The Nokia N97 is the latest edition to the Finnish mobile device manufacturer's flagship N-line of smartphones. Announced at Nokia World in Barcelona this week, the N97 is smart -- really smart. The phone comes with an embedded GPS and A-GPS sensors that help the phone determine your location, even if you don't know where it is. The N97 will be available in European and Asian markets sometime in the first half of 2009 and retail for about $695. No word on a release date for the United States.

Easy Connectivity To The Web
The N97 contains the key feature that smartphone users have come to expect since Apple's iPhone revolutionized the market. Unlike the iPhone, however, the N97 features 3G connectivity right out of the gate. Wi-Fi is also enabled in the device -- unlike the Research In Motion's BlackBerry Storm -- allowing for easy access to surf the Web.

Touchscreens And Widgets
Touch screen is the hot technology for smartphones these days, and Nokia recognizes that. The front panel of the N97 is a touch screen that doubles as a home page. Users of older Nokia phones will recognize the widgets that users can customize on the front screen. E-mail, weather or even Facebook, it's all right there on the front of the phone.
Just Leave Good Enough Alone
Even though touch screens seem to be the wave of the future, the N97 recognizes that you don't necessarily revolutionize everything about smartphones. After all, if it's not broken, don't fix it. To that end, there's still a full, horizontal QWERTY keyboard for users to punch up text messages, respond to an e-mail or write on a friend's wall.


Location Mapping Social Networks Built-In
Nokia is hoping to make location networking capabilities part of the common lexicon. Some location mapping social networks already exist, like Loopt, Fireball and BrightKite. With the N97's built-in GPS, it makes joining these budding communities and connecting with nearby users even easier.
Get Social, Stay Connected
Right now, there's no app store for the N97 like there is for Apple's iPhone. But Nokia is obviously trying to build communities around this smartphone, or at least to enable users to patch into the social networks that have become the backbone of online interaction for so many people. With the N97, a simple Facebook widget can get you connected and updating your status in no time.



Big Memory
The N97 comes with a hefty load of memory as well. You think 8 GB or 16 GB is enough? How about 32 GB of on-board memory and the capability to add a 16-GB microSD card to boost it all the way up to 48 GB of memory on the go? With that much storage space, you don't have to just stream YouTube videos; you can download entire episodes of your favorite television show and watch on the train ride to work.
Enhanced Operating System
The operating system the N97 is built on should look familiar to the Nokia faithful. The N97 runs on an enhanced Symbian OS, similar to the one found on the Nokia 5800. Officially, the operating system is an enhanced Symbian, S60 version 5.


A Bit Of Column A, A Bit Of Column B . .
The design of the N97 looks to be simple and elegant. The 3.5-inch touch-screen display is reminiscent of the iPhone, while the minimal use of buttons brings to mind RIM's BlackBerry Storm. And the pop-up touch screen with a QWERTY keyboard underneath? That's all G1 from T-Mobile.
All Good Things Come To Those Who Wait
While some lucky people, like the one pictured at the top, actually get to lay hands on the N97 and play around with its functionality, the rest of us will have to wait -- especially if we live on this side of the pond. Europeans and Asians can expect to see the N97 sometime in the first half of 2009. But for U.S. customers who are looking to make the jump, they'll have to wait until later in the year at the earliest.
Ref:Article from Channel web

<%@ page import="java.io.BufferedReader,
java.io.InputStreamReader,
java.io.IOException,
java.io.UnsupportedEncodingException,
java.net.URL,
java.net.URLEncoder" %>
<%!

private static final String PAGEAD =
"http://pagead2.googlesyndication.com/pagead/ads?";

private void googleAppendUrl(StringBuilder url, String param, String value)
throws UnsupportedEncodingException {
if (value != null) {
String encodedValue = URLEncoder.encode(value, "UTF-8");
url.append("&").append(param).append("=").append(encodedValue);
}
}

private void googleAppendColor(StringBuilder url, String param,
String value, long random) {
String[] colorArray = value.split(",");
url.append("&").append(param).append("=").append(
colorArray[(int)(random % colorArray.length)]);
}

private void googleAppendScreenRes(StringBuilder url, String uaPixels,
String xUpDevcapScreenpixels) {
String screenRes = uaPixels;
String delimiter = "x";
if (uaPixels == null) {
screenRes = xUpDevcapScreenpixels;
delimiter = ",";
}
if (screenRes != null) {
String[] resArray = screenRes.split(delimiter);
if (resArray.length == 2) {
url.append("&u_w=").append(resArray[0]);
url.append("&u_h=").append(resArray[1]);
}
}
}

private void googleAppendDcmguid(StringBuilder url, String dcmguid) {
if (dcmguid != null) {
url.append("&dcmguid=").append(dcmguid);
}
}

%>
<%

long googleDt = System.currentTimeMillis();
String googleHost = (request.isSecure() ? "https://" : "http://")
+ request.getHeader("Host");

StringBuilder googleAdUrlStr = new StringBuilder(PAGEAD);
googleAdUrlStr.append("ad_type=image");
googleAdUrlStr.append("&channel=");
googleAdUrlStr.append("&client=ca-mb-pub-2929571320328518");
googleAppendColor(googleAdUrlStr, "color_border", "555555", googleDt);
googleAppendColor(googleAdUrlStr, "color_bg", "EEEEEE", googleDt);
googleAppendColor(googleAdUrlStr, "color_link", "0000CC", googleDt);
googleAppendColor(googleAdUrlStr, "color_text", "000000", googleDt);
googleAppendColor(googleAdUrlStr, "color_url", "008000", googleDt);
googleAdUrlStr.append("&dt=").append(googleDt);
googleAdUrlStr.append("&format=mobile_single");
googleAppendUrl(googleAdUrlStr, "host", googleHost);
googleAppendUrl(googleAdUrlStr, "ip", request.getRemoteAddr());
googleAdUrlStr.append("&markup=xhtml");
googleAdUrlStr.append("&oe=utf8");
googleAdUrlStr.append("&output=xhtml");
googleAppendUrl(googleAdUrlStr, "ref", request.getHeader("Referer"));
String googleUrl = request.getRequestURL().toString();
if (request.getQueryString() != null) {
googleUrl += "?" + request.getQueryString().toString();
}
googleAppendUrl(googleAdUrlStr, "url", googleUrl);
googleAppendUrl(googleAdUrlStr, "useragent", request.getHeader("User-Agent"));
googleAppendScreenRes(googleAdUrlStr, request.getHeader("UA-pixels"),
request.getHeader("x-up-devcap-screenpixels"));
googleAppendDcmguid(googleAdUrlStr, request.getHeader("X-DCMGUID"));

try {
URL googleAdUrl = new URL(googleAdUrlStr.toString());
BufferedReader reader = new BufferedReader(
new InputStreamReader(googleAdUrl.openStream(), "UTF-8"));
for (String line; (line = reader.readLine()) != null;) {
out.println(line);
}
} catch (IOException e) {}

%>

No comments:

Post a Comment

[. Home .] [. Hollywood .] [. Bollywood .] [. Technology .] [. All Movies .]