He has more than 7.6 years of experience in the software development. He has spent most of the times in web/desktop application development.
He has sound knowledge in various database concepts. You can reach him at viki.keshari@gmail.com
https://www.linkedin.com/in/vikrammahapatra/
https://twitter.com/VikramMahapatra
http://www.facebook.com/viki.keshari
If you have dowloaded any of the goole application, then checkout there is process running in your PC googleupdater.exe by typing service.msc in your run command. Or you can also check by pressing “alt+ctrl+del” to open task manager and click the process tab.
What is Google Updater?
This is a process that google gives you, which is not at all necessuary to be run all the time when you use any of the google application you have downloaded. Then the question is What it do?
Why this is running on my Desktop?
This process informs the user about the new version and updates for the all the google products installed on your PC.
Is it a worthfull to have this process running on my Desktop?
Normally when ever you use any of the google products like picasa or google screensaver you can manually update these applications but google updater on the other hand keeps on running and consuming the system resources like physical memory like RAM all the time.
So, google updater is like all those unwanted tiny applications which keeps on running in the background and making your system slow.
Facebook stole the thunder from Google this year as the most-visited website in the United States, according to a new study from Internet research firm Experian Hitwise.
The social-networking juggernaut's www.facebook.com was the top-visited website for the first time and accounted for 8.93 percent of all US visits between January and November 2010, Experian Hitwise said.
Google, the world's Internet search leader, slid to second place. Google.com drew 7.19 percent of visits, followed by Yahoo! Mail (3.52 percent), Yahoo! (3.30 percent) and YouTube (2.65 percent).
Facebook led arch-rival Google in the number of hits per month since March.
However, taking into account all of Google's websites, such as YouTube and Gmail, the Mountain View, California-based company drew 9.85 percent of the US visits, ahead of Facebook's 8.93 percent and the 8.12 percent garnered by Yahoo! sites, an Experian Hitwise spokesman said Friday.
Online tracking firm comScore last week ranked the Yahoo! family of websites as the most-visited in the US in November, ahead of Google, Microsoft websites and Facebook.
On a global scale, Google held the top position, followed by Microsoft, Facebook and Yahoo!, according to comScore.
But analyst Greg Sterling of the specialist site SearchEngineLand.com cautioned that the Hitwise study does not track website visits via mobile devices such as cell phones or tablets, and the number of searches on Google's Chrome browser, which avoids google.com, was uncertain.
"This is right now more symbolic than anything" to see Facebook overtake Google in the United States, Sterling told AFP, adding that the study confirms "Facebook growth has been dramatic."
The social-networking giant has more than 500 million active users per month in the world, and according to comScore attracted 647.5 million unique visits in November, a jump of 48 percent from a year ago.
Sterling highlighted the sharply different approaches between Google and Facebook.
"Google is a very utilitarian site, where people go to make a decision, whereas Facebook is for entertainment," he said.
But if Facebook "were to concentrate on search, they could do something that stands to really hurt Google."
The syntax of Go is close to that of C except for the type declarations; other syntactical differences are the missing parentheses around for and if expressions. It is designed for exceptionally fast compilation times, even on modest hardware. The language requires garbage collection. Certain concurrency-related structural conventions of Go (channels and alternative channel inputs) are borrowed from Tony Hoare's CSP, but many (such as Edsger Dijkstra's guarded commands) are omitted. Unlike previous concurrent programming languages such as occam or Limbo, Go does not provide any in-built notion of safe or verifiable concurrency. Go also has some features of the Pi calculus such as channel passing.
Features not included in Go are exception handling, type inheritance, generic programming, assertions, and method overloading and pointer arithmetic.One Of these, the Go authors express an openness to generic programming and exceptions, explicitly argue against assertions, while defending the choice to omit type inheritance on efficiency grounds.Unlike Java, maps (also known as hashes or dictionaries) are an intrinsic part of the language, as are strings.
Visibility of functions outside of their defining file is defined implicitly according to the capitalization of their identifier, in contrast to C, where an explicit static keyword is used.