<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>JortK.nl &#187; android</title>
	<atom:link href="http://www.jortk.nl/tag/android/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jortk.nl</link>
	<description>Mind farts of a crappy coder!</description>
	<lastBuildDate>Sun, 26 May 2013 09:55:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Best practices for android developers</title>
		<link>http://www.jortk.nl/2010/08/best-practices-for-android-developers/</link>
		<comments>http://www.jortk.nl/2010/08/best-practices-for-android-developers/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 12:20:04 +0000</pubDate>
		<dc:creator>JortK</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://www.jortk.nl/?p=1981</guid>
		<description><![CDATA[As the use of mobile applications grows, people are paying more attention to how these applications use their data. While the Android platform contains extensive permissions designed to protect users, application developers are ultimately responsible for how they handle users’ information. It’s important for developers to understand the code they include, and consider the permissions [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>As the use of mobile applications grows, people are paying more attention to how these applications use their data. While the Android platform contains <a href="http://developer.android.com/guide/topics/security/security.html">extensive permissions</a> designed to protect users, application developers are ultimately responsible for how they handle users’ information. It’s important for developers to understand the code they include, and consider the permissions they request, as mishandling these issues can result in users perceiving a violation of trust.</p>
<p>Maintaining a healthy and trustworthy ecosystem is in every Android developer’s best interest.</p>
<p>Here are a few tips for writing trustworthy Android applications:</p>
<ol>
<li>Maintain a privacy policy</li>
<li>Minimize permissions</li>
<li>Give your users a choice regarding data collection</li>
<li>Don’t collect unnecessary information</li>
<li>Don’t send data off the device</li>
<li>&#8230; but if you have to, use encryption and data minimization</li>
<li>Don’t use code you don’t understand</li>
<li>Don’t log device or user specific information.</li>
</ol>
<h3>Maintain a privacy policy</h3>
<p>Trustworthy applications are up-front about the data they collect and the reasons for collecting it. Users are generally happy to share information via such apps if they believe they will personally benefit. A clear and concise privacy policy, with details about the type of information collected and how it’s used, goes a long way towards generating trust and good will.</p>
<p><a href="http://3.bp.blogspot.com/_GTM_W5mVPTU/TFnlmA_HkXI/AAAAAAAAAI0/vrFHHlHFOm8/s1600/privacyPolicy.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5501680861072298354" src="http://3.bp.blogspot.com/_GTM_W5mVPTU/TFnlmA_HkXI/AAAAAAAAAI0/vrFHHlHFOm8/s400/privacyPolicy.png" border="0" alt="" /></a></p>
<h3>Minimize permissions</h3>
<p>Android is unique among mobile operating systems for its simple, straightforward, operating-system-enforced permission model. All Android applications must declare the permissions they require, and users must approve these permissions before the application is installed. Users tend to distrust applications that require excessive permissions.</p>
<p>For example, a user installing this tic-tac-toe game might reasonably wonder why it needs to take pictures.</p>
<p><a href="http://4.bp.blogspot.com/_GTM_W5mVPTU/TFnlyeHbhYI/AAAAAAAAAI8/ucuSV0WzFP0/s1600/tictactoe.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5501681075050218882" src="http://4.bp.blogspot.com/_GTM_W5mVPTU/TFnlyeHbhYI/AAAAAAAAAI8/ucuSV0WzFP0/s400/tictactoe.png" border="0" alt="" /></a></p>
<h3>Give your users a choice regarding data collection</h3>
<p>It’s called the <a href="http://weis2010.econinfosec.org/papers/session2/weis2010_brandimarte_pres.pdf">paradox of privacy</a> [PDF, 890K]. Users are often happy to share their information, but they want control over that sharing. Trustworthy applications give users control over their information. For example, the Android Browser has privacy settings which enable users to control how their information is shared.</p>
<p><a href="http://3.bp.blogspot.com/_GTM_W5mVPTU/TFnl5vCpO6I/AAAAAAAAAJE/9b_6kScYyfY/s1600/browserPrivacy.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5501681199852632994" src="http://3.bp.blogspot.com/_GTM_W5mVPTU/TFnl5vCpO6I/AAAAAAAAAJE/9b_6kScYyfY/s400/browserPrivacy.png" border="0" alt="" /></a></p>
<h3>Don’t collect unnecessary information</h3>
<p>Trustworthy applications limit the kinds of data they collect. Collecting unnecessary information, especially if you never use it, just invites suspicion. When in doubt, don’t collect it.</p>
<h3>Don’t send data off the device</h3>
<p>If you have to handle user data, ensure that the data remains on the device whenever possible. Users are comforted knowing that their private information strictly resides in the phone. Sending data outside the phone, even if done for the user’s benefit, tends to draw suspicion.</p>
<h3>&#8230; but if you have to, use encryption and data minimization</h3>
<p>Sometimes, the collection of data is necessary. In that case, applications need to ensure that it is handled safely. A privacy policy will avoid leading to surprised and irritated users; in some cases, it may be advisable to prompt the user before transmitting data off-device.</p>
<p>First, minimize the amount of data you collect. Do you really need the user’s full phone number, or would the area code be sufficient? Can you use a <a href="http://en.wikipedia.org/wiki/Cryptographic_hash_function">one-way cryptographic hash function</a> on the data before sending it to the server to help protect the user’s confidential information?</p>
<blockquote>
<h3>A case study: User Favorites</h3>
<p>Suppose you want your app to maintain a list of “favorites” for each of your users, without going through a full registration process. In theory, you could do this by sending your server some combination of their phone number, device ID, or SIM ID. But why take the chance of worrying people about privacy issues; why not send a one-way hashed signature of whatever the identifying information is? Or even better, create a random unique id and store it on the phone, and use this unique id as the registration key for your application.</p>
<p>In the end, you’ll will still be able to retrieve their favorites, but you won’t need to send or store anything sensitive.</p></blockquote>
<p>Second, encryption is critical to the safe handling of user data. Phones often operate on untrusted networks where attackers can sniff confidential traffic. Encrypting data in transit is a critical part of protecting user information.</p>
<p>Finally, when communicating with a server over HTTP, it’s a good idea to avoid encoding user information in a URL that is used with HTTP GET; rather, POST it in a message body. While using POST doesn’t guarantee that your information won’t be sniffed, putting it in the URL increases the likelihood that it will be automatically logged; out of the box, most web server software logs all the URLs that are received.</p>
<h3>Don’t use code you don’t understand</h3>
<p>In the open-source Android environment, it’s common (and good) practice to rely heavily on other people’s code, in the form of libraries and frameworks. But if that code is handling your users’ information inappropriately, it’s your problem. So make a point of checking code before you rely on it.</p>
<h3>Don’t log user or device specific information</h3>
<p>Application developers should be careful about on-device logs. Android makes it easy to write to the phone’s log, and anyone who has looked at “logcat” output knows that it is full of important but seemingly random debugging information from many applications. In Android, logs are a shared resource, and are available to an application with the <a href="http://developer.android.com/reference/android/Manifest.permission.html#READ_LOGS">READ_LOGS</a> permission (only with user consent, of course!). Even though the phone log data is temporary and erased on reboot, inappropriate logging of user information could inadvertently leak user data to other applications.</p>
<p>From: <a href="http://android-developers.blogspot.com/2010/08/best-practices-for-handling-android.html" target="_blank">Android Developer Blog</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jortk.nl/2010/08/best-practices-for-android-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 weird Android apps</title>
		<link>http://www.jortk.nl/2010/03/8-weird-android-apps/</link>
		<comments>http://www.jortk.nl/2010/03/8-weird-android-apps/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 17:12:05 +0000</pubDate>
		<dc:creator>JortK</dc:creator>
				<category><![CDATA[Tech news]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apps]]></category>

		<guid isPermaLink="false">http://www.jortk.nl/?p=1587</guid>
		<description><![CDATA[So you told your boss that you bought your Android smartphone so that you could track your business calls, be more effective when traveling for your company, have easy access to Gmail and keep your organization&#8217;s Twitter feed current. But we know what&#8217;s really going on &#8212; you got that smartphone because it was cool [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>So you told your boss that you bought your Android smartphone so that you could track your business calls, be more effective when traveling for your company, have easy access to Gmail and keep your organization&#8217;s Twitter feed current. But we know what&#8217;s really going on &#8212; you got that smartphone because it was cool and because you wanted to play with all the apps.</p>
<p><span id="more-1587"></span></p>
<p><a title="Source of this article" href="http://www.computerworld.com/s/article/9166778/8_weird_but_cool_Android_apps" target="_blank">You can read the complete article here.</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jortk.nl/2010/03/8-weird-android-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find your lost Android Phone</title>
		<link>http://www.jortk.nl/2010/02/how-to-find-your-lost-android-phone/</link>
		<comments>http://www.jortk.nl/2010/02/how-to-find-your-lost-android-phone/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 07:15:27 +0000</pubDate>
		<dc:creator>JortK</dc:creator>
				<category><![CDATA[Tech news]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.jortk.nl/2010/02/how-to-find-your-lost-android-phone/</guid>
		<description><![CDATA[If your Android Mobile Phone is Lost or Stolen than Wavesecure is for you. WaveSecure, currently free for Android phones, can lock it from further use, restore your contacts and call/SMS history, and even roughly locate and track its wayward use. WaveSecure runs on majormobile phone platforms including Symbian, Microsoft Windows Mobile, Google Android and [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>If your Android Mobile Phone is Lost or Stolen than Wavesecure is for you. WaveSecure, currently free for Android phones, can lock it from further use, restore your contacts and call/SMS history, and even roughly locate and track its wayward use. WaveSecure runs on majormobile phone platforms including  Symbian,  <a href="http://www.technobuzz.net/free-windows-mobile-wallpapers/" target="_blank">Microsoft Windows Mobile</a>, <a href="http://www.technobuzz.net/google-android-apps/" target="_blank">Google Android</a> and <a href="http://www.technobuzz.net/51-blackberry-apps/" target="_blank">BlackBerry.</a></p>
<p>Want to read more, <a title="Click" href="http://www.technobuzz.net/recover-lost-android-phone-with-wavesecure/" target="_blank">click here</a>.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jortk.nl/2010/02/how-to-find-your-lost-android-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Earth for Android</title>
		<link>http://www.jortk.nl/2010/02/google-earth-for-android/</link>
		<comments>http://www.jortk.nl/2010/02/google-earth-for-android/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 15:26:33 +0000</pubDate>
		<dc:creator>JortK</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[earth]]></category>

		<guid isPermaLink="false">http://www.jortk.nl/?p=1445</guid>
		<description><![CDATA[No related posts. Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jortk.nl/2010/02/google-earth-for-android/"><em>Click here to view the embedded video.</em></a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jortk.nl/2010/02/google-earth-for-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speech-to-Speech translation in Android?</title>
		<link>http://www.jortk.nl/2010/02/speech-to-speech-translation-in-android/</link>
		<comments>http://www.jortk.nl/2010/02/speech-to-speech-translation-in-android/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 23:06:07 +0000</pubDate>
		<dc:creator>JortK</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[speech]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://www.jortk.nl/?p=1262</guid>
		<description><![CDATA[In Douglas Adams’s humorous sci-fi novel series Hitchhiker’s Guide to the Galaxy a special kind of fish is mentioned — the Babel Fish. When inserted into the ear, it translates any spoken language into whichever language the listener understands. It is a very nifty device, and now Google seeks to create something similar. According to [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>In Douglas Adams’s humorous sci-fi novel series <em>Hitchhiker’s Guide to the Galaxy</em> a special kind of fish is mentioned — the Babel Fish. When inserted into the ear, it translates any spoken language into whichever language the listener understands. It is a very nifty device, and now <a href="http://mashable.com/social-media/google">Google</a> seeks to create something similar.</p>
<p>According to Times Online, Google is developing a speech-to-speech automated translator for <a href="http://technology.timesonline.co.uk/tol/news/tech_and_web/personal_tech/article7017831.ece" target="_blank">Android phones</a>. It’s essentially a combination of two of Google’s existing technologies; its online universal translator service, <a href="http://translate.google.com/" target="_blank">Google Translate</a>, and its voice recognition system.</p>
<p>Google plans to make its Babel Fish a lot like a human translator; the software would analyze chunks of speech, and translate them in their entirety rather than translating word for word. Franz Och, Google’s head of translation services, claims the technology could go live in a couple of years. “Clearly, for it to work smoothly, you need a combination of high-accuracy machine translation and high-accuracy voice recognition, and that’s what we’re working on. If you look at the progress in machine translation and corresponding advances in voice recognition, there has been huge progress recently,” he says.</p>
<p>Anyone who’s used <a href="http://mashable.com/2009/11/16/google-translate-update/">Google Translate</a> knows that translations aren’t (and probably never will be) perfect, but they’re very helpful when you can’t understand a word of some foreign language. However, Google’s voice recognition also has issues of its own, and I fear that these two combined would produce a very high amount of errors. The Times also mentions the issue of different accents, a problem that Google plans to solve by making the software gradually learn the speaking habits of the phone’s owner.</p>
<p>Despite the big issues Google has to overcome to make this technology useful, if anyone can pull it off, Google can. The idea of being able to call someone who doesn’t speak your language, and have the conversation translated almost instantly, well, that’s one of those inventions that made Google the company it is today.</p>
<p>Thanks to: <a title="Source of this article" href="http://mashable.com/2010/02/08/speech-to-speech/" target="_blank">Mashable</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jortk.nl/2010/02/speech-to-speech-translation-in-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Tasks on your Android phone or iPhone</title>
		<link>http://www.jortk.nl/2010/01/google-tasks-on-your-android-phone-or-iphone/</link>
		<comments>http://www.jortk.nl/2010/01/google-tasks-on-your-android-phone-or-iphone/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 20:42:11 +0000</pubDate>
		<dc:creator>JortK</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[tasks]]></category>

		<guid isPermaLink="false">http://www.jortk.nl/?p=1064</guid>
		<description><![CDATA[No related posts. Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jortk.nl/2010/01/google-tasks-on-your-android-phone-or-iphone/"><em>Click here to view the embedded video.</em></a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jortk.nl/2010/01/google-tasks-on-your-android-phone-or-iphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Compare: Nexus One / iPhone / Droid / Palm Pre</title>
		<link>http://www.jortk.nl/2010/01/compare-nexus-one-iphone-droid-palm-pre/</link>
		<comments>http://www.jortk.nl/2010/01/compare-nexus-one-iphone-droid-palm-pre/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 02:55:03 +0000</pubDate>
		<dc:creator>JortK</dc:creator>
				<category><![CDATA[Tech news]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[compare]]></category>
		<category><![CDATA[droid]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[nexus one]]></category>
		<category><![CDATA[palm]]></category>
		<category><![CDATA[pre]]></category>
		<category><![CDATA[smartphone]]></category>

		<guid isPermaLink="false">http://www.jortk.nl/?p=985</guid>
		<description><![CDATA[  thanks to: Mashable No related posts. Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p> <img class="alignnone" title="Comparison chart - Nexus One / Droid / iPhone" src="http://i48.tinypic.com/r2unpi.jpg" alt="" width="611" height="1343" /></p>
<p>thanks to: <a title="Compare" href="http://mashable.com/2010/01/05/nexus-one-vs-droid-vs-iphone/" target="_blank">Mashable</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jortk.nl/2010/01/compare-nexus-one-iphone-droid-palm-pre/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gmail on the Google Nexus One</title>
		<link>http://www.jortk.nl/2010/01/gmail-on-the-google-nexus-one/</link>
		<comments>http://www.jortk.nl/2010/01/gmail-on-the-google-nexus-one/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 08:09:03 +0000</pubDate>
		<dc:creator>JortK</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[nexus one]]></category>

		<guid isPermaLink="false">http://www.jortk.nl/?p=980</guid>
		<description><![CDATA[Not only does the just-announced Nexus One have a beautiful display, snappy processor, and five megapixel camera complete with flash and geotagging, but you can also buy it online with or without a service plan. Plus, it runs Android 2.1, which adds a couple of new features to the native Gmail application: Quick contact badge: [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Not only does the <a href="http://googleblog.blogspot.com/2010/01/our-new-approach-to-buying-mobile-phone.html">just-announced Nexus One</a> have a beautiful display, snappy processor, and five megapixel camera complete with flash and geotagging, but you can also buy it online with or without a service plan. Plus, it runs Android 2.1, which adds a couple of new features to the native Gmail application:</p>
<ul>
<li>Quick contact badge: Press the contact status icon within Gmail, and a handy box shows all of the ways you can reply to a contact — including email, chat, SMS, and Facebook.</li>
<li>Voice input: Swipe the keyboard, then just speak to select contacts or write an email, complete with punctuation. Period!</li>
</ul>
<p><a href="http://1.bp.blogspot.com/_JE4qNpFW6Yk/S0OnXsAlTEI/AAAAAAAAAb4/OYo1Tl0zdLE/s1600-h/nexus_one_gmail.jpgg"><img id="BLOGGER_PHOTO_ID_5423345167759934626" style="cursor: hand; border: 0pt;" src="http://1.bp.blogspot.com/_JE4qNpFW6Yk/S0OnXsAlTEI/AAAAAAAAAb4/OYo1Tl0zdLE/nexus_one_gmail.jpg" border="0" alt="" /></a></p>
<p>Nexus One also features the Gmail updates of Android 2.0, including:</p>
<ul>
<li>Multiple Gmail accounts: Sync multiple accounts to the same device and switch between them without leaving the app.</li>
<li>Undo: A handy &#8216;undo&#8217; link makes it easier to retrieve messages when you hit archive or delete by mistake. (Note: you can&#8217;t yet <a href="http://gmailblog.blogspot.com/2009/03/new-in-labs-undo-send.html">undo send</a> as you can with the desktop version of Gmail).</li>
</ul>
<p><span style="font-weight: bold;"> </span><br />
For more information on Nexus One visit <a href="http://www.google.com/phone?utm_source=gmail&amp;utm_medium=link&amp;utm_campaign=blog"><span style="font-weight: bold;">google.com/phone</span>. To learn more about Gmail on this and other Android devices, check out the <a href="http://www.google.com/mobile/products/mail.html#p=android">Gmail page</a> on mobile.google.com/android</a></p>
<p>From : <a title="Gmail working on the Nexus " href="http://gmailblog.blogspot.com/2010/01/gmail-on-nexus-one.html" target="_blank">The Official Gmail Blog</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jortk.nl/2010/01/gmail-on-the-google-nexus-one/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Beste Google Apps in 2009</title>
		<link>http://www.jortk.nl/2010/01/beste-google-apps-in-2009/</link>
		<comments>http://www.jortk.nl/2010/01/beste-google-apps-in-2009/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 12:18:31 +0000</pubDate>
		<dc:creator>JortK</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[translate]]></category>

		<guid isPermaLink="false">http://www.jortk.nl/?p=944</guid>
		<description><![CDATA[Here&#8217;s a list of my favorite Google services that were launched or were significantly improved in 2009. 10. Google Public DNS &#8211; a DNS resolution system that doesn&#8217;t offer too many features, but it&#8217;s free and fast. Very fast. 9. Google Fast Flip &#8211; a service that lets you quickly browse news. It&#8217;s easy to [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a list of my favorite Google services that were launched or were significantly improved in 2009.</p>
<p>10. <a href="http://code.google.com/speed/public-dns/">Google Public DNS</a> &#8211; a DNS resolution system that doesn&#8217;t offer too many features, but it&#8217;s free and fast. Very fast.</p>
<p>9. <a href="http://fastflip.googlelabs.com/">Google Fast Flip</a> &#8211; a service that lets you quickly browse news. It&#8217;s easy to use and it&#8217;s a better way to discover interesting news articles than Google News.</p>
<p>8. <a href="http://www.google.com/squared">Google Squared</a> &#8211; an innovative way to dynamically generate collections and facts about each item. It&#8217;s an extension of <a href="http://labs.google.com/sets">Google Sets</a> and you can use it to create lists.</p>
<p>7. <a href="http://wave.google.com/">Google Wave</a> &#8211; an online platform for collaboration in real-time. While there are many interesting features in Google Wave, Google&#8217;s implementation of the Wave protocol is too confusing and difficult to use.</p>
<p>6. <a href="http://translate.google.com/">Google Translate</a> added <a href="http://googlesystem.blogspot.com/2009/01/new-languages-in-google-translate.html">new languages</a>, made it easier to find web pages written in other languages and to <a href="http://googlesystem.blogspot.com/2009/06/google-toolbar-improved-page.html">translate web pages in real-time</a>. You can now use Google Translate in Gmail, Google Docs, Google Groups and many other Google services.</p>
<p>5. <a href="http://maps.google.com/">Google Maps</a> aggregated information about locations in <a href="http://google-latlong.blogspot.com/2009/09/one-place-one-page.html">place pages</a>, started to show more search results and to use its own mapping data in the US. Google also launched <a href="http://www.google.com/mobile/navigation/">Google Maps Navigation</a>, &#8220;internet-connected GPS navigation system with voice guidance. It is part of Google Maps for mobile and is available for phones with Android 1.6 and higher.&#8221; Unlike other navigation apps, Google&#8217;s Android app is free, but it&#8217;s limited to the US.</p>
<p>4. <a href="http://images.google.com/">Google Image Search</a> added many advanced search options: <a href="http://googlesystem.blogspot.com/2009/04/google-image-search-color-filter.html">color filter</a>, <a href="http://googlesystem.blogspot.com/2009/01/find-images-that-have-certain-size.html">size filter</a>, <a href="http://googlesystem.blogspot.com/2009/07/usage-rights-options-in-google-image.html">Creative Commons search</a> and an option that lets you <a href="http://similar-images.googlelabs.com/">find similar images</a>. There&#8217;s also a great Android app that helps you search the web visually: <a href="http://www.google.com/mobile/goggles/#landmark">Google Goggles</a>.</p>
<p>3. <a href="http://www.google.com/">Google Search</a> added a toolbelt with many options that help you refine search results: you can restrict the results to forums and recent web pages, find pages shared by your friends, view page thumbnails and explore related searches. Other changes include a redesigned homepage with <a href="http://googlesystem.blogspot.com/2009/09/google-emphasizes-search.html">bigger buttons</a> and <a href="http://googlesystem.blogspot.com/2009/12/googles-homepage-goes-back-to-basics.html">less links</a>, <a href="http://googlesystem.blogspot.com/2009/02/how-to-disable-google-suggest.html">Google Suggest</a> as a standard feature and more <a href="http://googlesystem.blogspot.com/2009/04/one-line-google-sitelinks.html">sitelinks</a>.</p>
<p>2. <a href="http://www.android.com/">Android</a>, Google&#8217;s mobile operating system, had 3 major releases and it&#8217;s now used by <a href="http://en.wikipedia.org/wiki/List_of_Android_devices">more than 20 devices</a>. Companies like HTC, Motorola, Samsung bet on Android and there are many cool applications that are only available for Android: <a href="http://google.com/mobile/goggles">Goggles</a>, <a href="http://www.android.com/market/free.html#app=skymap">Sky Map</a>, <a href="http://www.google.com/mobile/navigation/">Google Navigation</a>.</p>
<p>1. <a href="http://www.google.com/chrome">Google Chrome</a>, the most innovative Google software released last year, continues to be a trendsetter when it comes to <a href="http://blog.stephenhorlander.com/2009/12/21/windows-themeui-update/">simplicity</a> and <a href="http://my.opera.com/core/blog/2009/02/04/carakan">great performance</a>. It now supports <a href="https://tools.google.com/chrome/intl/pt/themes/index.html">themes</a> and <a href="https://chrome.google.com/extensions">extensions</a>, it has a bookmark sync engine and you can download native versions for <a href="http://www.chromium.org/getting-involved/dev-channel#TOC-Mac">Linux and Mac</a>. Chrome is the most significant component of <a href="http://dev.chromium.org/chromium-os">Chrome OS</a>, a browser-centric operating system for notebooks, and a strategic project that helps Google push the web forward. Even if that means <a href="http://www.belshe.com/2009/11/19/google-writes-js-engine-for-internet-explorer/">improving Internet Explorer</a>.</p>
<p>From: <a title="Source of article" href="http://googlesystem.blogspot.com/2009/12/top-google-apps-in-2009.html" target="_blank">The Google System Blog</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jortk.nl/2010/01/beste-google-apps-in-2009/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>See who is using a Android phone!</title>
		<link>http://www.jortk.nl/2009/11/see-who-is-using-a-android-phone/</link>
		<comments>http://www.jortk.nl/2009/11/see-who-is-using-a-android-phone/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 14:43:46 +0000</pubDate>
		<dc:creator>JortK</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[talk]]></category>

		<guid isPermaLink="false">http://www.jortk.nl/?p=728</guid>
		<description><![CDATA[Gmail chat status (those green, orange, and red bubbles) indicates if your friends are online or not. But sometimes my buddies appear green when they&#8217;re not really &#8220;online online&#8221; — they just have chat open on their Android phones. Turn on Green Robot, a new experiment in Gmail Labs, and you&#8217;ll see a robot icon [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Gmail <a href="http://mail.google.com/support/bin/answer.py?hl=en&amp;answer=29298">chat status</a> (those green, orange, and red bubbles) indicates if your friends are online or not. But sometimes my buddies appear green when they&#8217;re not really &#8220;online online&#8221; — they just have chat open on their Android phones.</p>
<p>Turn on Green Robot, a new experiment in Gmail <a href="http://mail.google.com/mail/?ui=2&amp;fs=1&amp;view=pu&amp;st=labs">Labs</a>, and you&#8217;ll see a robot icon next to people who are currently using Android phones. In the case below, Shirley is online with Android, Nicolle R. is using regular Gmail chat, and Chris I. is currently away but also on Android. Slatka is not an angry robot — she&#8217;s online with Android but currently busy.</p>
<p><a href="http://2.bp.blogspot.com/_JE4qNpFW6Yk/SwQ8L_mofEI/AAAAAAAAAas/7N_tx0Kfe0I/s1600/green_robot.gif"><img id="BLOGGER_PHOTO_ID_5405511629501135938" style="text-align: center; margin: 0px auto 10px; width: 250px; cursor: hand; border: 0pt;" src="http://2.bp.blogspot.com/_JE4qNpFW6Yk/SwQ8L_mofEI/AAAAAAAAAas/7N_tx0Kfe0I/s320/green_robot.gif" border="0" alt="" /></a><br />
These icons can help you decide whether to tailor your conversation to the type of device that your chat buddy is using. For example, when you know the guy on the other end is using his Android phone, you may decide to send shorter, more concise chat messages.</p>
<p>When your chat buddies log into Gmail, their presence icons will revert to the traditional red, green, and orange status bubbles. In addition, if your chat buddy happens to be logged into both Gmail and Android chat then the traditional Gmail status icons will be shown. Try it out and <a href="http://groups.google.com/group/gmail-labs-help-green-robot/topics?pli=1">let us know</a> what you think.</p>
<p> </p>
<p>From: <a title="Gmail Blog" href="http://gmailblog.blogspot.com/2009/11/new-in-labs-green-robot-icon.html" target="_blank">Gmail Blog</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jortk.nl/2009/11/see-who-is-using-a-android-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
