<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8247297278580351514</id><updated>2011-11-28T05:02:22.577+05:30</updated><title type='text'>Vicky</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>49</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-8748186065277739577</id><published>2011-05-28T12:29:00.000+05:30</published><updated>2011-05-28T12:29:23.971+05:30</updated><title type='text'>So you want to know about Bootloaders?</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;span class="Apple-style-span" style="font-family: verdana, arial, helvetica, sans-serif; font-size: x-small;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Firstly, let's get some cryptic terms out of the way.&lt;/div&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="font-style: normal; font-weight: bold;"&gt;&lt;a href="http://en.wikipedia.org/wiki/Symmetric-key_algorithm" style="color: #336699; text-decoration: none;"&gt;Symmetric encryption&lt;/a&gt;:&lt;/strong&gt;&amp;nbsp;this is the typical, familiar, scramble-your-data algorithm. You use one secret key, together with your data [called plaintext], and input them to the function. It spits out random-looking output [ciphertext]. You put your ciphertext back into it with the same key, and you get your original data back again. With this, either exactly the same function does encryption and decryption, or one function does encryption and a similar, but different one does decryption. The most popular algorithm is called AES.&lt;/div&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="font-style: normal; font-weight: bold;"&gt;&lt;a href="http://en.wikipedia.org/wiki/Public-key_cryptography" style="color: #336699; text-decoration: none;"&gt;Asymmetric/public key encryption&lt;/a&gt;:&lt;/strong&gt;&amp;nbsp;this is slightly different from the above. This time, you have&amp;nbsp;&lt;strong style="font-style: normal; font-weight: bold;"&gt;two&lt;/strong&gt;&amp;nbsp;keys. One is called the&amp;nbsp;&lt;strong style="font-style: normal; font-weight: bold;"&gt;public&lt;/strong&gt;&amp;nbsp;one, and it is figured out from the&amp;nbsp;&lt;strong style="font-style: normal; font-weight: bold;"&gt;private&lt;/strong&gt;&amp;nbsp;one. The private key&amp;nbsp;&lt;em style="font-style: italic; font-weight: normal;"&gt;cannot&lt;/em&gt;&amp;nbsp;be figured out from the public key. They only work in a pair as well: If you do encryption with one, you can&amp;nbsp;&lt;em style="font-style: italic; font-weight: normal;"&gt;only&lt;/em&gt;&amp;nbsp;decrypt with the other. This is why it is special. If you encrypt with the private key, you cannot decrypt with the private key,&amp;nbsp;&lt;em style="font-style: italic; font-weight: normal;"&gt;only&lt;/em&gt;&amp;nbsp;with the public (and visa-versa). The most popular is RSA.&lt;/div&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="font-style: normal; font-weight: bold;"&gt;&lt;a href="http://en.wikipedia.org/wiki/Cryptographic_hash_function" style="color: #336699; text-decoration: none;"&gt;Cryptographic hash&lt;/a&gt;:&lt;/strong&gt;&amp;nbsp;This is a one-way function. You can input as much data as you want into it, and it will come out with a fixed number of fairly random digits. These digits come out in a fairly random, and mostly normalised way. A good property of a hash function is that changing 1 bit in your input, should have a 50% chance of changing every bit in the hash's output. This means hashes are fairly unique to any particular data, and can detect even the slightest changes in it by comparing two hash ouputs together. The most popular is SHA, the most well known is MD5.&lt;/div&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="font-style: normal; font-weight: bold;"&gt;&lt;a href="http://en.wikipedia.org/wiki/Digital_signature" style="color: #336699; text-decoration: none;"&gt;Digital signature&lt;/a&gt;:&lt;/strong&gt;&amp;nbsp;This uses the last two above terms. You have a message, and you want to&amp;nbsp;&lt;em style="font-style: italic; font-weight: normal;"&gt;sign it&lt;/em&gt;. When they&lt;em style="font-style: italic; font-weight: normal;"&gt;verify&lt;/em&gt;&amp;nbsp;the signature, a receiving party can tell two things: A) That the message came from you, and B) That the message has come exactly as you intended it. How? First, you make a private/public key pair, and publish your public key&amp;nbsp;&lt;em style="font-style: italic; font-weight: normal;"&gt;everywhere&lt;/em&gt;&amp;nbsp;a while beforehand. People remember the public key and know that you made it. When you want to send a message, first you&amp;nbsp;&lt;em style="font-style: italic; font-weight: normal;"&gt;hash&lt;/em&gt;&amp;nbsp;that message. The hash will let anyone know if someone has tampered with the message during sending. Then you encrypt the hash with your private key (you have now&amp;nbsp;&lt;em style="font-style: italic; font-weight: normal;"&gt;signed&lt;/em&gt;&amp;nbsp;your message). You send off the encrypted hash with your message. To&amp;nbsp;&lt;em style="font-style: italic; font-weight: normal;"&gt;verify&lt;/em&gt;&amp;nbsp;your message, the receiving party remembers the public key you sent out earlier. They use this to decrypt the hash, and then check this hash with one generated from hashing the message themselves. If they get a match, then they now know the two facts stated previously.&lt;/div&gt;&lt;hr style="margin-bottom: 0px;" /&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="font-style: normal; font-weight: bold;"&gt;So why lock a bootloader?&lt;/strong&gt;&lt;/div&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;A bootloader lets you change all the software on your phone. By locking it, you are prevented from doing so. Why do companies do this? Well, they try to never say directly, but you can guess the reasons:&lt;/div&gt;&lt;ul style="list-style-image: initial; list-style-position: outside; list-style-type: disc; margin-bottom: 10px; margin-left: 2em; margin-right: 2em; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;They don't want customers accidentally uploading faulty software to their phone, bricking it, and coming crying back&lt;/div&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;They want to give as little surface as possible to hackers looking to meddle with the phone, for whatever security reasons&lt;/div&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;At the request of various third parties, such as carriers&lt;/div&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;They don't want custom software being put on that gives the device extra functionality or lifetime&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Disclaimer: I never said these reasons were going to make sense in your, the customer's, mind.&lt;/div&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="font-style: normal; font-weight: bold;"&gt;What does a bootloader do with digital signatures?&lt;/strong&gt;&lt;/div&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;It uses them to check any update that passes through it. The phone keeps a read-only copy of the manufacturer's public key internally. The manufacturer then signs an update they want to give the phone. When the phone receives the update, it verifies the signature to check that the update came from the manufacturer, and only then lets it change the phone.&lt;/div&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;This means that the the manufacturer gets the best of both worlds: It stops customers from uploading unsigned changes to the phone, while allowing through only changes that the manufacturer has approved and signed. From a QA perspective, this is great! It also means that you, the customer, know that you are only getting official updates. No-one can hack an update onto your phone, or tamper with the manufacturer's before it gets to you. This means&lt;strong style="font-style: normal; font-weight: bold;"&gt;signing is not necessarily a bad thing!&lt;/strong&gt;&amp;nbsp;If you just want to make sure you get official updates, signing is for you.&lt;/div&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="font-style: normal; font-weight: bold;"&gt;So... what do 'we' want?&lt;/strong&gt;&lt;/div&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;We, being the community of Android users who&amp;nbsp;&lt;em style="font-style: italic; font-weight: normal;"&gt;love&lt;/em&gt;&amp;nbsp;to modify their phone, basically want bootloaders to follow the model that Google employs in its phones.&lt;/div&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;You can choose, by typing a command in an adb shell, whether you want your phones bootloader to be&amp;nbsp;&lt;em style="font-style: italic; font-weight: normal;"&gt;locked or unlocked&lt;/em&gt;. In its locked state, it will check signatures and make sure everything is official. Great for your average customer, who just wants peace of mind. In its unlocked state, it allows any custom modification, like CyanogenMod, to pass through.&lt;/div&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;When we refer to a&amp;nbsp;&lt;em style="font-style: italic; font-weight: normal;"&gt;locked&lt;/em&gt;&amp;nbsp;bootloader, we mean one that is in its locked state, and usually&amp;nbsp;&lt;em style="font-style: italic; font-weight: normal;"&gt;also&lt;/em&gt;&amp;nbsp;that the manufacturer didn't give us any option to unlock it. So when people say they've loaded an&amp;nbsp;&lt;em style="font-style: italic; font-weight: normal;"&gt;engineering&lt;/em&gt;&amp;nbsp;version of a bootloader, it usually means they've found a way to load a bootloader made in the development of the phone, which didn't check for signatures (&lt;em style="font-style: italic; font-weight: normal;"&gt;unlocked&lt;/em&gt;&amp;nbsp;by default).&lt;/div&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;So we don't want&amp;nbsp;&lt;em style="font-style: italic; font-weight: normal;"&gt;unlocked&lt;/em&gt;&amp;nbsp;bootloaders, or&amp;nbsp;&lt;em style="font-style: italic; font-weight: normal;"&gt;non-signing&lt;/em&gt;&amp;nbsp;ones; that might be bad for the average customer.&amp;nbsp;&lt;strong style="font-style: normal; font-weight: bold;"&gt;[TL;DR:] We want&amp;nbsp;&lt;em style="font-style: italic; font-weight: bold;"&gt;unlockable&lt;/em&gt;&amp;nbsp;bootloaders.&lt;/strong&gt;&amp;nbsp;Note, the unlocking process shouldn't be something a normal person would be able to get to, or automatable. It should be a choice that a technical user can make.&lt;/div&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Edit:&amp;nbsp;&lt;strong style="font-style: normal; font-weight: bold;"&gt;What I think the ideal bootloader's functionality should be:&lt;/strong&gt;&lt;/div&gt;&lt;ul style="list-style-image: initial; list-style-position: outside; list-style-type: disc; margin-bottom: 10px; margin-left: 2em; margin-right: 2em; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;li style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;It should not be replaceable, or only replaceable by a signed manufacturer update. The rest of the phone should be.&lt;/div&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;It should have a locked state, where any updates to the phone are checked first (through signatures) to see that they're by the manufacturer&lt;/div&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;It should have an unlocked state, which allows any update to the software of the phone&lt;/div&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;These states should be switchable by a technical method&lt;/div&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;div style="margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 5px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;The bootloader should be able to tell what software is on the phone. It outputs a string, say, which includes a nonce and a signed answer to this question. The manufacturer can ask the customer to give them this answer from their phone. If the answer matches up with the signature of an official version of their software, then they can give support and/or warranty to the customer, because they know the software is in a certain state. If it does not match, they know custom software is on and they don't have to provide warranty and support.&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-8748186065277739577?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/8748186065277739577/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2011/05/so-you-want-to-know-about-bootloaders.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/8748186065277739577'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/8748186065277739577'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2011/05/so-you-want-to-know-about-bootloaders.html' title='So you want to know about Bootloaders?'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-1708674164939421373</id><published>2010-04-27T04:21:00.000+05:30</published><updated>2010-04-27T04:21:35.576+05:30</updated><title type='text'>Android 2.2 aka Froyo Coming Soon....</title><content type='html'>&lt;span class="Apple-style-span" style="color: #333333; font-family: 'Lucida Sans Unicode', Verdana, sans-serif; font-size: 13px; line-height: 23px;"&gt;Android handsets have been coming out from the various mobile manufacturers stable at a brisk pace. The development of Android OS has also been pretty good.The OS has been gaining market share by leaps and bounds. Currently, the latest version of the Android OS&amp;nbsp;is 2.1.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: #333333; font-family: 'Lucida Sans Unicode', Verdana, sans-serif; font-size: 13px; line-height: 23px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: #333333; font-family: 'Lucida Sans Unicode', Verdana, sans-serif; font-size: 13px; line-height: 23px;"&gt;Reports suggest that Android 2.2 will soon be announced. The Android v2.2 is named “Froyo”. The new version of the Google OS will come with some major changes under the hood.&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: #333333; font-family: 'Lucida Sans Unicode', Verdana, sans-serif; font-size: 13px; line-height: 23px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: #333333; font-family: 'Lucida Sans Unicode', Verdana, sans-serif; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 23px;"&gt;&lt;span class="Apple-style-span" style="font-size: 12px;"&gt;&lt;div style="font-size: 1.1em; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;The reported features include:&lt;/div&gt;&lt;div style="font-size: 1.1em; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;*JIT compiler&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;*Free additional RAM&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;*OpenGL ES 2.0 enhancements&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;*Flash 10.1 support&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;*Fixed problem with “crazy screen” / Resolution of cross multitouch&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;*Activation of Color Trackball (Done On Several CM Rom's )&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;*Enable FM radio&lt;/div&gt;&lt;div style="font-size: 1.1em; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;span class="Apple-style-span" style="font-size: 12px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-size: 1.1em; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;The most important change in Android 2.2 is the JIT compiler. The JIT compiler translates the application written in JAVA to native code. This leads to significantly better performance, richer graphics and better battery life. &amp;nbsp;There is also Flash 10.1 support in the latest version of the OS. The new version of Android OS is also expected to enable Wi-Fi n support in devices which have the required hardware. The Linux kernel of Android will also get an update from 2.6.29 to 2.6.32. This will lead to additional free RAM on the various Android devices.&lt;/div&gt;&lt;div style="font-size: 1.1em; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;It is expected that that the latest version of the Android OS will be announced on May 19th, during the Google’s I/O event.&lt;/div&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-1708674164939421373?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/1708674164939421373/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2010/04/android-22-aka-froyo-coming-soon.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/1708674164939421373'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/1708674164939421373'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2010/04/android-22-aka-froyo-coming-soon.html' title='Android 2.2 aka Froyo Coming Soon....'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-3717496252067595432</id><published>2010-01-06T09:00:00.000+05:30</published><updated>2010-01-06T09:00:12.006+05:30</updated><title type='text'>Comaprision Chart</title><content type='html'>The Dust for Nexus One has now settled. Yesterday Google announced their New Super phone category phone "Nexus One". Thought there was nothing new in the Android press meeting apart from New Google Earth App and Voice commands in Mailboxes. As every one already saw the Unboxing video of Nexus One Weeks ago but google just officially launched it.&lt;br /&gt;Its not yet there to beat Apple Iphone (this is what people say), but i personally feel that the craze for Iphone is slowly going down.&lt;br /&gt;If it is not yet beating Apple Iphone, no worries its always getting closer to it.&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_HyU5jGl79iI/S0QDAf5SXFI/AAAAAAAAAkM/55H9oUazxK4/s1600-h/nexus-14.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_HyU5jGl79iI/S0QDAf5SXFI/AAAAAAAAAkM/55H9oUazxK4/s320/nexus-14.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;Thanking Billshrink.com for this amazing comparison between some amazing Phones. &lt;br /&gt;Apart from Market place I dont find Android lacking anywhere, and event like this small of yesterday will definitely encourage more Developers.&lt;br /&gt;&amp;nbsp;Hope Android is the world we live in. Cheers...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-3717496252067595432?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/3717496252067595432/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2010/01/comaprision-chart.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/3717496252067595432'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/3717496252067595432'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2010/01/comaprision-chart.html' title='Comaprision Chart'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_HyU5jGl79iI/S0QDAf5SXFI/AAAAAAAAAkM/55H9oUazxK4/s72-c/nexus-14.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-8751268104290978510</id><published>2010-01-03T10:27:00.001+05:30</published><updated>2010-01-03T10:32:10.271+05:30</updated><title type='text'>Google Tablet: Google and HTC’s Next Project vs iSlate?</title><content type='html'>It appears Apple&amp;nbsp;  is not the only company who is mauling their &lt;span id="IL_AD2"&gt;tablet&lt;/span&gt; &lt;span id="IL_AD1"&gt;for the people&lt;/span&gt;,  there’s a rumor that Google and HTC – the tandem that will bring forth  the Nexus Strike this Jan, is about to unleash their own tablet as  well. The name is not yet disclosed, but whatever it’ll be called (G-tablet,  Schmidt’s Pad etc – oups can’t help to give that premonition) alot of  speculations are starting to develop with this purported tablet.&lt;br /&gt;&lt;a href="http://www.pinoytutorial.com/techtorial/wp-content/uploads/2009/11/6c87aacef8bd_5C17/googletablet.jpg" rel="shadowbox[post-4071];player=img;" target="_blank"&gt;&lt;img alt="google tablet" border="0" height="312" src="http://www.pinoytutorial.com/techtorial/wp-content/uploads/2009/11/6c87aacef8bd_5C17/googletablet_thumb.jpg" style="border-width: 0px; display: block; float: none; margin-left: auto; margin-right: auto;" title="google tablet" width="438" /&gt;&lt;/a&gt;&lt;br /&gt;iSlate carryout two freshly baked patents that was said to surprise the users;  Google Tablet on &lt;span id="IL_AD3"&gt;the other hand&lt;/span&gt;  will have all the sauce of Chrome OS,  Qualcomm processors and a dash of a new software from Adobe. (Mmm, what  could that be? Am i sensing a new Air Product?)&lt;br /&gt;&lt;blockquote&gt;According to Smarthouse “HTC, who have been working closely with  Google for the past 18 months have several working models of a touch  tablet including one model, is based on the new Google Chrome Operating  System say sources.”&lt;br /&gt;&lt;/blockquote&gt;&lt;a href="http://www.pinoytutorial.com/techtorial/wp-content/uploads/2009/11/6c87aacef8bd_5C17/googletablet2.jpg" rel="shadowbox[post-4071];player=img;" target="_blank"&gt;&lt;img alt="google tablet 2" border="0" height="307" src="http://www.pinoytutorial.com/techtorial/wp-content/uploads/2009/11/6c87aacef8bd_5C17/googletablet2_thumb.jpg" style="border-width: 0px; display: block; float: none; margin-left: auto; margin-right: auto;" title="google tablet 2" width="414" /&gt;&lt;/a&gt;While everything is still on a stream of uncertainty, there’s a lot  of&amp;nbsp;criticism&amp;nbsp;with this rumored release. One is, will BIG G became the  Big Jerk for its neighboring companies? – Remember Mototola Droid With  just a short span of three months, the nexus one phone will reach its  debut and it's ZOMG features is far better than that droid phone  with the keyboard. Without a doubt this release &amp;nbsp;will kill the  competition with the moto-droid not to mention the ‘pissed-off’ buyers  who happens to be stucked on a 2 year contract with Veriz only to find  out that there’s a better phone – Nexus One.&lt;br /&gt;So much for the happy ending, indeed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-8751268104290978510?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/8751268104290978510/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2010/01/google-tablet-google-and-htcs-next.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/8751268104290978510'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/8751268104290978510'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2010/01/google-tablet-google-and-htcs-next.html' title='Google Tablet: Google and HTC’s Next Project vs iSlate?'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-4376659895914848796</id><published>2010-01-03T10:23:00.001+05:30</published><updated>2010-01-03T10:34:22.386+05:30</updated><title type='text'>Apple iSlate</title><content type='html'>A new decade is fast-approaching – Six days from now and the world  that we know will have its yet another phase in the course of history,  hopefully towards the ‘brighter side’, ideally speaking that’s all what  we want, don’t we? Thus, tech enthusiasts are already getting too  delirious with what the industry has stored for them (same for the non  techsavvy citizens too) Off the record, you can shout the company that  you think will start the year with a new gizmo – Did I hear you say the  big A as in Apple ?  Well if that’s the case then your tech oriented intuitions are correct  for Steve Jobs favorite ‘fruit’ will release a gadget on &lt;b&gt;January  26, 2010&lt;/b&gt;.&lt;br /&gt;&lt;a href="http://www.pinoytutorial.com/techtorial/wp-content/uploads/2009/11/9282cdf73c2c_254F/appletabletpicture.jpg" rel="shadowbox[post-3903];player=img;" target="_blank"&gt;&lt;img alt="apple tablet picture" border="0" height="259" src="http://www.pinoytutorial.com/techtorial/wp-content/uploads/2009/11/9282cdf73c2c_254F/appletabletpicture_thumb.jpg" style="border-width: 0px; display: block; float: none; margin-left: auto; margin-right: auto;" title="apple tablet picture" width="384" /&gt;&lt;/a&gt;&lt;br /&gt;This is not another Jesus Phone (as TC calls it), i mean iphone. Not a  new iPod twin type (disappointingly) also this not about contacting an  extra terrestrial being from. … bahh, this about a Tablet! Yep, A T-A-B-L-E-T guys. Could somebody call the clowns now, please? I can  feel our readers are starting to get bored.&lt;br /&gt;&lt;a href="http://www.pinoytutorial.com/techtorial/wp-content/uploads/2009/11/9282cdf73c2c_254F/appletabletpic1.jpg" rel="shadowbox[post-3903];player=img;" target="_blank"&gt;&lt;img alt="apple tablet pic1" border="0" height="217" src="http://www.pinoytutorial.com/techtorial/wp-content/uploads/2009/11/9282cdf73c2c_254F/appletabletpic1_thumb.jpg" style="border-width: 0px; display: block; float: none; margin-left: auto; margin-right: auto;" title="apple tablet pic1" width="326" /&gt;&lt;/a&gt;&lt;br /&gt;The size of this ‘very soon’ tablet will be 7-inch (100% sure)  Although there will be a 10incher follow-up rumored to be release on  spring.&lt;br /&gt;The concept of this tablet sounds mediocre: Try to think about the  iPhone make it 7-inch and voila we got the new apple tablet.&lt;a href="http://pinoytutorial.com/techtorial/tag/new-apple-tablet/" title="new apple tablet"&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;A tablet with a multi-touch feature: It may sound new to the tablet  industry, but for the users? Of course this is expected. It wouldn’t be  the image and likeness of the iPhone without a multitouch feat, wouldn’t  it? The funny thing though is how appleinsider manage to salvage this comment:&lt;img alt="apple tablet" border="0" height="224" src="http://www.pinoytutorial.com/techtorial/wp-content/uploads/2009/11/9282cdf73c2c_254F/appletablet_thumb.jpg" style="border-width: 0px; display: block; float: none; margin-left: auto; margin-right: auto;" title="apple tablet" width="240" /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;b&gt;One current senior employee at Apple would only  say that Jobs is “extremely happy with the new tablet.” Someone else who  recently left Apple reportedly said that users will be “surprised how  you interact with the new tablet.”&lt;/b&gt;&lt;br /&gt;In my opinion, I think users will be extremely happy if they saw the  new tablet with &lt;b&gt;‘minority report like interface’&lt;/b&gt;  infused with it.&lt;br /&gt;&lt;a href="http://www.pinoytutorial.com/techtorial/wp-content/uploads/2009/11/9282cdf73c2c_254F/minorityreport.jpg" rel="shadowbox[post-3903];player=img;" target="_blank"&gt;&lt;img alt="minority report" border="0" height="226" src="http://www.pinoytutorial.com/techtorial/wp-content/uploads/2009/11/9282cdf73c2c_254F/minorityreport_thumb.jpg" style="border-width: 0px; display: block; float: none; margin-left: auto; margin-right: auto;" title="minority report" width="405" /&gt;&lt;/a&gt;&lt;br /&gt;And that’s why there’s a buzz that Apple had recently filed for two  patents namely, &lt;b&gt;Keystroke Tactility Arrangement on a Smooth  Touch Surface: &lt;/b&gt;Ability of the system to detect the type of  interaction you are playing with it. and Multipoint&lt;b&gt; Touch  Surface Controller&lt;/b&gt;: A more advance system for detecting multi  points on a touch screen.&lt;a href="http://www.appleinsider.com/articles/09/12/24/possible_apple_tablet_multi_touch_tactile_keyboard_detailed.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.appleinsider.com');" target="_blank"&gt;&lt;/a&gt;&lt;br /&gt;&lt;/blockquote&gt;Did I say it will be unveiled on the 26th of January, 2010?&lt;br /&gt;&lt;br /&gt;Now TC is cooking some theories again about the nameless Tablet, they  have a strong belief that this one will be named as &lt;b&gt;iSlate&lt;/b&gt;.  Snap! okay first and foremost, if you’ll say that it sounds turd then worry not, there’s a lot of people who  are with the same boat as you are. But for what it’s worth, the term 'slate' has been used in the Tablet industry. Which  simply refers to as a tablet pc sans the keyboard and utilizes  stylus/fingertips for the interaction.&lt;br /&gt;&lt;br /&gt;Apple has acquired the domain name islate.com back in 2007.&lt;br /&gt;&lt;a href="http://www.pinoytutorial.com/techtorial/wp-content/uploads/2009/11/9282cdf73c2c_254F/islate.jpg" rel="shadowbox[post-3903];player=img;" target="_blank"&gt;&lt;img alt="islate thumb iSlate is the new Apple Tablet? See the leaked Specs" border="0" height="206" src="http://www.pinoytutorial.com/techtorial/wp-content/uploads/2009/11/9282cdf73c2c_254F/islate_thumb.jpg" style="border-width: 0px; display: block; float: none; margin-left: auto; margin-right: auto;" title="islate" width="380" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Mr Robin of TC manages to play some tech-detective game of who’s the  owner, tracing some link of the islate domain to the impending release  of the new tablet today. Is it a coincidence? Well, iSay we just wait  for 3 weeks to find out, it isn’t that long, is it?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-4376659895914848796?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/4376659895914848796/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2010/01/apple-islate.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/4376659895914848796'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/4376659895914848796'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2010/01/apple-islate.html' title='Apple iSlate'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-6331414969600575023</id><published>2009-12-30T09:13:00.004+05:30</published><updated>2009-12-30T09:21:16.062+05:30</updated><title type='text'>Nexus One Price: $530 Unlocked, $180 With T-Mobile Contract</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_HyU5jGl79iI/SzrNPH0ErXI/AAAAAAAAAj8/MmdofGVWWfs/s1600-h/nexus1page2.jpg"&gt;&lt;img style="float: left; margin: 0pt 10px 10px 0pt; cursor: pointer; width: 320px; height: 242px;" src="http://1.bp.blogspot.com/_HyU5jGl79iI/SzrNPH0ErXI/AAAAAAAAAj8/MmdofGVWWfs/s320/nexus1page2.jpg" alt="" id="BLOGGER_PHOTO_ID_5420870761173003634" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_HyU5jGl79iI/SzrNO5ufHXI/AAAAAAAAAj0/AJ49IcAQhmw/s1600-h/nexus1page1.jpg"&gt;&lt;img style="float: left; margin: 0pt 10px 10px 0pt; cursor: pointer; width: 320px; height: 242px;" src="http://3.bp.blogspot.com/_HyU5jGl79iI/SzrNO5ufHXI/AAAAAAAAAj0/AJ49IcAQhmw/s320/nexus1page1.jpg" alt="" id="BLOGGER_PHOTO_ID_5420870757391474034" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_HyU5jGl79iI/SzrN42a2AgI/AAAAAAAAAkE/-i4IJrui_KA/s1600-h/5402887-5189722-thumbnail.jpg"&gt;&lt;img style="cursor: pointer; width: 325px; height: 320px;" src="http://2.bp.blogspot.com/_HyU5jGl79iI/SzrN42a2AgI/AAAAAAAAAkE/-i4IJrui_KA/s320/5402887-5189722-thumbnail.jpg" alt="" id="BLOGGER_PHOTO_ID_5420871478058287618" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Hi ppl after a long time.....Sorry was bit busy with some other stuff, but what i have now is very Rocking news for All nexus one fans.&lt;br /&gt;&lt;br /&gt;&lt;p style="text-align: left;"&gt;Gizmodo was tipped with several screen  shots of what appears to be the official Nexus One landing page and  pricing for the phone. You're given two options to get the Nexus One  upon release: Sold directly from Google. Unlocked and unsubsidized for  $530. Or $180 if you're eligible and sign a 2-year contract with  T-Mobile. In addition, here are some new details copied from Gizmodo:&lt;/p&gt; &lt;p style="padding-left: 30px;"&gt;• If you want it subsidized, you'll have  to sign up for a 2 year mandatory contract&lt;br /&gt;• There's only one rate  plan: $39.99 Even More + Text + Web for $79.99 total&lt;br /&gt;• Existing  customers cannot keep their plan if they want a subsidized phone; they  have to change to the one plan, and this only applies to accounts with  one single line&lt;br /&gt;• If that doesn't fly with you, you have to buy the  $530 unlocked version—this actually might save you money over two years  if you already have a cheap plan&lt;br /&gt;• Family plans, Flexpay, SmartAccess  and KidConnect subscribers &lt;strong&gt;must&lt;/strong&gt; buy the phone unlocked  and unsubsidized for $530&lt;br /&gt;• You can only buy &lt;strong&gt;five&lt;/strong&gt; Nexus  One phones per Google account&lt;br /&gt;• There is language in the agreement  of shipping &lt;strong&gt;outside the US&lt;/strong&gt;&lt;br /&gt;• Google will sell it at  google.com/phone, which explains what they were doing with that page a  few weeks ago&lt;br /&gt;• Google will still call it the Nexus One apparently,  and not the Google Phone&lt;/p&gt; &lt;p style="padding-left: 30px;"&gt;And here is a big one:&lt;br /&gt;• If you cancel  your plan before 120 days, you have to pay the subsidy difference  between what you paid and the unsubsidized price, so $350 in this case.  Or you can return the phone to Google. You also authorize them to charge  this directly to your credit card.&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&lt;br /&gt;&lt;/p&gt;More to come on Jan 5th....Google has booked an 'Android Press Gather/Event" on the 5th of January.&lt;br /&gt;&lt;br /&gt;"With the launch of the first Android-powered device just over a year  ago, we've seen how a powerful, open platform can spur mobile product  innovation. And this is just the beginning of what's possible."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-6331414969600575023?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/6331414969600575023/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/12/nexus-one-price-530-unlocked-180-with-t.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/6331414969600575023'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/6331414969600575023'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/12/nexus-one-price-530-unlocked-180-with-t.html' title='Nexus One Price: $530 Unlocked, $180 With T-Mobile Contract'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_HyU5jGl79iI/SzrNPH0ErXI/AAAAAAAAAj8/MmdofGVWWfs/s72-c/nexus1page2.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-1764119932418141953</id><published>2009-10-17T02:30:00.000+05:30</published><updated>2009-10-17T02:35:01.867+05:30</updated><title type='text'>Basics For Wave</title><content type='html'>&lt;span class="Apple-style-span" style="background-color: rgb(255, 255, 255); font-family: verdana, arial, sans-serif; font-size: 12px; color: rgb(51, 51, 51); line-height: 14px; "&gt;&lt;p style="margin-bottom: 1em; margin-top: 0px; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.5; text-align: justify; "&gt;Google Wave actually has its own lingo – yes, you have to learn a few definitions if you’re going to really understand this new communication platform. Having knowledge of these terms will help you understand more about Google’s newest project.&lt;/p&gt;&lt;blockquote style="margin-top: 12px; margin-right: 40px; margin-bottom: 12px; margin-left: 40px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;p style="margin-bottom: 1em; margin-top: 0px; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.5; text-align: justify; "&gt;&lt;strong style="font-weight: bold; font-style: normal; "&gt;- Wave:&lt;/strong&gt; A wave, specifically, refers to a specific threaded conversation. It can include just one person, or it can include a group of users or even robots (explained below). The best comparison I can make is that it’s like your &lt;em style="font-style: italic; font-weight: normal; "&gt;entire instant messaging (IM) history&lt;/em&gt; with someone. Anything you’ve ever discussed in a single chat or conversation is a wave.&lt;/p&gt;&lt;p style="margin-bottom: 1em; margin-top: 0px; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.5; text-align: justify; "&gt;&lt;strong style="font-weight: bold; font-style: normal; "&gt;- Wavelet:&lt;/strong&gt; A wavelet is also a threaded conversation, but only a subset of a larger conversation (or a wave). It’s like a single IM conversation – a small part of a larger conversation and a larger history. Wavelets, though, can be created and managed separately from a wave.&lt;/p&gt;&lt;p style="margin-bottom: 1em; margin-top: 0px; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.5; text-align: justify; "&gt;&lt;span class="Apple-style-span" style="background-color: rgb(255, 255, 255); line-height: 14px; "&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-bottom: 1em; margin-top: 0px; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.5; text-align: justify; "&gt;&lt;strong style="font-weight: bold; font-style: normal; "&gt;- &lt;span class="blippr-nobr" style="white-space: nowrap; "&gt;Blip&lt;span class="blippr-nobr" style="white-space: nowrap; "&gt;&lt;a href="http://www.blippr.com/apps/337306-BLIP" target="_blank" rel="http://www.blippr.com/apps/337306-BLIP.whtml" class="blippr-inline-smiley blippr-inline-smiley-05" style="text-decoration: none !important; color: rgb(64, 158, 211); width: 12px; "&gt;&lt;img class="wp-smiley" src="http://static1.blippr.com/images/inline-face_05.png?1251418262" alt="BLIP" style="border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 0px !important; border-style: initial; border-color: initial; padding-top: 1px !important; padding-right: 1px !important; padding-bottom: 1px !important; padding-left: 1px !important; display: inline !important; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; margin-left: 4px !important; vertical-align: middle; border-top-style: solid !important; border-right-style: solid !important; border-bottom-style: solid !important; border-left-style: solid !important; border-top-color: rgb(201, 214, 221) !important; border-right-color: rgb(201, 214, 221) !important; border-bottom-color: rgb(201, 214, 221) !important; border-left-color: rgb(201, 214, 221) !important; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(255, 255, 255); background-position: initial initial; background-repeat: initial initial; " /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;:&lt;/strong&gt; Even smaller than a Wavelet, a Blip is a single, individual message. It’s like a single line of an IM conversation. Blips can have other blips attached to them, called children. In addition, blips can either be published or unpublished (once again, it’s sort of like typing out an IM message but not yet sending it).&lt;/p&gt;&lt;p style="margin-bottom: 1em; margin-top: 0px; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.5; text-align: justify; "&gt;&lt;strong style="font-weight: bold; font-style: normal; "&gt;- Document:&lt;/strong&gt; A document actually refers to the content within a blip. This seems to refer to the actual characters, words, and files associated with a blip.&lt;/p&gt;&lt;p style="margin-bottom: 1em; margin-top: 0px; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.5; text-align: justify; "&gt;&lt;strong style="font-weight: bold; font-style: normal; "&gt;- Extension:&lt;/strong&gt; An extension is a mini-application that works within a wave. So these are the apps you can play with while using Wave. There are two main types of extenisons: Gadgets and Robots&lt;/p&gt;&lt;p style="margin-bottom: 1em; margin-top: 0px; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.5; text-align: justify; "&gt;&lt;strong style="font-weight: bold; font-style: normal; "&gt;- Gadgets:&lt;/strong&gt; A gadget is an application users can participate with, many of which are built on Google’s OpenSocial platform. A good comparison would be iGoogle gadgets or Facebook applications.&lt;/p&gt;&lt;p style="margin-bottom: 1em; margin-top: 0px; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.5; text-align: justify; "&gt;&lt;strong style="font-weight: bold; font-style: normal; "&gt;- Robots:&lt;/strong&gt; Robots are an automated participant within a wave. They can talk with users and interact with waves. They can provide information from outside sources (i.e.&lt;span class="blippr-nobr" style="white-space: nowrap; "&gt;Twitter&lt;span class="blippr-nobr" style="white-space: nowrap; "&gt;&lt;a href="http://www.blippr.com/apps/336651-Twitter" target="_blank" rel="http://www.blippr.com/apps/336651-Twitter.whtml" class="blippr-inline-smiley blippr-inline-smiley-07" style="text-decoration: none !important; color: rgb(64, 158, 211); width: 12px; "&gt;&lt;img class="wp-smiley" src="http://static1.blippr.com/images/inline-face_07.png?1251418262" alt="Twitter" style="border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 0px !important; border-style: initial; border-color: initial; padding-top: 1px !important; padding-right: 1px !important; padding-bottom: 1px !important; padding-left: 1px !important; display: inline !important; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; margin-left: 4px !important; vertical-align: middle; border-top-style: solid !important; border-right-style: solid !important; border-bottom-style: solid !important; border-left-style: solid !important; border-top-color: rgb(201, 214, 221) !important; border-right-color: rgb(201, 214, 221) !important; border-bottom-color: rgb(201, 214, 221) !important; border-left-color: rgb(201, 214, 221) !important; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(255, 255, 255); background-position: initial initial; background-repeat: initial initial; " /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;) or they can check content within a wave and perform actions based on them (i.e. provide you a stock quote if a stock name is mentioned).&lt;/p&gt;&lt;p style="margin-bottom: 1em; margin-top: 0px; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.5; text-align: justify; "&gt;&lt;strong style="font-weight: bold; font-style: normal; "&gt;- Embeded Wave:&lt;/strong&gt; An embeded wave is a way to take a Google Wave and the conversation within it and place it on your website. Users could use this as a chatroom, as a way to contact you, or for something more.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-1764119932418141953?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/1764119932418141953/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/10/basics-for-wave.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/1764119932418141953'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/1764119932418141953'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/10/basics-for-wave.html' title='Basics For Wave'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-3697635676686647362</id><published>2009-09-30T23:14:00.001+05:30</published><updated>2009-09-30T23:17:13.563+05:30</updated><title type='text'>Info About GOOGLE WAVE  !!!</title><content type='html'>&lt;span class="Apple-style-span" style="line-height: 15px; "&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;&lt;span class="Apple-style-span" style="font-size: medium;"&gt;&lt;b&gt;&lt;i&gt;Google Wave is built around HTML 5, so you'll need to use what Google calls a "modern browser" — Chrome, Safari or Firefox (or IE with Google's new Chrome Frame plug-in). Once you're using Wave, you'll see a list of currently accessible waves, along with your current contacts. It's just like using a cross between IM and a wiki. &lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="line-height: 15px; "&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;&lt;span class="Apple-style-span" style="font-size: medium;"&gt;&lt;b&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: medium; line-height: 15px;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: verdana, arial, sans-serif; font-weight: normal; line-height: normal; color: rgb(51, 51, 51); "&gt;&lt;p style="line-height: 1.4em; margin-top: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;&lt;b&gt;&lt;i&gt;Wave looks, at first, like an in-browser instant messaging tool. It's a multi-user tool, too, so you can quickly have a conversation with an entire team. Unlike other IM tools, Wave lets you see each letter as it's typed, and replies can start before you've finished typing. That makes it much more like a real-world conversation, but it can also be disconcerting — especially if you're accustomed to editing your text while you collect your thoughts. Fortunately there's an option to use a draft mode to hide your edits until you're ready to send them to the rest of the wave's participants.&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 1.4em; margin-top: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;&lt;b&gt;&lt;i&gt;There are plenty of formatting tools, so you can use a wave to build a document collaboratively. More than one participant can edit the same wavelet — with no locks, just an indicator to show where everyone is typing. You probably wouldn't share a Wave-created document outside the flow of conversation without reformatting and editing it, but it's a good way to get started, or to get feedback from a geographically distributed team. Waves are managed by a server that operates in two parts: the server, which handles communication with end users and other Wave servers; and the store, which manages the content of both local and remote waves.&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="line-height: 1.4em; margin-top: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;&lt;b&gt;&lt;i&gt;Google is touting Wave as one of the first HTML 5 applications and it needs support for new tags that only come with what Google calls 'modern browsers'. That means Apple's Safari, Mozilla's Firefox and Google's own Chrome (which also takes advantage of the built-in Gears tools to boost Wave's performance by handling local data storage and multi-threaded JavaScript operations). You can use Wave with Internet Explorer if you install Google's new &lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;a href="http://googlewavedev.blogspot.com/2009/09/google-wave-in-internet-explorer.html" style="background-color: transparent; color: rgb(35, 89, 148); text-decoration: none; "&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;&lt;b&gt;&lt;i&gt;Chrome Frame&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;&lt;b&gt;&lt;i&gt; plugin, which adds HTML5 and other open web technologies to Microsoft's browser.&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-3697635676686647362?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/3697635676686647362/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/09/info-about-google-wave.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/3697635676686647362'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/3697635676686647362'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/09/info-about-google-wave.html' title='Info About GOOGLE WAVE  !!!'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-5141811613106311481</id><published>2009-09-30T23:09:00.002+05:30</published><updated>2009-09-30T23:11:57.914+05:30</updated><title type='text'>Google to Kill Internet Explorer</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: verdana, helvetica, sans-serif; color: rgb(54, 57, 61); font-size: 12px; line-height: 18px; "&gt;Google Wave is Up and now about to take over all........&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: verdana, helvetica, sans-serif; color: rgb(54, 57, 61); font-size: 12px; line-height: 18px; "&gt;Earlier today, Google said about Google Chrome Frame, a Google plug-in for Internet Explorer that “seamlessly brings Google Chrome’s open web technologies and speedy JavaScript engine to Internet Explorer.”&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:verdana, helvetica, sans-serif;font-size:100%;color:#36393D;"&gt;&lt;span class="Apple-style-span" style="font-size: 12px; line-height: 18px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:verdana, helvetica, sans-serif;font-size:100%;color:#36393D;"&gt;&lt;span class="Apple-style-span" style="font-size: 12px; line-height: 18px;"&gt;To use google wae on explorer either install the plugin else use Google wave or firefox or mozilla&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:verdana, helvetica, sans-serif;font-size:100%;color:#36393D;"&gt;&lt;span class="Apple-style-span" style="font-size: 12px; line-height: 18px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:verdana, helvetica, sans-serif;font-size:100%;color:#36393D;"&gt;&lt;span class="Apple-style-span" style="font-size: 12px; line-height: 18px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:verdana, helvetica, sans-serif;font-size:100%;color:#36393D;"&gt;&lt;span class="Apple-style-span" style="font-size: 12px; line-height: 18px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-5141811613106311481?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/5141811613106311481/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/09/google-to-kill-internet-explorer.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/5141811613106311481'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/5141811613106311481'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/09/google-to-kill-internet-explorer.html' title='Google to Kill Internet Explorer'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-8488055384391305117</id><published>2009-09-23T07:18:00.002+05:30</published><updated>2009-09-23T07:22:59.150+05:30</updated><title type='text'>Donut : Sneak Preview</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, Tahoma, Verdana, sans-serif; font-size: 12px; color: rgb(85, 85, 85); "&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; font-size: 12px; "&gt;What’s new in Donut? Well, look for yourself. New features that you’ll find once the Android team and carriers deliver Android 1.6 (Donut) in an over-the-air update.The  new Android Market, which includes screenshots and a revamped interface; a tweaked camera/camcorder interface; and the new Quick Search box, a near-universal search bar that searches both the web and content stored on your phone.&lt;/p&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; font-size: 12px; "&gt;I’m able to access these features because they are built into the Cynanogen modded version of Android available to root users. It remains to be seen when standard phones will receive the update. However new Android SDK 1.6 r2 is already available for download&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-8488055384391305117?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/8488055384391305117/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/09/donut-sneak-preview.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/8488055384391305117'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/8488055384391305117'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/09/donut-sneak-preview.html' title='Donut : Sneak Preview'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-928943603585445671</id><published>2009-09-16T21:49:00.005+05:30</published><updated>2009-09-16T21:55:37.471+05:30</updated><title type='text'>Chrome V-3.0.195.21 Out Now!!</title><content type='html'>I just heard it's very stable....and more powerful than earlier....&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: 'Lucida Grande', Tahoma, Verdana, Arial, serif; color: rgb(37, 37, 37); font-size: 12px; line-height: 20px; "&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; font-family: inherit; vertical-align: baseline; "&gt;nice improvements in store for them in Chrome 3, including:&lt;/p&gt;&lt;ul style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; font-family: inherit; vertical-align: baseline; list-style-type: none; list-style-position: initial; list-style-image: initial; "&gt;&lt;li style="margin-top: 0px; margin-right: 1em; margin-bottom: 0px; margin-left: 1.2em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; font-family: inherit; vertical-align: baseline; list-style-image: url(http://cache.lifehacker.com/assets/g4.lifehacker.com/img/unordered_list_icon.gif); position: relative; right: -1em; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; font-family: inherit; vertical-align: baseline; "&gt;Speed Improvements:&lt;/strong&gt; Chrome 3 is faster than any previous stable release on both the V8 and SunSpider benchmarks. (Google's calling it a 150% increase in Javascript performance since their first beta.) In the current Chrome 4 dev release, Chrome continues to oushine other browsers on  most speed benchmarks.&lt;/li&gt;&lt;li style="margin-top: 0px; margin-right: 1em; margin-bottom: 0px; margin-left: 1.2em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; font-family: inherit; vertical-align: baseline; list-style-image: url(http://cache.lifehacker.com/assets/g4.lifehacker.com/img/unordered_list_icon.gif); position: relative; right: -1em; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; font-family: inherit; vertical-align: baseline; "&gt;The New Tab Page:&lt;/strong&gt; Again, this is only new to those of you who've been sticking to stable releases, but thenew tab page is more customizable, allowing you to rearrange thumbnails via drag and drop and pin thumbnails you want to keep around permanently.&lt;/li&gt;&lt;li style="margin-top: 0px; margin-right: 1em; margin-bottom: 0px; margin-left: 1.2em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; font-family: inherit; vertical-align: baseline; list-style-image: url(http://cache.lifehacker.com/assets/g4.lifehacker.com/img/unordered_list_icon.gif); position: relative; right: -1em; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; font-family: inherit; vertical-align: baseline; "&gt;Better Omnibox:&lt;/strong&gt; Firefox has its awesome bar, Chrome has its omnibox. As of the stable Chrome 3 release, the omnibox adds contextual icons to help you see whether autocomplete results are suggest sites, searches, bookmarks, or sites from your history.&lt;/li&gt;&lt;li style="margin-top: 0px; margin-right: 1em; margin-bottom: 0px; margin-left: 1.2em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; font-family: inherit; vertical-align: baseline; list-style-image: url(http://cache.lifehacker.com/assets/g4.lifehacker.com/img/unordered_list_icon.gif); position: relative; right: -1em; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; font-family: inherit; vertical-align: baseline; "&gt;HTML5:&lt;/strong&gt; Google has been pushing the envelope withwhat dev can do with HTML5, the new standard set of tools in the next evolution of HTML (the backbone of web pages). In Chrome 3 stable, HTML5 is standard—meaning support for video, audio, and canvas tags that bring a rich web experience to your browser without the need for third-party plug-ins like Flash.&lt;/li&gt;&lt;li style="margin-top: 0px; margin-right: 1em; margin-bottom: 0px; margin-left: 1.2em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; font-family: inherit; vertical-align: baseline; list-style-image: url(http://cache.lifehacker.com/assets/g4.lifehacker.com/img/unordered_list_icon.gif); position: relative; right: -1em; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 12px; font-family: inherit; vertical-align: baseline; "&gt;Themes:&lt;/strong&gt; they've highlighted a handful of themalready, but now they're available to the stable channel users, as well.&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;Try These Shortcuts Might help you....&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif; font-size: 13px; line-height: normal; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;&lt;table cellspacing="0" cellpadding="3" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: rgb(204, 204, 204); border-right-color: rgb(204, 204, 204); border-bottom-color: rgb(204, 204, 204); border-left-color: rgb(204, 204, 204); width: 492px; "&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="border_left" style="border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;strong&gt;Ctrl+Shift+N&lt;/strong&gt;&lt;/td&gt;&lt;td class="border_right" style="border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;Opens a new window in incognito mode.&lt;br /&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;table cellspacing="0" cellpadding="3" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: rgb(204, 204, 204); border-right-color: rgb(204, 204, 204); border-bottom-color: rgb(204, 204, 204); border-left-color: rgb(204, 204, 204); width: 492px; "&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="border_left" style="border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;strong&gt;Ctrl+Shift+T&lt;/strong&gt;&lt;/td&gt;&lt;td class="border_right" style="border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;Reopens the last tab you've closed. Google Chrome remembers the last 10 tabs you've closed.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-928943603585445671?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/928943603585445671/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/09/chrome-v-3019521-out-now.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/928943603585445671'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/928943603585445671'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/09/chrome-v-3019521-out-now.html' title='Chrome V-3.0.195.21 Out Now!!'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-6279846515091267313</id><published>2009-09-16T21:12:00.002+05:30</published><updated>2009-09-16T21:19:27.729+05:30</updated><title type='text'>Google Chrome – Where it Stands on its First Birthday?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_HyU5jGl79iI/SrEI7lWTrQI/AAAAAAAAAjo/fq6M-ASVpgk/s1600-h/browser-share.png"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 129px;" src="http://1.bp.blogspot.com/_HyU5jGl79iI/SrEI7lWTrQI/AAAAAAAAAjo/fq6M-ASVpgk/s400/browser-share.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5382092849415433474" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(85, 85, 85);  font-family:Verdana;font-size:12px;"&gt;&lt;h2 class="singleh2" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding-top: 5px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(0, 0, 0); font: normal normal normal 18px/normal Georgia, 'Times New Roman', Times, serif; font-size: 1.8em !important; "&gt;On September 2nd 2008 Google Proudly launched its first ever Web Browser.&lt;/h2&gt;&lt;div&gt;Lets take a sneak peak over the year of Google Chrome.Some Interesting facts about the browser&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(119, 119, 119); font-style: italic; "&gt;&lt;p   style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 5px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; line-height: 20px; text-align: left;  font-size:12px;color:initial;"&gt;Since September 2, 2008, there have been:&lt;/p&gt;&lt;p size="12px" color="initial" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 5px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; line-height: 20px; text-align: left;  "&gt;– 51 developer releases, 21 beta releases or updates, and 15 stable releases or updates – Over 20,600 bugs filed (4367 of them were duplicates, 3505 have been fixed, which leaves a whole lot left to go!) – 11 external committers and bug editors, 46 external code contributors – 50 Chrome Experiments &lt;span style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;"&gt;– 26 posts on the &lt;span class="IL_SPAN"  style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;"&gt;Google Chrome&lt;/span&gt; (&lt;span class="IL_SPAN"  style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;"&gt;Google Chrome&lt;/span&gt;) blog&lt;/span&gt; &lt;span style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;"&gt;– 12 Chrome Shorts, a collection of short films about &lt;span class="IL_SPAN"  style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;"&gt;Google Chrome&lt;/span&gt;&lt;/span&gt; – A sequel to the comic in Japanese&lt;/p&gt;&lt;p size="12px" color="initial" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 5px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; line-height: 20px; text-align: left;  "&gt;More importantly, we’ve improved by over 150% on Javascript performance since our initial beta.&lt;/p&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 5px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; line-height: 20px; text-align: left; font-size: 12px; "&gt;&lt;span class="Apple-style-span" style="color: rgb(85, 85, 85); font-style: normal; "&gt;&lt;span style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;"&gt;&lt;span style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;"&gt;Nice &lt;span class="IL_SPAN"  style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;"&gt;stats&lt;/span&gt;, aren’t they? Damn, who cares about the developmental Stats?? What matters is the industry/market share. So in 12 months, how much ground has Google made? Well, not much! According to &lt;span class="IL_SPAN"  style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;"&gt;stats&lt;/span&gt; from &lt;/span&gt;&lt;span class="IL_SPAN"  style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;"&gt;Market&lt;/span&gt; Share/Net Applications,&lt;/span&gt;&lt;strong  style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;"&gt;&lt;span style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;"&gt;Chrome only has 2.84% of the &lt;span class="IL_SPAN"  style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;"&gt;market&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;, far behind Internet Explorer’s 66.87% or Firefox’s 22.98%.&lt;/span&gt;&lt;/p&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 5px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding-top: 5px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; line-height: 20px; text-align: left; font-size: 12px; "&gt;&lt;span class="Apple-style-span"  style="color:#555555;"&gt;&lt;span class="Apple-style-span" style="font-style: normal;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-6279846515091267313?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/6279846515091267313/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/09/google-chrome-where-it-stands-on-its.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/6279846515091267313'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/6279846515091267313'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/09/google-chrome-where-it-stands-on-its.html' title='Google Chrome – Where it Stands on its First Birthday?'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_HyU5jGl79iI/SrEI7lWTrQI/AAAAAAAAAjo/fq6M-ASVpgk/s72-c/browser-share.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-6613941846446064549</id><published>2009-09-15T18:40:00.002+05:30</published><updated>2009-09-15T18:44:07.068+05:30</updated><title type='text'>Google is organising content again: this time it's magazines</title><content type='html'>&lt;a href="http://1.bp.blogspot.com/_HyU5jGl79iI/Sq-SkuaVu6I/AAAAAAAAAjg/J50575VohE0/s1600-h/fast_flip_logo.gif"&gt;&lt;img style="MARGIN: 0px 10px 10px 0px; WIDTH: 198px; FLOAT: left; HEIGHT: 40px; CURSOR: hand" id="BLOGGER_PHOTO_ID_5381681239362485154" border="0" alt="" src="http://1.bp.blogspot.com/_HyU5jGl79iI/Sq-SkuaVu6I/AAAAAAAAAjg/J50575VohE0/s400/fast_flip_logo.gif" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;Another week, another Google initiative, another reason to wonder whether the giant's vaunting ambition is going to be its undoing, wonders Ian Scales. This time it's all about aggregating magazines - or rather, magazine articles.&lt;/div&gt;&lt;div&gt;Google this week announced &lt;a href="http://fastflip.googlelabs.com/"&gt;'Fast Flip&lt;/a&gt;'. Don't be fooled by the cutesy name, it all looks deadly serious to me. Fast Flip is another way to atomise then organise the world's content and present it in a compelling way (and sell ads around it). This time it's a magazine-style visual offering - like a news stand. Instead of presenting flat globs of textual search results (like the vanilla Google search) Fast Flip offers magazine-style page images gathered by a keyword search. One click gives you a visual close-up, a second takes you straight to the primary source where you can read the article just as God (or Murdoch) intended. Here lies the nub.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;Google has been copping it big time from publishers who say the search giant is eating their lunch by assembling and aggregating their news.Oops. More enemies. So the commercial shape of Fast Flip is designed to ease big (powerful) publishers into the online world and offer some soothing revenue share at the same time. Google has kicked it off (it's still in beta within Google Labs, naturally) with a collection of magazine 'partners' with which it shares the ad revenue... presumably many more will follow. It will be fascinating to see how this one does and, if it does well, how online publishing will change because of it. One thing is for sure, individual article layout just got slightly more important and website design and navigation slightly less.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-6613941846446064549?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/6613941846446064549/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/09/google-is-organising-content-again-this.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/6613941846446064549'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/6613941846446064549'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/09/google-is-organising-content-again-this.html' title='Google is organising content again: this time it&apos;s magazines'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_HyU5jGl79iI/Sq-SkuaVu6I/AAAAAAAAAjg/J50575VohE0/s72-c/fast_flip_logo.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-1617409982844581533</id><published>2009-09-15T17:23:00.002+05:30</published><updated>2009-09-15T17:27:41.508+05:30</updated><title type='text'>India Loves Google !!!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_HyU5jGl79iI/Sq-AnscEaVI/AAAAAAAAAjY/QSLPtFg59Tg/s1600-h/106339_matter.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 200px; height: 150px;" src="http://4.bp.blogspot.com/_HyU5jGl79iI/Sq-AnscEaVI/AAAAAAAAAjY/QSLPtFg59Tg/s400/106339_matter.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5381661499163175250" /&gt;&lt;/a&gt;&lt;span class="Apple-style-span" style="font-family: Arial; color: rgb(51, 51, 51); font-size: 11px; line-height: 15px; "&gt;Google dominates Internet in India, Brazil...&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Arial;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 11px; line-height: 15px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(0, 0, 0); line-height: normal; "&gt;&lt;p class="padT10" style="display: block; font-family: Arial, Helvetica, sans-serif; color: rgb(51, 51, 51); font-size: 11px; line-height: 15px; height: 45px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 10px; "&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif; color: rgb(51, 51, 51); font-size: 12px; line-height: 15px; height: 0px; "&gt;It's official. India is a Google lover.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif; color: rgb(51, 51, 51); font-size: 12px; line-height: 15px; height: 0px; "&gt;This as a recent report by digital world research firm comScore shows that Google usage is more prevalent in the emerging Internet markets of India and Brazil as compared to the rest of the world.&lt;br /&gt;&lt;br /&gt;In July, 29.8 percent of total time spent online in Brazil was spent on Google Sites, with India only slightly lower at 28.9 percent. The next highest global market was Ireland at 15.9 percent. Here, we are not talking just about Google search but the other diverse websites falling under Google's umbrella. These include Orkut, YouTube and Google Maps.&lt;br /&gt;&lt;br /&gt;In India, Google Sites accounted for 88.4 percent of all searches conducted, and had a commanding share of time spent in social networking with Orkut (68.2 percent), maps with Google Maps (63.9 percent) with YouTube (82.8 percent). It also commanded slightly less than half of all time spent in the blogs category with blogger  (47.6 percent) and email with Gmail (46.8 percent).&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-1617409982844581533?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/1617409982844581533/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/09/india-loves-google.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/1617409982844581533'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/1617409982844581533'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/09/india-loves-google.html' title='India Loves Google !!!'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_HyU5jGl79iI/Sq-AnscEaVI/AAAAAAAAAjY/QSLPtFg59Tg/s72-c/106339_matter.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-7704208573912567206</id><published>2009-09-01T09:36:00.002+05:30</published><updated>2009-09-01T09:42:14.327+05:30</updated><title type='text'>Try This Out !!!!</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Tahoma, Arial, sans-serif; font-size: 12px; color: rgb(51, 51, 51); line-height: 15px; "&gt;&lt;p style="margin-top: 0px; margin-bottom: 5px; text-align: justify; "&gt;So I started running into some performance problems ROM's. I found out that the dalvik-cache gets carried over between ROM installs and that it can cause problems and that I should delete it, wipe my phone and start again.I have this little guide to follow:&lt;/p&gt;&lt;blockquote style="border-top-color: rgb(96, 119, 28); border-right-color: rgb(96, 119, 28); border-bottom-color: rgb(96, 119, 28); border-left-color: rgb(96, 119, 28); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; margin-top: 10px; margin-right: 10px; margin-bottom: 10px; margin-left: 50px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 41px; background-color: rgb(235, 246, 198); background-image: url(http://www.androidspin.com/templates/AndroidSPIN/images/PostQuote.png); background-repeat: no-repeat; background-position: 0% 0%; "&gt;Ok ... so reboot into cyanogen's recovery &lt;/blockquote&gt;&lt;blockquote style="border-top-color: rgb(96, 119, 28); border-right-color: rgb(96, 119, 28); border-bottom-color: rgb(96, 119, 28); border-left-color: rgb(96, 119, 28); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; margin-top: 10px; margin-right: 10px; margin-bottom: 10px; margin-left: 50px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 41px; background-color: rgb(235, 246, 198); background-image: url(http://www.androidspin.com/templates/AndroidSPIN/images/PostQuote.png); background-repeat: no-repeat; background-position: 0% 0%; "&gt;note:--i am assuming you know about cyanogen's recovery if not then &lt;span class="Apple-style-span" style="color: rgb(85, 85, 85); font-family: arial, sans-serif; font-size: 19px; line-height: normal; white-space: pre; "&gt;http://tinyurl.com/lxwgyl &lt;/span&gt;&lt;/blockquote&gt;&lt;blockquote style="border-top-color: rgb(96, 119, 28); border-right-color: rgb(96, 119, 28); border-bottom-color: rgb(96, 119, 28); border-left-color: rgb(96, 119, 28); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; margin-top: 10px; margin-right: 10px; margin-bottom: 10px; margin-left: 50px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 41px; background-color: rgb(235, 246, 198); background-image: url(http://www.androidspin.com/templates/AndroidSPIN/images/PostQuote.png); background-repeat: no-repeat; background-position: 0% 0%; "&gt;&lt;br /&gt;Press (Alt+x) to enter the console&lt;br /&gt;&lt;br /&gt;Enter the following commands ...&lt;br /&gt;&lt;br /&gt;mount system&lt;br /&gt;mount system/sd&lt;br /&gt;rm -rf system/sd/dalvik-cache&lt;br /&gt;umount system/sd&lt;br /&gt;umount system&lt;br /&gt;recovery&lt;br /&gt;&lt;br /&gt;This will bring you back to recovery, from there perform the "Data Wipe" option in the menu.&lt;br /&gt;&lt;br /&gt;When it's done reboot and you should be all good. Of course you'll have to redo your settings, but your apps will reinstall properly.&lt;br /&gt;&lt;/blockquote&gt;&lt;p style="margin-top: 0px; margin-bottom: 5px; text-align: justify; "&gt;Well the results have been amazing.  I performed the wipe this morning and I can say that this is the “FASTEST ROM I HAVE EVER RUN”.  I thought it was fast when I first made the change, but ever since my fix this morning, it’s gone into turbo mode.&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-7704208573912567206?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/7704208573912567206/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/09/try-this-out.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/7704208573912567206'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/7704208573912567206'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/09/try-this-out.html' title='Try This Out !!!!'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-6686840861466930495</id><published>2009-08-25T19:02:00.000+05:30</published><updated>2009-08-25T19:08:22.101+05:30</updated><title type='text'>OBEX in Android</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif; font-size: 13px; color: rgb(51, 51, 51); line-height: 20px; "&gt;First of all, they are all for Android Dev Phone. You need to have root permission in Android devices. My working machine is Ubuntu 9.04 and I use Android tool chain to compile these applications.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; "&gt;1. Prepare working environment:&lt;/span&gt;&lt;br /&gt;Check &lt;a href="http://source.android.com/download" style="color: rgb(153, 153, 153); text-decoration: none; "&gt;Android official website&lt;/a&gt; and they provide a user guide. It tells me how to download Android source code and how to compile it.&lt;br /&gt;&lt;br /&gt;It took me few hours to set up environment, download code, and make the whole building system. Like my friend said, all&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif; font-size: 13px; color: rgb(51, 51, 51); line-height: 20px; "&gt;&lt;a href="http://en.wikipedia.org/wiki/Otaku" style="color: rgb(120, 183, 73); text-decoration: none; "&gt;OTAKU&lt;/a&gt; in Taiwan have android source code in their machine.&lt;br /&gt;&lt;br /&gt;If you can run Android emulator from your compiled result, it should mean DONE. :)&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; "&gt;2. Build it for &lt;a href="http://www.htc.com/www/support/android/adp.html" style="color: rgb(120, 183, 73); text-decoration: none; "&gt;DREAM&lt;/a&gt;:&lt;/span&gt;&lt;br /&gt;The Android emulator in item one doesn't support bluetooth and I cannot play OBEX in it. I choose to play it with my Android Dev Phone. Then I modified my build system and changed some configuration files. Check another document from &lt;a href="http://source.android.com/documentation/building-for-dream" style="color: rgb(120, 183, 73); text-decoration: none; "&gt;Android&lt;/a&gt;, it tells me how to change my building environment. Also, if you'd like to use the official system images, you can download them from &lt;a href="http://www.htc.com/www/support/android/adp.html#s3" style="color: rgb(120, 183, 73); text-decoration: none; "&gt;HTC&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; "&gt;3. Download OBEX source codes from &lt;/span&gt;&lt;a href="http://gitorious.org/android-obex" style="color: rgb(153, 153, 153); text-decoration: none; font-weight: bold; "&gt;android-obex&lt;/a&gt;&lt;span style="font-weight: bold; "&gt;:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; "&gt;a. build openobex&lt;/span&gt;&lt;br /&gt;&lt;div class="highlight" style="background-color: rgb(250, 250, 250); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); font-size: 9pt; font-family: monospace; line-height: 15px; margin-top: 1em; margin-right: 10px; margin-bottom: 0px; margin-left: 10px; overflow-x: auto; overflow-y: auto; padding-top: 0.99em; padding-right: 0.99em; padding-bottom: 0.99em; padding-left: 0.99em; "&gt;&lt;br /&gt;&gt; cd $MYDROID (change folder to mydroid folder)&lt;br /&gt;&gt; cd external (change folder to external directory, it's for native code)&lt;br /&gt;&gt; &lt;span id="repo-7130-git-url"&gt;&lt;code&gt;git clone &lt;a href="git://gitorious.org/android-obex/openobex.git" class="link_noop" style="color: rgb(120, 183, 73); text-decoration: none; "&gt;git://gitorious.org/android-obex/openobex.git&lt;/a&gt;&lt;/code&gt;&lt;/span&gt; (it would download code to openobex folder)&lt;br /&gt;&gt; cd openobex&lt;br /&gt;&gt; . ../../build/envsetup.sh (run android env setup script)&lt;br /&gt;&gt; mm (it would run Android makefile to compile sources)&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;After running above commands, it would generate related libraries and binary files in android 'out' directory.&lt;br /&gt;&lt;br /&gt;one static library: libopenobex (out/target/product/dream/obj/STATIC_LIBRARIES/libopenobex_intermediates/libopenobex.a)&lt;br /&gt;one binary file: obex_test (out/target/product/dream/system/bin/obex_test)&lt;br /&gt;&lt;br /&gt;use USB cable to upload binary file to Android Dev Phone.&lt;br /&gt;&lt;div class="highlight" style="background-color: rgb(250, 250, 250); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); font-size: 9pt; font-family: monospace; line-height: 15px; margin-top: 1em; margin-right: 10px; margin-bottom: 0px; margin-left: 10px; overflow-x: auto; overflow-y: auto; padding-top: 0.99em; padding-right: 0.99em; padding-bottom: 0.99em; padding-left: 0.99em; "&gt;&lt;br /&gt;&gt; adb shell&lt;br /&gt;&gt; mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system (add WRITE permission in system dir)&lt;br /&gt;&gt; adb push $MYDROID/out/target/product/dream/system/bin/obex_test /system/bin&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-style: italic; "&gt;b. build obexpushd&lt;/span&gt;&lt;br /&gt;&lt;div class="highlight" style="background-color: rgb(250, 250, 250); border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); font-size: 9pt; font-family: monospace; line-height: 15px; margin-top: 1em; margin-right: 10px; margin-bottom: 0px; margin-left: 10px; overflow-x: auto; overflow-y: auto; padding-top: 0.99em; padding-right: 0.99em; padding-bottom: 0.99em; padding-left: 0.99em; "&gt;&lt;br /&gt;&gt; cd $MYDROID (change folder to mydroid folder)&lt;br /&gt;&gt; cd external (change folder to external directory, it's for native code)&lt;br /&gt;&gt; &lt;span id="repo-7130-git-url"&gt;&lt;code&gt;git clone &lt;/code&gt;&lt;/span&gt;&lt;span id="repo-7133-git-url"&gt;&lt;code&gt;git clone &lt;a href="git://gitorious.org/android-obex/obexpushd.git" class="link_noop" style="color: rgb(120, 183, 73); text-decoration: none; "&gt;git://gitorious.org/android-obex/obexpushd.git&lt;/a&gt;&lt;/code&gt;&lt;/span&gt; (it would download code to obexpushd folder)&lt;br /&gt;&gt; cd obexpushd/src&lt;br /&gt;&gt; . ../../build/envsetup.sh (run android env setup script)&lt;br /&gt;&gt; mm (it would run Android makefile to compile sources)&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;After running above commands, it would generate one binary files in android 'out' directory. The same as openobex, you can use adb push to upload binary file to Android Dev Phone. BTW, you should compile openobex before obexpushd, coz obexpushd need to use openobex libraries.&lt;br /&gt;&lt;br /&gt;one binary file: obexpushd (out/target/product/dream/system/xbin/obexpushd)&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; "&gt;4. Verify OBEX functions&lt;/span&gt; between Ubuntu machine and Android Dev Phone.&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-6686840861466930495?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/6686840861466930495/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/08/obex-in-android.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/6686840861466930495'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/6686840861466930495'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/08/obex-in-android.html' title='OBEX in Android'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-7443467455133483722</id><published>2009-08-25T18:40:00.002+05:30</published><updated>2009-08-25T18:54:03.696+05:30</updated><title type='text'>Bluetooth On Android</title><content type='html'>Hurray !!! Wait on we still don't have a proper Bluetooth file transfer app, but yeah there are some apps which can make somewhat somethings possible.....&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;We have an app called BlueX but this is a paid version, but why not try to google it you might get it through...&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Also we have an app Androbex but this also has its own drawbacks......some features are still not up to mark&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;So the point of writing this blog is that.....you can have a temp app as of now but ya in recent times we can expect a better app thanks to everyone @ xda developers specially garok89 and others who have taken an initiative towards developing an amazing app.......so just wait on and hold on for Android to get perfect....&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Thanks to openOBEX this is Possible......&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; font-size: 12px; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; "&gt;OBEX=OBject EXchange=how protocol used when sending via bluetooth ot infrared&lt;br /&gt;Open=open source=anyone can use the code with no copyright issues&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;font-size:100%;"&gt;&lt;span class="Apple-style-span" style="font-size: 12px; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px;"&gt;Sit Back n Njoy......!!!!&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-7443467455133483722?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/7443467455133483722/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/08/bluetooth-on-android.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/7443467455133483722'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/7443467455133483722'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/08/bluetooth-on-android.html' title='Bluetooth On Android'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-2932761160008491040</id><published>2009-08-17T18:51:00.010+05:30</published><updated>2009-08-19T07:20:54.968+05:30</updated><title type='text'>Steps to Root Airtel HTC Magic and Mytouch 3G( for US users)</title><content type='html'>&lt;span class="Apple-style-span"   style="color: rgb(86, 80, 80);   line-height: 14px; font-family:'Lucida Grande', Verdana, Arial, sans-serif;font-size:12px;"&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;As Promised I said i would come up with steps for Rooting....&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;For Airtel Customers i would assure that this is working 100% because i tried it successfully myself.......&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;If you have tried to use our How To Root Your Magic procedure on your MyTouch, you probably noticed a huge brick wall that you ran into during the procedure. Well, finally, the good devs over at XDA, have graced us with a solution (albiet a slightly complicated one).&lt;/p&gt;&lt;h3 style="font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, sans-serif; font-weight: bold; font-size: 1.3em; text-align: center; "&gt;PLEASE PROCEED AT YOUR OWN RISK, THIS IS A COMPLICATED PROCEDURE AND COULD HARM YOUR PHONE!&lt;/h3&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;So with the disclaimer out of the way, let’s begin shall we?&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;*Thanks to Erlern for the GoldCard procedure!&lt;br /&gt;*Thanks to Amon Ra for the Rooting procedure!&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;h3 style="font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, sans-serif; font-weight: bold; font-size: 1.3em; text-align: center; "&gt;&lt;strong&gt;Before Beginning:&lt;/strong&gt;&lt;/h3&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; text-align: center; "&gt;Have a SPARE memory card (2GB is perfect and relatively cheap) to use for the Goldcard procedure, do NOT use your normal everyday card as it will ONLY be a goldcard after we are done.&lt;/p&gt;&lt;h3 style="font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, sans-serif; font-weight: bold; font-size: 1.17em; "&gt;I. Download and Install the Android SDK, Fastboot, and drivers (If you already have this done, skip this section).&lt;/h3&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;1. Download these 2 files:&lt;br /&gt;&lt;a onclick="javascript:pageTracker._trackPageview('/outbound/article/http://developer.android.com/sdk/download.html?v=android-sdk-windows-1.5_r3.zip');" href="http://developer.android.com/sdk/1.5_r3/index.html" target="_blank" style="color: rgb(85, 136, 187); text-decoration: none; "&gt;Android SDK&lt;br /&gt;&lt;/a&gt;&lt;a href="http://www.htc.com/www/support/android/adp.html#s2" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.htc.com/www/support/android/adp.html#s2');" target="_blank" style="color: rgb(85, 136, 187); text-decoration: none; "&gt;Fastboot&lt;/a&gt; (scroll to Fastboot tool and download the appropriate one for you computer’s OS)&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;2. Once you download the SDK, extract the SDK files to “C:\AndroidSDK”. Then extract the fastboot program to the C:\AndroidSDK\tools\ folder.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;3. Turn off the phone, then turn it back on by holding down the Power and Back button (to enter bootloader mode).&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;4. Plug the phone into the computer via USB. Make sure that it says FASTBOOT USB instead of FASTBOOT now.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;5. Your computer should say installing drivers right now (if this is the first time you have connected the phone in fastboot mode). Hopefully your computer will automatically install them, but if it doesn’t then use this &lt;a onclick="javascript:pageTracker._trackPageview('/outbound/article/http://developer.android.com/guide/developing/device.html');" href="http://developer.android.com/guide/developing/device.html" target="_blank" style="color: rgb(85, 136, 187); text-decoration: none; "&gt;guide from Google&lt;/a&gt; to install the drivers.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;6. Goto the Start menu type cmd into the run section of the start menu and hit enter to bring up the Command Prompt.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;7.  Type the following into the command dos prompt on the computer (the black screen with white letters that just opened) while the phone is connected through USB, hitting enter at the end of the line:&lt;br /&gt;cd\&lt;br /&gt;cd androidsdk\tools\&lt;br /&gt;fastboot devices&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;8. You should see a serial number pop up and the word fastboot to the right of it. This means that your USB drviers are all set up correctly and you can continue. If you do NOT see this, then you need to start over or Google for how to set up the USB drivers correctly (&lt;a onclick="javascript:pageTracker._trackPageview('/outbound/article/http://wiki.xda-developers.com/index.php?pagename=HTC_Sapphire_Hacking#sec02');" href="http://wiki.xda-developers.com/index.php?pagename=HTC_Sapphire_Hacking#sec02" target="_blank" style="color: rgb(85, 136, 187); text-decoration: none; "&gt;this&lt;/a&gt; will help).&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;9. If it worked, unplug your phone and turn it off and then back on to get to the regular home screen.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;*Tip: If your computer says the drivers are installed but it is installing the wrong drivers, I recommend Uninstalling the drivers using this program, &lt;a href="http://www.softpedia.com/get/System/System-Info/USBDeview.shtml" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.softpedia.com/get/System/System-Info/USBDeview.shtml');" target="_blank" style="color: rgb(85, 136, 187); text-decoration: none; "&gt;USBDeview&lt;/a&gt;, then plug the phone in again and choose the correct drivers in the SDK USB Drivers folder&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;h3 style="font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, sans-serif; font-weight: bold; font-size: 1.3em; "&gt;II. Create a “Goldcard”&lt;/h3&gt;&lt;h3 style="font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, sans-serif; font-weight: bold; font-size: 1.3em; "&gt;&lt;br /&gt;(USE A SPARE MEMORY CARD FOR THIS, YOU WILL NOT BE USING THIS CARD FOR YOUR NORMAL MEMORY CARD AGAIN, SO HAVE THIS GOLDCARD AS ONE MEMORY CARD AND ANOTHER CARD AS YOUR REAL MEMORY CARD FOR SAVING MUSIC, FILES, ETC. TO)&lt;/h3&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;1. Put the Spare memory card into your phone.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;2. With the Spare Memory card in your phone, click on Settings, SD and Phone storage, then click Unmount SD card. Once it unmounts, click Format SD card. (Please keep in mind that some memory cards don’t work)&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;3. On the Phone, goto Settings, Applications, Development and then make sure USB Debugging is checked.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;4. *Make sure you have installed the SDK and Fastboot correctly from Section I!!!&lt;br /&gt;Plug the phone into the computer and then open the Command Prompt (goto the start menu and type in cmd in the search box). Then type the following with hitting enter at the end of each line.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;cd\&lt;br /&gt;cd\AndroidSDK\tools\&lt;br /&gt;adb devices&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;(wait for the it to show a serial number underneath, if it doesn’t then reinstall the drivers from section I). Then type:&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;adb shell&lt;br /&gt;cat /sys/class/mmc_host/mmc1/mmc1:*/cid&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;5. A code will display, write the code down (MAKE SURE TO WRITE IT DOWN EXACTLY!)&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;6. Now, on your computer, goto &lt;a rel="nofollow" href="http://revskills.de/pages/download.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://revskills.de/pages/download.html');" style="color: rgb(60, 120, 167); text-decoration: none; font-size: 11px; line-height: 1.4em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;http://revskills.de/pages/download.html&lt;/a&gt; and download QMAT 4.36. Extract the file to your computer somewhere and double click on the qmat.exe to open the program (THIS IS A DEMO VERSION SO IT WILL ONLY STAY OPEN FOR 10 MINUTES, SO TRY AND NOT LINGER WHILE DOING THE NEXT STEPS).&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;7. Click on Cryptoanalysis Tools then Crypto Toolbox&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;8. Scroll down till you see a text box with a button titled, “Reverse String”, next to it. Put the CID you wrote down earlier into the text box (DOUBLE CHECK IT!) and then click the Reverse String button. It should reverse the CID you put in, write this down now (AND AGAIN DOUBLE CHECK IT!).&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;9. Now, on your computer, goto &lt;a rel="nofollow" href="http://revskills.de/pages/goldcard.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://revskills.de/pages/goldcard.html');" style="color: rgb(60, 120, 167); text-decoration: none; font-size: 11px; line-height: 1.4em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;http://revskills.de/pages/goldcard.html&lt;/a&gt; and enter your email in the appropriate field and for CID enter the reversed CID you just copied down BUT REPLACE THE FIRST 2 DIGITS WITH 2 ZEROS! (i.e. 12345678910 becomes 00345678910). *Thanks to Viper for providing these Goldcards for FREE!&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;10. Click continue and then you will receive your goldcard.img via email. Once it arrives save it to your computer.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;11. Now, goto &lt;a rel="nofollow" href="http://download.cnet.com/HxD-Hex-Editor/3000-2352-10891068.html?part=dl-HxDHexEdi&amp;amp;subj=uo&amp;amp;tag=button" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://download.cnet.com/HxD-Hex-Editor/3000-2352-10891068.html?part=dl-HxDHexEdi&amp;amp;subj=uo&amp;amp;tag=button');" style="color: rgb(60, 120, 167); text-decoration: none; font-size: 11px; line-height: 1.4em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;http://download.cnet.com/HxD-Hex-Editor/3000-2352-10891068.html?part=dl-HxDHexEdi&amp;amp;subj=uo&amp;amp;tag=button&lt;/a&gt; to download the HxD Hex Editor. Save it and install it to your computer.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;12. Take your SD card out of your phone and put it into the SD adapter it came with. Then put that into your computer so it shows up on your computer as Removable Disk.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;13. Open the Hex Editor and click on the Extra tab, then click on Open Disk. Under Physical Disk select Removable Disk (your SD card you just put into the computer). Make sure to UNcheck “Open as ReadOnly”. Click OK.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;14. Goto the Extra tab again and click Open Disk Image. Open up the goldcard.img that you saved from your email. You should now have two tabs, one is the SD card (Removable Disk) and the other is the goldcard.img&lt;br /&gt;Press OK when prompted for Sector Size 512 (Hard Disks/Floppy Disks).&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;15. Click on the Goldcard.img tab and click on the Edit tab and click Select All. Then click on the Edit tab again and click Copy.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;16. Click on the Removable Disk tab (Your SD Card) and select offset 00000000 to 00000170 then click on the Edit tab and click Paste Write.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;17. Click on File then click Save.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;18. Close the Hex Editor.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;19. Test what we’ve done:&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;Take out the memory card from the computer, then put it back in.&lt;br /&gt;Try to open the memory card on the computer (Removable Disk), if it lets you, you are all set. If it asks/tells you to reformat the card, then try steps 13 – 19 again. If it gives you the same error again, then try a different memory card (Erlern said it didn’t work for him until he finally went and bought a Kingston 2GB card, then it worked on that card only).&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;&lt;/p&gt;&lt;h3 style="font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, sans-serif; font-weight: bold; font-size: 1.3em; "&gt;III. Root the MyTouch using the Goldcard&lt;/h3&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;1. Save the required file (SappIMG.img) to your computer, then save it to your goldcard (Do NOT rename it to anything, leave it as SappIMG.zip). Then take out your Goldcard from the computer.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;&lt;span class="Apple-style-span"   style="color: rgb(0, 0, 0);   line-height: normal; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family:verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;font-size:13px;"&gt;ROM &lt;a href="http://rapidshare.com/files/267446145/2.53.707.2_-_sappimg.zip" target="_blank" style="color: rgb(0, 0, 192); text-decoration: none; "&gt;v2.53.707.2&lt;/a&gt; (Engineerings SPL v1.33.2010) - MD5 : F9674D19BE5F949D0D9DC99714D210E3&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;&lt;span class="Apple-style-span"    style="font-family:verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;font-size:100%;color:#000000;"&gt;&lt;span class="Apple-style-span"  style=" line-height: normal; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px;font-size:13px;"&gt;ROM &lt;a href="http://rapidshare.com/files/267451803/2.16.707.3_-_sappimg.zip" target="_blank" style="color: rgb(0, 0, 192); text-decoration: none; "&gt;v2.16.707.3&lt;/a&gt; (NON-Perfected stock SPL v1.33.0009) - MD5 : DC391E4A3FC57861D7197C151176ED96&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;&lt;span class="Apple-style-span"    style="font-family:verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;font-size:100%;color:#000000;"&gt;&lt;span class="Apple-style-span"  style=" line-height: normal; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px;font-size:13px;"&gt;ROM &lt;a href="http://rapidshare.com/files/266290371/sappimg.zip" target="_blank" style="color: rgb(0, 0, 192); text-decoration: none; "&gt;v2.16.151.1&lt;/a&gt; (NON-Perfected stock SPL v1.33.0009) - MD5 : ADA4924293EFF619B05BB397446F862D&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;———————————————————————————————————————————————–&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;2.. Take your original memory card (NOT YOUR GOLDCARD) and save whatever is on it to your computer as a backup before beginning.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;3. Put the memory card into your phone (AGAIN NOT THE GOLDCARD).&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;4. With the memory card in your phone, click on Settings, SD and Phone storage, then click Unmount SD card. Once it unmounts, click Format SD card.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;5. Plug the phone into the computer and mount the SD card so we can save a file to it.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;6. Download the &lt;a href="http://rapidshare.com/files/247838950/update.Engineering-SPL-HBOOT-1.33.2005-signed.zip" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://rapidshare.com/files/247838950/update.Engineering-SPL-HBOOT-1.33.2005-signed.zip');" target="_blank" style="color: rgb(85, 136, 187); text-decoration: none; "&gt;1.33.2005 HBoot&lt;/a&gt; and save it to your newly formatted memory card, and then rename it to update.zip (windows sometimes just needs you to rename it update and if you still see the zip folder symbol next to the file that means that it is still update.zip even though it only shows update).&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;7. Turn off your phone once the update.zip file is on the memory card.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;8. Take out the memory card from the phone and put in the Goldcard (all while the phone is still off).&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;9. Turn on the phone by hold down the Power and Volume Down button. When the screen comes to the rainbow (or skating android screen), it should automatically pick up the SappIMG.zip file and ask you to update. Go ahead and update (DO NOT INTERRUPT THIS PROCESS).&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;10. Once the flashing is COMPLETE. Then turn off the phone.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;11. While the phone is off, take out the Goldcard and put in the regular SD card (the one with the update.zip file on it).&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;12. Turn on the phone while holding Back and Power until the Fastboot screen comes up (when the fastboot screen comes up it should read, 1.33.2005 for SPL).&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;13. Download &lt;a href="http://rapidshare.com/files/262635369/recovery-RAv1.2.0H.img" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://rapidshare.com/files/262635369/recovery-RAv1.2.0H.img');" target="_blank" style="color: rgb(85, 136, 187); text-decoration: none; "&gt;Amon Ra’s Recovery Image&lt;/a&gt; and save it to the AndroidSDK\Tools folder on your computer.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;14. Plug the phone into the computer (while still in fastboot mode).&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;15. Goto the Start menu type cmd into the run section of the start menu and hit enter to bring up the Command Prompt.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;16.  Type the following into the command dos prompt on the computer (the black screen with white letters that just opened) while the phone is connected through USB, hitting enter at the end of the line:&lt;br /&gt;cd\&lt;br /&gt;cd androidsdk\tools\&lt;br /&gt;fastboot devices&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;17. You should see a serial number pop up and the word fastboot to the right of it. This means that your USB drviers are all set up correctly and you can continue. If you do NOT see this, then you need to start over or Google for how to set up the USB drivers correctly (&lt;a onclick="javascript:pageTracker._trackPageview('/outbound/article/http://wiki.xda-developers.com/index.php?pagename=HTC_Sapphire_Hacking#sec02');" href="http://wiki.xda-developers.com/index.php?pagename=HTC_Sapphire_Hacking#sec02" target="_blank" style="color: rgb(85, 136, 187); text-decoration: none; "&gt;this&lt;/a&gt; will help).&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;18. If it worked, type the following into the command prompt (with hitting enter at the end of the line):&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;fastboot boot recovery-RAv1.2.0H.img           *the 0 in 1.2.0H is a Zero not an Oh&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;19. Once the phone boots into the recovery mode, then click on Apply Update.zip&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;20. Once it is finished applying the update, hit home and back to reboot the phone. It should boot up into recovery mode, if not hold down the power button until it does. Once it loads the recovery screen, then take out the battery and put it back in.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;21. Turn on the phone by holding Back and Power to get into Fastboot mode again. At the top it should read 1.33.2005. If so, turn off the phone. If not retry this section.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;22. Take out the SD card (while the phone is off) and put it into your computer via the cardreader it came with.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;23. Open the memory card on the computer and delete the update.zip file from the memory card.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;24. Download &lt;a href="http://rapidshare.com/files/258868832/Rom-RAv1.1.0H-signed-update.zip" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://rapidshare.com/files/258868832/Rom-RAv1.1.0H-signed-update.zip');" target="_blank" style="color: rgb(85, 136, 187); text-decoration: none; "&gt;Amon Ra’s 32A based image&lt;/a&gt; and save it to the memory card, rename it to update.zip&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;25. Put the SD card back into your phone and turn the phone on by holding down Back and Power. Once it boots up into fastboot mode, plug the phone into the computer via Usb (the command prompt should still be open on your computer).&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;26. Type the following into the command prompt (with hitting enter at the end of the line):&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;fastboot boot recovery-RAv1.2.0H.img           *the 0 in 1.2.0H is a Zero not an Oh&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;27. Once the phone boots up into recovery mode, click the Apply Update.zip&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;28. Once the update is complete click home and back to reboot.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;29. ALL DONE YOU NOW HAVE ROOT! You can use the phone as is now with Root access. If you want to load a new ROM (like a Hero ROM for instance)......&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;Any Questions welcome.....happy Rooting...njoy.....&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;NOTE:- Works for MyTouch&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-2932761160008491040?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/2932761160008491040/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/08/as-promised-i-said-i-would-come-up-with.html#comment-form' title='12 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/2932761160008491040'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/2932761160008491040'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/08/as-promised-i-said-i-would-come-up-with.html' title='Steps to Root Airtel HTC Magic and Mytouch 3G( for US users)'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>12</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-756302496026917889</id><published>2009-08-16T13:08:00.002+05:30</published><updated>2009-08-16T13:11:54.599+05:30</updated><title type='text'>Root Your HTC Magic (Airtel) and MyTouch3g</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Arial, Tahoma, Verdan, sans-serif; font-size: 13px; "&gt;&lt;p style="margin-top: 15px; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Amon_RA on the XDA-Developers forum has just blessed the Android community with a comprehensive step-by-step process for gaining root access to the MyTouch 3g.  While the necessary items to root the device are mainly software-based, users will need two SD cards.  One is used to create a “Goldcard”, while the other will be used to run the edited update file on the device.&lt;/p&gt;&lt;p style="margin-top: 15px; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;The instructions, along with the necessary files, can be found &lt;b&gt;&lt;i&gt;&lt;span class="Apple-style-span" style="font-size: medium;"&gt;&lt;a href="http://forum.xda-developers.com/showthread.php?p=4314039"&gt;here&lt;/a&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;&lt;p style="margin-top: 15px; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span class="Apple-style-span" style="font-size: medium;"&gt;&lt;b&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-top: 15px; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span class="Apple-style-span" style="font-size: medium;"&gt;&lt;b&gt;&lt;i&gt;Enjoy People......Will post the step by step guide after i successfully Root it.....&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-756302496026917889?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/756302496026917889/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/08/root-your-htc-magic-airtel-and.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/756302496026917889'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/756302496026917889'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/08/root-your-htc-magic-airtel-and.html' title='Root Your HTC Magic (Airtel) and MyTouch3g'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-1624386054378834657</id><published>2009-08-09T07:51:00.003+05:30</published><updated>2009-08-09T08:05:22.894+05:30</updated><title type='text'>Bharti Airtel HTC Magic Rooting</title><content type='html'>Hi,&lt;br /&gt;&lt;br /&gt;People in India were so excited about the launch of HTC Magic, some of them even started saving their pockets so that they could afford this Magic @29,900 INR. But to the contrary now people are saddened, because Airtel and HTC let them down.&lt;br /&gt;&lt;br /&gt;All Hype about the Android platform was in vain, what's the use of having a phone with GPS and no Maps installed in it, having Wifi and no Gmail on it. Other than these no "MARKET"...from where people can download apps and games...but people call it open source platform.....Can someone Explain HOW...????&lt;br /&gt;&lt;br /&gt;Paying amount nearly 30k just to have a touch screen i don't think its worth that.....&lt;br /&gt;&lt;br /&gt;Well all i can say as of now is please don't try new methods because people on XDA are working on this Perfect SPL (Secondary Program Loader )&lt;br /&gt;&lt;br /&gt;Perfect SPL = SPL that gives "fastboot remote: not allow" when trying to fastboot flash or boot.&lt;br /&gt;&lt;br /&gt;So far the following Perfect SPL's were spotted :&lt;br /&gt;- 1.33.0006 (Tmobile Mytouch 3G - cid: T-MOB010)&lt;br /&gt;- 1.33.0010 (cid : HTC__038 , cid : HTC__037)****&lt;br /&gt;- 1.33.0004 (HTC Magic JAPAN)&lt;br /&gt;&lt;br /&gt;****----&gt; This is what Airtel Magic is loaded with....&lt;br /&gt;&lt;br /&gt;Findings so far :&lt;br /&gt;If you have a perfect SPL with S=OFF, you &lt;b&gt;CAN&lt;/b&gt; flash your SPL using the following method :&lt;br /&gt;&lt;br /&gt;&lt;pre class="alt2" dir="ltr" style="border: 1px inset ; margin: 0px; padding: 6px; overflow: auto; width: 640px; height: 50px; text-align: left;"&gt;$fastboot oem rebootRUU&lt;br /&gt;$fastboot flash zip &lt;zipped-package&gt;&lt;/pre&gt;&lt;br /&gt;You can find out whether your Security is ON or OFF by powering off and then powering on while holding the back button......&lt;br /&gt;&lt;br /&gt;Hope we soon get to root our phones......cheers njoy.....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-1624386054378834657?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/1624386054378834657/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/08/bharti-airtel-htc-magic-rooting.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/1624386054378834657'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/1624386054378834657'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/08/bharti-airtel-htc-magic-rooting.html' title='Bharti Airtel HTC Magic Rooting'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-8745875045771047091</id><published>2009-08-01T09:56:00.004+05:30</published><updated>2009-08-01T09:59:53.239+05:30</updated><title type='text'>What Is BING..???</title><content type='html'>Did you ever wonder what Bing stands for......&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;An aside:&lt;span style="font-weight: bold; font-style: italic;font-size:100%;" &gt; 'Bing' &lt;/span&gt;was the name chosen as it is&lt;span style="font-weight: bold; font-style: italic;"&gt; 'onomotopoeic'&lt;/span&gt; -- that it sounds like what it means -- a word that conveys the response by the engine to a surfer who keys in a Search term.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;But what I feel is.....&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic; color: rgb(204, 0, 0);font-size:130%;" &gt;Bing Is Not Google&lt;/span&gt;......this is what Bing stands for.....&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Njoy...cheers...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-8745875045771047091?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/8745875045771047091/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/08/bing.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/8745875045771047091'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/8745875045771047091'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/08/bing.html' title='What Is BING..???'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-108911632236198313</id><published>2009-08-01T09:52:00.001+05:30</published><updated>2009-08-01T09:55:47.577+05:30</updated><title type='text'>Over 150 Web URLs per person on Earth</title><content type='html'>Bing has put the number of web pages at over 1 trillion, while Google has indexed more than one trillion discreet web addresses&lt;br /&gt;&lt;br /&gt;The Internet is growing so fast that there are more addresses than people on Earth, claims the team behind Microsoft’s search engine Bing.&lt;br /&gt;&lt;br /&gt;Bing has put the number of web pages at over 1 trillion, while Google has indexed more than one trillion discreet web addresses. This means that there are about 150 web addresses per person in the world.&lt;br /&gt;&lt;br /&gt;This means that if a person spent just one minute reading every website in existence, he or she would be kept busy for 31,000 years, without any sleep.&lt;br /&gt;&lt;br /&gt;“An average person would need six hundred thousand decades of nonstop reading to read through the information,” News.com.au quoted Bing as saying.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The largest Internet population belongs to China, with 338 million users online. However, InternetWorldStats.com (IWS), a Web site that combines multiple data sources, has claimed that China’s online population is more like 298 million.&lt;br /&gt;According to IWS, the top 5 countries with the most internet users are: China, US, Japan, &lt;span style="font-weight: bold;"&gt;&lt;span style="font-style: italic;"&gt;India&lt;/span&gt;&lt;/span&gt;, and Brazil.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Wow, isn't it Interesting......&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-108911632236198313?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/108911632236198313/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/08/over-150-web-urls-per-person-on-earth.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/108911632236198313'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/108911632236198313'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/08/over-150-web-urls-per-person-on-earth.html' title='Over 150 Web URLs per person on Earth'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-7953518894401401790</id><published>2009-07-28T10:59:00.004+05:30</published><updated>2009-07-28T11:03:31.368+05:30</updated><title type='text'>Taste Of Android Donut</title><content type='html'>Want a quick glimpse of what’s to come in the Donut build of Android? &lt;br /&gt;Thank your friends over at the XDA Community for showing a few images and notes of the latest version of code released by Google."Donut" is the next major branch of Android - not Android 2.0 as Google employees like to remind people - that is expected to upgrade Android. From the looks of the latest Donut code released to developers, we know there will be:&lt;br /&gt;&lt;br /&gt;- Gestures&lt;br /&gt;- Multitouch&lt;br /&gt;&lt;br /&gt;UPDATE: Android team member Romain Guy says multitouch is not supported in Donut, despite what users claim to see. Cyanogen  clarified with the following tweet: “Regarding multitouch in Donut.. Nothing in the Android code itself, but there ARE new kernel commits to support it.”&lt;br /&gt;- Speech synthesizer&lt;br /&gt;- CDMA support&lt;br /&gt;- Universal search&lt;br /&gt;- WPA enterprise&lt;br /&gt;- VPN support&lt;br /&gt;- Automatic backups&lt;br /&gt;- Increased performance&lt;br /&gt;- Built-in toggle widgets&lt;br /&gt;&lt;br /&gt;We already knew that Donut would include universal search, and it doesn’t surprise anyone that CDMA (required for Android to come to Sprint and Verizon) or that multitouch (seen in the Hero) appears in Donut. However, it’s nice to know that gestures are coming, too. We’ll also see speech synthesizer (computer voice Text-To-Speech library) judging from the Google I/O conference video and Donut screenshots below. I hope it will improve on the current TTS library available for Android.&lt;br /&gt;&lt;br /&gt;Cyanogen has built a ROM to run on the G1/HTC Dream to see how well Donut - in its current stage - performs on the Dream. It’s far from a final product, but we should see certain elements of the build in the G1 eventually. Let’s just hope it’s not another adventure in cupcakery&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-7953518894401401790?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/7953518894401401790/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/07/taste-of-android-donut.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/7953518894401401790'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/7953518894401401790'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/07/taste-of-android-donut.html' title='Taste Of Android Donut'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-2807478748161350176</id><published>2009-07-24T22:34:00.002+05:30</published><updated>2009-07-24T22:43:58.072+05:30</updated><title type='text'>Android + Google Voice + GUAVA = SIM-Free calling options?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_HyU5jGl79iI/Smnrxen8mdI/AAAAAAAAADE/AJUFJ0ldmUk/s1600-h/thumb.php.png"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 250px; height: 250px;" src="http://1.bp.blogspot.com/_HyU5jGl79iI/Smnrxen8mdI/AAAAAAAAADE/AJUFJ0ldmUk/s400/thumb.php.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5362076066628016594" /&gt;&lt;/a&gt;&lt;br /&gt;Google Android device owners who have accounts from both Google Voice and Gizmo5.com may be able to make and receive phone calls even if they don’t have a SIM card in their device. An experimental app named GUAVA, which stands for GoogleVoice Unauthorized Android Voice Application, links Google Voice and Gizmo5 accounts, allowing consumers to make calls without using their network minutes or even a SIM card.&lt;br /&gt;&lt;br /&gt;I’ve heard of Android users adding their GV number to T-Mobile myFaves for more free calls, but this is one of the first solutions I’ve found for non-myFaves subscribers. In fact, GUAVA bypasses carriers altogether by connecting to Wi-Fi networks and delivering contract-free communication to:&lt;br /&gt;&lt;br /&gt;    * Cell phones and landlines&lt;br /&gt;    * SMS messages&lt;br /&gt;    * Skype users&lt;br /&gt;    * GoogleTalk users&lt;br /&gt;&lt;br /&gt;NOTE: I've heard people were able to receive several free calls and SMS messages while testing the app; however, outgoing calls require purchasing call-out credits from Gizmo5.&lt;br /&gt;&lt;br /&gt;The GUAVA/Google Voice link may prove useful to travelers or people who cannot find access to their network. People have visited friends and family members in areas where T-Mobile connections were not present whatsoever. This may come in handy if I find myself in a similar situation and have an Internet connection available.&lt;br /&gt;&lt;br /&gt;Don't know where the technology is taking us.......cheers njoy.....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-2807478748161350176?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/2807478748161350176/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/07/android-google-voice-guava-sim-free.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/2807478748161350176'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/2807478748161350176'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/07/android-google-voice-guava-sim-free.html' title='Android + Google Voice + GUAVA = SIM-Free calling options?'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_HyU5jGl79iI/Smnrxen8mdI/AAAAAAAAADE/AJUFJ0ldmUk/s72-c/thumb.php.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-5095923014451999363</id><published>2009-07-05T07:40:00.005+05:30</published><updated>2009-08-19T07:22:05.175+05:30</updated><title type='text'>Rooting Your HTC Magic</title><content type='html'>Well since India got its first Android Powered Phone HTC Magic...lets learn How to Root...????? You might wonder What is Root and Why...????&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;What Does Root Give Me?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt; 1. Full control over your system&lt;br /&gt; 2. Ability to alter system files. You can replace many parts of the "Android Core" with this including:&lt;br /&gt;        * Themes&lt;br /&gt;        * Core apps (maps, calendar, clock etc)&lt;br /&gt;        * Recovery image&lt;br /&gt;        * Bootloader&lt;br /&gt;        * Toolbox (linux binary that lets you execute simple linux commands like "ls") can be replaced with Busybox (slightly better option)&lt;br /&gt;        * Boot images&lt;br /&gt;        * Add linux binaries&lt;br /&gt; 3. Run special apps that need more control over the system&lt;br /&gt;        * SuperUser (lets you approve or deny the use of root access to any program)&lt;br /&gt;        * Task Manager For Root (Lets you kill apps that you otherwise could not kill)&lt;br /&gt;        * Tether apps (like the one found at [&lt;a href="http://code.google.com/p/android-wifi-tether/"&gt;android-wifi-tether.googlecode.com&lt;/a&gt;])&lt;br /&gt;        * &lt;there are="" more="" but="" i="" cannot="" think="" of="" any="" right="" now=""&gt;&lt;br /&gt; 4. Backup your system&lt;br /&gt;        * You can make a folder on your sdcard and backup all of your .apk files to your sdcard (helps if an author decides to "upgrade" you to a version that requires you to pay to use the version you just had)&lt;br /&gt; 5. Relocate your (browser/maps/market) cache to your /sdcard&lt;br /&gt; 6. Relocate your installed applications to your /sdcard&lt;br /&gt; 7. Reboot your phone from the terminal app easily (su &lt;enter&gt; reboot &lt;enter&gt;)&lt;br /&gt;&lt;br /&gt;Remember Rooting Your Phone Can Cause Your Phone to Be Bricked so Do It On Your Own Risk.....No Body Is Responsible For Your Act.....&lt;br /&gt;&lt;/enter&gt;&lt;/enter&gt;&lt;/there&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-5095923014451999363?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/5095923014451999363/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/07/rooting-your-htc-magic.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/5095923014451999363'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/5095923014451999363'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/07/rooting-your-htc-magic.html' title='Rooting Your HTC Magic'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-9189756596850282317</id><published>2009-07-03T07:49:00.003+05:30</published><updated>2009-07-03T07:56:36.792+05:30</updated><title type='text'>I Found A New Mail Box</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_HyU5jGl79iI/Sk1ryWrX4kI/AAAAAAAAAC8/Yv-8kcRS5Zk/s1600-h/postbox-icon-128.png"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 128px; height: 128px;" src="http://4.bp.blogspot.com/_HyU5jGl79iI/Sk1ryWrX4kI/AAAAAAAAAC8/Yv-8kcRS5Zk/s400/postbox-icon-128.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5354054044838519362" /&gt;&lt;/a&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;span class="Apple-style-span"  style=" color: rgb(192, 192, 192); font-family:verdana;"&gt;&lt;p&gt;&lt;span class="Apple-style-span"  style="color: rgb(0, 0, 0); font-style: italic; font-size:medium;"&gt;This new mail client based on Thunderbird that is currently in its Beta stages.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="Apple-style-span"  style="color: rgb(0, 0, 0); font-style: italic; font-size:medium;"&gt;&lt;span class="Apple-style-span"  style="font-style: normal; color: rgb(192, 192, 192); font-size:16px;"&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;All week I have been using PostBox&lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt; and love it.  It has so many great features that you never knew you wanted, yet don’t know how you lived without once you have them.&lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;From their site:&lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;A new kind of messaging application, the Postbox™ email client helps you spend less time managing email and more time using email to get things done. Postbox automatically analyzes your e-mail messages, documents, photos, and links to web pages; then it catalogs all this information making it faster to search for and retrieve.&lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;Easy-to-use tagging features let you organize messages the way you want and then focus on one project at a time without missing out on important new messages. You can also view messages by conversation, edit messages, and create to-do items that appear in mailbox windows.&lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;i&gt;Definitely check it out!!! Click my new &lt;span class="Apple-style-span"  style="font-size:x-large;"&gt;&lt;a href="http://postbox-inc.com/"&gt;MailBox&lt;/a&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-9189756596850282317?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/9189756596850282317/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/07/i-found-new-mail-box.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/9189756596850282317'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/9189756596850282317'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/07/i-found-new-mail-box.html' title='I Found A New Mail Box'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_HyU5jGl79iI/Sk1ryWrX4kI/AAAAAAAAAC8/Yv-8kcRS5Zk/s72-c/postbox-icon-128.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-2942604433496340499</id><published>2009-07-02T06:02:00.003+05:30</published><updated>2009-07-02T06:11:33.070+05:30</updated><title type='text'>The evolution of Gmail labels</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: sans-serif; font-size: 13px; color: rgb(51, 51, 51); "&gt;I love labels in Gmail. Most email programs use folders, which only let me put mail in one place at a time. With labels, I can organize mail in multiple ways. Combined with filters to automatically label incoming messages, Gmail offers powerful ways to organize email.&lt;br /&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;When I joined the Gmail , I was surprised to learn from web that only 29% of Gmail users had created &lt;span class="Apple-style-span" style="font-style: italic; "&gt;any&lt;/span&gt; labels. At first, I thought perhaps conversation threading and search made the need to organize our mail less important. But when google talked to people who use Gmail, we got a different story. People often asked us to add folders to Gmail, assuming no system of organization existed. As one person said in a usability study, "What are labels... and where are my folders?"&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: sans-serif; font-size: 13px; color: rgb(51, 51, 51); "&gt;I realized that if you didn't know about labels, it would be easy to assume Gmail had no way to organize your mail. Not only were "labels" unfamiliar, they were kind of hidden. So, i set out to make labels more accessible, as well as more powerful. Most of the changes have been in Gmail for a while, but they're adding some new features today. I thought you'd enjoy a peek at the method to their madness.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;The first thing i did was make labels look more like the sticky notes you use in real life. Making the interface mimic things you interact with outside the computer can sometimes improve ease of use.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;Then they worked on the actions you take to apply and remove labels. Before, to put a label on a message, you had to look under "More actions&gt; Apply label." Not only was this option hidden in a generic menu, but the language wasn't what people are familiar with when it comes to organizing mail.They explored several alternatives:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;Google also learned that if they made labels sound too much like folders, people got confused. For instance, while "Copy to" and "Add to" were easy to use, these terms made people think they were creating multiple copies of a message. "Move to" was familiar but didn't lead people to think they were creating copies. And people seem to have picked it up fast! Since the launch of the new menu buttons in March, they're seeing a 50% increase in new Gmail users trying labels in their first 2 weeks. And overall usage of the "Move to" menu surpassed that of the "Labels" menu within 7 weeks of launching:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;For their latest set of changes, i looked at how you access labels on the left side. In other email applications, folders get the royal treatment and are given a seat at the top near your inbox. But in Gmail, labels were stuck in a box below Chat — almost like they were telling people, "you don't want to use these." In testing, google discovered that it worked best to remove the terminology altogether and just place custom labels right under the system labels (e.g. "Inbox"):&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;The last step was to add drag-and-drop. Now, you can drag mail into a label, or even drag a label directly onto a message:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;Making it easier to process and organize your mail requires more than just labels,&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;But I hope these changes start to improve the process. I have much more in store, so stay tuned and keep the feedback coming.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;Thanks, cheers,&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-2942604433496340499?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/2942604433496340499/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/07/evolution-of-gmail-labels.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/2942604433496340499'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/2942604433496340499'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/07/evolution-of-gmail-labels.html' title='The evolution of Gmail labels'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-460512885111489552</id><published>2009-06-26T11:27:00.001+05:30</published><updated>2009-06-26T11:29:44.159+05:30</updated><title type='text'>Have a Look at this Masterpiece "HTC Hero"</title><content type='html'>Click on this link to view it on Youtube&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://www.youtube.com/watch?v=FKTDSfbcbBU"&gt;Here&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://www.youtube.com/watch?v=FKTDSfbcbBU"&gt;http://www.youtube.com/watch?v=FKTDSfbcbBU&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-460512885111489552?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/460512885111489552/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/have-look-at-this-masterpiece-htc-hero.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/460512885111489552'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/460512885111489552'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/have-look-at-this-masterpiece-htc-hero.html' title='Have a Look at this Masterpiece &quot;HTC Hero&quot;'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-7630802012744244309</id><published>2009-06-26T11:06:00.004+05:30</published><updated>2009-06-26T11:13:10.602+05:30</updated><title type='text'>Apple 3GS Cost $179 To Build, Sells For $199</title><content type='html'>&lt;span class="Apple-style-span"   style="  ;font-family:geneva;font-size:12px;"&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;In building the iPhone &lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;3&lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;G&lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt; S, Apple managed to punch up the product line without spending much more on components, a teardown analysis showed.&lt;/span&gt;&lt;/i&gt;&lt;p  style="font-family:geneva, arial, helvetica;"&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;Researcher iSuppli found that the cost of components and other other materials for Apple's latest smartphone&lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt; was $172.46. Add the manufacturing expense of $6.50, and the total is $178.96, or a mere $4.63 more than the older generation iPhone 3G.&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;&lt;p  style="font-family:geneva, arial, helvetica;"&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;ISuppli's cost estimate does not include other costs associated with a product, such as marketing, distribution and the accessories bundled with the device. Nevertheless, the teardown indicates that Apple was able to boost the iPhone's performance without dramatically increasing expenses.&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;&lt;p  style="font-family:geneva, arial, helvetica;"&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;The new, low-end iPhone offers double the memory&lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt; of last year's low-end model, without costing Apple much more to make. ISuppli conducted its teardown on the entry-level 16 GB&lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt; version of the Iphone 3GS,&lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt; comparing it to the low-end 8 GB iPhone 3G based on pricing in July 2008. AT&amp;amp;T, the exclusive iPhone carrier in the United States, is offering the latest iPhone for as low as $199 with a two-year data contract, the same deal as with the older product when it first launched. AT&amp;amp;T today is offering the older phone with a contract for $99.&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;&lt;p  style="font-family:geneva, arial, helvetica;"&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;Without a service contract, the iPhone 3G S costs $599, which was also the original price for the iPhone 3G. But despite the price similarities, there are differences in the technology.&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;&lt;p  style="font-family:geneva, arial, helvetica;"&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;Features unique to the iPhone 3G S include video capture, an autofocus 3 megapixel camera, versus a 2 megapixel camera in the older iPhone, and a built-in digital compass. Aside from these extras, the hardware is not much different, iSuppli said.&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;&lt;p  style="font-family:geneva, arial, helvetica;"&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;"From a component and design perspective, there's also a great deal of similarity between the 3G and the 3G S," iSuppli teardown analyst Andrew Rassweiler said in a statement released Wednesday. "By leveraging this commonality to optimize materials costs, and taking advantage of price erosion in the electronic component marketplace, Apple can provide a higher-performing product with more memory and features at only a slightly higher materials and manufacturing cost."&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;&lt;p  style="font-family:geneva, arial, helvetica;"&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;One of the most noteworthy hardware changes is the use of a Broadcomm single-chip Bluetooth/FM/WLAN device. This component represents the industry trend of integrating more functionality into one chip. The iPhone 3G used two chips to implement the same functions.&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;&lt;p  style="font-family:geneva, arial, helvetica;"&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;Making its debut in the iPhone is Dialog Semiconductor's power management integrated circuit. To implement the digital compass, Apple added AKM Semiconductor's electronic compass and STMicroelectronics' accelerometer.&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;&lt;p  style="font-family:geneva, arial, helvetica;"&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;Toshiba scored the biggest single design win in the iPhone 3G S with its 16 GB multi-level cell NAND flash &lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;memory device, which at $24 is the third most expensive component, after the display&lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt; module and the touch-screen assembly, iSuppli said. However, Apple is likely to shop around and get the same memory part from other suppliers, most notably Samsung Electronics.&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;&lt;p  style="font-family:geneva, arial, helvetica;"&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;Samsung maintained its position as the supplier of the iPhone's applications processor, the fourth most expensive component. The processor&lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt; plays a key role in the iPhone 3G S's faster performance over its predecessor. Where the 3G used an ARM RISC (Reduced Instruction Set) &lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt; microprocessor with 400 MHz clock&lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt; speed, the 3G S uses a 600 &lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;M&lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;h&lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;z&lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt; version.&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p  style=" ;font-family:geneva, arial, helvetica;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;b&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-7630802012744244309?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/7630802012744244309/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/apple-3gs-cost-179-to-build-sells-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/7630802012744244309'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/7630802012744244309'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/apple-3gs-cost-179-to-build-sells-for.html' title='Apple 3GS Cost $179 To Build, Sells For $199'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-6127713548331645591</id><published>2009-06-26T08:04:00.003+05:30</published><updated>2009-06-26T10:13:58.706+05:30</updated><title type='text'>Google Voice invites going out right now</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_HyU5jGl79iI/SkRAkXeA1GI/AAAAAAAAAC0/d6VB_6Z3z_A/s1600-h/voice-logo.png"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 198px; height: 48px;" src="http://4.bp.blogspot.com/_HyU5jGl79iI/SkRAkXeA1GI/AAAAAAAAAC0/d6VB_6Z3z_A/s400/voice-logo.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5351473250742359138" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style="  color: rgb(85, 85, 85); font-family:sans-serif;font-size:12px;"&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; font-size: 12px; "&gt;After being profiled this morning in a Today Show segment, it was announced that Google Voice would be opening nationwide in the United States, sad not India...huh!! Approximately two hours ago, Google Voice confirmed that starting today, invites are going out to those who have requested accounts. It will take some time for everyone to receive an invitation, so don’t fret if you haven’t gotten yours yet. There is a massive invite list of people waiting to receive notification. (If you haven’t already, request an invitation at www.google.com/voice).&lt;/p&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; font-size: 12px; "&gt;As a reminder, Google Voice is a communication System that allows members to use one phone number to control various lines, have one central voicemail box, listen to or read voicemail transcriptions online, archive and search SMS messages, make cheap international calls, and perform many other features and functions.&lt;/p&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; font-size: 12px; "&gt;Android users who sign-up for Google Voice accounts can then be sure to use the GV app&lt;a href="http://androinica.com/2009/04/01/android-gets-new-google-voice-app-in-gv/" target="_blank" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(18, 72, 127); text-decoration: none; "&gt; &lt;/a&gt;that makes some of those services easier to use on Android.&lt;/p&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; font-size: 12px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; font-size: 12px; "&gt;Cheers, Hope this brings revolution in the Department of Telecommunication(DoT) as it did in search industry....&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-6127713548331645591?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/6127713548331645591/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/google-voice-invites-going-out-right.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/6127713548331645591'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/6127713548331645591'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/google-voice-invites-going-out-right.html' title='Google Voice invites going out right now'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_HyU5jGl79iI/SkRAkXeA1GI/AAAAAAAAAC0/d6VB_6Z3z_A/s72-c/voice-logo.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-5851669827278652344</id><published>2009-06-25T18:09:00.000+05:30</published><updated>2009-06-25T18:15:53.143+05:30</updated><title type='text'>HTC Hero has Flash pre-loaded; other Android phones getting Flash later this year</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_HyU5jGl79iI/SkNxX0dyzGI/AAAAAAAAACs/wdFlIsbJVcg/s1600-h/android_loves_flash.gif"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 250px; height: 250px;" src="http://3.bp.blogspot.com/_HyU5jGl79iI/SkNxX0dyzGI/AAAAAAAAACs/wdFlIsbJVcg/s320/android_loves_flash.gif" border="0" alt="" id="BLOGGER_PHOTO_ID_5351245436280818786" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;b&gt;&lt;i&gt;Since this is the time in India when Android is catching up fever , all thanks to Airtel and HTC joint venture to Bring you India's First ever Android Phone----&gt;&gt;&gt;HTC Magic.&lt;/i&gt;&lt;/b&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:6;"&gt;&lt;span class="Apple-style-span"  style="font-size:22px;"&gt;&lt;span class="Apple-style-span"  style="font-size:130%;"&gt;&lt;span class="Apple-style-span"  style="font-size:16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  color: rgb(85, 85, 85); font-family:sans-serif;font-size:12px;"&gt;&lt;p  style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; color:initial;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;b&gt;&lt;i&gt;The HTC Hero recently announced to be launched in London,will come with Flash pre-installed to go along with its eye-catching “Scene” user interface. Heavily-hyped among Android fans and officially announced today,the HTC Hero&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;b&gt;&lt;i&gt; is not only the first Android device to feature a heavily customized interface, but also the first to ship with Adobe Flash support.&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;p  style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; color:initial;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;b&gt;&lt;i&gt;Adobe participated in the development of the HTC Hero and confirmed that Flash will be integrated into the device platform, ensuring that it gains as much of the desktop&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;b&gt;&lt;i&gt; experience as possible.&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;p  style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; color:initial;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;b&gt;&lt;i&gt;“Adobe and our partners in the Open Screen Project believe in bringing the full web to all screens,” said Mark Doherty&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;b&gt;&lt;i&gt;, an Adobe platform evangelist.&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;p  style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; color:initial;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;b&gt;&lt;i&gt;“Android users will experience a rich and more complete web experience.”&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-5851669827278652344?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/5851669827278652344/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/htc-hero-has-flash-pre-loaded-other.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/5851669827278652344'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/5851669827278652344'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/htc-hero-has-flash-pre-loaded-other.html' title='HTC Hero has Flash pre-loaded; other Android phones getting Flash later this year'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_HyU5jGl79iI/SkNxX0dyzGI/AAAAAAAAACs/wdFlIsbJVcg/s72-c/android_loves_flash.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-1410254412834791553</id><published>2009-06-24T08:40:00.000+05:30</published><updated>2009-06-24T08:44:39.363+05:30</updated><title type='text'>Let's make the web faster</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: sans-serif; font-size: 13px; color: rgb(51, 51, 51); "&gt;From building data centers in different parts of the world to designing highly efficient user interfaces, people at Google always strive to make our services faster. They focus on speed as a key requirement in product and infrastructure development, because their research indicates that people prefer faster, more responsive apps. Over the years, through continuous experimentation, they've identified some performance best practices that they'd like to share with the web community on &lt;a href="http://code.google.com/speed"&gt;code.google.com/speed&lt;/a&gt;, a new site for web developers, with tutorials, tips and performance tools.&lt;br /&gt;&lt;br /&gt;Google is excited to discuss what they've learned about web performance with the Internet community. However, to optimize the speed of web applications and make browsing the web as fast as turning the pages of a magazine, they need to work together as a community, to tackle some larger challenges that keep the web slow and prevent it from delivering its full potential&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;Go ahead and make a lightining change for the World....Go Google.....!!!!&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-1410254412834791553?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/1410254412834791553/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/lets-make-web-faster.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/1410254412834791553'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/1410254412834791553'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/lets-make-web-faster.html' title='Let&apos;s make the web faster'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-3300491267136256316</id><published>2009-06-23T07:32:00.000+05:30</published><updated>2009-06-23T07:35:56.600+05:30</updated><title type='text'>All for Good: Bringing search, scale and openness to community service</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: sans-serif; font-size: 13px; color: rgb(51, 51, 51); line-height: 18px; "&gt;While many organizations are doing great work to enable community service locally, it's not simple to search across opportunities from a variety of places to find what's right for you. Google have some experience finding relevant information from among many scattered sources, and when we learned that President Obama and the First Lady were making community service a top priority even before taking office.Google thought they could help make a difference.&lt;br /&gt;&lt;br /&gt;With mission in mind, a group of 20% engineers, designers, and program managers from Google and other tech companies began work on &lt;a href="http://www.allforgood.org/"&gt;&lt;b&gt;&lt;i&gt;All for Good&lt;/i&gt;&lt;/b&gt;&lt;/a&gt;, a new service to help you find volunteer events in your community, and share those events with your friends.&lt;br /&gt;&lt;br /&gt;All for Good provides a single search interface for volunteer activities across many major volunteering sites and organizations like &lt;a href="http://www.liveunited.org/"&gt;United Way&lt;/a&gt;, &lt;a href="http://www.volunteermatch.org/"&gt;VolunteerMatch&lt;/a&gt;, &lt;a href="http://www.handsonnetwork.org/"&gt;HandsOn Network&lt;/a&gt; and &lt;a href="http://www.reachoutandread.org/about_find.html"&gt;Reach Out and Read&lt;/a&gt;. By building on top of the amazing efforts of existing volunteer organizations like these, we hope to amplify their efforts.&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 18px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 18px;"&gt;All for Good is a new kind of collaboration between the private, public, and nonprofits sectors to build free and open technology to empower citizens. Similar to the Open Social Foundation, Google helped create a new organization called Good Works to make sure that the API, the platform, and social innovation that they inspire are supported for the long term. The leadership includes Reid Hoffman, Chris DiBona, Arianna Huffington and Craig Newmark on the board, and the organization aims to build support volunteerism services like All for Good.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-3300491267136256316?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/3300491267136256316/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/all-for-good-bringing-search-scale-and.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/3300491267136256316'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/3300491267136256316'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/all-for-good-bringing-search-scale-and.html' title='All for Good: Bringing search, scale and openness to community service'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-1625706405356595911</id><published>2009-06-22T17:01:00.000+05:30</published><updated>2009-06-22T17:09:43.873+05:30</updated><title type='text'>GrandCentral is now Google Voice</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_HyU5jGl79iI/Sj9tcgBRknI/AAAAAAAAACc/loBA7lq625c/s1600-h/googlevoice.gif"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 250px; height: 250px;" src="http://1.bp.blogspot.com/_HyU5jGl79iI/Sj9tcgBRknI/AAAAAAAAACc/loBA7lq625c/s320/googlevoice.gif" border="0" alt="" id="BLOGGER_PHOTO_ID_5350115218738483826" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style="  color: rgb(85, 85, 85); font-family:sans-serif;font-size:12px;"&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; font-size: 12px; "&gt;Google is determined to control every aspect of communication. It’s not enough to be a leading force in email, web search, and news — Google wants complete domination of telecommunications, too!&lt;/p&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; font-size: 12px; "&gt;GrandCentral, an innovative communication service Google acquired in 2007, has been rebranded “Google Voice."With a few last minute hurdles cleared, the company has promised that GrandCentral/Voice’s incredible features will soon allow the general public to:&lt;/p&gt;&lt;ul style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 12px; line-height: 20px; "&gt;&lt;li style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 15px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; list-style-type: circle !important; list-style-position: inside !important; list-style-image: initial !important; "&gt;Use one phone number for all phones or route calls based on groups/contacts&lt;/li&gt;&lt;li style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 15px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; list-style-type: circle !important; list-style-position: inside !important; list-style-image: initial !important; "&gt;Have one central voicemail box&lt;/li&gt;&lt;li style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 15px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; list-style-type: circle !important; list-style-position: inside !important; list-style-image: initial !important; "&gt;Listen to voicemail messages or transcripts of messages online&lt;/li&gt;&lt;li style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 15px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; list-style-type: circle !important; list-style-position: inside !important; list-style-image: initial !important; "&gt;Read and search all SMS text messages sent/received&lt;/li&gt;&lt;li style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 15px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; list-style-type: circle !important; list-style-position: inside !important; list-style-image: initial !important; "&gt;Make international phone calls (paid VoIP service)&lt;/li&gt;&lt;li style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 15px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; list-style-type: circle !important; list-style-position: inside !important; list-style-image: initial !important; "&gt;Automatically block calls from numbers marked as spam&lt;/li&gt;&lt;li style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 15px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; list-style-type: circle !important; list-style-position: inside !important; list-style-image: initial !important; "&gt;Record audio clips of phone conversations&lt;/li&gt;&lt;li style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 15px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; list-style-type: circle !important; list-style-position: inside !important; list-style-image: initial !important; "&gt;Customize voicemail greetings based on group contacts&lt;/li&gt;&lt;li style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 15px; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; list-style-type: circle !important; list-style-position: inside !important; list-style-image: initial !important; "&gt;Many more features that would overload this document if I tried to document them all&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-1625706405356595911?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/1625706405356595911/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/grandcentral-is-now-google-voice.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/1625706405356595911'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/1625706405356595911'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/grandcentral-is-now-google-voice.html' title='GrandCentral is now Google Voice'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_HyU5jGl79iI/Sj9tcgBRknI/AAAAAAAAACc/loBA7lq625c/s72-c/googlevoice.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-4644941499342907775</id><published>2009-06-21T07:59:00.000+05:30</published><updated>2009-06-21T08:02:10.369+05:30</updated><title type='text'>Android to get Kyte, Google Books, and Rummble support</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: sans-serif; font-size: 12px; color: rgb(85, 85, 85); "&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; font-size: 12px; "&gt;Android apps relating to Kyte, Google Books, and Rummble may come to Android in late summer/early fall, according to a video posted by Mobile Crunch. A third-party development group named Droiders is working on apps that support the three internet tools, and they may arrive as early as September 2009.&lt;/p&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; font-size: 12px; "&gt;&lt;strong style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Kyte&lt;/strong&gt;, a video service that can broadcast live video, is personally the most appealing of the group of apps in development. An Android device’s camera would be able to stream live video to the web for live chats and other interactive sessions. Best of all, the Droiders rep says video can be streamed from mobile-to-mobile phone.&lt;/p&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; font-size: 12px; "&gt;&lt;strong style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Bookdroid&lt;/strong&gt; would be a Google Books companion that can search a title or barcode/ISBN and bring up that work’s information in Google Books. Users could then read the book and navigate through pages if it appears in the GB database&lt;/p&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; font-size: 12px; "&gt;&lt;strong style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Rummble&lt;/strong&gt; would tie into the UK-based social search tool of the same name. Using an Android device’s GPS, Rummble would find nearby friends, restaurants, businesses, shopping centers, and more based on recommendations from people with similar tastes.&lt;/p&gt;&lt;p style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; line-height: 20px !important; text-align: left; font-size: 12px; "&gt;Just Wait and relax. let the platform get more exposed........enjoy cheers !!!&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-4644941499342907775?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/4644941499342907775/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/android-to-get-kyte-google-books-and.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/4644941499342907775'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/4644941499342907775'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/android-to-get-kyte-google-books-and.html' title='Android to get Kyte, Google Books, and Rummble support'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-3681731672425970244</id><published>2009-06-19T10:11:00.000+05:30</published><updated>2009-06-19T10:14:55.844+05:30</updated><title type='text'>iPhone 3G S expectations: 500,000 units sold over the weekend</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: sans-serif; font-size: 12px; line-height: 18px; "&gt;With Apple’s iPhone 3G S hitting stores today analysts are starting to guess how many units will be sold over the weekend. Piper Jaffray analyst Gene Munster is guessing Apple will sell 500,000 iPhone 3G S units over the weekend, that’s half of what the iPhone 3G did over three days last year.&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:sans-serif;font-size:100%;"&gt;&lt;span class="Apple-style-span" style="font-size: 12px; line-height: 18px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:sans-serif;font-size:100%;"&gt;&lt;span class="Apple-style-span" style="font-size: 12px; line-height: 18px;"&gt;In a research note , &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:sans-serif;font-size:100%;"&gt;&lt;span class="Apple-style-span" style="font-size: 12px; line-height: 18px;"&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;    &lt;/span&gt;&lt;span class="Apple-style-span" style="color: rgb(102, 102, 102); "&gt;Apple will begin selling the new iPhone 3G S in 8 countries. We expect Apple to sell 500k iPhone 3G S units over the weekend. This would compare to 1m iPhone 3G units in the launch weekend last year, and 270k units in the original iPhone launch weekend. Several factors lead us to believe Apple will sell less iPhone 3G S’s at launch than it did for the iPhone 3G including a less dramatic change in value proposition and fewer available countries at launch.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#666666;"&gt;&lt;span class="Apple-style-span" style="font-size: 12px; line-height: 18px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#666666;"&gt;&lt;span class="Apple-style-span" style="font-size: 12px; line-height: 18px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-3681731672425970244?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/3681731672425970244/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/iphone-3g-s-expectations-500000-units.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/3681731672425970244'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/3681731672425970244'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/iphone-3g-s-expectations-500000-units.html' title='iPhone 3G S expectations: 500,000 units sold over the weekend'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-1836595494331972038</id><published>2009-06-17T07:40:00.000+05:30</published><updated>2009-06-17T08:02:13.861+05:30</updated><title type='text'>Gold Master (OS 3.0) goes live.....!!!!</title><content type='html'>&lt;span class="Apple-style-span"   style=" color: rgb(53, 53, 53);  font-family:sans-serif;font-size:12px;"&gt;Apple is working hard this week as it prepares for the general release of iPhone &lt;a href="http://www.cnet.com/apple-iphone.html" section="luke_topic" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-weight: bold; font-style: inherit; font-size: 12px; font-family: inherit; text-align: left; vertical-align: baseline; color: rgb(30, 91, 126); text-decoration: none; cursor: pointer; "&gt; &lt;/a&gt;OS 3.0 on June 17 and the iPhone 3G S on June 19. The Gold Master iPhone OS 3.0 software release for the iPhone 3G S has gone live on Apple's Web site&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#353535;"&gt;&lt;span class="Apple-style-span"  style="font-size:12px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#353535;"&gt;&lt;span class="Apple-style-span"  style="font-size:12px;"&gt;Well you can always download from here if you just feel lazy&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style=" color: rgb(53, 53, 53); font-family:sans-serif;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-6582.20090617.LlI87/iPhone2,1_3.0_7A341_Restore.ipsw"&gt;click here to start Download&lt;/a&gt; (file size 297.8 MB)&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:sans-serif;color:#353535;"&gt;&lt;span class="Apple-style-span"  style="font-size:-webkit-xxx-small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="  color: rgb(53, 53, 53); line-height: 17px; font-family:sans-serif;font-size:12px;"&gt;Based the availability of the firmware, there's a good chance that iPhone 3G S users should expect a firmware update for their new iPhones after connecting it to iTunes for its initial sync. If you are not automatically asked to check for or install an update, press the Check Update button in iTunes on the device summary screen just in case. If an update is available, iTunes will tell you.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#353535;"&gt;&lt;span class="Apple-style-span"  style="font-size:12px;"&gt;&lt;p style="margin-top: 15px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-weight: inherit; font-style: inherit; font-size: 12px; font-family: inherit; text-align: left; vertical-align: baseline; line-height: 17px; "&gt;Last time Apple released such a massive software and hardware package, its servers were overwhelmed, so it might be wise to predownload the firmware linked above if you have ordered an iPhone 3G S. Before using the firmware, launch Settings on your iPhone 3G S, select General, and then About. Look for version with a value of &lt;b style="font-weight: bold; "&gt;3.0 (7A341)&lt;/b&gt; and if it is present, you don't need to use the firmware linked above.&lt;/p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-1836595494331972038?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/1836595494331972038/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/gold-master-os-30-goes-live.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/1836595494331972038'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/1836595494331972038'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/gold-master-os-30-goes-live.html' title='Gold Master (OS 3.0) goes live.....!!!!'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-7840515000627828809</id><published>2009-06-15T07:52:00.000+05:30</published><updated>2009-06-15T08:00:50.982+05:30</updated><title type='text'>New Iphone OS 3.0</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_HyU5jGl79iI/SjWyRKti4NI/AAAAAAAAAB4/e3FVxjR7jRk/s1600-h/166391-iphone3gs_intro_slide.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 320px; height: 231px;" src="http://2.bp.blogspot.com/_HyU5jGl79iI/SjWyRKti4NI/AAAAAAAAAB4/e3FVxjR7jRk/s320/166391-iphone3gs_intro_slide.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5347376140575236306" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="color: rgb(81, 100, 107);  line-height: 25px; font-size:15px;"&gt;The new &lt;a class="tagautolink autolink" title="Click here to read more posts tagged IPHONE OS 3.0" href="http://gizmodo.com/tag/iphone-os-3%270/" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; color: rgb(81, 100, 107); text-decoration: none; border-bottom-style: initial; border-bottom-color: initial; "&gt;iPhone OS 3.0&lt;/a&gt; adds over 100 new features including-at last-cut and paste.&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-size:130%;color:#51646B;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 25px;font-size:15px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-size:130%;color:#51646B;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 25px;font-size:15px;"&gt;• &lt;b&gt;Copy &amp;amp; Paste text&lt;/b&gt;. When you double-tap over text, you will get a "cut, copy, and paste" bubble dialog. Double-tap again and a "paste" bubble will appear if there's anything stored in your clipboard.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-size:130%;color:#51646B;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 25px;font-size:15px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-size:130%;color:#51646B;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 25px;font-size:15px;"&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;This works across applications. You can expand your selection points using your thumbs and, if you accidentally paste something you didn't want to paste, just shake your iPhone to undo it.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;• &lt;b&gt;Copy &amp;amp; Paste photos&lt;/b&gt;. You can also copy and paste photos. Now you will be able to select multiple photos by tapping the action button, copy some of them, and paste them in an email, ready to send.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;• &lt;b&gt;New Spotlight&lt;/b&gt;. iPhone OS 3.0 will allow you to search across the entire information contained in your device, no matter where, as soon as the information is supported it. If an application is written to support the new Spotlight, its data will also be available in the search.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;• &lt;b&gt;Search in Mail, Calendar, and iPod&lt;/b&gt;. These Apple applications have specific search interfaces. The search in Mail doesn't support the message content yet, but it supports searching in IMAP servers—that will save a lot of time logging into Gmail.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;• &lt;b&gt;3G Tethering&lt;/b&gt;. This feature will allow you to connect your iPhone 3G to a laptop, to use it as a &lt;i&gt;modem&lt;/i&gt; to access the internet. Carriers still have to sign-off on it, and probably charge more for it. None have announced it yet.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;• &lt;b&gt;Landscape keyboard&lt;/b&gt;. Apple has added the landscape keyboard mode to other applications, like Mail, SMS, and Notes.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;• &lt;b&gt;Multimedia messaging&lt;/b&gt;. A big one to send rich content to people without mail-enabled telephones: The new MMS function will allow you to include everything, from images to sound to vcards (no word on video, however.) Personally, I find these usesless having email, but some people seem to want it.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;• &lt;b&gt;Support for new calendar types&lt;/b&gt;. In iPhone OS 3.0 you will be able to subscribe to calendars on the web using two protocols: CalDAV—supported by Google and Yahoo—and subscriptions via the .ics format—which is what Apple uses in iCal.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;• &lt;b&gt;Improved stocks application&lt;/b&gt;. The stocks application now allows you to read related news, so you can enjoy yourself learning about the latest market scandals, stock crashes, and executives getting bonus packages from government aid while their companies sink into hell. Thank you, Apple.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;• &lt;b&gt;Stereo Bluetooth A2DP audio&lt;/b&gt;. You will be able to pair your iPhone 3.0 with a stereo Bluetooth A2DP device, like headphones or speakers.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;• &lt;b&gt;Note syncing with iTunes&lt;/b&gt;.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;• &lt;b&gt;Automatic login in Safari&lt;/b&gt;. The new version of Safari will remember login credentials, so you won't need to introduce your username and password again while accessing &lt;i&gt;Scoreland&lt;/i&gt; your work intranet.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;• &lt;b&gt;Shake to shuffle music&lt;/b&gt;. If you are in your iPod application, you just need to shake it to start the shuffling mode. Hopefully this will be optional for sports people out there.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;• &lt;b&gt;Wi-Fi auto-login&lt;/b&gt;. In case you have a subscription to a paid hotspot, your iPhone or iPod touch will autolog into it.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;• &lt;b&gt;Anti-phishing&lt;/b&gt;. Mobile Safari now can warn you against malicious sites trying to scam you.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; "&gt;• &lt;b&gt;Extended parental controls&lt;/b&gt;. Adult content filters can now be applied to movies, TV shows, and applications, in addition to web sites and music (porn apps, here we come).&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-7840515000627828809?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/7840515000627828809/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/new-iphone-os-30.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/7840515000627828809'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/7840515000627828809'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/new-iphone-os-30.html' title='New Iphone OS 3.0'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_HyU5jGl79iI/SjWyRKti4NI/AAAAAAAAAB4/e3FVxjR7jRk/s72-c/166391-iphone3gs_intro_slide.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-5478317456234206696</id><published>2009-06-14T12:37:00.000+05:30</published><updated>2009-06-14T12:40:09.082+05:30</updated><title type='text'>Android Scripting</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: sans-serif; font-size: 13px; "&gt;&lt;p style="max-width: 65em; "&gt;The Android Scripting Environment (ASE) brings scripting languages to Android by allowing you to edit and execute scripts and interactive interpreters directly on the Android device. These scripts have access to many of the APIs available to full-fledged Android applications, but with a greatly simplified interface that makes it easy to:&lt;/p&gt;&lt;ul style="max-width: 65em; padding-left: 40px; "&gt;&lt;li&gt;Handle intents&lt;/li&gt;&lt;li&gt;Start activities&lt;/li&gt;&lt;li&gt;Make phone calls&lt;/li&gt;&lt;li&gt;Send text messages&lt;/li&gt;&lt;li&gt;Scan &lt;a href="http://code.google.com/p/zxing/" rel="nofollow" style="color: rgb(0, 0, 204); "&gt;bar codes&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Poll location and sensor data&lt;/li&gt;&lt;li&gt;Use &lt;a href="http://code.google.com/p/eyes-free/" rel="nofollow" style="color: rgb(0, 0, 204); "&gt;text-to-speech&lt;/a&gt;&lt;/li&gt;&lt;li&gt;And &lt;a href="http://code.google.com/p/android-scripting/wiki" rel="nofollow" style="color: rgb(0, 0, 204); "&gt;more&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="max-width: 65em; "&gt;Scripts can be run interactively in a terminal, started as a long running service, or started via &lt;a href="http://www.androidlocale.com/" rel="nofollow" style="color: rgb(0, 0, 204); "&gt;Locale&lt;/a&gt;. Python, Lua and BeanShell are currently supported, and we're planning to add Ruby and JavaScript support, as well.&lt;/p&gt;&lt;p style="max-width: 65em; "&gt;You may ask, why write scripts instead of real Android applications? Admittedly, Android's development environment makes life pretty easy, but you're tied to a computer to do your work. ASE lets you develop on the device itself using high-level scripting languages to try out your idea now, in the situation where you need it, quickly&lt;/p&gt;&lt;p style="max-width: 65em; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="max-width: 65em; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-5478317456234206696?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/5478317456234206696/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/android-scripting.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/5478317456234206696'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/5478317456234206696'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/android-scripting.html' title='Android Scripting'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-7222189887787819790</id><published>2009-06-13T18:21:00.000+05:30</published><updated>2009-06-13T18:36:53.443+05:30</updated><title type='text'>Some Android Apps</title><content type='html'>&lt;div&gt;&lt;br /&gt;&lt;/div&gt;Please Do the following before installing&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;Check "Unknown Sources" from Settings -&gt; Applications&lt;/li&gt;&lt;li&gt;Head over to Android Market of your ANDROID phone and download AppsInstaller.&lt;/li&gt;&lt;li&gt;Create a directory named "downloads" on your SD card&lt;/li&gt;&lt;li&gt;Drag and drop the files you want to install on your ANDROID&lt;/li&gt;&lt;li&gt;Properly disconnect your ANDROID from your computer&lt;/li&gt;&lt;li&gt;Launch AppsInstaller and select the applications you want to install&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div&gt;Download &lt;a href="http://www.mediafire.com/download.php?mietyvimmon"&gt;Here&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Enjoy, Cheers&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-7222189887787819790?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/7222189887787819790/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/some-android-apps.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/7222189887787819790'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/7222189887787819790'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/some-android-apps.html' title='Some Android Apps'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-3863290248689749974</id><published>2009-06-11T17:04:00.000+05:30</published><updated>2009-06-11T18:01:55.191+05:30</updated><title type='text'>Some OpenGL Programs</title><content type='html'>Program no. 1 &lt;a href="http://rapidshare.com/files/243326358/Gasket.txt.html"&gt;Sierpinski Gasket&lt;/a&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Program no. 2 &lt;a href="http://rapidshare.com/files/243326359/liang_barsky_doubt.txt.html"&gt;Liang Barsky&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Program no. 3 &lt;a href="http://rapidshare.com/files/243326360/cohen_sutherland.txt.htm"&gt;Cohen Sutherland&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Program no. 4 &lt;a href="http://rapidshare.com/files/243326361/cube_color.c.html"&gt;Spin a Color Cube&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Program no. 5 &lt;a href="http://rapidshare.com/files/243326362/house_program.txt.html"&gt;House&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Program no. 6 &lt;a href="http://rapidshare.com/files/243326363/cyl_pp.CPP.html"&gt;Cylinder and Parellelepiped&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Program no. 7 &lt;a href="http://rapidshare.com/files/243326364/teapot.cpp.html"&gt;Tea Pot&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Program no. 8 &lt;a href="http://rapidshare.com/files/243326365/cube_8.c.html"&gt;Camera Cube&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Program no.9 &lt;a href="http://rapidshare.com/files/243326366/Scan_Fill__1_.cpp.html"&gt;Scanline&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Program no. 10 &lt;a href="http://rapidshare.com/files/243326367/rect_mesh.cpp.html"&gt;Rectangular Mesh&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Also below is a text file which contain all these programs in one document &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://rapidshare.com/files/243330647/Imp.txt.html"&gt;ALL IN ONE&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;If Your Server Blocks RAPIDSHARE then please click this Alternative &lt;a href="http://sites.google.com/site/openglsite"&gt;link&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Cheers&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-3863290248689749974?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/3863290248689749974/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/some-opengl-programs.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/3863290248689749974'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/3863290248689749974'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/some-opengl-programs.html' title='Some OpenGL Programs'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-8205654694504905636</id><published>2009-06-10T16:43:00.000+05:30</published><updated>2009-06-10T16:52:21.829+05:30</updated><title type='text'>Installing freeglut on Visual Studio 2008</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: sans-serif; font-size: 13px; color: rgb(51, 51, 51); line-height: 16px; "&gt;There are 3 things you need:&lt;br /&gt;*Visual Studio 2008&lt;br /&gt;*OpenGL&lt;br /&gt;*freeglut &lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 16px;"&gt;download the following files&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 16px;"&gt;1. freeglut 2.4.0 &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 16px;"&gt;donload link: &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 16px;"&gt;&lt;a href="http://www.mediafire.com/?ij1m9em7xdy"&gt;http://www.mediafire.com/?ij1m9em7xdy&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 16px;"&gt;2. GLUT win32 binaries&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 16px;"&gt;download link:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 16px;"&gt;&lt;a href="http://www.xmission.com/~nate/glut.html"&gt;http://www.xmission.com/~nate/glut.html&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 16px;"&gt;download the bin.zip file in some kb's i guess&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:sans-serif;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 16px;"&gt;&lt;p&gt;Files must be placed in the correct directories. For Visual Studio .NET 2003 and above (or Windows XP/Vista) those are the following below. Note: according to a comment post below, for Windows Vista 64-bit, you have to put the libraries (*.dll) into Windows\SysWOW64 directory.&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Put freeglut.h in: ‘C:\Program Files\Microsoft Visual Studio 9.0\VC\include\GL\’ (note: you'll have to create the GL folder)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Put freeglut_ext.h in: ‘C:\Program Files\Microsoft Visual Studio 9.0\VC\include\GL\’&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Put freeglut_std.h in: ‘C:\Program Files\Microsoft Visual Studio 9.0\VC\include\GL\’&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Put freeglut.lib in: ‘C:\Program Files\Microsoft Visual Studio 9.0\VC\lib\’&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Put freeglut.dll in: ‘C:\WINDOWS\system32\’&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Put glut32.dll in: ‘C:\WINDOWS\system32\’&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Put glut32.lib in: ‘C:\Program Files\Microsoft Visual Studio 9.0\VC\lib\’&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Put glut.h in: ‘C:\Program Files\Microsoft Visual Studio 9.0\VC\include\GL\’ &lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Ok, now that you've "installed" freeglut, you need to make the C++ project aware of freeglut. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;ok now change in application&lt;/div&gt;&lt;div&gt;1. Create a new C++ Console project in VS.&lt;br /&gt;1a. In the Create Application Wizard, select Empty Project.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;2a. On the menu bar, go to Project -&gt; Properties.&lt;br /&gt;2b. Go to Linker -&gt; Input and copy and paste this line in the Additional Dependencies field.&lt;br /&gt;&lt;blockquote style="margin-top: 1em; margin-right: 20px; margin-bottom: 1em; margin-left: 20px; "&gt;opengl32.lib glu32.lib glut32.lib&lt;/blockquote&gt;&lt;blockquote style="margin-top: 1em; margin-right: 20px; margin-bottom: 1em; margin-left: 20px; "&gt;3a. If you try to compile now, errors may still show up. You'll probably need to add directories for your header and lib files in Project/Solutions directories.&lt;br /&gt;3b. Go to Tools -&gt; Options. Expand the Project and Solutions section and select VC++ Directories. Make sure the dropdown box for 'Show directories for:' has 'Include files' selected.&lt;br /&gt;4a. Add a new entry with C:\Program Files\Microsoft Visual Studio 9.0\VC\include\GL (or where your directory is)&lt;/blockquote&gt;&lt;/div&gt;&lt;div&gt;The program should now compile&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;This should have helped you..njoy cheers&lt;/div&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-8205654694504905636?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/8205654694504905636/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/installing-freeglut-on-visual-studio.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/8205654694504905636'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/8205654694504905636'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/installing-freeglut-on-visual-studio.html' title='Installing freeglut on Visual Studio 2008'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-4959876215182716787</id><published>2009-06-05T07:30:00.000+05:30</published><updated>2009-06-05T07:34:41.260+05:30</updated><title type='text'>Welcome to Microsoft "BING"</title><content type='html'>&lt;span style="font-weight:bold;"&gt;Decision Engine goes beyond search to help customer deal with information overload.&lt;/span&gt;&lt;div&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: 'Times New Roman'; font-size: medium; font-weight: normal; "&gt;&lt;p style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; line-height: 15px; padding-top: 0px; padding-right: 0px; padding-bottom: 1em; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;Microsoft Corp. unveiled &lt;a href="http://www.bing.com/" style="color: rgb(128, 0, 128); "&gt;&lt;span class="Apple-style-span" style="font-size: large;"&gt;Bing&lt;/span&gt;&lt;/a&gt;, a new Decision Engine and consumer brand, providing customers with a first step in moving beyond search to help make faster, more informed decisions. Bing is specifically designed to build on the benefits of today’s search engines but begins to move beyond this experience with a new approach to user experience and intuitive tools to help customers make better decisions, focusing initially on four key vertical areas: making a purchase decision, planning a trip, researching a health condition or finding a local business.&lt;/p&gt;&lt;p style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; line-height: 15px; padding-top: 0px; padding-right: 0px; padding-bottom: 1em; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;The result of this new approach is an important beginning for a new and more powerful kind of search service, which Microsoft is calling a Decision Engine, designed to empower people to gain insight and knowledge from the Web, moving more quickly to important decisions. The new service, located at &lt;a href="http://www.bing.com/" style="color: rgb(128, 0, 128); "&gt;&lt;span class="Apple-style-span" style="font-size: large;"&gt;http://www.Bing.com&lt;/span&gt;&lt;/a&gt;, will begin to roll out over the coming days and will be fully deployed worldwide on Wednesday, June 3.&lt;/p&gt;&lt;p style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; line-height: 15px; padding-top: 0px; padding-right: 0px; padding-bottom: 1em; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; line-height: 15px; padding-top: 0px; padding-right: 0px; padding-bottom: 1em; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;Go check it out Beta version released.....&lt;/p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-4959876215182716787?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/4959876215182716787/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/welcome-to-microsoft-bing.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/4959876215182716787'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/4959876215182716787'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/welcome-to-microsoft-bing.html' title='Welcome to Microsoft &quot;BING&quot;'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-3558128109357590254</id><published>2009-06-02T07:42:00.000+05:30</published><updated>2009-06-02T07:48:28.453+05:30</updated><title type='text'>Google "Wave" already making Waves</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Verdana; font-size: 13px; "&gt;This morning at Google I/O, Google unveiled a developer preview of &lt;span class="Apple-style-span" style="text-decoration: underline;"&gt;&lt;span class="Apple-style-span" style="font-size: large;"&gt;Google wave&lt;/span&gt;, &lt;/span&gt; a new collaboration and communication product. Google Wave introduces a new platform built around hosted conversations called waves--this model enables people to communicate and work together in new and more effective ways. On top of that, with the &lt;a href="http://code.google.com/apis/wave/" title="Google Wave APIs" style="color: rgb(85, 26, 139); outline-style: none; outline-width: initial; outline-color: initial; "&gt;Google Wave APIs&lt;/a&gt;, developers can take advantage of this collaborative system by building on the Google Wave platform. We want to expand upon that platform, which is why we've put together the initial draft of the Google Wave Federation Protocol, the underlying network protocol for sharing waves between wave providers.&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_HyU5jGl79iI/SiSK3HczBxI/AAAAAAAAABw/oiK8euwZ_b8/s1600-h/wavelogo.png"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 256px; height: 256px;" src="http://2.bp.blogspot.com/_HyU5jGl79iI/SiSK3HczBxI/AAAAAAAAABw/oiK8euwZ_b8/s320/wavelogo.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5342547737465521938" /&gt;&lt;/a&gt;&lt;span class="Apple-style-span" style="font-family: sans-serif; font-size: small; line-height: 16px; "&gt;&lt;br /&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small; line-height: 16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small; line-height: 16px;"&gt;&lt;b&gt;What exactly Google wave is...???&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small; line-height: 16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: sans-serif; font-size: small; line-height: 16px; "&gt;Google Wave is a product that helps users communicate and collaborate on the web. A "wave" is equal parts conversation and document, where users can almost instantly communicate and work together with richly formatted text, photos, videos, maps, and more. Google Wave is also a platform with a rich set of open APIs that allow developers to embed waves in other web services and to build extensions that work inside waves.&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small; line-height: 16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small; line-height: 16px;"&gt;&lt;b&gt;&lt;i&gt;GOOGLE WAVE API's&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small; line-height: 16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small; line-height: 16px;"&gt;&lt;span class="Apple-style-span" style="line-height: normal; "&gt;&lt;p style="padding-top: 1em; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; line-height: 16px; "&gt;The Google Wave API allows developers to use and enhance Google Wave through two primary types of development:&lt;/p&gt;&lt;ul style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0.5em; margin-right: 0px; margin-bottom: 0px; margin-left: 15px; line-height: 16px; "&gt;&lt;li style="margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;b&gt;Extensions:&lt;/b&gt; Build robot extensions to automate common tasks or build gadget extensions to provide a new way for users to interact&lt;/li&gt;&lt;li style="margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;b&gt;Embed:&lt;/b&gt; Make your site more collaborative by dropping in a Wave&lt;/li&gt;&lt;/ul&gt;&lt;p style="padding-top: 1em; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; line-height: 16px; "&gt;Google Wave is currently available in a developer preview as the APIs and product continue to evolve. Accounts on the developer sandbox will be given out to people intending to build with the Google Wave APIs prior to the public release&lt;/p&gt;&lt;p style="padding-top: 1em; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; line-height: 16px; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="padding-top: 1em; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; line-height: 16px; "&gt;For more details watch google I/O video from youtube.&lt;/p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-3558128109357590254?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/3558128109357590254/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/google-wave-already-making-waves.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/3558128109357590254'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/3558128109357590254'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/06/google-wave-already-making-waves.html' title='Google &quot;Wave&quot; already making Waves'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_HyU5jGl79iI/SiSK3HczBxI/AAAAAAAAABw/oiK8euwZ_b8/s72-c/wavelogo.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-1438954814959950337</id><published>2009-05-30T17:32:00.000+05:30</published><updated>2009-05-30T17:36:11.839+05:30</updated><title type='text'>New Android "Hero"</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: tahoma; font-size: 14px; color: rgb(51, 51, 51); line-height: 22px; "&gt;The latest rumor in mobile world is that, along with the HTC Magic, there will be 2 more Android smartphones from HTC released very soon. Here, I have for you, your very first of the supposed HTC Hero Android smartphone. The new HTC Hero does not seem to have a trackball, there are 5 hardware buttons below the touch screen and a 3.5 mm headphone jack on top.&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:tahoma;font-size:130%;color:#333333;"&gt;&lt;span class="Apple-style-span" style="font-size: 14px; line-height: 22px;"&gt;I do not have more details on the HTC Hero hardware specs yet, but i promise to get you the news as and when it happens. So do make sure to visit this space regularly.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-1438954814959950337?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/1438954814959950337/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/05/new-android-hero.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/1438954814959950337'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/1438954814959950337'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/05/new-android-hero.html' title='New Android &quot;Hero&quot;'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-8691270941917710250</id><published>2009-05-28T08:17:00.001+05:30</published><updated>2009-05-28T08:17:22.480+05:30</updated><title type='text'>Stay Tuned !!</title><content type='html'>&lt;script type="text/javascript" src="http://www.widgets.cricinfo.com/o/482c264908cd8b29/4a1dfb397894939a/482c264908cd8b29/62b9bcf7/widget.js"&gt;&lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-8691270941917710250?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/8691270941917710250/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/05/stay-tuned.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/8691270941917710250'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/8691270941917710250'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/05/stay-tuned.html' title='Stay Tuned !!'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-5308062817999747592</id><published>2009-05-28T08:15:00.000+05:30</published><updated>2009-05-28T08:29:32.070+05:30</updated><title type='text'>Ever Wondered how "Google" Works ??</title><content type='html'>&lt;strong&gt;&lt;em&gt;&lt;span style="font-size:130%;"&gt;PageRank&lt;/span&gt;&lt;/em&gt;&lt;/strong&gt; is a link analysis algorithm used by the Google Internet search engine that assigns a numerical weighting to each element of a hyperlinked set of documents, such as the World Wide Web, with the purpose of "measuring" its relative importance within the set. The algorithm may be applied to any collection of entities with reciprocal quotations and references. The numerical weight that it assigns to any given element E is also called the PageRank of E and denoted by PR(E).&lt;br /&gt;PageRank was developed at Stanford University by &lt;strong&gt;Larry Page&lt;/strong&gt; (hence the name Page-Rank) and later &lt;strong&gt;Sergey Brin&lt;/strong&gt; as part of a research project about a new kind of search engine. The project started in 1995 and led to a functional prototype, named Google, in 1998. Shortly after, Page and Brin founded &lt;strong&gt;Google Inc.&lt;/strong&gt;, the company behind the Google search engine. While just one of many factors which determine the ranking of Google search results, PageRank continues to provide the basis for all of Google's web search tools&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-5308062817999747592?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/5308062817999747592/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/05/ever-wondered-how-google-works.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/5308062817999747592'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/5308062817999747592'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/05/ever-wondered-how-google-works.html' title='Ever Wondered how &quot;Google&quot; Works ??'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-5174137371055330680</id><published>2009-05-28T07:54:00.000+05:30</published><updated>2009-05-28T08:14:32.029+05:30</updated><title type='text'>What is ANDROID all about...???</title><content type='html'>&lt;a href="http://1.bp.blogspot.com/_HyU5jGl79iI/Sh36dwb2d7I/AAAAAAAAABE/AiiO7pVBbdM/s1600-h/250px-Android_svg.png"&gt;&lt;img id="BLOGGER_PHOTO_ID_5340700122256144306" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; WIDTH: 250px; CURSOR: hand; HEIGHT: 37px" alt="" src="http://1.bp.blogspot.com/_HyU5jGl79iI/Sh36dwb2d7I/AAAAAAAAABE/AiiO7pVBbdM/s400/250px-Android_svg.png" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;Android™ delivers a complete set of software for mobile devices: an operating system, middleware and key mobile applications.&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;span style="font-family:courier new;font-size:180%;"&gt;&lt;strong&gt;&lt;em&gt;Open Source&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;Android was built from the ground-up to enable developers to create compelling mobile applications that take full advantage of all a handset has to offer. It was built to be truly open. For example, an application can call upon any of the phone's core functionality such as making calls, sending text messages, or using the camera, allowing developers to create richer and more cohesive experiences for users. Android is built on the open Linux Kernel. Furthermore, it utilizes a custom virtual machine that was designed to optimize memory and hardware resources in a mobile environment. Android is open source; it can be liberally extended to incorporate new cutting edge technologies as they emerge. The platform will continue to evolve as the developer community works together to build innovative mobile applications.&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;span style="font-family:georgia;font-size:180%;"&gt;&lt;strong&gt;&lt;em&gt;All applications are created equal&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;Android does not differentiate between the phone's core applications and third-party applications. They can all be built to have equal access to a phone's capabilities providing users with a broad spectrum of applications and services. With devices built on the Android Platform, users are able to fully tailor the phone to their interests. They can swap out the phone's homescreen, the style of the dialer, or any of the applications. They can even instruct their phones to use their favorite photo viewing application to handle the viewing of all photos.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-5174137371055330680?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/5174137371055330680/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/05/what-is-android-all-about.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/5174137371055330680'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/5174137371055330680'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/05/what-is-android-all-about.html' title='What is ANDROID all about...???'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_HyU5jGl79iI/Sh36dwb2d7I/AAAAAAAAABE/AiiO7pVBbdM/s72-c/250px-Android_svg.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8247297278580351514.post-7607114400515118257</id><published>2009-05-28T07:42:00.001+05:30</published><updated>2009-05-28T07:42:40.235+05:30</updated><title type='text'>IBM Grand Slam Widget</title><content type='html'>&lt;script type="text/javascript" src="http://widgets.clearspring.com/o/49624e4c7981ede8/4a1df316d2d95ca1/49624e4c7981ede8/79ce3494/widget.js"&gt;&lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8247297278580351514-7607114400515118257?l=vivekgolecha.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vivekgolecha.blogspot.com/feeds/7607114400515118257/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://vivekgolecha.blogspot.com/2009/05/ibm-grand-slam-widget.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/7607114400515118257'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8247297278580351514/posts/default/7607114400515118257'/><link rel='alternate' type='text/html' href='http://vivekgolecha.blogspot.com/2009/05/ibm-grand-slam-widget.html' title='IBM Grand Slam Widget'/><author><name>Vivek</name><uri>http://www.blogger.com/profile/01454836133495064836</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://3.bp.blogspot.com/_HyU5jGl79iI/Sh4EgzEz5AI/AAAAAAAAABQ/Nn1kkpbhP8U/S220/DSC02039-medium.jpg'/></author><thr:total>0</thr:total></entry></feed>
