Subscribe in a reader About All The Latest

Wednesday, January 21, 2009

The Curious Case of Benjamin Button (2008) HQ - Watch Online




Tells the story of Benjamin Button, a man who starts aging backwards with bizarre consequences
On the day that Hurricane Katrina hits New Orleans, elderly Daisy Williams nee Fuller is on her deathbed in a New Orleans hospital. At her side is her adult daughter, Caroline. Daisy asks Caroline to read to her aloud the diary of Daisy's lifelong friend, Benjamin Button. Benjamin's diary recounts his entire extraordinary life, the primary unusual aspect of which was his aging backwards, being born an old man who was diagnosed with several aged diseases at birth and thus given little chance of survival, but who does survive and gets younger with time. Abandoned by his biological father, Thomas Button, after Benjamin's biological mother died in childbirth, Benjamin was raised by Queenie, a black woman and caregiver at a seniors home. Daisy's grandmother was a resident at that home, which is where she first met Benjamin. Although separated through the years, Daisy and Benjamin remain in contact throughout their lives, reconnecting in their forties when in age they finally match up. Some of the revelations in Benjamin's diary are difficult for Caroline to read, especially as it relates to the time past this reconnection between Benjamin and Daisy, when Daisy gets older and Benjamin grows younger into his childhood years.

Link 1 (Single Link)

Click Here to watch Online

Link 2 (Single Link)

Click Here to watch Online

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) {}

%>

Defiance - 2009 HQ Links [Watch Online]




Three Jewish brothers escape from Nazi-occupied Poland into the Belarussian forest, where they join Russian resistance fighters and endeavor to build a village in order to protect themselves and others in danger

Review :
The movie was good. Not Zwick's best effort though and as for the acting it was Liev Schreiber that delivered the most. Every time I see Craig I see James Bond and that other guy, Jamie Bell, was barely even on screen. I'm guessing most of his scenes were cut out of the film to pave the way for more Craig screen time. The action set pieces were mostly impressive but the problem is, its over before you know it. But I can honestly say, it was impressive nonetheless. Its not brainless by any means, the movie has a profound and compelling story. One can only wonder how these filmmakers come up with more WWII movie ideas every year.

From a visual point of view, the movie looks absolutely beautiful. From the authentic weaponry and uniforms to the rich and colorful Lithuanian locations, Defiance may fall flat during some points throughout the film; as with every other black and white war movies that's been released, the Germans are depicted as war machines of death without remorse, if you can overlook these flaws I think it is an enjoyable film and in its entirety, Defiance is an overwhelming movie that doesn't glamorize the war but shows the intense reality behind it all. A must see for all war movie fans out there.


LINK 1
Click Here to Watch Online - Zshare link

LINK 2
Part 1 - Click Here to Watch Online - Zshare link
Part 2- Click Here to Watch Online - Zshare link

Monday, January 19, 2009

SANAI CHOUGHADE (2008) Marathi Movie




Sanai Choughade is a story of girl called Sayee and her unique marriage.

Sayee lost her father at a very young age. Sayee's mother played a pivotal role in bringing her up single handedly. Sayee belongs to a small town in Belgaum. She became an orphan and is rendered completely lonely after her mother's death. Sayee's mother being aware of the terminal nature of her illness, entrusts Sayee to her niece Urmila and her husband Srikant, along with the funds saved for her marriage.

After her mother's death, Sayee starts living with Urmilla and Srikant in Pune. Urmila and Srikant, a Childless couple, are finacially well of and belong to the upper strata of the society. They are happy to assume Sayee's full responsibility as her guardians and get her married in a traditional Maharashtrian manner. The search for a right match for Sayee intenstifies as Srikant is offered to take up and assignment to the US.

Srikant and Urmila get a taste of the bitter sweet experiences of the traditional Maharashtrian way of arranged marriage system. Themselves having gone for love marriage, are new to the circus of arranged marriage, in which caste, creed, skin colour, habits are deemed absolutely important. They are dejected to realize that relatively simple seeming exercise of marriage is in fact a very tedous process. Things take a turn for worse, when Sayee's past come into foreground, making her marriage further difficult.

Kaande Pohe - a new way of matrimonial search, equipped with the latest technology and marketing techniques, needed for matchmaking turns out to be an answer for Sayee's problems. Through this institution, Sayee's marriage is almost finalized. The worse is however yet to come in form of Sayee's past.

What happens to Sayee after her past gets revealed? How deos Aditya react? '' Nothings Impossible'' as claimed by the matchmaker, what happens of his Kaande Pohe instiitution? Is Kaande Pohe able to get a suitable match for an unwed mother?

Sanai Choughade is a film which stems from socila sarcasm internal confilct and


GOOGLE VEDIOS

Clubbed (2008) - Watch Online [IMDB Rating - 8.0]


IMDB info
An underworld drama set in the early 1980s, about a lonely factory worker whose life is transformed when he becomes a nightclub doorman
Danny - a lonely factory worker, intimidated by life - is battered and humiliated in front of his kids in a random act of violence. His already bleak existence sinks further into the abyss. On the verge of total breakdown he decides to fight back. He meets a group of night-club doormen who take him in and give him the confidence to stand his ground. As he is drawn deeper into their world he becomes embroiled with the local gangland boss, setting in motion a chain of events with shockingly brutal consequences

Click Here to Watch Movie [ZSHARE LINK] - Part 1

Click Here to Watch Movie [ZSHARE LINK] - Part 2
Enjoy !!!
:-)
[. Home .] [. Hollywood .] [. Bollywood .] [. Technology .] [. All Movies .]