<?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>Ian Hoar – Passion for Technology – Geeking Out &#187; Google</title>
	<atom:link href="http://www.ianhoar.com/category/google/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ianhoar.com</link>
	<description>Technology, Web, Toys, Games, Design, Entertainment, Gadgets, &#38; Geeking Out</description>
	<lastBuildDate>Mon, 16 Jan 2012 03:51:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>The secrets to using custom web fonts</title>
		<link>http://www.ianhoar.com/2011/04/02/the-secrets-to-using-custom-web-fonts/</link>
		<comments>http://www.ianhoar.com/2011/04/02/the-secrets-to-using-custom-web-fonts/#comments</comments>
		<pubDate>Sat, 02 Apr 2011 23:03:00 +0000</pubDate>
		<dc:creator>Ian Hoar</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[@font-face]]></category>
		<category><![CDATA[cufon]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.ianhoar.com/?p=4269</guid>
		<description><![CDATA[If you are a web designer then you&#8217;re already fully aware of the limitations surrounding the usage of fonts on the web. For years we have basically had two reliable options, use a standard web based font that is included on most operating systems with a few fall back fonts, or images. For headlines, custom [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-4301" title="The secrets to using custom web fonts" src="http://www.ianhoar.com/wp-content/uploads/2011/04/fonts.png" alt="The secrets to using custom web fonts" width="200" height="150" />If you are a web designer then you&#8217;re already fully aware of the limitations surrounding the usage of fonts on the web. For years we have basically had two reliable options, use a standard web based font that is included on most operating systems with a few fall back fonts, or images. For headlines, custom fonts and anything fancy images were the only way to go, but that&#8217;s all about to change.</p>
<p><span id="more-4269"></span></p>
<p><span class="pacifico" style="color: #2d6fb4;">Start using awesome custom web fonts today!</span></p>
<h2>A quick recap</h2>
<p>Several older embedding options exist that have been around for awhile. Scalable Inman Flash Replacement (sIFR) which requires the Flash plugin and is thus in my opinion less desirable option, is one of them. There are also server side font replacement implementations where graphics are generated and then served to the web browser, but again this requires multiple technologies to work and has many limitations.</p>
<h2>Cufón, a Javascript solution</h2>
<p>A more recent technology advance in fonts is <a href="http://cufon.shoqolate.com/generate/">Cufón</a>. Cufón requires no flash install and no extra software on the server side. It&#8217;s a pure JavaScript implementation and converts fonts into inline graphics. To a screen reader or web crawler the text looks like plain HTML text as you apply Cufón to the HTML text elements you wish to replace. This is one of the best font implementations yet, but it still has several limitations and caveats.</p>
<ol>
<li>You cannot select or copy any of the text that has been replaced with Cufón. This is minor, but still a usability issue since the user expects to be able to copy and paste text if they want.</li>
<li>You cannot user your browsers page search for Cufón replaced text.</li>
<li>Cufón does not support rollovers, so you cannot apply a hover to your links. This is a little more of a deal breaker since many navigation toolbars require rollovers.</li>
<li>It is illegal to embed many fonts with Cufón since you are distributing the actual font data in a javascript file. This is not an issue with Flash since the actual font data is not being distributed. Cufón can encrypt the font data, but you will still be in violation of many font license agreements.</li>
<li>Knowing which fonts you can legally embed is a bit of a nightmare since the legal jargon on many font foundries will just leave you confused.</li>
<li>You must upload your fonts to the <a href="http://cufon.shoqolate.com/generate/">Cufón site</a> and generate a JavaScript version of your font. This is time consuming and one extra step.</li>
</ol>
<h2 class="google">Welcome to Google web fonts</h2>
<p>Google web fonts solves five of the six issues listed above.</p>
<ol>
<li>You can select and copy / paste any of the fonts.</li>
<li>You can search for the fonts with your browsers page search.</li>
<li>Hover link rollovers are fully supported.</li>
<li>All of the fonts in Google web fonts are free to use and eliminate the research or guesswork needed.</li>
<li>Once you choose the font you would like all you have to do is copy and paste the generated code into your HTML document.</li>
</ol>
<p>The fonts are CSS based, and the concept of CSS linked fonts has been around since 1998, but it hasn&#8217;t been until recently that you could guarantee most users would have browsers that could see these linked fonts.</p>
<h2>Why Google Fonts? It&#8217;s fast and super easy!</h2>
<p>Go to <a href="http://www.google.com/webfonts">Google web fonts</a> and browse the many fonts until you find one you like. Select it and launch the Google font previewer, here you can tweak the font and even add CSS text shadows. At the bottom of your previewer you will see a CSS snippet. Copy that and past it into your style sheet and you&#8217;re done, all your fonts will be like the one in the previewer.</p>
<p><img title="Google Font Previewer" src="http://www.ianhoar.com/wp-content/uploads/2011/04/google_font_previewer-710x524.png" alt="Google Font Previewer" width="710" height="524" /></p>
<p>Of course you probably don&#8217;t want to apply it to your entire site. In the case above it would probably be best to apply the style only to HTML header tags, so you could change the <strong>body</strong> tag to <strong>h1</strong> or even use a class. For the example below I just created a <strong>google</strong> class.</p>
<p><span class="google" style="color: #2d6fb4; font-size: 18px; text-shadow: 2px 2px 2px #aaa !important;">Josefin Sans is just one of the many great fonts available at Google web fonts.</span></p>
<pre class="brush: css; title: ; notranslate">
&lt;link href=&quot;http://fonts.googleapis.com/css?family=Josefin+Sans:100,100italic,300,300italic,400,400italic,600,600italic,700,700italic&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;
&lt;style type=&quot;text/css&quot;&gt;
.google {
     font-family: 'Josefin Sans', serif;
     font-size: 36px;
     font-style: normal;
     font-weight: 400;
     text-shadow: none;
     text-decoration: none;
     text-transform: none;
     letter-spacing: 0em;
     word-spacing: 0em;
     line-height: 1.2;
}
&lt;/style&gt;
</pre>
<p>And that&#8217;s about all there is to using Google fonts, it&#8217;s quick and easy.</p>
<h2>What platforms does Google fonts support?</h2>
<p>Going forward pretty much everything is going to support CSS based fonts, but here are the versions that support Googles method.</p>
<ul>
<li>Google Chrome: version 4.249.4+</li>
<li>Mozilla Firefox: version: 3.5+</li>
<li>Apple Safari: version 3.1+</li>
<li>Opera: version 10.5+</li>
<li>Microsoft Internet Explorer: version 6+</li>
</ul>
<h2>Can I download them and use them in a graphic applications like Photoshop?</h2>
<p>Yes, while you don&#8217;t need to actually download them in order to use them on a website, you can download all of the Google Web Fonts if you like and use them in your favourite graphics package.</p>
<h2>@font-face; another great method for using custom fonts</h2>
<p>You can use download <a href="http://www.google.com/webfonts">Google web fonts</a>, <a href="http://www.theleagueofmoveabletype.com/">The League of Movable Type fonts</a>, or any web licensed fonts and use the @font-face method. In fact this is a very viable method now that most browsers support. OTF fonts will be supported in all the browsers that Google Web fonts are supported in, and in some cases all the way back to IE4. The only real difference with Google Web fonts is the ease of use and convenient library, but feel free to download any fonts you want and use this method if you prefer. @font-face also has all the same benefits that were listed for Google web fonts.</p>
<h2>How to use @font-face</h2>
<p>Using css linked fonts is pretty easy and has been around since 1998. Today most browsers support them, so go nuts. First download a the font you like, it must be web licensed so grab one from <a href="http://www.google.com/webfonts">Google web fonts</a> or <a href="http://www.theleagueofmoveabletype.com/">The League of Movable Type</a>. Once you have done that you will need to upload the actual font to your web server.</p>
<p><span class="orbitron-black"><span style="font-size: 30px;">ORBITRON</span> A <span style="font-size: 35px;">high impact</span> <span style="font-size: 25px;">font</span> with four <span style="font-size: 30px;">4</span> styles from <span style="font-size: 30px;">The League of Movable Type</span>.</span></p>
<p><span class="orbitron-black">ORBITRON black.</span></p>
<p><span class="orbitron-bold">ORBITRON bold. </span></p>
<p><span class="orbitron-medium">ORBITRON medium.</span></p>
<p><span class="orbitron-light">ORBITRON light.</span></p>
<p>The CSS for above example although long is quite simple. <strong>@font-face</strong> declares your <strong>font-family</strong> name and <strong>src</strong> (source) path to where the font is located on your server. Once they are set up you can start creating css classes or styling any HTML elements as you normally would. The example above is shown below.</p>
<pre class="brush: css; title: ; notranslate">
@font-face {
     font-family: &quot;Orbitron-Black&quot;;
     src: url(&quot;PATH_TO_FONT/orbitron-black.otf&quot;);
}
@font-face {
     font-family: &quot;Orbitron-Bold&quot;;
     src: url(&quot;PATH_TO_FONT/orbitron-bold.otf&quot;);
}
@font-face {
     font-family: &quot;Orbitron-Medium&quot;;
     src: url(&quot;PATH_TO_FONT/orbitron-medium.otf&quot;);
}
@font-face {
     font-family: &quot;Orbitron-Light&quot;;
     src: url(&quot;PATH_TO_FONT/orbitron-light.otf&quot;);
}
.orbitron-black {
     font-family: &quot;Orbitron-Black&quot;, serif;
     font-size:18px;
}
.orbitron-bold {
     font-family: &quot;Orbitron-Bold&quot;, serif;
     font-size:18px;
}
.orbitron-medium {
     font-family: &quot;Orbitron-Medium&quot;, serif;
     font-size:18px;
}
.orbitron-light {
     font-family: &quot;Orbitron-light&quot;, serif;
     font-size:18px;
}
</pre>
<h2>Other options for web licensed fonts</h2>
<p><a href="http://typekit.com/">TypeKit</a> is one of the commercial options with yearly pricing options and a limited free option. You can find commercial fonts here, but unfortunately a lot of the big names are missing. A quick search for favourites like Gotham, Helvetica Neue and Frutiger yielded nothing, so for now I&#8217;ll be sticking with <a href="http://www.google.com/webfonts">Google web fonts</a> and <a href="http://www.theleagueofmoveabletype.com/">The League of Movable Type</a>.</p>
<h2>The future is digital</h2>
<p>It&#8217;s quite annoying that the large font foundries have locked down and prohibited the use of their fonts on the web or only allowed clunky implementations. It&#8217;s as if they believe that if they were to open up their licenses that the world would cease to buy fonts tomorrow. I think it would be quite the opposite. Individual sites that want to embed fonts regardless of whether they own the rights to them or the licensing restrictions are going to use them. Larger corporate sites and individual sites that respect the copyright of fonts will instead move to the quickly growing library of web licensed and free fonts. The future is digital, and the larger foundries really need to wake up before people just move elsewhere for their fonts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ianhoar.com/2011/04/02/the-secrets-to-using-custom-web-fonts/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Anchor links in Gmail and email newsletters</title>
		<link>http://www.ianhoar.com/2010/04/22/anchor-links-in-gmail-email-newsletters/</link>
		<comments>http://www.ianhoar.com/2010/04/22/anchor-links-in-gmail-email-newsletters/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 23:25:10 +0000</pubDate>
		<dc:creator>Ian Hoar</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[email newsletters]]></category>
		<category><![CDATA[Gmail]]></category>

		<guid isPermaLink="false">http://www.ianhoar.com/?p=3814</guid>
		<description><![CDATA[I usually recommend against using anchor links in email newsletters; the reason for this is twofold. First, when someone is viewing a newsletter their attention span is probably extremely short. They probably want to get onto their next email, but something has triggered their interest in your newsletter. Why waste that interest on jumping them [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-3744" title="Gmail" src="http://www.ianhoar.com/wp-content/uploads/2010/03/gmail.png" alt="" width="128" height="128" />I usually recommend against using anchor links in email newsletters; the reason for this is twofold.</p>
<p>First, when someone is viewing a newsletter their attention span is probably extremely short. They probably want to get onto their next email, but something has triggered their interest in your newsletter. Why waste that interest on jumping them further down the email, this is your chance to <strong>grab their attention and hook them into your website</strong>. It may be your last chance before they click onto their next email and your website is probably a much richer web experience anyway.</p>
<p><span id="more-3814"></span></p>
<p>The second reason is anchor links are just another thing that often goes wrong in email newsletters. They act unpredictable, and at the time of this writing, don&#8217;t even work properly in Gmail. I also remember a time when an anchor link would show a blank screen in Yahoo! Mail, although this has since been fixed.</p>
<p>Despite these reasons, using an anchor links in an email is usually not my decision to make, so I have to try and find a way to make it work. A regular anchor link like the one below will not work in Gmail.</p>
<pre><code class="html">&lt;a href="#section1"&gt;Section One&lt;/a&gt;</code></pre>
<p>However this will work.</p>
<pre>&lt;a href="#section1"&gt;&lt;span&gt;Section One&lt;/span&gt;&lt;/a&gt;</pre>
<p>Like many email newsletter hacks and tricks it&#8217;s a simple one, but can be frustrating and time consuming when trouble shooting it for the first time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ianhoar.com/2010/04/22/anchor-links-in-gmail-email-newsletters/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Could your Gmail account get hacked?</title>
		<link>http://www.ianhoar.com/2010/03/22/could-your-gmail-account-get-hacked/</link>
		<comments>http://www.ianhoar.com/2010/03/22/could-your-gmail-account-get-hacked/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 22:27:11 +0000</pubDate>
		<dc:creator>Ian Hoar</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.ianhoar.com/?p=3737</guid>
		<description><![CDATA[This may be old news to some of people, but it struck me today how much I rely on Gmail and if my account were to be hacked it would be a very painful event. Apparently there are tools that allow people to hack into Google accounts via sniffing cookies. I am really not one [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-3744" title="Gmail" src="http://www.ianhoar.com/wp-content/uploads/2010/03/gmail.png" alt="" width="128" height="128" />This may be old news to some of people, but it struck me today how much I rely on Gmail and if my account were to be hacked it would be a very painful event. Apparently there are tools that allow people to hack into Google accounts via sniffing cookies. I am really not one to be paranoid about security for the most part. Out of billions of connections per day to a site like Google, the chances of mine be jeopardized are low, but that said, if there is a simple way to make the process safer, why not?<br />
<span id="more-3737"></span></p>
<h2>Make sure HTTPS is enabled</h2>
<p>From the Google help page.</p>
<blockquote><p>We&#8217;ve recently made the &#8216;Always use https&#8217; setting the default behavior in Gmail (the default used to be http). Here&#8217;s some background: If you sign in to Gmail via a non-secure Internet connection, like a public wireless or non-encrypted network, your Google account may be more vulnerable to hijacking. Non-secure networks make it easier for someone to impersonate you and gain full access to your Google account, including any sensitive data it may contain like bank statements or online log-in credentials. Accordingly, we enable the &#8216;Always use https&#8217; option in Gmail by default. HTTPS, or Hypertext Transfer Protocol Secure, is a secure protocol that provides authenticated and encrypted communication.</p></blockquote>
<p>So most of us don&#8217;t have to worry, but it might be wise to look up in your address bar and make sure you are accessing Gmail via HTTPS. When I checked mine neither radio was selected. If you want to check yours just go to the settings and look for  &#8220;Always use https&#8221;. It&#8217;s as simple as that, can you feel that warm fuzzy feeling now?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ianhoar.com/2010/03/22/could-your-gmail-account-get-hacked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google iPhone reader refomats my web pages</title>
		<link>http://www.ianhoar.com/2009/03/03/google-iphone-reader-refomats-my-web-pages/</link>
		<comments>http://www.ianhoar.com/2009/03/03/google-iphone-reader-refomats-my-web-pages/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 03:46:36 +0000</pubDate>
		<dc:creator>Ian Hoar</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Smartphones]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.ianhoar.com/?p=3512</guid>
		<description><![CDATA[Google reader is a fantastic RSS reader and I use both the full web version and the iPhone mobile version daily. It&#8217;s simple to use, fast, and it&#8217;s a web app, and I&#8217;m a big supporter of web based applications. The only real thing it needs now is some fancy HTML 5 database storage, then [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-118 thumbRight  alignleft" title="Google" src="http://www.ianhoar.com/wp-content/uploads/2008/03/google.jpg" alt="Google" width="250" height="100" />Google reader is a fantastic <a href="http://www.ianhoar.com/whats-an-rss-feed/">RSS</a> reader and I use both the <a href="http://www.google.com/reader/">full web version</a> and the <a href="http://www.google.com/reader/i/">iPhone mobile version</a> daily. It&#8217;s simple to use, fast, and it&#8217;s a web app, and I&#8217;m a big supporter of web based applications. The only real thing it needs now is some fancy HTML 5 database storage, then we could use it offline and there would be no need for standalone apps while on the subway.</p>
<p><span id="more-3512"></span></p>
<p>About a month ago the iPhone version started reformatting all of my linked web pages to a mobile Google format. This was frustrating since the iPhone is fully capable of displaying rich web content and in some cases I wanted to see iPhone specific HTML and Javascript content in action. Unfortunately all of this is stripped out in the mobile version. I put up with this for a few days before I decided to look for the settings.</p>
<h2>Easy fix</h2>
<p>To get your linked web pages back to the way they were meant to be, scroll to the bottom of your iPhone reader and click settings. At the time of writing this you will find 3 settings. Uncheck <strong>&#8220;Reformat linked web pages for mobile browsers.&#8221; </strong>and you will now be linking to the real web pages. I&#8217;m not sure if I inadvertently turned this on, but if this is the default setting it seems kind of odd for the iPhone version. Luckily with Google there is always lots of ways to customize your experience and they have a great number of other <a href="http://www.google.com/mobile/">mobile solutions online</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ianhoar.com/2009/03/03/google-iphone-reader-refomats-my-web-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2008 year of the smartphone</title>
		<link>http://www.ianhoar.com/2008/11/03/2008-year-of-the-smartphone/</link>
		<comments>http://www.ianhoar.com/2008/11/03/2008-year-of-the-smartphone/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 22:16:08 +0000</pubDate>
		<dc:creator>Ian Hoar</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Article]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Neato]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Smartphones]]></category>
		<category><![CDATA[Toys & Gadgets]]></category>

		<guid isPermaLink="false">http://www.ianhoar.com/?p=2604</guid>
		<description><![CDATA[This year has been without a doubt, the year of the smartphone and Apple has led the charge with it&#8217;s iPhone. Touch technology seems to be all the rage now, and of course Apple introduced it&#8217;s first smartphone last year, but their second phone reached a far greater audience with more countries and recently announced [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-3164 thumbRight" title="2008 Year of the smartphone" src="http://www.ianhoar.com/wp-content/uploads/2008/11/year_of_smartphone.jpg" alt="" width="250" height="250" />This year has been without a doubt, the year of the smartphone and Apple has led the charge with it&#8217;s iPhone. Touch technology seems to be all the rage now, and of course Apple introduced it&#8217;s first smartphone last year, but their second phone reached a far greater audience with more countries and recently announced sales of 6.9 Million iPhones.</p>
<p>I of course jumped on the iPhone bandwagon, but before I did I spent a lot of time researching many of the smartphones out there. At the time just before the second iPhone was launched there were a lot of great smartphones on the way, but none were out yet. Now that the iPhone has been out for a few months a lot of new devices have emerged. One of the reasons I bought the iPhone was because Apple was ahead of the curve, now a lot of the other manufacturers have similar offerings, but are any of them really iPhone killers? I decided to do a quick smartphone round up to see what&#8217;s currently out there.</p>
<p><span id="more-2604"></span></p>
<h2>Android is the newest cool kid in town</h2>
<p>Of course you can&#8217;t talk about smartphones without talking about Android and their new G1 offered by T-Mobile in the US. This phone by HTC came out a couple of weeks ago, but even before a phone was announced, the Android platform had huge buzz in the blogsphere and tech news sites. I wrote about it several times and was pretty hyped about it myself when I wrote <a href="http://www.ianhoar.com/2008/06/26/android-android-android-everyones-talking-about-android/">Android Android Android! everyone’s talking about Android</a> and I still am pretty buzzed about it.</p>
<p><img class="aligncenter size-full wp-image-2923" title="Google Android G1" src="http://www.ianhoar.com/wp-content/uploads/2008/10/android_g1.jpg" alt="" width="480" height="217" /></p>
<p>Android promises a lot of innovation and is really shaking up the industry. First it&#8217;s open source, which means anyone can play with the innards of the code. Up until now this was practically unheard of, and this could be the end of locked down phones, which I think is great. I can do what I want with my computer, I should be able to do the same with my smartphone, which is basically a portable mini computer. This is one flaw with Apple&#8217;s phone, without special applications I can&#8217;t even treat this phone as a storage device or copy my music on to different computers. The <a href="http://www.openhandsetalliance.com/">Open Handset Alliance</a> is another great by product of Google Android.</p>
<p>Everything I have read about the G1 says that it is no iPhone killer, but there is massive potential and that this is just the start. Google is on to something here, and one of these days there may be a Google phone that is an iPhone killer. Remember this is Googles first phone.</p>
<p><a href="http://www.engadget.com/2008/10/16/t-mobile-g1-review/">See Engadget&#8217;s review on the G1</a></p>
<h2>Blackberry Bold and Storm</h2>
<p><img class="size-full wp-image-487 thumbRight" title="Blackberry Bold" src="http://www.ianhoar.com/wp-content/uploads/2008/07/blackberry_bold.jpg" alt="Blackberry Bold" width="200" height="358" />Research In Motion is one of the big players and has been around for a long time. The big toys from RIM this year are the Bold and the Storm. If any phone could have swayed me from my iPhone purchase it would have been one of these. In the end I&#8217;m glad I went for the iPhone because the Bold does lean towards business users, and the Storm is taking forever to come out.</p>
<p>The Bold is the newest and greatest Blackberry in town, with a higher resolution than the iPhone but smaller screen this thing is crystal sharp. I have played with it once and it is pretty clear, but you have to wonder what the point of such high resolution is with such a small screen? It&#8217;s a nice phone, but it still feels a bit flimsy, I&#8217;m not a fan of how easily the Blackberries tend to scratch, but with that said if I had to pick a second best phone, I would probably go with a Blackberry.</p>
<p><img class="alignleft size-full wp-image-2936 thumbLeft" title="Blackberry Storm" src="http://www.ianhoar.com/wp-content/uploads/2008/10/blackberry_storm.jpg" alt="" width="200" height="376" />The Blackberry Storm may be a different story, this is RIM&#8217;s attempt at the consumer market and is a direct competitor to the iPhone. It has what RIM calls &#8220;tactile-touch&#8221; which is basically a spring loaded screen. You basically have to push all the way down to hit a key, which sounds pretty cool. I&#8217;m used to not having to push down, so it might be hard to get used too. So far I have read that the new touch screen is awesome, to not so great, so only time will tell. I think what you are used to will have a lot to do with how much you like the screen. Blackberry is late to the game and a lot of people who use touch screens have gotten used to how they work now, but this may appeal to the users who have not switched to a touchscreen yet.</p>
<p>You can find first impression reviews at <a href="http://gizmodo.com/5060378/blackberry-storm-first-hands-on">Gizmodo</a> and <a href="http://www.engadget.com/2008/10/08/blackberry-storm-9500-hands-on/">Engadget</a> along with a gallery of PowerPoint slides on <a href="http://www.boygeniusreport.com/gallery/handsets/blackberry-storm-powerpoint/?page=1">The Boy Genius Report</a>.</p>
<h2>Sony Ericsson XPERIA X1</h2>
<p>Sony&#8217;s EXPERIA X1 has been rumoured and talked about so long that I almost forgot about it. Its already available in some places, but still pretty hard to find.</p>
<p><img class="aligncenter size-full wp-image-2943" title="Sony XPERIA X1" src="http://www.ianhoar.com/wp-content/uploads/2008/10/sony_xperia_x1.jpg" alt="" width="480" height="349" /></p>
<p>This is a pretty sweet looking phone, but I&#8217;ve read a lot of good and bad about it. First it&#8217;s Windows Mobile, so depending on how you feel about Windows Mobile, your decision may be already made. There have also been claims of slow response on the touch screen and that the keyboard keys do not provide enough tactile feedback. Either way, I don&#8217;t think this phone will be viable until it&#8217;s on major carriers. Rumours are that it will be available on AT&amp;T at some point.</p>
<p><a href="http://dailymobile.se/2008/10/10/unboxing-pictures-sony-ericsson-xperia-x1/">Unboxing of XPERIA X1</a> and some <a href="http://www.gsmarena.com/sony_ericsson_xperia_x1-pictures-2246.php">nice high resolution shots</a> and a very early review at <a href="http://www.boygeniusreport.com/2008/06/17/sony-ericsson-xperia-x1-review/">The Boy Genuis Report</a>.</p>
<h2>HTC and a world of cool smartphones</h2>
<p>HTC has so many cool phones it&#8217;s hard to mention them all. They build the G1 Android phone and had a hand in the XPERIA X1. They also released the <a href="http://www.ianhoar.com/2008/05/09/another-cool-smart-phone-%E2%80%94-htc-touch-diamond/">Touch Diamond</a> this year, and the <a href="http://www.ianhoar.com/2008/06/04/the-htc-touch-pro-wow-i-want-it/">Touch Pro</a> will be out soon. There is also the really cool HTC Touch HD which unfortunately will not be showing up in North America, but it <a href="http://www.engadget.com/2008/10/06/htcs-touch-hd-gets-very-early-review-called-an-iphone-killer-i/">has been called an iPhone killer</a>.</p>
<p><img class="aligncenter size-full wp-image-2957" title="HTC Touch HD" src="http://www.ianhoar.com/wp-content/uploads/2008/10/htc_touch_hd.jpg" alt="" width="480" height="313" /></p>
<p>HTC definitely makes a whole lot of cool phones, and I&#8217;m sure we will be seeing Google&#8217;s Android on a lot more HTC phones.</p>
<h2>Nokia</h2>
<p>Nokia is huge in a lot of the world, but not so much here in North America. That may all change if they start bringing out slick phones like the Nokia 5800 XpressMusic. It comes with a stylus so you can write out your messages, so if a stylus is your thing, then the XpressMusic might be for you.</p>
<p><img class="aligncenter size-full wp-image-2965" title="Nokia 5800 XpressMusic" src="http://www.ianhoar.com/wp-content/uploads/2008/10/nokia_5800_xpressmusic.jpg" alt="" width="480" height="320" /></p>
<p>Engadget has <a href="http://www.engadget.com/2008/10/02/nokia-5800-xpressmusic-hands-on/">a hands on review</a>.</p>
<h2>Samsung instinct</h2>
<p><img class="size-full wp-image-287 thumbRight" title="Samsung Instinct" src="http://www.ianhoar.com/wp-content/uploads/2008/07/samsung_instinct.jpg" alt="Samsung Instinct" width="134" height="300" />Samsung has also jumped onto the touch screen smart phone bandwagon, the big one this year was the Samsung Instinct. I&#8217;m a huge fan of Samsung products, especially their LCD displays, but for some reason their phones just don&#8217;t do it for me. The instinct did perk my interest, but then <a href="http://gizmodo.com/5014419/samsung-instinct-full-review-verdict-best-sprint-phone-ever-best-samsung-phone-ever-too">the reviews came out</a> and laid my anticipation to rest. The <a href="http://www.gsmarena.com/samsung_i900_omnia-review-267.php">Omnia on the other hand seems to score a bit higher</a>, but it&#8217;s a windows mobile device and it doesn&#8217;t have the prettiest interface. Samsung is also a member of the <a href="http://www.openhandsetalliance.com">Open Handset Alliance</a>, so we may see a Google Android phone from them in the future; fingers crossed.</p>
<h2>Openmoko, truly open</h2>
<p>Although a much smaller player in the smartphone field we cannot forget Openmoko, the truly open source smartphone platform and the device it runs on, Neo FreeRunner. I have been keeping an eye on Openmoko for many of the same reasons I watch Google&#8217;s Android platform. I believe in the concept behind these platforms, but Openmoko steps it up a notch, this is a truly open source project, everything from the OS to the phone itself; even the CAD files can be downloaded so you can modify the actual phone itself. Openmoko is definitely a hardcore computer geeks dream.</p>
<p style="text-align: center;"><a href="http://www.ianhoar.com/wp-content/uploads/2008/07/openmoko_neo_freerunner.jpg"><img class="size-full wp-image-291 aligncenter" title="Openmoko Neo FreeRunner" src="http://www.ianhoar.com/wp-content/uploads/2008/07/openmoko_neo_freerunner.jpg" alt="Openmoko Neo FreeRunner" width="480" height="459" /></a></p>
<p>More information can be found on the <a href="http://en.wikipedia.org/wiki/Openmoko">wiki entry for Openmoko</a>. The phone can be purchased at the <a href="http://www.openmoko.com/">official Openmoko website</a>, and you can also visit the <a href="http://wiki.openmoko.org/wiki/Main_Page">Openmoko wiki website</a> which has much more information.</p>
<h2>Apple iPhone, the darling of touch smartphones</h2>
<p><img class="size-full wp-image-251 thumbRight" title="iPhone" src="http://www.ianhoar.com/wp-content/uploads/2008/06/iphone2.jpg" alt="iPhone" width="200" height="422" />And of course this roundup wouldn&#8217;t be complete without the iPhone. Apple has lead the way here the same way they lead the way for mp3 players. Whether you love or hate Apple there is no denying that they are market leaders in innovation and have consistently upped the bar delivering a compelling product that&#8217;s hard to beat. Almost every review I have read on smartphones uses the iPhone as a measure of quality. You always hear references to Apple&#8217;s iPhone or &#8220;the iPhone Killer&#8221; catch phrase.</p>
<p>That doesn&#8217;t mean the iPhone has no flaws, one of the most mentioned features that is missing is &#8220;copy and paste&#8221; functionality. I don&#8217;t know if Apple will ever add this, but it&#8217;s a much needed and requested feature, especially for sending web addresses to people in applications such as Twitterific. There is an option to email someone a link from Safari, but copy and paste would be a lot more useful. Another thing that needs fixing is the browser, although it&#8217;s a fantastic mini browser, possibly even the best, it does tend to crash an awful lot, at least for me. That said, I am more than happy with my iPhone and it really is the best device I have bought in years. Many of the games are simple but very addictive, just what you want on a small device like this and there is a constant stream of new applications every day. When I was showing my phone to someone once they asked &#8220;is there anything it can&#8217;t do?&#8221;, well yes, it won&#8217;t do your laundry yet.</p>
<h2>An amazing year for gadgets</h2>
<p>It really has been a great year for great gadgets and smartphones in particular. I can&#8217;t help but get excited about 2009&#8242;s lineup. Where will Apple be this time next year, and the one I&#8217;m really keeping an eye on is Google&#8217;s Android. It will also be interesting to see how the Blackberry vs Apple battle turns out, I personally think Android is more of a threat than the Blackberry. The Blackberry has a strong loyal consumer base and owns the business sector. They are also making their phones pretty, because lets face it, even business men and women want to have a cool cell phone.</p>
<p>For the third iPhone next year I&#8217;m predicting a higher resolution, better GPS and a better camera as obvious places to work on. I hope all the other smartphones have surprises up their sleeves also. 2008 was an amazing year, lets hope 2009 is even more ground breaking.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ianhoar.com/2008/11/03/2008-year-of-the-smartphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Earth for the iPhone and iPod Touch</title>
		<link>http://www.ianhoar.com/2008/10/27/google-earth-for-the-iphone-and-ipod-touch/</link>
		<comments>http://www.ianhoar.com/2008/10/27/google-earth-for-the-iphone-and-ipod-touch/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 00:40:49 +0000</pubDate>
		<dc:creator>Ian Hoar</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Neato]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.ianhoar.com/?p=3096</guid>
		<description><![CDATA[Google released Google Earth for the iPhone and iPod Touch today. I&#8217;m a huge fan of the PC version of this great application and have killed many hours traveling this virtual world known as Earth. If you have never tried out Google Earth then I highly recommend downloading it now. You can view the entire [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-3109 thumbRight" title="iPhone Google Earth" src="http://www.ianhoar.com/wp-content/uploads/2008/10/iphone_google_earth.jpg" alt="" width="240" height="360" />Google released Google Earth for the iPhone and iPod Touch today. I&#8217;m a huge fan of the PC version of this great application and have killed many hours traveling this virtual world known as Earth. If you have never tried out Google Earth then <a href="http://earth.google.com/">I highly recommend downloading it now</a>. You can view the entire planet in 3D, see photos, read Wikipedia entries and download different data overlays. This only scrapes the surface, but it&#8217;s an incredible application, and best of all, it&#8217;s free.</p>
<p>So how does Google Earth hold up on the iPhone? Well obviously it&#8217;s a bit trimmed down, but still much better than I thought it would be. You can see photos, Wikipedia entries and move around the earth in the typical intuitive Multi-touch way that we are all so used too. You can even twist two fingers to rotate, and if you tilt your device the accelerometer kicks in and allows an angled view so you can see the 3D surface of the Earth. You can also use the iPhones GPS to find your current location on planet Earth. The application runs fairly smooth on the iPhone, but I did notice a few hiccups which sometimes even happens on the full Google Earth.</p>
<p><span id="more-3096"></span></p>
<p>I have taken several screenshots below. You can also check out the <a href="http://googleblog.blogspot.com/2008/10/introducing-google-earth-for-iphone.html">official Google announcement</a> on the Google blog which also has video, but the application is free, so <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=293622097&amp;mt=8">check out the app store and get it now</a>.</p>
<p style="text-align: center;"><img class="size-full wp-image-3110 aligncenter" title="iPhone Google Earth" src="http://www.ianhoar.com/wp-content/uploads/2008/10/iphone_google_earth_1.jpg" alt="" width="320" height="480" /></p>
<p style="text-align: center;"><img class="size-full wp-image-3111 aligncenter" title="iPhone Google Earth Toronto" src="http://www.ianhoar.com/wp-content/uploads/2008/10/iphone_google_earth_2.jpg" alt="" width="480" height="320" /></p>
<p style="text-align: center;"><strong>Toronto via GPS.</strong></p>
<p style="text-align: center;"><img class="size-full wp-image-3108 aligncenter" title="iPhone Google Earth Wiki" src="http://www.ianhoar.com/wp-content/uploads/2008/10/iphone_google_earth_wiki.jpg" alt="" width="480" height="320" /></p>
<p style="text-align: center;"><strong>Wikipedia entry via iPhone Google Earth</strong></p>
<p style="text-align: center;"><img class="size-full wp-image-3112 aligncenter" title="iPhone Google Earth 3D mountains" src="http://www.ianhoar.com/wp-content/uploads/2008/10/iphone_google_earth_3.jpg" alt="" width="480" height="320" /></p>
<p style="text-align: center;"><strong>Mount Everest in all its 3D glory</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ianhoar.com/2008/10/27/google-earth-for-the-iphone-and-ipod-touch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Smartphone wars heat up &#8211; HTC Dream and Blackberry Storm</title>
		<link>http://www.ianhoar.com/2008/09/16/smartphone-wars-heat-up-htc-dream-and-blackberry-storm/</link>
		<comments>http://www.ianhoar.com/2008/09/16/smartphone-wars-heat-up-htc-dream-and-blackberry-storm/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 03:21:23 +0000</pubDate>
		<dc:creator>Ian Hoar</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Neato]]></category>
		<category><![CDATA[Smartphones]]></category>
		<category><![CDATA[Toys & Gadgets]]></category>

		<guid isPermaLink="false">http://www.ianhoar.com/?p=2109</guid>
		<description><![CDATA[Everyone is wondering what HTC and Blackberry will have up their sleeves over the next few months. The Android powered HTC Dream will be unveiled at a press event in New York City by T-Mobile next week on September 23 and it is rumoured to be ready for release sometime in October. There is also [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-204 thumbRight alignright" title="Android" src="http://www.ianhoar.com/wp-content/uploads/2008/06/android_logo.png" alt="Android" width="180" height="180" />Everyone is wondering what HTC and Blackberry will have up their sleeves over the next few months. The <a href="http://www.techcrunch.com/2008/09/16/breaking-android-official-on-september-23/">Android powered HTC Dream will be unveiled</a> at a press event in New York City by T-Mobile next week on September 23 and it is rumoured to be ready for release sometime in October. There is also a pretty interesting <a href="http://mobilecrunch.com/2008/09/16/video-google-shows-android-handset-at-developer-day/">video of Android being shown off at the Developer Day in London</a>, and it&#8217;s looking very polished.</p>
<p><span id="more-2109"></span>Hot on the heals of the Google Android phone will be the new Blackberry Storm which is a direct competitor to the iPhone. It has a soft touchscreen with built-in tactile feedback. I can&#8217;t help but wonder how scratch resistant this will be; I have a Nintendo DS which is a soft touch screen and it is very scratched up. I really wouldn&#8217;t want this to be the case for a phone that goes in your pocket for most of the day. The iPhone screen is extremely scratch resistance, so this could be a show stopper for some people but we&#8217;ll have to wait and see. The release dates around the Storm are a bit cloudy as Verizon seems to be playing games with everyone. Today many blogs linked to <a href="http://www.boygeniusreport.com/2008/09/16/blackberry-storm-weve-been-had/">Verizon&#8217;s Storm announcement page</a> which was then removed.</p>
<p>Exciting times in deed, although the Android OS has my attention more than any of the phones themselves. Another interesting tidbit was in London today when <a href="http://www.engadget.com/2008/09/16/google-shows-off-masked-android-handset/">one of the Android guys was asked if it could run on other devices he replied &#8220;why not?&#8221;</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ianhoar.com/2008/09/16/smartphone-wars-heat-up-htc-dream-and-blackberry-storm/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Chrome &#8211; first impressions are the most important</title>
		<link>http://www.ianhoar.com/2008/09/02/google-chrome-first-impressions-are-the-most-important/</link>
		<comments>http://www.ianhoar.com/2008/09/02/google-chrome-first-impressions-are-the-most-important/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 04:18:34 +0000</pubDate>
		<dc:creator>Ian Hoar</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Neato]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://www.ianhoar.com/?p=1685</guid>
		<description><![CDATA[Google Chrome was officially released today and of course being the Geek that I am I had to download it at work and at home and yes I am writing this blog entry from Chrome. Although I have not spent a long time with it, so far I like it, and for a first beta launch [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-1692 thumbRight alignright" title="Google Chrome" src="http://www.ianhoar.com/wp-content/uploads/2008/09/chrome.png" alt="Google Chrome" width="205" height="205" /><a href="http://www.google.com/chrome">Google Chrome</a> was officially released today and of course being the Geek that I am I had to download it at work and at home and yes I am writing this blog entry from Chrome. Although I have not spent a long time with it, so far I like it, and for a first beta launch it is remarkably polished. This of course is nothing new for Google — they have a reputation of releasing extremely polished beta products. I also fully expect Chrome to be in beta for at least two years, but by then everyone will long since forgotten that it is a beta. </p>
<p><span id="more-1685"></span></p>
<p>The first thing I have noticed about Chrome is that it feels very zippy. I will have to try some more intensive tasking, but so far the tabs seem very responsive. Right now I have over 15 tabs open including game trailers. Game trailers usually slows down Firefox a bit while loading or switching tabs, but in Chrome I rapidly clicked back and forth on the tabs and it was extremely responsive. I also find that pages seem to load faster. </p>
<p>When you open a new tab with Ctrl T or the plus sign you are presented with a home page of your history with thumbnails of everywhere you have been recently. This is a different approach and I think I like it. You also have access to a search panel and you are asked the first time you install if you would like Google to be the default search engine. </p>
<p style="text-align: center; "><img class="size-full wp-image-1724 aligncenter" title="Chrome Home Page" src="http://www.ianhoar.com/wp-content/uploads/2008/09/chrome_home_page.jpg" alt="Chrome Home Page" width="480" height="385" /></p>
<p>Google suggest has also been incorporated into the search / URL bar which double up as the same field. There is no separate search field, which really does makes sense once you start playing around with it. The suggestion seems rock solid too. Page search is also very intuitive and has page highlighting as you skip through each occurrence of your word search. </p>
<h2>Developer tools</h2>
<p>One of the big reasons a lot of people use Firefox, at least web developers and designers is the developer add-ons, namely <a href="http://chrispederick.com/work/web-developer/">Web Developer</a> and <a href="http://getfirebug.com/">Firebug</a>. Chrome does have built in developer tools similar to Web Developer and Firebug and although not quite as full featured they are a far more powerful default tool set than I have seen in any browser to date. To access an inspector type dialog you can right click the page and select Inspect Element. This will give you a Firebug style interface. There&#8217;s also the typical view source and a JavaScript debug screen. </p>
<p>Another interesting addition to the browser world is a task manager. This shows you exactly what is happening in your browser and what pages are being resource hogs. You can end any task here which consist of tabs, flash and other plugins. The browser is supposed to keep running even if something fails in one of the tabs. There is also a link at the bottom of the task manager called <em>Stats for nerds</em> which will give more details about what&#8217;s going on. You can also open dialogs and still use the browser at the same time.</p>
<p style="text-align: center;"><a href="http://www.ianhoar.com/wp-content/uploads/2008/09/chrome_task_manager.jpg"><img class="size-medium wp-image-1725 aligncenter" title="Chrome Task Manager" src="http://www.ianhoar.com/wp-content/uploads/2008/09/chrome_task_manager-300x192.jpg" alt="Chrome Task Manager" width="300" height="192" /></a></p>
<h2>Privacy</h2>
<p>Of course I know what a lot of people are thinking when they see a page full of pages they have recently visited along with thumbnail screenshots. What about my privacy? Well aside from being able to clear your history there is also an interesting tab mode called &#8220;incognito&#8221; or &#8220;porn mode&#8221; as some of the blog sphere have started calling it. Google even adds some funny humour to the description when you go into incognito mode. </p>
<blockquote><p><strong>Going incognito doesn&#8217;t affect the behavior of other people, servers, or software. Be wary of:</strong></p>
<ul>
<li>Websites that collect or share information about you</li>
<li>Internet service providers or employers that track the pages you visit</li>
<li>Malicious software that tracks your keystrokes in exchange for free smileys</li>
<li>Surveillance by secret agents</li>
<li>People standing behind you</li>
</ul>
</blockquote>
<p>So keep in mind it won&#8217;t work when people are standing behind you. </p>
<h2>Is there anything bad about it so far?</h2>
<p>I would not go so far as to say there is anything bad, just some things that are missing. When I right click on an image I would like to see more options such as view image or a view background image similar to Firefox. There is however a copy image to new tab. I would also like to see a print preview, I could not find one. An advanced configuration screen like Firefox has would also be nice, maybe there is one, I have not dug very deep yet. Obviously it would also be nice to have my favourite FireFox plugins, but to be honest I can&#8217;t say too many bad things about Chrome so far. This may be my new surfing browser of choice. For now Firefox will remain my development browser of choice.</p>
<h2>Final thoughts</h2>
<p>This is a really polished first release. The interface is lightweight and clean. It does feel very Google like and I can&#8217;t wait to see what they will do with Chrome in the future. I&#8217;m sure there will be even more reason to use Chrome in the near future, like Gears enabled web sites that offer a lot more than non-gears enabled web sites. Google has created many duds in the past, but I really don&#8217;t think this is one of them. So far I am very impressed and I will continue to use the browser for a week or so and see how things work out. <a href="http://www.google.com/chrome">Why not give it a try yourself</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ianhoar.com/2008/09/02/google-chrome-first-impressions-are-the-most-important/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google to launch a web browser &#8211; Chrome is here</title>
		<link>http://www.ianhoar.com/2008/09/01/google-to-launch-a-web-browser-chrome-is-here/</link>
		<comments>http://www.ianhoar.com/2008/09/01/google-to-launch-a-web-browser-chrome-is-here/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 04:46:47 +0000</pubDate>
		<dc:creator>Ian Hoar</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Neato]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.ianhoar.com/?p=1658</guid>
		<description><![CDATA[The web is buzzing with news of a Google browser. The news was launched via a 39 page comic. The browser is called Google Chrome, and at last check the site was offline but rumour has it that it will be back online tomorrow. Google has also announced on their blog that they sent out [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-118 thumbRight alignright" title="Google" src="http://blog.imhmedia.net/wp-content/uploads/2008/03/google.jpg" alt="Google" width="250" height="100" />The web is buzzing with news of a Google browser. The news was launched <a href="http://www.google.com/googlebooks/chrome/">via a 39 page comic</a>. The browser is called Google Chrome, and at last check the site was offline but rumour has it that it will be back online tomorrow. Google has also announced on their blog that they <a href="http://googleblog.blogspot.com/2008/09/fresh-take-on-browser.html">sent out the news a bit early by accident</a>. Personally I think they may have just been trying to generate blog sphere buzz and it has worked</p>
<p>This is really big news and probably really bad news for Microsoft. Google has already released <a href="http://gears.google.com/">Gears</a> a browser add-on which allows Google to jump start browsers ahead into more modern standards. Chrome will use <a href="http://en.wikipedia.org/wiki/WebKit">webkit</a>, the same engine that Safari uses, but it will not use the webkit Javascript engine. It will use it&#8217;s own, which should make apps run much faster and with more features.</p>
<p>Could this really be Google&#8217;s entrance into the desktop market? I believe the future of applications is online. Everything is headed in that direction. More and more people are accessing their apps and data in multiple places and on multiple devices, and right now the major player in that space is Google.</p>
<p><strong>Update: <a href="http://www.ianhoar.com/2008/09/02/google-chrome-first-impressions-are-the-most-important/">Google Chrome &#8211; first impressions are the most important </a></strong></p>
<p><strong>More info at TechCrunch:</strong><br />
<a href="http://www.techcrunch.com/2008/09/01/meet-chrome-googles-windows-killer/">Meet Chrome, Google’s Windows Killer</a><br />
<a href="http://www.techcrunch.com/2008/09/01/first-public-screen-captures-of-google-chrome/">First Images of Google Chrome</a><br />
<a href="http://www.techcrunch.com/2008/09/01/no-joke-google-introduces-its-own-browser-with-a-cartoon/">No Joke: Google Introduces The Chrome Browser With A Cartoon</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ianhoar.com/2008/09/01/google-to-launch-a-web-browser-chrome-is-here/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A Google Android Phone is on the way: HTC Dream</title>
		<link>http://www.ianhoar.com/2008/08/18/a-google-android-phone-is-on-the-way-htc-dream/</link>
		<comments>http://www.ianhoar.com/2008/08/18/a-google-android-phone-is-on-the-way-htc-dream/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 01:59:17 +0000</pubDate>
		<dc:creator>Ian Hoar</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Smartphones]]></category>

		<guid isPermaLink="false">http://www.ianhoar.com/?p=1366</guid>
		<description><![CDATA[Over the past few days the web has been awash with rumours of the HTC Dream, a Google Android phone. Well it looks official now, HTC will be releasing the phone very soon and it may be available as soon as September. It has received F.C.C. certification and T-Mobile the US carrier will be first [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-204 thumbRight" title="Android" src="http://www.ianhoar.com/wp-content/uploads/2008/06/android_logo.png" alt="Android" width="180" height="180" />Over the past few days the web has been awash with rumours of the HTC Dream, a Google Android phone. Well it looks official now, <a href="http://www.techcrunch.com/2008/08/18/fcc-greenlights-first-android-phone-htc-dream/">HTC will be releasing the phone very soon</a> and it may be available as soon as September. It has received F.C.C. certification and T-Mobile the US carrier will be first to have it. No word yet on which Canadian carrier will have it or when.</p>
<p>Even though I have an iPhone now I am eagerly awaiting the reviews for the first Android phones. Competition can only be good for everyone. Apple gave the smartphone industry the kick it needed to start innovating and now things are about to be kicked up a notch with Android entering the scene. HTC also seems really serious about releasing great phones as they have proven with the <a href="http://en.wikipedia.org/wiki/HTC_Touch_Diamond">HTC Touch Diamond</a> which was based on Windows mobile. The UI of the Touch Diamond was nicely designed, but only skin deep, hopefully Android gives them the flexability to really flex their muscle and serve up an even better UI.</p>
<p>Google has also finally <a href="http://code.google.com/android/download.html">released an updated Android SDK today</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ianhoar.com/2008/08/18/a-google-android-phone-is-on-the-way-htc-dream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

