
<?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/"
	
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Development on a shoestring</title>
	<atom:link href="http://blog.slaven.net.au/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.slaven.net.au</link>
	<description></description>
	<lastBuildDate>Thu, 28 Apr 2011 05:44:46 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9</generator>
	<item>
		<title>How to put the Facebook &#8216;Like&#8217; button on your WordPress blog</title>
		<link>http://blog.slaven.net.au/2010/04/22/how-to-put-the-facebook-like-button-on-your-wordpress-blog/</link>
		<comments>http://blog.slaven.net.au/2010/04/22/how-to-put-the-facebook-like-button-on-your-wordpress-blog/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 03:59:09 +0000</pubDate>
		<dc:creator><![CDATA[glenn]]></dc:creator>
				<category><![CDATA[Developmeny]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://blog.slaven.net.au/archives/2010/04/22/how-to-put-the-facebook-like-button-on-your-wordpress-blog/</guid>
		<description><![CDATA[Facebook has announced at their f8 developers conference a simple little button you can add to any site called the Like Button. This post shows you how to make this work for any page on a WordPress blog. <a href="http://blog.slaven.net.au/2010/04/22/how-to-put-the-facebook-like-button-on-your-wordpress-blog/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Facebook has announced its <a href="http://www.readwriteweb.com/archives/live_blog_mark_zuckerbergs_f8_keynote.php">Facebook for Websites</a> service the their <a href="http://www.readwriteweb.com/archives/live_blog_mark_zuckerbergs_f8_keynote.php">f8 developers conference</a>.&#160; Along with a <a href="http://www.readwriteweb.com/archives/facebook_insights_taking_web_analytics_to_the_next_level.php">bunch of other services</a> is a fairly simple little button you can add to any site called the <a href="http://developers.facebook.com/docs/reference/plugins/like">Like Button</a>.&#160; It works in exactly the same way as liking something on your Facebook newsfeed, but it&#8217;s for any page on the internet.&#160; </p>
<p>This is what the button looks like when it&#8217;s put onto a page:</p>
<p><img style="border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px" border="0" alt="Like button" src="http://blog.slaven.net.au/files/2010/04/image41.png" width="158" height="114" />&#160;</p>
<p>It shows the profile picture of the person who&#8217;s viewing the page (if they&#8217;re logged into Facebook) and how many other people have liked that page. You can see an example of this on my wife&#8217;s site <a href="http://peapillybean.com.au/">Pea Pilly Bean *</a>.</p>
<p>If you click the Like lutton on any page, it will add a like to that page &amp; post a message on your newsfeed that you liked that page, it looks like this:</p>
<p><img style="border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px" border="0" alt="Likes on my newsfeed" src="http://blog.slaven.net.au/files/2010/04/image42.png" width="415" height="80" /></p>
<p>On the <a href="http://developers.facebook.com/docs/reference/plugins/like">Like button page</a> on the Facebook developers site there&#8217;s a handy too that will allow you to generate the code for the button to put on your site. You can put any url in there &amp; it will spit out code that looks like this:</p>
<blockquote><p><code>&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.slaven.net.au%2F&amp;amp;layout=standard&amp;amp;show_faces=true&amp; amp;width=450&amp;amp;action=like&amp;amp;colorscheme=light&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; allowTransparency=&quot;true&quot; style=&quot;border:none; overflow:hidden; width:450px; height:px&quot;&gt;&lt;/iframe&gt;</code> </p></blockquote>
<p>You can stick this on your site &amp; it will work.&#160; The only problem is that it&#8217;s a fixed url.&#160; So if you use your site&#8217;s homepage url when people click it, no matter what page or post they&#8217;re actually looking at, it will always post the link to your homepage.&#160; This is fine, but it would be way more useful if it posted that they were liking the actual post they&#8217;re on.</p>
<p>Fortunately this is really easy to do.&#160; You just need to change the code to this:</p>
<blockquote><p><code>&lt;iframe src=&quot;http://www.facebook.com/plugins/like.php?href=&lt;?php echo urlencode(&#039;http://&#039;.$_SERVER[&#039;SERVER_NAME&#039;].$_SERVER[&#039;REQUEST_URI&#039;]) ?&gt;&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=450&amp;amp;action=like&amp;amp;colorscheme=light&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; allowTransparency=&quot;true&quot; style=&quot;border:none; overflow:hidden; width:450px; height:px&quot;&gt;&lt;/iframe&gt;</code> </p></blockquote>
<p>This will then generate a link button for the page you&#8217;re looking at, rather than for a fixed URL.&#160; To install this either paste this code into your WordPress template somewhere, or to make it even easier install the <a href="http://wordpress.org/extend/plugins/php-code-widget/">PHP Code Widget plugin</a> which allows you to add a widget to your sidebar that you can put PHP code into.&#160; Then just drag the &#8216;PHP Code&#8217; widget onto your sidebar in the Widgets admin section &amp; paste the above code into it</p>
<p><a href="http://blog.slaven.net.au/files/2010/04/image43.png" rel="lightbox"><img style="border-bottom: 0px;border-left: 0px;border-top: 0px;border-right: 0px" border="0" alt="PHP Code Widget" src="http://blog.slaven.net.au/files/2010/04/image_thumb5.png" width="223" height="244" /></a> </p>
<p>Click &#8216;Save&#8217; and you&#8217;re done.&#160; The Like button will now show on every page, with the button referencing this page the person is looking at.</p>
<p>The only thing you may have to change is the &#8217;450&#8242; value for the width in the code.&#160; If you want it to be narrower or wider you&#8217;ll need to change this value</p>
<p><strike>I&#8217;m sure a more sophisticated solution to this will come out fairly soon, but for now this works just fine.</strike> <strong>Update: </strong>There&#8217;s now a bunch of plugins that will replicate this functionality, check the comments of this post for some examples</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slaven.net.au/2010/04/22/how-to-put-the-facebook-like-button-on-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
	
		<media:thumbnail url="http://blog.slaven.net.au/files/2010/04/image41.png" />
		<media:content url="http://blog.slaven.net.au/files/2010/04/image41.png" medium="image">
			<media:title type="html">Like button</media:title>
		</media:content>
		<media:content url="http://blog.slaven.net.au/files/2010/04/image42.png" medium="image">
			<media:title type="html">Likes on my newsfeed</media:title>
		</media:content>
		<media:content url="http://blog.slaven.net.au/files/2010/04/image_thumb5.png" medium="image">
			<media:title type="html">PHP Code Widget</media:title>
		</media:content>
	</item>
		<item>
		<title>NSW Rural Fire Service current incidents map</title>
		<link>http://blog.slaven.net.au/2009/10/27/nsw-rural-fire-service-current-incidents-map/</link>
		<comments>http://blog.slaven.net.au/2009/10/27/nsw-rural-fire-service-current-incidents-map/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 01:28:31 +0000</pubDate>
		<dc:creator><![CDATA[glenn]]></dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Australia]]></category>
		<category><![CDATA[Emergencies]]></category>
		<category><![CDATA[Rural Fire Service]]></category>
		<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://blog.slaven.net.au/archives/2009/10/27/nsw-rural-fire-service-current-incidents-map/</guid>
		<description><![CDATA[The NSW Rural Fire Service (RFS) has provided an RSS feed with the latest updates on bush fires in NSW for a while now, and it&#8217;s a geoRSS feed with lat/long data included so you can see where each incident &#8230; <a href="http://blog.slaven.net.au/2009/10/27/nsw-rural-fire-service-current-incidents-map/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>The <a href="http://www.rfs.nsw.gov.au/">NSW Rural Fire Service (RFS)</a> has <a href="http://www.rfs.nsw.gov.au/dsp_content.cfm?cat_id=683">provided an RSS feed</a> with the latest updates on bush fires in NSW for a while now, and it&#8217;s a geoRSS feed with lat/long data included so you can see where each incident happens.&#160; However it wasn&#8217;t until this week, when their <a href="http://data.australia.gov.au/575">incident</a> and <a href="http://data.australia.gov.au/573">major updates</a> feeds were included in the <a href="http://data.australia.gov.au/">data.australia.gov.au</a> repository that I noticed something else.&#160; They don&#8217;t just have a location point for each fire, they have the actual boundary coordinates included.</p>
<p>This means that Google Maps can create a polygon overlay of each fire, showing its size and location.&#160; I&#8217;ve included it in Google Maps, <a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=http:%2F%2Fwww.rfs.nsw.gov.au%2Ffeeds%2FmajorIncidents.xml&amp;sll=-31.616166,151.59339&amp;sspn=7.649466,9.876709&amp;ie=UTF8&amp;t=h&amp;z=7">you can see it here</a>.&#160; Each place marker includes useful information like description of the location, what council area it&#8217;s in, what type of fire it is and the latest updates. </p>
<p><a href="http://blog.slaven.net.au/files/2009/10/image40.png" rel="lightbox"><img style="border-bottom: 0px;border-left: 0px;border-top: 0px;border-right: 0px" border="0" alt="Fire Incident Info Box" src="http://blog.slaven.net.au/files/2009/10/image_thumb4.png" width="221" height="236" /></a> </p>
<p>But additionally, if you <a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=http:%2F%2Fwww.rfs.nsw.gov.au%2Ffeeds%2FmajorIncidents.xml&amp;sll=-31.616166,151.59339&amp;sspn=7.649466,9.876709&amp;ie=UTF8&amp;t=h&amp;ll=-30.901691,150.990107&amp;spn=0.015061,0.01929&amp;z=16">zoom into one of the incidents</a>, you can see the outline of the location of the fire and really get a feel for its size and what property it&#8217;s near.</p>
<p><a href="http://blog.slaven.net.au/files/2009/10/image39.png" rel="lightbox"><img style="border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px" border="0" alt="Fire Incident Area" src="http://blog.slaven.net.au/files/2009/10/image_thumb3.png" width="462" height="378" /></a></p>
<p>After the <a href="http://en.wikipedia.org/wiki/Black_Saturday_bushfires">devastation of last season&#8217;s bushfires</a>, and the fact that this season is <a href="http://news.ninemsn.com.au/national/870249/nsw-prepares-for-worst-bushfire-season">expected to be very bad</a>, this service is one of many tools people can use to keep up to date.</p>
<p>It&#8217;s also worth giving props to the NSW Rural Fire service. They&#8217;re the only fire service in the country that is providing this level of detail in their public news feeds, and keeping it updated.&#160; Additionally, as far as I can see, theirs is the only dataset on the <a href="http://data.australia.gov.au/">data.australia.gov.au</a> that is actually a live data service rather than a CSV or Excel file download.&#160; If the government wants the data provided <a href="http://mashupaustralia.org/">to be used</a> they&#8217;re going to need to provide more live data. Or at least more up to date than <a href="http://data.australia.gov.au/365">last years crime data</a>.</p>
<p>The map below has the RFS incident feed embedded, so it will update as the RSS feed from the RFS is updates. You can click on the link at the bottom to go to Google Maps, where you can add this map to your &#8216;My Maps&#8217; section for later.</p>
<p><a href="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=http:%2F%2Fwww.rfs.nsw.gov.au%2Ffeeds%2FmajorIncidents.xml&amp;sll=-31.616166,151.59339&amp;sspn=7.649466,9.876709&amp;ie=UTF8&amp;t=h&amp;ll=-30.779598,150.974121&amp;spn=6.604163,9.338379&amp;z=6">View Larger Map</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slaven.net.au/2009/10/27/nsw-rural-fire-service-current-incidents-map/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:thumbnail url="http://blog.slaven.net.au/files/2009/10/image_thumb4.png" />
		<media:content url="http://blog.slaven.net.au/files/2009/10/image_thumb4.png" medium="image">
			<media:title type="html">Fire Incident Info Box</media:title>
		</media:content>
		<media:content url="http://blog.slaven.net.au/files/2009/10/image_thumb3.png" medium="image">
			<media:title type="html">Fire Incident Area</media:title>
		</media:content>
	</item>
		<item>
		<title>Oh look, another wonderful music service that I won&#8217;t be able to access</title>
		<link>http://blog.slaven.net.au/2009/10/22/oh-look-another-wonderful-music-service-that-i-wont-be-able-to-access/</link>
		<comments>http://blog.slaven.net.au/2009/10/22/oh-look-another-wonderful-music-service-that-i-wont-be-able-to-access/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 02:44:21 +0000</pubDate>
		<dc:creator><![CDATA[glenn]]></dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Australia]]></category>
		<category><![CDATA[Geo-tarding]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blog.slaven.net.au/archives/2009/10/22/oh-look-another-wonderful-music-service-that-i-wont-be-able-to-access/</guid>
		<description><![CDATA[While I am interested in seeing what Google's play will be with this it really underwhelms me, as I know pretty much for sure that I won't be able to access it here in Australia. Or if it is just a music search engine, the vast majority of its results will be unavailable to me. <a href="http://blog.slaven.net.au/2009/10/22/oh-look-another-wonderful-music-service-that-i-wont-be-able-to-access/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><img style="border-right-width: 0px;margin: 0px 5px 0px 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px" border="0" alt="No Entry" align="left" src="http://blog.slaven.net.au/files/2009/10/image37.png" width="178" height="178" /> News is that Google will be <a href="http://www.techcrunch.com/2009/10/21/google-to-partner-with-ilike-and-lala-for-new-music-service/">partnering with iLike and LaLa</a> to provide a music service.&#160; TechCrunch has been pimping the news the last couple of days, with the report being that an announcement is due next week. There is <a href="http://www.techmeme.com/091021/p43#a091021p43">much discussion</a> over what form it will take.&#160; GigaOm&#8217;s Paul Bonanos is sceptical that the new feature will involve actually selling streaming/downloads, where as <a href="http://www.techcrunch.com/2009/10/21/google-music-service-the-screenshots/">TechCrunch is more upbeat</a>. </p>
<p>While I am interested in seeing what Google&#8217;s play will be with this (assuming that the rumours aren&#8217;t all hot air) it really underwhelms me, as I know pretty much for sure that I won&#8217;t be able to access it here in Australia. Or if it is just a music search engine, the vast majority of its results will be unavailable to me. <a href="http://www.pandora.com/restricted">Pandora is unavailable</a>, <a href="http://blog.last.fm/2009/03/30/radio-announcement-revisited">last.fm has us on the &#8216;lite&#8217; version</a>, <a href="http://www.lala.com/">LaLa</a> is locked down. Even iTunes, which we do have access to, is limited in what they can sell to us dirty non-Americans.&#160; </p>
<p>This is not the fault of any of these sites.&#160; This is the fault of the rights holders, the record labels.&#160; Their inability to see the value in &#8216;foreign&#8217; markets and their lack of imagination when it comes to monetisation has led to this <a href="http://www.shootingatbubbles.com/index.php/2008/08/14/geotarding-is-as-useful-as-llama-spit/">ridiculous geotarding</a> that we see not just in the music industry but also in the movie, tv and book publishing industries. As <a href="http://twitter.com/dalziel/statuses/3636744075">I&#8217;ve mentioned before</a>, my money is as good as anyone&#8217;s (better than, if <a href="http://www.ozforex.com.au/cgi-bin/real-time-forex-charts.asp?ccyPair=AUD/USD&amp;period=365">this trend continues</a>) why won&#8217;t you let me pay you for your products?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slaven.net.au/2009/10/22/oh-look-another-wonderful-music-service-that-i-wont-be-able-to-access/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:thumbnail url="http://blog.slaven.net.au/files/2009/10/image37.png" />
		<media:content url="http://blog.slaven.net.au/files/2009/10/image37.png" medium="image">
			<media:title type="html">No Entry</media:title>
		</media:content>
	</item>
		<item>
		<title>Update for TweetDeck desktop, good but still not perfect yet</title>
		<link>http://blog.slaven.net.au/2009/10/16/update-for-tweetdeck-desktop-good-but-still-not-great-yet/</link>
		<comments>http://blog.slaven.net.au/2009/10/16/update-for-tweetdeck-desktop-good-but-still-not-great-yet/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 05:39:32 +0000</pubDate>
		<dc:creator><![CDATA[glenn]]></dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Adobe Air]]></category>
		<category><![CDATA[TweetDeck]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://blog.slaven.net.au/archives/2009/10/16/update-for-tweetdeck-desktop-good-but-still-not-great-yet/</guid>
		<description><![CDATA[TweetDeck have updated their desktop version to version 0.31. There are a fair few improvements. The main one is updated alerts interface which looks much nicer (shiny glass-like semi transparent look) and is more customisable,&#160; including the ability to only &#8230; <a href="http://blog.slaven.net.au/2009/10/16/update-for-tweetdeck-desktop-good-but-still-not-great-yet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://tweetdeck.com/beta/">TweetDeck</a> have <a href="http://tweetdeck.posterous.com/the-real-time-web-at-your-fingertips">updated their desktop version</a> to version 0.31. There are a fair few improvements. The main one is updated alerts interface which looks much nicer (shiny glass-like semi transparent look) and is more customisable,&#160; including the ability to only show alerts for certain columns.&#160; You can also cycle through the new tweets in the alert box, similar the way <a href="http://digsby.com">Digsby&#8217;s alert box</a> works.&#160; You can also pick which quarter of the screen the notification box shows on and whether to see the full alert box or just the new items summary (see below).</p>
<p>&#160;<img style="border-bottom: 0px;border-left: 0px;border-top: 0px;border-right: 0px" border="0" alt="Full alert box" src="http://blog.slaven.net.au/files/2009/10/image34.png" width="369" height="162" /> </p>
<p><img style="border-bottom: 0px;border-left: 0px;border-top: 0px;border-right: 0px" border="0" alt="Summary alert box" src="http://blog.slaven.net.au/files/2009/10/image35.png" width="369" height="59" /> </p>
<p>It would be nice if you could muck with the opacity on the alerts, but no biggie.</p>
<p>Steven Hodson over on The Inquisitr has done a <a href="http://www.inquisitr.com/42936/tweetdeck-teardown/">good rundown of TweeDeck&#8217;s features</a> and what he does &amp; doesn&#8217;t like.&#160; He still isn&#8217;t going to use it for a few reasons, especially because of its lack of spam &amp; keyword filtering and the inability to change the font sizes and a few other UI irritations.&#160; I agree with his points, but these aren&#8217;t deal breakers for me.&#160; For the way I use twitter, it&#8217;s still the best client.</p>
<p>However there is still one issue that really frustrates me, and I don&#8217;t know if it&#8217;s just a limitation of Adobe Air (the software TweetDeck runs on) or whether it&#8217;s just an oversight but it is <em>really</em> annoying that it doesn&#8217;t cache the user profile images.&#160; Every time I scroll up &amp; down the page it has to reload everyone&#8217;s profile picks from Twitter as they scroll into view.</p>
</p>
<p> <span id="more-925"></span>
<p>Using <a href="http://www.fiddlertool.com/">Fiddler</a> (a HTTP request watching program) I grabbed what happens when I scroll down, this is the result:</p>
<p><a href="http://blog.slaven.net.au/files/2009/10/image36.png" rel="lightbox"><img style="border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px" border="0" alt="Fiddler requests" src="http://blog.slaven.net.au/files/2009/10/image_thumb1.png" width="99" height="159" /></a></p>
<p>That&#8217;s 63 requests in one scroll of the mouse wheel, 270Kb every time I scroll. The data isn&#8217;t really the issue, it&#8217;s the fact that making those requests causes the program to slow down.&#160; I must confess this new version seems to scroll smoother than the last version, but it&#8217;s still making all these redundant requests.&#160; I know there are a <a href="http://blog.crankybit.com/notes-adobe-air-local-data-storage-options/">few different storage options</a> in Adobe Air, but I really haven&#8217;t looked into it enough to say whether this is event feasible.</p>
<p>I know this seems like a petty complaint, but it gets irritating, especially when I&#8217;m on a flaky wireless connection &amp; I&#8217;m trying to read tweets that have already been loaded, but the connection has dropped out.&#160; Really it&#8217;s a great piece of software, especially with the iPhone app that syncs with the desktop version.&#160; I&#8217;m only complaining because I use it so much <img src="http://blog.slaven.net.au/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slaven.net.au/2009/10/16/update-for-tweetdeck-desktop-good-but-still-not-great-yet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://blog.slaven.net.au/files/2009/10/image34.png" />
		<media:content url="http://blog.slaven.net.au/files/2009/10/image34.png" medium="image">
			<media:title type="html">Full alert box</media:title>
		</media:content>
		<media:content url="http://blog.slaven.net.au/files/2009/10/image35.png" medium="image">
			<media:title type="html">Summary alert box</media:title>
		</media:content>
		<media:content url="http://blog.slaven.net.au/files/2009/10/image_thumb1.png" medium="image">
			<media:title type="html">Fiddler requests</media:title>
		</media:content>
	</item>
		<item>
		<title>Command &amp; Conquer Red Alert coming to the iPhone &amp; iPod touch</title>
		<link>http://blog.slaven.net.au/2009/10/15/command-conquer-red-alert-coming-to-the-iphone-ipod-touch/</link>
		<comments>http://blog.slaven.net.au/2009/10/15/command-conquer-red-alert-coming-to-the-iphone-ipod-touch/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 01:18:05 +0000</pubDate>
		<dc:creator><![CDATA[glenn]]></dc:creator>
				<category><![CDATA[Computer Games]]></category>
		<category><![CDATA[Command & Conquer]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Red Alert]]></category>
		<category><![CDATA[RTS]]></category>

		<guid isPermaLink="false">http://blog.slaven.net.au/archives/2009/10/15/command-conquer-red-alert-coming-to-the-iphone-ipod-touch/</guid>
		<description><![CDATA[It seems like every week or so an new major gaming title is coming out on the iPhone platform.&#160; This one has me very excited.&#160; I loved C&#38;C I had pretty much all the titles and Red Alert was one &#8230; <a href="http://blog.slaven.net.au/2009/10/15/command-conquer-red-alert-coming-to-the-iphone-ipod-touch/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>It seems like every week or so an new major gaming title is coming out on the iPhone platform.&#160; <a href="http://portal.commandandconquer.com/portal/site/redalert/article/detail?contentId=34b095da51954210VgnVCM1000006017780aRCRD">This one has me very excited</a>.&#160; I loved C&amp;C I had pretty much all the titles and Red Alert was one of the best, remember the <a href="http://cnc.wikia.com/wiki/Attack_Dog">Attack Dogs</a> &amp; the <a href="http://tesladownunder.com/Red%20Alert%20Tesla.htm#Best%20Pics">Tesla Coils</a>?</p>
<p><a href="http://portal.commandandconquer.com/portal/site/redalert/article/detail?contentId=34b095da51954210VgnVCM1000006017780aRCRD"><img style="border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px" border="0" alt="Red Alert iPhone" src="http://blog.slaven.net.au/files/2009/10/kbpo38.jpg" width="468" height="278" /></a></p>
<p><a href="http://blog.slaven.net.au/files/2009/10/2kpkls.jpg" rel="lightbox[screens]"><img style="border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px" border="0" alt="2kpkls" src="http://blog.slaven.net.au/files/2009/10/2kpkls_thumb.jpg" width="184" height="124" /></a> <a href="http://blog.slaven.net.au/files/2009/10/23wodmr.jpg" rel="lightbox[screens]"><img style="border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px" border="0" alt="23wodmr" src="http://blog.slaven.net.au/files/2009/10/23wodmr_thumb.jpg" width="184" height="124" /></a> <a href="http://blog.slaven.net.au/files/2009/10/168e91i.jpg" rel="lightbox[screens]"><img style="border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px" border="0" alt="168e91i" src="http://blog.slaven.net.au/files/2009/10/168e91i_thumb.jpg" width="184" height="124" /></a></p>
<p>The iPhone version will be out on <strike>October 23rd</strike> late October. No word on whether that is for the rest of the world or just the US, but here&#8217;s hoping. There&#8217;s in-game video <a href="http://portal.commandandconquer.com/portal/site/cnc/cnctv/detail?contentId=df574ac98e1b1210VgnVCM100000100d2c0aRCRD">here</a>.</p>
<p>It&#8217;s going to be an RTS, with resource management and unit command and 12 levels. With this &amp; <a href="http://blog.slaven.net.au/archives/2009/10/14/world-of-goo-available-at-any-price/">World of Goo on the iPhone</a>, I&#8217;m never going to be bored on the train again!</p>
<p><strong>Update:</strong> Looks like Apple&#8217;s efficient app review process has delayed the game&#8217;s release.&#160; Colour me surprised. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slaven.net.au/2009/10/15/command-conquer-red-alert-coming-to-the-iphone-ipod-touch/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:thumbnail url="http://blog.slaven.net.au/files/2009/10/kbpo38.jpg" />
		<media:content url="http://blog.slaven.net.au/files/2009/10/kbpo38.jpg" medium="image">
			<media:title type="html">Red Alert iPhone</media:title>
		</media:content>
		<media:content url="http://blog.slaven.net.au/files/2009/10/2kpkls_thumb.jpg" medium="image">
			<media:title type="html">2kpkls</media:title>
		</media:content>
		<media:content url="http://blog.slaven.net.au/files/2009/10/23wodmr_thumb.jpg" medium="image">
			<media:title type="html">23wodmr</media:title>
		</media:content>
		<media:content url="http://blog.slaven.net.au/files/2009/10/168e91i_thumb.jpg" medium="image">
			<media:title type="html">168e91i</media:title>
		</media:content>
	</item>
		<item>
		<title>World of Goo available at any price</title>
		<link>http://blog.slaven.net.au/2009/10/14/world-of-goo-available-at-any-price/</link>
		<comments>http://blog.slaven.net.au/2009/10/14/world-of-goo-available-at-any-price/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 04:34:59 +0000</pubDate>
		<dc:creator><![CDATA[glenn]]></dc:creator>
				<category><![CDATA[Computer Games]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.slaven.net.au/archives/2009/10/14/world-of-goo-available-at-any-price/</guid>
		<description><![CDATA[2DBoy, the makers of World of Goo, have announced that for the game's 1 year birthday they are making it available at any price. <a href="http://blog.slaven.net.au/2009/10/14/world-of-goo-available-at-any-price/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>2DBoy, the makers of World of Goo, <a href="http://2dboy.com/games.php">have announced that for the game&#8217;s 1 year birthday they are making it available at any price</a>.</p>
<p><img style="border-top-width: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px" height="352" alt="World of Goo" src="http://blog.slaven.net.au/files/2009/10/WoG_orderButton_bday.gif" width="468" border="0" /></p>
<p>This is a great idea.&#160; This game is brilliant, it&#8217;s entertaining, funny and at times really hard. For an independent software company who have <a href="http://www.gamasutra.com/php-bin/news_index.php?story=23570">refused to poison their software with useless DRM</a>, this is a masterpiece. You want to get this game, and at any price, it&#8217;s a bargain!</p>
<p>If you haven&#8217;t seen this game before, you can <a href="http://worldofgoo.com/dl2.php?lk=demo">download a demo</a>. For a description of the game, I <a href="http://www.gamesradar.com/wii/world-of-goo/preview/world-of-goo-hands-on/a-20080414145640742098/g-2008030393855783018">defer to Games Radar</a></p>
<blockquote><p>The premise, like any good puzzle game, is simple &#8211; you need to guide a certain number of blobs across increasingly treacherous terrain. The catch (something else every good puzzler needs) is that the blobs have to stay connected like a giant matrix, so you have to literally build them across the stage. Grab one blob with the remote, move him outside the lattice yet still close enough to latch on the rest of his buddies and so on. Eventually you&#8217;ll find a pipe that sucks up the goo and moves it to the next stage. Later you learn that the pipe connects to the World of Goo Corporation, a benign-yet-ominous overseer that uses the goo for drinks, cosmetics and, ahem, personal lubricants. Basically, a mix of Mom&#8217;s Friendly Robot Company and Slurm of Futurama fame.</p>
<p>If it were just a matter of linking blobs together, there wouldn&#8217;t be much of a challenge, would there? That&#8217;s where the physics porn comes in &#8211; your various goo creations will behave as a real-world object, bending, falling and teetering depending on their height and length. One early level had us balancing a goo-bridge out a frog&#8217;s gaping mouth, with spikes lining the ceiling and floor. If we made the bridge too long, it started to droop and touch the spikes, killing all our precious goo. That&#8217;s where pink blobs (balloons, more or less) come into play, and with proper placement, we used them to levitate key areas of the bridge until the end-of-level pipe appeared.</p>
</blockquote>
<div><b><a href="http://www.dailymotion.com/swf/x72eqm">World of Goo Trailer 2 Director&#8217;s Cut</a></b>    <br /><i>by <a href="http://www.dailymotion.com/2dboy">2dboy</a></i></div>
<p>Also, while you can&#8217;t read their blog at the moment due to the huge amount of traffic they&#8217;re getting, <a href="http://2dboy.com/2009/10/13/happy-birthday-world-of-goo/">they announced there that an iPhone version is coming too</a>. Awesome!</p>
<blockquote><p>We have it running well on the iPhone 3GS, and with a little luck we hope to get it running smoothly on the 3G as well. Hopefully more news on this soon.</p>
</blockquote>
<p><img style="border-top-width: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px" height="267" alt="World of Goo iPhone" src="http://blog.slaven.net.au/files/2009/10/wogiphone.jpg" width="464" border="0" />&#160;</p>
<p>Kyle Gabler the co-founder of 2D Boy a while ago posted the soundtrack for World of Goo on his site. <a href="http://kylegabler.com/WorldOfGooSoundtrack/">You can download the whole thing for free</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slaven.net.au/2009/10/14/world-of-goo-available-at-any-price/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://blog.slaven.net.au/files/2009/10/WoG_orderButton_bday.gif" />
		<media:content url="http://blog.slaven.net.au/files/2009/10/WoG_orderButton_bday.gif" medium="image">
			<media:title type="html">World of Goo</media:title>
		</media:content>
		<media:content url="http://blog.slaven.net.au/files/2009/10/wogiphone.jpg" medium="image">
			<media:title type="html">World of Goo iPhone</media:title>
		</media:content>
	</item>
		<item>
		<title>Video of the Australian Left 4 Dead modder who flew Valve&#039;s Gabe Newell out to Australia</title>
		<link>http://blog.slaven.net.au/2009/10/07/video-of-the-australian-left-4-dead-modder-who-flew-valves-gabe-newell-out-to-australia/</link>
		<comments>http://blog.slaven.net.au/2009/10/07/video-of-the-australian-left-4-dead-modder-who-flew-valves-gabe-newell-out-to-australia/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 05:51:05 +0000</pubDate>
		<dc:creator><![CDATA[glenn]]></dc:creator>
				<category><![CDATA[Computer Games]]></category>
		<category><![CDATA[Australia]]></category>
		<category><![CDATA[Left 4 Dead]]></category>
		<category><![CDATA[Valve]]></category>

		<guid isPermaLink="false">http://blog.slaven.net.au/archives/2009/10/07/video-of-the-australian-left-4-dead-modder-who-flew-valves-gabe-newell-out-to-sydney/</guid>
		<description><![CDATA[A Left 4 Dead gamer and mod writer managed to get $3000 raised to fly Valve's Gabe Newell out to Australia after he was left out of the playtest <a href="http://blog.slaven.net.au/2009/10/07/video-of-the-australian-left-4-dead-modder-who-flew-valves-gabe-newell-out-to-australia/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://byteside.com/blog/2009/10/07/aussie-mod-hero-meets-valves-gabe-newell/"> This is just all kinds of awesome</a>:</p>
<blockquote><p>Joe W-A was miffed when the L4D campaign mod he&#8217;d been working on wasn&#8217;t deemed awesome enough to warrant him being flown to Valve HQ to preview L4D2. Other modders were, mostly to get them onside as peer-leaders to counter the odd anti-L4D2 community uprising happening at the time. Anyway, Joe managed to get Gabe Newell to agree to fly to Brisbane, Australia to check out the mod-in-progress &#8211; provided Joe paid the airfare. &#8220;I was just joking&#8221;, said Gabe today. With pure internet inventiveness, Joe got the community rallied and raised the fare in a couple of days. Today in Sydney, the great meeting took place, and we were privileged to witness it. </p></blockquote>
<p>The site he created to <a href="http://flygabenewell.blogspot.com/">raise the funds is here</a>, which has screenshots of the email conversations between Joe and Gabe. Three days to raise AU$3000, now that&#8217;s impressive crowd-sourcing!</p>
<p><a href="http://byteside.com/blog/2009/10/07/aussie-mod-hero-meets-valves-gabe-newell/"><img style="border-right: 0px;border-top: 0px;margin: 0px 5px 0px 0px;border-left: 0px;border-bottom: 0px" height="154" alt="Joe &amp; Gabe" src="http://blog.slaven.net.au/files/2009/10/timthumb.php_.jpg" width="204" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slaven.net.au/2009/10/07/video-of-the-australian-left-4-dead-modder-who-flew-valves-gabe-newell-out-to-australia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://blog.slaven.net.au/files/2009/10/timthumb.php_.jpg" />
		<media:content url="http://blog.slaven.net.au/files/2009/10/timthumb.php_.jpg" medium="image">
			<media:title type="html">Joe &#38; Gabe</media:title>
		</media:content>
	</item>
		<item>
		<title>What is a browser?</title>
		<link>http://blog.slaven.net.au/2009/10/07/what-is-a-browser/</link>
		<comments>http://blog.slaven.net.au/2009/10/07/what-is-a-browser/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 05:31:33 +0000</pubDate>
		<dc:creator><![CDATA[glenn]]></dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://blog.slaven.net.au/?p=897</guid>
		<description><![CDATA[The lack of knowledge that the general public has around the technological tools they use every day is still incredible. <a href="http://blog.slaven.net.au/2009/10/07/what-is-a-browser/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>While this post makes me worry a bit, it in no way suprises me.  The lack of knowledge that the general public has around the technological tools they use every day is still incredible.</p>
<p><a href="http://googleblog.blogspot.com/2009/10/what-is-browser.html"><img src="http://blog.slaven.net.au/files/2009/10/graphs3.png" alt="" width="568" height="169" /></a></p>
<p style="text-align: left">
<p><a href="http://googleblog.blogspot.com/2009/10/what-is-browser.html">Official Google Blog: What is a browser?</a>.</p>
<p>The little video that Jason has done up for this post is well worth pointing people to when they get confused, it&#8217;s a very susinct explaination of the difference between an operating system, a search engine and a browser.</p>
<p>It reminds me of this video where they randomly asked people &#8220;<a href="http://www.youtube.com/watch?v=o4MwTvtyrUQ">What is a browser</a>&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slaven.net.au/2009/10/07/what-is-a-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://blog.slaven.net.au/files/2009/10/graphs3.png" />
		<media:content url="http://blog.slaven.net.au/files/2009/10/graphs3.png" medium="image" />
	</item>
		<item>
		<title>It&#8217;s the end of the world as we know it</title>
		<link>http://blog.slaven.net.au/2009/09/23/its-the-end-of-the-world-as-we-know-it/</link>
		<comments>http://blog.slaven.net.au/2009/09/23/its-the-end-of-the-world-as-we-know-it/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 01:47:52 +0000</pubDate>
		<dc:creator><![CDATA[glenn]]></dc:creator>
				<category><![CDATA[Weather]]></category>
		<category><![CDATA[Australia]]></category>
		<category><![CDATA[Dust Storm]]></category>
		<category><![CDATA[NSW]]></category>

		<guid isPermaLink="false">http://blog.slaven.net.au/archives/2009/09/23/its-the-end-of-the-world-as-we-know-it/</guid>
		<description><![CDATA[A massive dust storm has hit Eastern Australia <a href="http://blog.slaven.net.au/2009/09/23/its-the-end-of-the-world-as-we-know-it/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>So as everyone knows, the east coast of Australia was <a href="http://www.smh.com.au/environment/sydney-turns-red-dust-storm-blankets-city-20090923-g0so.html">covered with a massive dust-storm</a>.</p>
<blockquote><p>The fiery haze was the result of the sun hitting the blanket of dust, Bureau of Meteorology senior forecaster Jane Golding said.</p>
<p>&quot;The reason for the dust is we had some really strong winds in the inland areas of NSW and in South Australia for a sustained period yesterday,&quot; she said.</p>
<p>&quot;That&#8217;s lifted a whole lot of dust off the ground because it&#8217;s quite dry out there. Many of those areas are still drought affected.&quot;</p>
<p>The lifted dust had been carried by the winds into Sydney.</p>
<p>&quot;I&#8217;ve not seen anything like this before,&quot; Ms Golding said.</p>
</blockquote>
<p><a href="http://www.smh.com.au/photogallery/environment/dust-turns-sydney-sky-red/20090923-g0tw.html?selectedImage=0"><img style="border-bottom: 0px;border-left: 0px;margin-left: 0px;border-top: 0px;margin-right: 0px;border-right: 0px" border="0" alt="Sydney Harbour Bridge in dust storm" src="http://blog.slaven.net.au/files/2009/09/91026977600x400.jpg" width="489" height="327" /></a></p>
<p>My wife has some <a href="http://peapillybean.com.au/2009/09/what-we-woke-up-to-this-morning/">photos from our house this morning</a> showing what it looked like when we woke up:</p>
<p><a href="http://peapillybean.com.au/2009/09/what-we-woke-up-to-this-morning/"><img style="border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px" border="0" alt="View from my house" src="http://blog.slaven.net.au/files/2009/09/DSC09523.jpg" width="485" height="326" /></a> </p>
<p><a href="http://www.weatherzone.com.au/satellite.jsp?lt=wzstate&amp;lc=nsw&amp;img=sat_vis&amp;ane=1&amp;anf=1&amp;and=1&amp;ana=3&amp;anb=333&amp;anc=3&amp;lyd=1&amp;lye=1">Weatherzone has some satellite imagery showing the dust</a>, but it&#8217;s mixed up with cloud cover too. The Japanese MTSAT satellite has a <a href="http://www.jma.go.jp/en/gms/largec.html?area=4&amp;element=1&amp;time=200909230000&amp;mode=UTC">good wide shot of Australia</a> showing the dust cloud stretching all the way up to Queensland.</p>
<p><a href="http://www.jma.go.jp/en/gms/largec.html?area=4&amp;element=1&amp;time=200909230000&amp;mode=UTC"><img style="border-bottom: 0px;border-left: 0px;border-top: 0px;border-right: 0px" border="0" alt="MTSAT" src="http://blog.slaven.net.au/files/2009/09/20090923010000.png" width="489" height="496" /></a> </p>
<p>But by far the best footage is this video from Broken Hill in western NSW. (For those who don&#8217;t know <a href="http://maps.google.com.au/maps?q=broken+hill&amp;ie=UTF8&amp;hq=&amp;hnear=Broken+Hill+NSW&amp;gl=au&amp;ei=F325SqrcLKaK6AOos52dAg&amp;ll=-32.68562,142.855225&amp;spn=7.163737,9.876709&amp;t=h&amp;z=7&amp;iwloc=A">this is where Broken Hill</a> is)</p>
<div style="padding-bottom: 0px;margin: 0px;padding-left: 0px;padding-right: 0px;float: none;padding-top: 0px" class="wlWriterEditableSmartContent">
<div></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.slaven.net.au/2009/09/23/its-the-end-of-the-world-as-we-know-it/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:thumbnail url="http://blog.slaven.net.au/files/2009/09/91026977600x400.jpg" />
		<media:content url="http://blog.slaven.net.au/files/2009/09/91026977600x400.jpg" medium="image">
			<media:title type="html">Sydney Harbour Bridge in dust storm</media:title>
		</media:content>
		<media:content url="http://blog.slaven.net.au/files/2009/09/DSC09523.jpg" medium="image">
			<media:title type="html">View from my house</media:title>
		</media:content>
		<media:content url="http://blog.slaven.net.au/files/2009/09/20090923010000.png" medium="image">
			<media:title type="html">MTSAT</media:title>
		</media:content>
	</item>
		<item>
		<title>Bing has 10% search market share. Maybe.</title>
		<link>http://blog.slaven.net.au/2009/09/17/bing-has-10-search-market-share-maybe/</link>
		<comments>http://blog.slaven.net.au/2009/09/17/bing-has-10-search-market-share-maybe/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 07:10:55 +0000</pubDate>
		<dc:creator><![CDATA[glenn]]></dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Search Engines]]></category>

		<guid isPermaLink="false">http://blog.slaven.net.au/archives/2009/09/17/bing-has-10-search-market-share-maybe/</guid>
		<description><![CDATA[So Bing has nabbed 10% of the US search engine market and is now the fastest growing search engine.  I'm not so sure those are real numbers <a href="http://blog.slaven.net.au/2009/09/17/bing-has-10-search-market-share-maybe/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>So the latest news is that <a href="http://www.bing.com/">Microsoft&#8217;s Bing</a> search engine has <a href="http://news.cnet.com/8301-10805_3-10354394-75.html">nabbed 10% of the US search engine market</a> and is now the fastest growing search engine. If <a href="http://calacanis.com/">Jason Calacanis</a> is right, and every 1% of the search market is worth US$1billion then this is a nice chunk of change for Microsoft.&#160; </p>
<p>However I contest that these results should not be encouraging for Microsoft, for a couple of reasons.</p>
<ol>
<li>They&#8217;re still in a bit of a honeymoon phase with Bing.&#160; They&#8217;re still <a href="http://www.bing.com/visualsearch">releasing new functionality</a> (You need to switch to United States to see that) and people are experimenting with it. </li>
<li>But more importantly I think, a lot of IE6 users had their default search set to Bing (<a href="http://thenextweb.com/2009/06/02/microsoft-forcing-bing-ie6-users/">and for a while there, couldn&#8217;t change back</a>).&#160; But none the less a significant proportion of the browsing public still use IE6. <a href="http://marketshare.hitslink.com/browser-market-share.aspx?qprid=2">Around 25% at last count</a>, and a significant proportion of these will have the default search engine set.&#160; <a href="http://www.useit.com/alertbox/defaults.html">Defaults matter</a>.&#160; Also, a fairly large chunk of these IE6 users will be corporate users who <strong>cannot</strong> change what browser they use due to (often misguided) corporate IT rules.&#160;
<p><a href="http://marketshare.hitslink.com/browser-market-share.aspx?qprid=2"><img style="border-bottom: 0px;border-left: 0px;border-top: 0px;border-right: 0px" border="0" alt="Browser Market Share" src="http://blog.slaven.net.au/files/2009/09/CFT0917_09181231914.png" width="608" height="170" /></a> </li>
</ol>
<p>&#160;</p>
<p>What this means in practice is that a lot of those using Bing aren&#8217;t choosing to do so (or are just giving it a shot), and if &amp; when they are able to choose, they&#8217;re likely to go for Google.&#160; As corporate environments ever so slowly upgrade, they&#8217;ll allow users to at least move to better versions of IE, and possibly other browsers.&#160; When you install IE8 it asks you what search engine you want to use, and browsers like Firefox just set it to Google.</p>
<p>So while the month-on-month growth that they&#8217;ve seen over the last few months may be real, I&#8217;m not convinced the base numbers are really representative of persistent usage.&#160; If overnight people dumped IE6 for something better (oh please, Dear Lord, make it so) I think you&#8217;d see Bing&#8217;s usage numbers go through the floor.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.slaven.net.au/2009/09/17/bing-has-10-search-market-share-maybe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://blog.slaven.net.au/files/2009/09/CFT0917_09181231914.png" />
		<media:content url="http://blog.slaven.net.au/files/2009/09/CFT0917_09181231914.png" medium="image">
			<media:title type="html">Browser Market Share</media:title>
		</media:content>
	</item>
	</channel>
</rss>
