<?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>8degrees of vaughan rowsell &#187; Web</title>
	<atom:link href="http://www.8degrees.co.nz/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.8degrees.co.nz</link>
	<description>Web Entrepreneur and Application Architect</description>
	<lastBuildDate>Wed, 09 Jun 2010 20:54:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Dynamically resize an iframe depending on it&#8217;s content</title>
		<link>http://www.8degrees.co.nz/2010/06/09/dynamically-resize-an-iframe-depending-on-its-content/</link>
		<comments>http://www.8degrees.co.nz/2010/06/09/dynamically-resize-an-iframe-depending-on-its-content/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 01:36:23 +0000</pubDate>
		<dc:creator>Vaughan Rowsell</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://www.8degrees.co.nz/?p=535</guid>
		<description><![CDATA[A while back I figured out a neat trick to enable you to resize an iframe embedded on someone else&#8217;s page depending on the size of it&#8217;s contents. The problem is this. You have a widget that you want other people to be able to embed in the pages of their website, and you want [...]]]></description>
			<content:encoded><![CDATA[<p>A while back I figured out a neat trick to enable you to resize an iframe embedded on someone else&#8217;s page depending on the size of it&#8217;s contents.</p>
<p>The problem is this.</p>
<p>You have a widget that you want other people to be able to embed in the pages of their website, and you want to use an iframe to do this.  However the content of the iframe widget is dynamic, and the size of it can vary, depending on the content.  You want the iframe/widget to resize itself to suit the content.</p>
<p>Problem. There is <strong>NO</strong> way to resize an iframe of your content embedded on someone else&#8217;s page from WITHIN the iframe content itself.  No amount of JavaScript or clever twiddling in the page served up in the iframe will allow you to do this.  By design browsers wont let content <strong>from another domain</strong> affect the parent container.  It is far too insecure, this referred to as <a href="http://en.wikipedia.org/wiki/Same_origin_policy" target="_blank" onclick="pageTracker._trackPageview('/outgoing/en.wikipedia.org/wiki/Same_origin_policy?referer=');">same origin policy</a>.  If you are serving up content in the iframe from the <strong>same</strong> domain as the parent page, then you can just use <a href="http://www.phinesolutions.com/use-jquery-to-adjust-the-iframe-height.html" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.phinesolutions.com/use-jquery-to-adjust-the-iframe-height.html?referer=');">JavaScript</a> to do this.</p>
<p>Only the parent container can resize the iframe.  So seeing as the parent container is someone else&#8217;s page that you have no control over, how do you make it aware of the content in the iframe and tell <span style="text-decoration: underline;">it</span> how to resize the iframe?</p>
<p>Solution.  You can do this simply by serving up a dynamic style sheet <strong>with</strong> the iframe code used to embed your widget.  This style sheet (CSS) served up by the same server as the widget content, and it knows what the dynamic content is in the iframe and can figure out how big the iframe needs to be.  This CSS file therefore needs to be a dynamically generated file, as it will need to do some server side calculations to figure out what the dimensions are.</p>
<p>Here is an example of the widget code you would supply.</p>
<p style="padding-left: 30px;">&lt;link href=&#8221;http://your.site/path/to/css.php?<strong><span style="color: #0000ff;">content_id</span></strong>=1234&amp;<strong><span style="color: #993366;">dom_id</span></strong>=iframe_widget&#8221; rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; /&gt;<br />
&lt;iframe <strong><span style="color: #993366;">id</span></strong>=&#8221;iframe_widget&#8221; src=&#8221;http://your.site/path/to/content.php?<strong><span style="color: #0000ff;">content_id</span></strong>=1234&#8243; frameborder=&#8221;0&#8243; width=&#8221;100%&#8221; scrolling=&#8221;no&#8221;&gt;&lt;/iframe&gt;</p>
<p>The style sheet will need to use some server side code to output the correct dimensions for the iframe element style.  Here is an example for dynamically generating this style.</p>
<p style="padding-left: 30px;">&lt;?php</p>
<p style="padding-left: 30px;">$domId = $_GET["<strong><span style="color: #993366;">dom_id</span></strong>"];  //This is the dom element ID of the iframe to generate the style for<br />
$content_id = $_GET["<strong><span style="color: #0000ff;">content_id</span></strong>"]; //This the unique identifier for the content being generated by the widget/iframe</p>
<p style="padding-left: 30px;">/**</p>
<p style="padding-left: 30px;">Using the $content_id, do some magic here to determine what the content is (customer details, list of products, photos etc), and calculate the height etc.  This is simple for things like a list of items where the height of the elements is fixed, but the number is variable.  If the widget is a combination of things that are dependent on font size, width of elements, white-space wrapping etc, it can get a little tricky, but in the end it is all just math.</p>
<p style="padding-left: 30px;">**/</p>
<p style="padding-left: 30px;">$elementHeight = $x * $y + 100;  //This is just an example.</p>
<p style="padding-left: 30px;">?&gt;</p>
<p style="padding-left: 30px;">/* STYLE SHEET STARTS HERE */</p>
<p style="padding-left: 30px;">#&lt;?php echo <strong><span style="color: #993366;">$domId</span></strong>;?&gt;<br />
{<br />
height: &lt;?php echo $elementHeight;?&gt;px;<br />
overflow: hidden;<br />
scroll: none;<br />
}</p>
<p>That&#8217;s it.  Nice and simple-ish.  Only tricky if the content of the iframe wildly varies.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.8degrees.co.nz/2010/06/09/dynamically-resize-an-iframe-depending-on-its-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tourism Futures 2050</title>
		<link>http://www.8degrees.co.nz/2010/02/03/tourism-futures-2050/</link>
		<comments>http://www.8degrees.co.nz/2010/02/03/tourism-futures-2050/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 21:11:14 +0000</pubDate>
		<dc:creator>Vaughan Rowsell</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[Tourism]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.8degrees.co.nz/?p=506</guid>
		<description><![CDATA[I was privileged to be invited along to participate on the NZ Tourism 2050 Future Maker project and workshop to discuss themes and issues that NZ will face in the next 40 years. I was in the unfortunate position to be a technologist trying to predict trends 40 years out. Lucky me. I pick… tele-porters… [...]]]></description>
			<content:encoded><![CDATA[<p>I was privileged to be invited along to participate on the NZ Tourism 2050 Future Maker project and workshop to discuss themes and issues that NZ will face in the next 40 years.  I was in the unfortunate position to be a technologist trying to predict trends 40 years out.  Lucky me.  I pick… tele-porters… and Mars tourism? 40 years is an eternity.  I don&#8217;t think 40 years ago my parents thought their grandchildren would be tweeting and FaceBooking from things called iPhones.</p>
<p>Interestingly there were two strong themes that came up time and time again in the discussions.  They were quite different but I saw them to be critically intertwined.</p>
<p>The first issue is the broad one of technology, and everything got lumped in together in this one from the social web, mobile payments, augmented reality, connectivity and mobile information tools.  The one thing everyone agreed is that technology is changing the way people interact and make decisions when they travel.  Interestingly one of the greatest fears/opportunities was the power of social networks, social communication and viral ideas.  I say this is both a fear and an opportunity as clearly the affect can be either positive or negative.</p>
<p>The other top issue was on of our image as 100% pure, clean and green and preserving this and leveraging more off our natural beauty in a world where the environment is going to hell in a handbasket.</p>
<p>Why are these intertwined? Well once upon a time you used the glossiest of brochure with the most stunning of photos promising the best experiences in all your tourism marketing, and then hoped, when the traveller arrives, to deliver on the experience.  Today there is a fear of social media within tourism, and I don&#8217;t expect this is limited to NZ tourism operators.  What if we say we are 100% pure and the world discovers we are not quite 100%, perhaps only 85%, but worse, tweets, blogs and tells all their friends and followers.  What if someone has a bad time? What if the next viral thing is a video of a bad experience or image that breaks the illusion of our 100% clean and green image.  This image is our marketing capital.</p>
<p>The reality is with more and more people using their social web connections as their primary source of information, this image could be damaged if we as a whole can not live up to what we are promising.  Driven from the Auckland Airport into the city before?  Been discussing high intensity beef farming lately? Shipped any coal to china lately?  Okay you cant expect everything to be 100% squeaky clean and I don&#8217;t think that our 100% pure image is so misleading that an angry internet mob will develop and something viral will spread tarnishing our image and turning the world off of visiting our shores. Of course New Zealand is a beautiful and amazing place.  Some of our less cellubrious &#8220;scenes&#8221; are so so.  But today is there is a risk of painting a perfect image to sells plane tickets and beds, and have people picking on all the bad images around NZ that are in direct contrast and have this influence the way they talk about and describe New Zealand socially? Like I say if expectations are consistently not met, there will be negative comments and these will turn off others.  Nothing has changed here, it is the age old power of word of mouth, it is just that technology allows people to share this information more readily.</p>
<p>So forgetting the 100% pure image for now, this marketing campaign has worked well for us for so long but it may be up for an overhaul soon.  The pervasiveness of technology in our lives today and the ability for people to enable others to vicariously share their experiences means that whatever our strategy is, we have to be somewhat genuine in how we promote anything online, whether it is NZ as a whole, a bed and breakfast, or a scenic walk.  But don&#8217;t fear being caught out for not living up to expectations (I think it is in our national psyche to underrate ourselves) but <strong>even better</strong> than that focus on making sure the traveller gets the best experience they can possibly have and then enable <strong>them</strong> to use the social web to do all the good marketing for you.  You can&#8217;t control what people say, but you sure can positively influence it.</p>
<p>So one asset we have got is our natural beauty.  Another asset is our people.  Nobody is more passionate about New Zealand than New Zealanders.  What if we connected travellers to New Zealand with kiwis online? What if we got kiwis to describe places in blog posts. Share trip ideas &#8220;If you are coming to Auckland then you NEED to do &#8230;&#8221;.  Share their own views, photos or videos of <strong>their</strong> New Zealand.  This would create an opportunity for travellers to see NZ through our eyes before they come.</p>
<p>What if tourism operators participated in FourSquare, new checkins today get a complimentary coffee with breakfast, 10% off a bungee.  What if we really engaged as a country with visitors online socially?  No not just a FaceBook page, something smarter and engaging.  Travel is all about seeing new things and meeting new people, <strong>and sharing the experience </strong>with others.  We can make it easier for visitors to connect both with New Zealanders and their own friends back home.</p>
<p>We need to find ways to enable all the organizations tasked with promoting New Zealand as a whole, or particular districts, to engage with travelers online and encourage them to share their experiences while they are here and <strong>still on the buzz</strong> of jumping off a bridge with a bungee around their ankles.  Let them tell the world NZ is 100% cool, 100% awesome, 100% the best country they have ever visited, in their own words.  Enable people to have genuine positive conversations.  The technology is there so what&#8217;s the hold up?</p>
<p>The first barrier, as I talk about above, is the willingness of the tourism industry to engage, but I think we can overcome that.  There is a second major barrier.   We need to find ways to let tourists connect online while they travel without crippling data roaming costs or oppressive WIFI fees.  Right now tourists don&#8217;t often tweet, and post up photos on the go while they are actually feeling the buzz because to do so would make them broke. Free or cheap ubiquitous WIFI is unheard of.  We need to make it easier for travellers to remain connected while they are here.</p>
<p>Here are some ideas:</p>
<ul>
<li>Telecom/Vodafone partner with Tourism NZ to offer tourist SIMs with prepaid data and calls.  Sure you can do this now but it is not at the front of a travellers mind to have to go out of their way to source a prepaid SIM for their phone.  These should be on sale at the airport and at the reception of their accommodation packaged up in deals specially for tourists.  It should be cheap and accessible.</li>
<li>A partnership with a national WIFI network.  What if Tomizone was packaged up to tourists and gave the traveller special online discounts for accommodation and activities only available through the Tomizone network?  There is benefit for all there.</li>
<li>The i-SITEs. What is their future? Well one thing to make them more valid is to offer free WIFI for travellers.  Perhaps even serve drinks and evolve into a travellers meeting place.</li>
<li>At the very least accommodation providers need to offer their WIFI for free.</li>
</ul>
<p>I think the fear of bad exposure through social media is not 100% justified.  NZ really is a great destination (not that I am biased or anything) and for the most part I am sure everyone has an awesome time. The real fear, I believe, is that we are not able to capitalize off of the power of the social web. If we fear that people will say bad things to their friends then will will only discover that yes some people say bad things.  But what if we could facilitate travellers to share all their great comments and experiences?  One thing is for sure, a country our size and with our marketing budget, we need to maximize any opportunity the Internet and technology provides.  Pioneering an integrated approach of new technology and social media into our national tourism strategy may not be a bad start.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.8degrees.co.nz/2010/02/03/tourism-futures-2050/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rhys Darby, only 2 degrees of separation you know</title>
		<link>http://www.8degrees.co.nz/2009/07/05/rhys-darby-only-2-degrees-of-separation-you-know/</link>
		<comments>http://www.8degrees.co.nz/2009/07/05/rhys-darby-only-2-degrees-of-separation-you-know/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 06:45:25 +0000</pubDate>
		<dc:creator>Vaughan Rowsell</dc:creator>
				<category><![CDATA[Getting Things Done]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[stuff I like]]></category>

		<guid isPermaLink="false">http://www.8degrees.co.nz/?p=466</guid>
		<description><![CDATA[Today&#8217;s interconnected world has torn down the barriers and now you can be 2 degrees of separation from the Queen (supposedly) and through social networks this certainly true, follow @rhysiedarby for example. Rhys even plugged my charity bike ride (but then we were mates so that&#8217;s like 1 degree of separation). So we have a [...]]]></description>
			<content:encoded><![CDATA[<p>Today&#8217;s interconnected world has torn down the barriers and now you can be 2 degrees of separation from the Queen (supposedly) and through social networks this certainly true, follow <a href="http://twitter.com/rhysiedarby" onclick="pageTracker._trackPageview('/outgoing/twitter.com/rhysiedarby?referer=');">@rhysiedarby</a> for example.  Rhys even <a href="http://nzuphill.8degrees.co.nz/2009/05/05/rhys-darby-vaughans-big-ride/" onclick="pageTracker._trackPageview('/outgoing/nzuphill.8degrees.co.nz/2009/05/05/rhys-darby-vaughans-big-ride/?referer=');">plugged my charity bike ride</a> (but then we were mates so that&#8217;s like 1 degree of separation).</p>
<p>So we have a new mobile network launching, and who would you rather watch on the ads, <a href="http://www.youtube.com/watch?v=m1GyfLu_HhI" onclick="pageTracker._trackPageview('/outgoing/www.youtube.com/watch?v=m1GyfLu_HhI&amp;referer=');">Richard Hammond</a>, or our very own Rhys?  I know who is funnier.</p>
<p>Now, all 2degrees needs to do now is secure the domain name <a href="http://www.2degrees.co.nz" onclick="pageTracker._trackPageview('/outgoing/www.2degrees.co.nz?referer=');">2degrees.co.nz</a> and their launch would go much more swimmingly.  I do enjoy a drop of pinot now and then so no rush there guys <img src='http://www.8degrees.co.nz/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   </p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/QzCeeuwm6aA&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x006699&#038;color2=0x54abd6"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/QzCeeuwm6aA&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x006699&#038;color2=0x54abd6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.8degrees.co.nz/2009/07/05/rhys-darby-only-2-degrees-of-separation-you-know/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Sneak peak on the Telecom XT network&#8230; from the fringes</title>
		<link>http://www.8degrees.co.nz/2009/05/28/sneak-peak-on-the-telecom-xt-network-from-the-fringes/</link>
		<comments>http://www.8degrees.co.nz/2009/05/28/sneak-peak-on-the-telecom-xt-network-from-the-fringes/#comments</comments>
		<pubDate>Thu, 28 May 2009 08:33:43 +0000</pubDate>
		<dc:creator>Vaughan Rowsell</dc:creator>
				<category><![CDATA[Getting Things Done]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[stuff I like]]></category>

		<guid isPermaLink="false">http://www.8degrees.co.nz/?p=451</guid>
		<description><![CDATA[As you may or may not know I have currently put most of my digital work live on hold and am cycling up the country on a bicycle, tweeting, blogging and posting video as I go all over on http://www.nzuphill.co.nz. Well, the other day I was given a new SIM card for the new Telecom [...]]]></description>
			<content:encoded><![CDATA[<p>As you may or may not know I have currently put most of my digital work live on hold and <a href="http://www.nzuphill.co.nz" onclick="pageTracker._trackPageview('/outgoing/www.nzuphill.co.nz?referer=');">am cycling up the country</a> on a bicycle, tweeting, blogging and posting video as I go all over on <a href="http://www.nzuphill.co.nz" onclick="pageTracker._trackPageview('/outgoing/www.nzuphill.co.nz?referer=');">http://www.nzuphill.co.nz</a>.</p>
<p>Well, the other day I was given a new SIM card for the new Telecom XT network, which I quickly poked into my iPhone. And so I have come out of temporary hiatus on 8degrees.co.nz to let you know what I found. After a quick change to the <a href="http://www.geekzone.co.nz/forums.asp?ForumId=39&#038;TopicId=32983" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.geekzone.co.nz/forums.asp?ForumId=39_038_TopicId=32983&amp;referer=');">APN setting on my iPhone</a> I was away, calling and surfing on the new XT network, and THIS is what I found:</p>
<ol>
<li>Coverage</li>
<li>3G speeds</li>
<li>and all from the fringes of civilisation</li>
</ol>
<p>I must confess I felt like a kid in a candy shop, as I rode my bike from small town to small town with a permanent 3G signal and pretty decent speeds.  The speeds I have been getting are obviously not fast compared to a fixed line DSL, so don&#8217;t be expecting any crazy crazy speeds just yet, but considering I can do 3G things at good 3G speeds from places like Leigh and Mangawhai, well this is a new experience for me.  And if I can get 3G from further up the line as I go, I must say, with only a little hesitation, I would be very very tempted to switch from my 15 year relationship with Vodafone (BellSouth pre Vodafone) and move to <a name='mfnz-biz' target='_blank' href='http://www.madefromnewzealand.com/businesses/telecom-new-zealand' onclick="pageTracker._trackPageview('/outgoing/www.madefromnewzealand.com/businesses/telecom-new-zealand?referer=');">Telecom New Zealand</a> if it allows me to make full use of the iPhone that Vodafone sold me, while sitting in my local Kerikeri cafe, where to date even a basic data connection on Vodafone is a rare thing depending on where you stand on the main street and if the sky is overcast.</p>
<p>So Vodafone will bump things up on their own network soon.  Well they sure as hell have to, as within minutes I  quickly moved (albeit temporally for the moment) onto what so far seems to be a faster broader network and I kept my phone.  If I can have number portability to boot, then what&#8217;s to stop me? (apart from slightly more expensive data plans).  I felt a little hurt that Vodafone let another network provide better toys first.  What about all the 10&#8242;s of thousands of dollars I have sent their way over the years?  Couldn&#8217;t some of it gone towards a better network before Telecom got their act together?</p>
<p>What confuses me is why didn&#8217;t Vodafone upgrade their network pre XT launch?  I have heard from quite a few previously loyal Vodafone customers already saying they are very very tempted to move networks if all Telecom say is true. Well so far I am finding it to be very true, a dramatic improvement on the connections I have been getting on the Vodafone network.  Sure it is not all about data speeds and coverage, there is all the other services that you should probably compare to be 100% apples with apples, but to be honest, my needs are pretty simple.  I want fast data wherever I go.  I don&#8217;t care much for voice mail, or the online interface I use to access my bill.  I pay every month for fast data and <del datetime="2009-05-28T07:46:33+00:00">good</del> great coverage, because without those things I cant access my bill online and I can&#8217;t check my voice mail from anywhere I might be around our beautiful country.</p>
<p>So it is still early days yet.  As I continue my mad mad cycle up the country I will be comparing coverage and data speeds as I go from my bike, from the tops of hills and down in the valleys.  At the beach and in the middle of the towns that until now seem to have been forsaken by GSM networks.  And if I decide I&#8217;m not going to stop at the lighthouse in Cape Reinga, well at least I have the option as a potential Telecom customer to roam to another foreign GSM network with my phone and continue my ride.  Perhaps cycling from one side of Europe to the other&#8230; hmmm&#8230; </p>
]]></content:encoded>
			<wfw:commentRss>http://www.8degrees.co.nz/2009/05/28/sneak-peak-on-the-telecom-xt-network-from-the-fringes/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Make an online newspaper worth reading, please</title>
		<link>http://www.8degrees.co.nz/2009/04/03/make-an-online-newspaper-worth-reading/</link>
		<comments>http://www.8degrees.co.nz/2009/04/03/make-an-online-newspaper-worth-reading/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 20:53:24 +0000</pubDate>
		<dc:creator>Vaughan Rowsell</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[interactive news]]></category>
		<category><![CDATA[online newspapers]]></category>

		<guid isPermaLink="false">http://www.8degrees.co.nz/?p=390</guid>
		<description><![CDATA[A little while ago I saw a fantastic TED talk by Jacek Utko, who told us how through design he helped turn around flagging newspaper readership numbers in Eastern Europe through good design. He basically turned what was your standard boring and drab newspaper format and turned them in to a more designed and visually [...]]]></description>
			<content:encoded><![CDATA[<p>A little while ago I saw a fantastic TED talk by <a href="http://www.ted.com/index.php/talks/jacek_utko_asks_can_design_save_the_newspaper.html" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.ted.com/index.php/talks/jacek_utko_asks_can_design_save_the_newspaper.html?referer=');">Jacek Utko</a>, who told us how through design he helped turn around flagging newspaper readership numbers in Eastern Europe through good design.  He basically turned what was your standard boring and drab newspaper format and turned them in to a more designed and visually rich experience that readers wanted to hold, read and enjoy.</p>
<p style="text-align: center;"><img class="size-medium wp-image-391" title="148_dagens_industri" src="http://www.8degrees.co.nz/wp-content/uploads/2009/04/148_dagens_industri-218x300.jpg" alt="148_dagens_industri" width="127" height="175" /><img class="size-full wp-image-393 alignnone" title="d7" src="http://www.8degrees.co.nz/wp-content/uploads/2009/04/d7.jpg" alt="d7" width="120" height="175" /><img class="alignnone size-full wp-image-392" title="d2" src="http://www.8degrees.co.nz/wp-content/uploads/2009/04/d2.jpg" alt="d2" width="120" height="175" /></p>
<blockquote><p>“Design can change not just your product, it can change your workflow, it can change your company. We just need inspiration, vision, and determination to operate at the highest level. To be good is not enough.” &#8211; Jacek Utko</p></blockquote>
<p>It is no secret that newspapers are facing extinction in the print form.  People are looking online for their source of news and current affairs and they don&#8217;t want to read yesterdays news any more.  The monopoly on news is no longer tightly controlled by the media agencies.  Each day they lose a little bit more control to independent blogs, websites, twitter and Facebook, although slowly, one by one the media agencies are buying these up in an attempt to maintain the control.  No surprise there but they do this so they can continue to replicate a formula that has worked pretty well for them so far, which is.</p>
<ol>
<li>Write some words about something topical which could be news, or opinion</li>
<li>Take a photo to make it more interesting (so it isn&#8217;t all just words)</li>
<li>Add lots of ads</li>
<li>Print it</li>
</ol>
<p>Now, in an age where your teenage kids are producing videos, 3d animations, flash movies, and mashups in their bedrooms, why god why are the online &#8220;newspapers&#8221; not doing the same thing?  Why must they cling so dearly to their archaic model for presenting the news?  White paper, serif font, colour photo.  Sure they have made the paper digital, but it is the same ole same ole when it comes to content.  In fact, the print editions are more interesting and interactive, with their big awkward pages, and the occasional multi-page feature which has some nice colourful graphics.</p>
<p>For the online edition however, I would much rather look at something that is designed, and crafted, to stimulate and engage me.  Just as Apple made a portable music thing-a-majiggy an object of desire through design, newspapers should try to do the same with their news.  Seriously, lets take Jacek&#8217;s ideas another step further.</p>
<p>What if along side the &#8220;news&#8221;, newspapers made an actual attempt to add form to their current (and in many cases lacking) function.  The first thing they could do is actually &#8220;design&#8221; their sites.  Make them visually rich, easy to view, less cluttered and have some semblance of style. Things may not fit into tidy boxes and columns all the time, but they will just have to deal with that.  But not only change the form of the news online into something more attractive in general, what if they, say, ran <em>interactive</em> features along side the day to day news, that gave you in-depth analysis on topical events.  That&#8217;s the cool thing about the web, you don&#8217;t have to have just words and a photo.  There are all sorts of cool things like Flash, JavaScript and Video. Plus each article is it&#8217;s own island, and is not connected to the rest of the news other than by a single link.</p>
<p>There is so much the format of the web allows you to do.  For example, imagine if you can, a digital version of the traditional two-four page spread analysis piece.  This digital version could be well designed visually to stand on its own as sort of a feature portal.  It could be interactive, media rich and highly informative.  Imagine still (are you still imagining?), as an actual example, a dedicated feature on the global financial crisis.  This is a complicated story to report on because there are so many different levels of complexity to it, and it means different things to different people in how it effects them.  Business readers will want to know different things to say, an at home dad, but both are desperate to understand the topic.  Now you could give them a series of individual and non-connected articles on a daily basis that use text and a photo to communicate, or you could:</p>
<ul>
<li>Provide interactive graphs, and timelines demonstrating the scale of the crisis detailing critical events and the impacts on world markets over time.  A nice interactive draggable graphic timeline would do this nicely.  Here is a <a href="http://www.nytimes.com/interactive/2008/09/27/business/economy/20080927_WEEKS_TIMELINE.html" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.nytimes.com/interactive/2008/09/27/business/economy/20080927_WEEKS_TIMELINE.html?referer=');">nice example</a> at the NYT (its a nice start).</li>
<li>Embedded YouTube style video of analysis.  Here is a good one.<br />
<object width="400" height="225" data="http://vimeo.com/moogaloop.swf?clip_id=3261363&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=3261363&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /></object><br />
<a href="http://vimeo.com/3261363" onclick="pageTracker._trackPageview('/outgoing/vimeo.com/3261363?referer=');">The Crisis of Credit Visualized</a> from <a href="http://vimeo.com/jonathanjarvis" onclick="pageTracker._trackPageview('/outgoing/vimeo.com/jonathanjarvis?referer=');">Jonathan Jarvis</a> on <a href="http://vimeo.com" onclick="pageTracker._trackPageview('/outgoing/vimeo.com?referer=');">Vimeo</a>.</li>
<li>Add other interactive elements that provide visual analysis on the crisis.  Like graphs.  Lots and lots of graphs and data depicting the scale of bailouts and blowouts.  I like pictorials and graphics.</li>
<li>Use maps as a visualisation tool, <a href="http://maps.google.co.uk/maps/ms?hl=en&amp;ie=UTF8&amp;msa=0&amp;msid=105384431693060155128.000458e73059239c18120&amp;ll=24.20689,20.039063&amp;spn=151.470086,289.335938&amp;t=h&amp;z=2" target="_blank" onclick="pageTracker._trackPageview('/outgoing/maps.google.co.uk/maps/ms?hl=en_amp_ie=UTF8_amp_msa=0_amp_msid=105384431693060155128.000458e73059239c18120_amp_ll=24.20689_20.039063_amp_spn=151.470086_289.335938_amp_t=h_amp_z=2&amp;referer=');">here is an okay example</a>, but you could do much more exciting things</li>
<li>Provide links off to key news articles elsewhere within the site about the same topic.  Link them coherently, like &#8220;To read more on the effect on the New Zealand economy&#8230;&#8221; .  Visually group the articles together under subject headings so you can see related articles at a glance.</li>
<li>Provide <a href="http://search.twitter.com/search?q=%23creditcrisis" target="_blank" onclick="pageTracker._trackPageview('/outgoing/search.twitter.com/search?q=_23creditcrisis&amp;referer=');">feeds from Twitter</a>, so you can see what other people are thinking about the topic</li>
<li>Have some fun, include a flash game or two.</li>
<li>Wrap the whole feature up in a great fully themed design that stimulates you visually, and entices you to explore, and be informed.  Make the whole thing an experience.</li>
</ul>
<p>Or you could do this:</p>
<p style="text-align: center;"><img class="size-medium wp-image-400 aligncenter" title="picture-26" src="http://www.8degrees.co.nz/wp-content/uploads/2009/04/picture-26-300x217.png" alt="picture-26" width="300" height="217" /></p>
<p style="text-align: center;">
<p>What is wrong with the above (the idea, not Kermit)?  Well for one, newspapers are geared up to write text articles.  They employ journalists and photographers.  They syndicate text and photos through existing channels, that are used to text and photos.  To start producing video, Flash, and other media formats they, the news agencies, would have to evolve considerably.  How would the editorial process work?  What are the costs involved?  Could they outsource the creation of such things to people who are good at doing media rich content?  Possibly.  There is a whole web full of content out there that the online newspapers could be using, but by including information from various sources, feeds and other websites they are potentially losing control of your viewer-ship.  They fear that you may wander off to the sources directly (the Internet lends itself well for this you know) and that means you may look at and click less ads in their website.  Or worse, you might discover another site that is more informative and interesting than the newspapers.</p>
<p>For a newspaper to change from the crap format they have right now, and their sole reliance on advertising to something better and more engaging online, it will cost them.  But, is this a new opportunity for them?  Would you actually pay to be better informed and to get your news presented well?</p>
<p>What if they offered a free &#8220;news and ads&#8221; version of the site (this is pretty much what you get now).  Then, what if for a month by month subscription you can get access to media rich, and more comprehensive detailed analysis on the news and current affairs.  I want to be informed and to learn.  I want the information in forms other than text and photos, and I understand that this costs money to produce.  I am immune to online advertising anyway so they need a better model to earn revenue.  I want to be entertained, and enjoy the news.  If they priced it right I would pay.</p>
<p>Lets say they charged $4 a month (or a dollar a week), and perhaps 5% take up this new news+ option.   If your online readership is 600,000 unique browsers a week/month/year, lets say that adds up to $100,000 a month in news+ subscriptions.  That is $1.2M extra for an online news site like nzherald.co.nz, and for that money you can generate a lot of nice content.  For you at home, for the price of a cup of coffee a week you can get your news looking better, more coherent and interactive.  I would pay it.</p>
<p>Will it happen.  I think it has to. News content on the Internet could be really interactive, engaging, and informative, but at the end of the day it might be hard work and they might need to adapt to new ideas.  It will take some balls to change.  Anyway, I made my New Years resolution to not read online newspapers.  It might take a few more people to do the same before they change their ways.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.8degrees.co.nz/2009/04/03/make-an-online-newspaper-worth-reading/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>stuff.co.nz re-launch</title>
		<link>http://www.8degrees.co.nz/2009/03/07/stuffconz-re-launch/</link>
		<comments>http://www.8degrees.co.nz/2009/03/07/stuffconz-re-launch/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 23:47:38 +0000</pubDate>
		<dc:creator>Vaughan Rowsell</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[stuff I like]]></category>
		<category><![CDATA[site launch]]></category>
		<category><![CDATA[stuff]]></category>
		<category><![CDATA[stuff.co.nz]]></category>

		<guid isPermaLink="false">http://www.8degrees.co.nz/?p=328</guid>
		<description><![CDATA[One of my new years resolutions was to not read the news online through the major news agencies and so far I am enjoying my decision. I am no less informed through other channels than I was before, either that or there is a lot of stuff that I just don&#8217;t care about because I [...]]]></description>
			<content:encoded><![CDATA[<p>One of my new years resolutions was to not read the news online through the major news agencies and so far I am enjoying my decision.  I am no less informed through other channels than I was before, either that or there is a lot of stuff that I just don&#8217;t care about because I don&#8217;t know about it.  However, I heard that stuff.co.nz had relaunched so I had to check it out.  Professional curiosity.</p>
<p>From stuff.co.nz&#8217;s own article on stuff about stuff here is how the new site is described;</p>
<blockquote><p>Stuff, New Zealand’s leading news, sport and entertainment website, has been revamped and upgraded, with a fresh, new look, a range of new features and a major upgrade of the underlying technology to produce a faster, more user-friendly site.</p></blockquote>
<p>First of all I think stuff.co.nz was well overdue for a makeover and change is good for Stuff, as it was looking a tad tired.  However I am not convinced of the new look and usability just yet.  It isn&#8217;t quite working for me (sometimes literally).</p>
<h2>Things I am not so keen on</h2>
<h3><strong>1. A customisable home-page you will never see.</strong></h3>
<p style="text-align: left;">One of the new innovations is a customisable home-page that you can tailor to give you the news you are interested in only.  Hurrah, I love these features on other sites, especially on the customisable Google Home-page.  However if you want to customise the Stuff home-page don&#8217;t get your hopes up too much. The top part of the home-page is fixed and you have no choice as to what content appears here.  Fairfax does.  To get to the areas <em>you</em> can customise you have to scroll down not one screen worth, but two screens worth of compulsory content, then you get your customised content.  So the benefit of this is&#8230;?  If I want to read the technology articles, instead of visiting the home-page and then scrolling down two screens, it is far easier for me to click the big convenient &#8220;Technology&#8221; link in the primary navigation.  A user wants to see their customised content first, hell that&#8217;s why they bothered &#8220;customising&#8221; the page to start with.</p>
<p style="text-align: left;"><strong><em><strong>Tip.</strong></em> </strong>As a user if I want to customise the home page, I want the things I am interested in <strong>at the top </strong>so I can easily find it.  If you want to spam the user with compulsory content and ads on the home page, then dont make the home-page customisable.  It offers no value.</p>
<p><strong></strong></p>
<p><strong></strong></p>
<h3><span style="font-weight: normal;"><strong>2. Changing the nav on users.</strong> </span></h3>
<p><span style="font-weight: normal;">Throughout the Stuff site, and all the other sister Fairfax sites, there is a nav bar right at the top of each and every page.  This nav provides you links to all the sister sites, no matter where you are.  On the Stuff home-page, it is there with links to all my favourite sister sites like Trade Me, Travelbug, Find Someone and Old Friends.   In the middle of the home page is a big colourful navigation bar that has all the sections of the site linked to.  Now, as I click into one of the sections of the Stuff site, the big colourful nav bar I just clicked on vanishes.  WTF? Also the top sister site nav bar changes on me.  It looks the same, but instead of linking to the sister sites, it now becomes the primary nav for the Stuff site, with links to the other sections like National, International, Business etc.  So a user has just clicked into a section, and now the primary nav, the most important navigation device on a site, has effectively GONE.  Not only that, another navigation device (for the sister sites) is also gone, and has transmogrified into the primary nav.</span></p>
<div id="attachment_337" class="wp-caption aligncenter" style="width: 562px"><img class="size-full wp-image-337   " title="Home navigation" src="http://www.8degrees.co.nz/wp-content/uploads/2009/03/picture-10.png" alt="On the home page the navigation is big, bold and in a familiar place" width="552" /><p class="wp-caption-text">On the home page the navigation is big, bold and in a familiar place.  Notice the sister site nav right at top.</p></div>
<div id="attachment_338" class="wp-caption aligncenter" style="width: 562px"><img class="size-full wp-image-338   " title="But click into a section..." src="http://www.8degrees.co.nz/wp-content/uploads/2009/03/picture-11.png" alt="And the navigation is gone!  Oh wait, there it is, up the top where it wasn't before..." width="552" height="152" /><p class="wp-caption-text">Click on the Technology section and BAM, the navigation is gone!  Oh wait, there it is, up the top right where it wasn&#39;t before...  and now I can&#39;t go to Trade Me to sell my stuff.</p></div>
<p><em><strong>Tip.</strong></em><span style="font-weight: normal;"> </span><span style="font-weight: normal;">Keep your primary navigation consistent!  Exclamation mark for emphasis.  As a user I don&#8217;t want to have to learn new things on each page.  I have seen your home-page, which has established the main conventions of using the site for me.  Don&#8217;t change these conventions!  Please keep the navigation bar on every page in the same (or close enough to) the place it was on the home page.</span></p>
<h3><strong>3. The Search UI is Broken.</strong></h3>
<p>After recovering from the nav moving around on me, I really wanted to try out the Google search.  I clicked the &#8220;Search site button&#8221; but alas I got a blank page .   No error message, no nothing.  I click back in my browser and tried again.  After clicking around for a bit I relalised <em>I</em> was using the search wrong.  The &#8220;Search Site&#8221; button is a form submit button, but I could not see the search input field and was clicking &#8220;Search Site&#8221; without specifying what I was searching on.  Have a look below and see if you can spot what I was doing wrong.</p>
<h5 style="text-align: center;"><img class="size-full wp-image-329 aligncenter" title="Spot the search field" src="http://www.8degrees.co.nz/wp-content/uploads/2009/03/picture-2.png" alt="Spot the search field" width="328" height="41" /><strong>Spot the search input field</strong><br />
(hint it is the white box with a white border on a white background.</h5>
<p style="text-align: left;"><strong><em>Tip.</em></strong> Perhaps the search input field should be a little more defined or visible even. (I was using Firefox BTW so am not sure if this field is more visible on IE).</p>
<h3><strong>4. Confusing icons and interactions.</strong></h3>
<p style="text-align: left;">I wanted to remove some of the rubbish like &#8220;Life &amp; Style&#8221; (what the hell is Life &amp; Style).  So there is a pencil <img class="alignnone size-full wp-image-333" title="picture-6" src="http://www.8degrees.co.nz/wp-content/uploads/2009/03/picture-6.png" alt="picture-6" width="24" height="23" /> icon to let me configure each of the panels.  Awesome, here comes the customisation fun, I was excited.  By clicking on the pencil I get a new row roll down underneath the colourful header.  I wanted to remove the panel and what do you know, right underneath the pencil (where my mouse is as I just clicked on the pencil) is an <img class="alignnone size-full wp-image-334" title="picture-7" src="http://www.8degrees.co.nz/wp-content/uploads/2009/03/picture-7.png" alt="picture-7" width="22" height="22" />.  I click the <img class="alignnone size-full wp-image-334" title="picture-7" src="http://www.8degrees.co.nz/wp-content/uploads/2009/03/picture-7.png" alt="picture-7" width="22" height="22" /> and the config row vanishes, but the panel is still there with Prince Charles still grinning like a loon.  What I should have done was click on the word &#8220;remove&#8221; which neither looks like a button nor a link and is all the way on the left.</p>
<p style="text-align: left;"><em><strong>Removing Prince Charles Step 1. Click pencil</strong></em></p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-331" title="picture-5" src="http://www.8degrees.co.nz/wp-content/uploads/2009/03/picture-5.png" alt="picture-5" width="633" height="158" /></p>
<p style="text-align: left;"><strong><em>Removing Prince Charles Step 2. Don&#8217;t click </em></strong><strong><em><img class="alignnone size-full wp-image-334" title="picture-7" src="http://www.8degrees.co.nz/wp-content/uploads/2009/03/picture-7.png" alt="picture-7" width="22" height="22" />, click the word &#8220;remove&#8221;.</em></strong><img class="aligncenter size-full wp-image-332" title="picture-4" src="http://www.8degrees.co.nz/wp-content/uploads/2009/03/picture-4.png" alt="picture-4" width="641" height="170" /></p>
<p style="text-align: left;">Plus, &#8220;remove&#8221; is the only option anyway, so I have to click the pencil, then remove to remove the panel, but remove is the only option.  So why the pencil?</p>
<p style="text-align: left;"><strong><em>Tip. </em></strong>Instead, why not have the remove option <img class="alignnone size-full wp-image-334" title="picture-7" src="http://www.8degrees.co.nz/wp-content/uploads/2009/03/picture-7.png" alt="picture-7" width="22" height="22" /> instead of the config pencil.  Then I can remove panels with only one click, not two.  If at some point you need to give more config options for each panel, like being able to specify the type and the number of articles to show (which would be really useful), then reinstate the pencil.  But right now it is just adding clicks.</p>
<h3><strong>4.1 And while I am talking about the configurable panels&#8230;</strong></h3>
<p style="text-align: left;">I can move the coloured panels around on the left, but not the panels on the right.  If a panel is moveable, then give it an icon indicating this.  At the top of the panels there is a good intro instruction that says:</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-335" title="picture-8" src="http://www.8degrees.co.nz/wp-content/uploads/2009/03/picture-8.png" alt="picture-8" width="396" height="41" /></p>
<p style="text-align: left;">But some content can not be moved.  How do I know what can be moved and what can&#8217;t?</p>
<p style="text-align: left;"><strong>Tip. </strong>Why not put the icon for &#8220;Move content&#8221; (the arrows) that is includedin the instruction, in the panel headers of the panels that are movable?</p>
<h3><strong>5. Give me a sign-in form.</strong></h3>
<p style="text-align: left;">In order to configure the site pages, I need to register with My Stuff.  When I registered with the site I got this brief confirmation message.</p>
<blockquote>
<h1>Success</h1>
<p>You have had your email confirmed, you can now login.</p></blockquote>
<p>But there is no login link or form.  There is a tiny weeny [sign in] link up in the header of the site.  But that says sign in, I want to login.  This is something that catches me out often, so that&#8217;s why I look for it.  Pick a terminology and stick with it.  One day I will learn too.</p>
<p>Also once I have &#8220;Signed in&#8221; the &#8220;Sign in&#8221; link becomes &#8220;Logout&#8221;.</p>
<p><strong><em>Tip. </em></strong>If you have just confirmed someone&#8217;s account, either sign them in auto-magically, or have a sign-in form right there on the confirmation page so the user doesn&#8217;t have to hunt around.  Also be consistent with your terminology.  It is either sign in or login.  Sign in is better, and should also be inversely Sign out.</p>
<h3><strong>6. Slow.</strong></h3>
<p>The site is really slow to load, perhaps not dial-up over broadband speeds, but it is slow.  And here is why:</p>
<ul>
<li><strong>The home page is 1129.9K</strong>.  That is a megabyte and a bit.  Wow.</li>
<li>It has <strong>379K</strong> of JavaScript and <strong>500k</strong> of images.</li>
<li>It is made up of <strong>a whopping 230</strong><strong> </strong><strong>HTTP</strong> requests.</li>
<li><strong>Too many JavaScript files</strong>.  http://static.stuff.co.nz/js/jquery.js and http://static.stuff.co.nz/js/jquery.jqURL.js is included 9 times each. That is 16 requests that can be got rid of for a start. Another tip would be to combine all the scripts together into one request.  The stuff.co.nz homepage has 230 http requests.  A browser typically downloads two resources from the same host at a time.  That is a lot of resources to load all up and simplifying the load of the JS into one file would provide a huge performance boost.</li>
<li><strong>There are no expires headers</strong> on a lot of the resources, so each page is asking for the same images, JavaScript and styles sheets again, and again and again.  An expires header simply tells the browser when an element on a page is due to &#8220;expire&#8221;.  If an image has an expires header of next Thursday, then each time you load the page (until next Thursday) your browser won&#8217;t ask for the image each time, instead it will just use the copy it downloaded last time.  Expires headers are set relative to the first time your browser loads the resource.  So images like photos may never need to expire as the wont change and stuff has set the expiry of these resources into the future to 2037 which is good, however there are a lot of reusable images being loaded from the CSS have  an expire date of yesterday.</li>
<li><strong>Move all the JavaScript to the bottom of the page, please</strong>.  The loading of scripts blocks parallel downloads. Normally your browser will have simultaneous connections for download page elements, so the browser will download two images at a time or more.  However as scripts can affect the rendering of the DOM, if the browser needs to load a script, it blocks all other downloads until the script is loaded and executed.  By moving all the JS to the bottom, before the close of the &lt;/body&gt;, not only do you know the DOM is almost complete so your JS can interact with the DOM safely, all the other resources will have loaded so the JS won&#8217;t block any other requests.</li>
</ul>
<h3>7. Georgia, oh Georgia</h3>
<p>I am not keen on Georgia font for the article titles, then having the content Helvetica.  Pick either a serif font or a sans-serif font.  Mixing them up looks ugly (in my book).</p>
<p><strong><em>Tip</em></strong>.  Go sans-serif, it will tie in with all the other Fairfax sites better.  Verdana or Arial is good.</p>
<h2>Things I like</h2>
<p>The weather in the top left hand corner of the banner.  90% of the time I looked at you Stuff, all I wanted was the weather.  Fabulous!</p>
<p>Over all it <strong>is</strong> a nice change.  Aside from all my criticisms above, which can all be easily fixed, the new look is fresh.  It is an improvement on the old stuff.co.nz.  I think there are some nice ideas coming through in the new site.  I understand it has just launched and there will be ongoing changes needed, as long as the site is refined and some of the things that I have mentioned get fixed I think it will make for an awesome news site.</p>
<p>I am not picking on things for the sake of picking on things.  When I used to read the news online I loved Stuff, and I visited it several times a day.  I would really love the new stuff.co.nz to be better.  I give it a C+ in it&#8217;s current form, and I am sure Stuff will try harder and will make it better.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.8degrees.co.nz/2009/03/07/stuffconz-re-launch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Twitter motivations?</title>
		<link>http://www.8degrees.co.nz/2009/01/23/twitter-motivations/</link>
		<comments>http://www.8degrees.co.nz/2009/01/23/twitter-motivations/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 00:20:01 +0000</pubDate>
		<dc:creator>Vaughan Rowsell</dc:creator>
				<category><![CDATA[Getting Things Done]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[stuff I like]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.8degrees.co.nz/?p=301</guid>
		<description><![CDATA[Do you use Twitter? What are your motives for using it? If you don&#8217;t know what I am talking about, Twitter is an emerging social networking phenomenon that lets anyone &#8220;tweet&#8221; in 140 characters or less their thoughts, opinions or just what they are doing, right at that moment. Anyone can follow your tweets, and [...]]]></description>
			<content:encoded><![CDATA[<p>Do you use Twitter?  What are your motives for using it?</p>
<p>If you don&#8217;t know what I am talking about, Twitter is an emerging social networking phenomenon that lets anyone &#8220;tweet&#8221; in 140 characters or less their thoughts, opinions or just what they are doing, right at that moment.  Anyone can follow your tweets, and you can follow others.  By tuning into different people, you get a stream of thoughts and comments steadily flowing through to you, and you can participate in &#8220;the stream&#8221; by replying to people, or just adding your own thoughts undirected to anyone in particular.</p>
<p>If you have ever used a chat room, Twitter is kind-a like a &#8220;build-your-own&#8221; chat-room, where you choose the members you listen to, but they can&#8217;t necessarily hear you or each other.  Sound confusing?  Sound inane?  Well it is a simple idea, which has strange addictive qualities that people all around the world are discovering.</p>
<p>Different people have different reasons for using Twitter.  In it&#8217;s simplest form it is a tool for participating in conversations with your friends and associates.  Some people manage only a small group of people they follow and the conversations are personal and relevant.  For others it is a tool to build professional and personal networks.  They follow industry conversations.  For others it is a path to Internet stardom, and having large interested audiences they can entertain. For some it is a way to tap into the broad social consciousness, to get a feel for what people are thinking and talking about around the world.</p>
<p>Twitter can be many things to different people, but the common thread is that Twitter is a way to have a conversation with others.</p>
<p>Like always when a new idea starts to get traction, and a community builds around it, people inevitably starting to think how to make money through it, how to sell your wares through Twitter, how to &#8220;cash in&#8221;.  If you say this to the early adopter users of Twitter, the initial reaction is &#8220;Gawd, keep those bastards out&#8221;, the bastards being of course the evil marketers and big bad corporates.  Of course no one wants to be spammed through Twitter, along with everywhere else.  But more and more companies are discovering that Twitter is a way to have conversations with their customers.  Not selling to their customers, but talking with them.  After all you can&#8217;t stop people from talking about you or your products bad or good, but you can choose to be part of that conversation.  Besides, every person, as a user of Twitter, chooses who <em><strong>they</strong></em> want to listen to, so as soon as they get the sales pitch from a company they follow, they have the choice to turn off that conversation.  For companies, the best way to engage with existing or new customers is to have genuine conversations that they want to participate in.  It sounds pretty simple.</p>
<p>So having said that, is there any threat that Twitter will one day be yet another vehicle to be owned by the marketers?  I think right now Twitter is in a bit of an &#8220;Age of Innocence&#8221;, it is becoming incredibly popular, and it is an interface to conversations you would not normally be a participant of.  I can tweet with <a name='mfnz-biz' target='_blank' href='http://www.madefromnewzealand.com/businesses/telecom-new-zealand' onclick="pageTracker._trackPageview('/outgoing/www.madefromnewzealand.com/businesses/telecom-new-zealand?referer=');"> Telecom New Zealand</a> (<a href="http://www.twitter.com/telecomnz" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.twitter.com/telecomnz?referer=');">@telecomnz</a>) and <a href="http://www.vodafone.co.nz" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.vodafone.co.nz?referer=');">Vodafone</a> (<a href="http://www.twitter.com/vodafonenz" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.twitter.com/vodafonenz?referer=');">@vodafonenz</a>), and if I am having a problem with a product or service they are most helpful, due credit to both.  They respond with genuine interest but still in a casual Twitter way.   To be honest this beats calling their call centres hands down.  But then 20 years ago, if you emailed both someone within would have responded the same, with personal interest and enthusiasm because they probably only got one email from a customer each day, and it made a pleasant change.  Will it be different when they have to respond to 5 tweets a second?  Is the &#8220;We have received your tweet and will respond within 1 working day&#8221; message inevitable one day?</p>
<p>Today you can follow your favourite celebs, and tweet with them.  You can quite often even get personal replies from them too.  Is it the fan mail of the new century?  Stephen Fry <a href="http://www.twitter.com/stephenfry" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.twitter.com/stephenfry?referer=');">@stephenfry</a> has a whopping 52,000 follows, and he is in the top ten twitterers worldwide (by follower numbers) so you may not get a personal response from him, but he does write his own tweets.  But when Twitter reaches critical mass will it be harder to participate in conversations with these people, and will they be less genuine?</p>
<p>It will be fascinating to watch what happenes over the next 24 months, and to watch as different market segments adopt Twitter.  Will it be the beginning of the end when after a TV news article, they invite you to &#8220;talk back&#8221; on their twitter address?  Will print advertising invite people to follow products on Twitter?  Will it be good or bad?  At the end of the day, I feel it will be the Twitter users who will decide.</p>
<p>Today I get my news headlines through twitter, I follow interesting celebs, I get information about new product releases (not sales pitches) from companies I am interested in, I get blog feeds and finally, the random thoughts of many many different people (but mostly technology geeks).  All my choice.  My Twitter motivation is to connect with like minded people, and have genuine interesting conversations with them.  As soon as the conversations stop being genuine and interesting I may turn them off.  But right now, Twitter is the wild west/new frontier phase.  No rules, no barriers, and find your own way.</p>
<p>So what are your Twitter motivations?  If you don&#8217;t currently tweet, what would (or wouldn&#8217;t) you use Twitter for?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.8degrees.co.nz/2009/01/23/twitter-motivations/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>3D Flash Saves the Planet</title>
		<link>http://www.8degrees.co.nz/2008/10/16/3d-flash-saves-the-planet/</link>
		<comments>http://www.8degrees.co.nz/2008/10/16/3d-flash-saves-the-planet/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 03:43:12 +0000</pubDate>
		<dc:creator>Vaughan Rowsell</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[stuff I like]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[3D flash application]]></category>
		<category><![CDATA[Eco Zoo]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://8degrees.wordpress.com/?p=198</guid>
		<description><![CDATA[Here is a really cool and engaging flash application that really shows off the great new 3D rendering capabilities of Macromedia Adobe Flash. Explore the tree and learn about its happy friends and how they make a difference in saving the planet. Be sure to pan and scroll around with your mouse, especially when reading [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a really <a title="The Eco Zoo" href="http://ecodazoo.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/ecodazoo.com/?referer=');">cool and engaging flash application</a> that really shows off the great new 3D rendering capabilities of <span style="text-decoration: line-through;">Macromedia</span> Adobe Flash.</p>
<p>Explore the tree and learn about its happy friends and how they make a difference in saving the planet.  Be sure to pan and scroll around with your mouse, especially when reading each of the character&#8217;s pop-up book.  A lot of time and energy must have really gone into this project and it is absolutely magic!</p>
<div id="attachment_34" class="wp-caption aligncenter" style="width: 460px"><a href="http://voomstudio.files.wordpress.com/2008/10/picture-7.png" onclick="pageTracker._trackPageview('/outgoing/voomstudio.files.wordpress.com/2008/10/picture-7.png?referer=');"><img class="size-large wp-image-34" title="Eco Zoo" src="http://voomstudio.files.wordpress.com/2008/10/picture-7.png?w=450" alt="Eco Zoo" width="450" height="218" /></a><p class="wp-caption-text">Eco Zoo</p></div>
<p>The 3D engine in Flash opens a new world of opportunities for the future of Flash.  I have been critical of the lack of true 3D support in the past, but I guess the day has finally arrived where the majority of computers are sufficiently capable of supporting a rendering engine that is fast, and eye-catchingly beautiful enough to carry it off.  This is really what the Flash client is all about, shazam!</p>
<p>Check out <a title="The Eco Zoo" href="http://ecodazoo.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/ecodazoo.com/?referer=');">http://ecodazoo.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.8degrees.co.nz/2008/10/16/3d-flash-saves-the-planet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Engine Marketing for Dummies</title>
		<link>http://www.8degrees.co.nz/2008/10/16/search-engine-marketing-for-dummies/</link>
		<comments>http://www.8degrees.co.nz/2008/10/16/search-engine-marketing-for-dummies/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 02:00:12 +0000</pubDate>
		<dc:creator>Vaughan Rowsell</dc:creator>
				<category><![CDATA[Getting Things Done]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[search engine marketing]]></category>
		<category><![CDATA[search engine optimisation]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://8degrees.wordpress.com/?p=195</guid>
		<description><![CDATA[&#8220;how do I get my site at the top of the Google search results?&#8221; A very popular question that I come across a lot, and something every website owner wants to achieve. Well the good news is that if you follow some pretty basic rules and tips, the search engines will smile upon both you [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;how do I get my site at the top of the Google search results?&#8221;  A very popular question that I come across a lot, and something every website owner wants to achieve.  Well the good news is that if you follow some pretty basic rules and tips, the search engines will smile upon both you and your site, and you will have great success.  Here they are:</p>
<p><strong>Tip #1 &#8211; Understand why people will want to visit</strong></p>
<p>The first tip is really about understanding your audience.  Yep, good old fashioned marketing! You must first understand <em><strong>why</strong></em> your customers will want to come to your site. Of course, there will be some very good reasons, and these will be your products, services and the information your website provides about them.  By understanding <em><strong>what</strong></em> your customers are looking for, you are better able to explain how your company will <em><strong>fulfil their needs</strong></em>.</p>
<p>This seems obvious huh?  In fact this is not really anything specific to search engine marketing, it is more about good marketing.  And so if you understand your customers well enough, this will be reflected as clear effective communication of what value you provide to them, your customers, in your website.  This is important not just because clear communication is good communication, but because from this will come your most important piece of market intelligence, <strong><em>the best keywords to use for your search engine marketing</em>.</strong></p>
<p>Getting your keywords right is one of the most important achievements you can make on the journey to effective search engine marketing.</p>
<p>Bob owns a cheese company that makes a variety of delicious cheeses.  At Bob&#8217;s Cheese they have just launched their new on-line shop for premium cheeses at direct to market discounted prices. They have a brain storming session for keywords and decide that one of their key phrases for on-line search engine marketing is &#8220;delicious Gruyère on-line&#8221;.</p>
<p>Now their cheese may in fact be delicious, and selling it on-line is indeed a bonus, but in reality most people can&#8217;t spell Gruyère and more often than not their target audience is actually looking for &#8220;discount premium cheese&#8221;.  But how do they work this out?</p>
<p>There is a number of ways to work out the best keywords for your site.  You and (if you are fortunate enough) your marketing team, are the most qualified people to figure that out.  Think about your market and how they <strong><em>think</em></strong>.  Here is a sure-fire way to get some good ideas on keywords if you get stuck;</p>
<p>Get together a group of people who represent a good sample of your target audience.  Get a broad spread of people, from computer literate to first time Googlers if you can (if they still exist).  Give them a simple task.  Explain a product or service (without explicitly suggesting YOURS) and get them to imagine they are looking for it online.  One by one get them to bring up a search engine and then <em><strong>watch</strong></em>.  See what they do and what they search on.  Take note of all the words and phrases used and the success the people had with each.  At the end, ask them why they searched on the words they did.  You may be surprised at the terminology and phrases they search on and their explanations why, but out of this exercise you should find some patterns, and a common set of words used.  These will become <em><strong>your keywords</strong></em>.</p>
<p><strong>Tip #2 &#8211; Use your keywords and phrases throughout your site</strong></p>
<p>This is the most common approach to search engine marketing.  Search engines actually &#8220;read&#8221; your pages, and so if you use a lot of keywords in the pages that people search on then the more relevant your website will appear.  The more the search engines think your site is relevant, the higher in the search results you go.</p>
<p>Build up a collection of well thought out and relevant keywords (as per tip #1), and be sure your website <em><strong>talks</strong></em> about them.  Don&#8217;t come up with too many keyword phrases, as you will need to use them all consistently throughout the content of your website. So work out your best phrases and keywords, and incorporate them into your site.  Not only will this give you better chances of search engine success, but it will generally keep your website &#8220;on message&#8221;.</p>
<p>If you succeed in getting visitors to your site with one particular set of keywords, but your site uses different terminology or uses the keywords out of context in the page content, the visitor who found you in the search will end up getting confused and click the back button to the Google search results.  This is referred to as a &#8220;bounce&#8221;, and search engines pick up on this.  The more visitors bounce back from your site with a particular set of keywords, then the search engines will rank your site lower.</p>
<p><strong>Tip #3 &#8211; Use your keywords not only in the page content, but in the title and URLs of your website</strong></p>
<p>This step requires you to carefully design the names of the pages in your site to reflect the subject matter they are about.  Search engines give you &#8220;points&#8221; for using keywords in the content of your pages, but more weight to keywords that appear in the <strong>name</strong> <strong>(URL)</strong> and <strong>title</strong> of a page. So as an example, our cheese company has just created some new pages promoting their on-line premium cheese shop.  By using their primary keywords of &#8220;discount premium cheese&#8221;, they could name the page that talks about this service something like:</p>
<blockquote><p><a href="#">http://www.bobscheese.com/<strong>discount-premium-cheese.html</strong></a></p></blockquote>
<p>This would work better than say:</p>
<blockquote><p><a href="#">http://www.bobscheese.com/index2.html</a></p></blockquote>
<p>which says absolutely nothing about what the page is about.</p>
<p>The page should have the title (that appears in the top of the visitors web browser) of &#8220;Discount premium cheese&#8221; and by using this phrase in the words on the page itself, they would score valuable points with a search engine.  A search engine will understand that the page itself is something to do with &#8220;Discount premium cheese&#8221;.</p>
<p>To go one step further, our cheese shop could include their main keywords in the <strong>base website address</strong> itself.  So instead of using the web address of:</p>
<blockquote><p><a href="#">http://www.bobscheese.com</a></p></blockquote>
<p>they could register and use</p>
<blockquote><p><a href="#">http://www.discountpremiumcheese.com</a></p></blockquote>
<p>So the full address to the page would become</p>
<blockquote><p><a href="#">http://www.discountpremiumcheese.com/discount-premium-cheese.html</a></p></blockquote>
<p>Now not only do the keywords appear in the text of the pages, the title of the page, the name of the page itself, but they are also in the actual website address for the website.</p>
<p>This step may not be practical for some people as their website URL is probably part of their existing brand, and existing website.  However in the case of our fictitious cheese shop, they could register a new URL of <a href="#">discountpremiumcheese.com</a> and use this alongside <a href="#">bobscheese.com</a> for their on-line store only, keeping <a href="#">bobscheese.com</a> as their corporate website.  They could then link to the new <a href="#">www.discountpremiumcheese.com</a> from the home page of <a href="#">www.bobscheese.com</a> and actually get rewarded for this (see tip #4 below).</p>
<p>This is a good tip to consider if you are starting out a new website, but with some clever thinking you could break off some of your exisitng website content under this new URL if that makes sense for what you are doing, like Bob setting up his <em><strong>new</strong></em> online shop.</p>
<p><strong>Tip #4 &#8211; Get other sites to link to your site using <em>your</em> keywords<br />
</strong></p>
<p>This is a well known approach to raising the profile of your site and raising the relevance of your website in search engines.  The more links there are that point to your site, the better as far as search engines are concerned.  Search engines use a technique called &#8220;spidering&#8221;, or &#8220;crawling&#8221;.  This is where a little search engine software robot called a spider (on the world wide web you see) starts reading a web page.  In the page it finds a link to another page or website.  The search engine doing the spidering, upon finding a link then sends off another little electronic spider to follow it to find out where it goes.  That spider finds more links in these pages, and sends off more spiders.  The more links the spiders find, the bigger the army of spiders becomes, and while this army crawls around the web, the more it comes across links to your website from others, and each time the more &#8220;points&#8221; it gives your site.  If lots of sites talk about your site, the more popular it must be, so the more relevant it becomes.</p>
<p>It is vitally important to have your site linked to from other sites, both for search engines and so real people can find your site, but one big mistake most people make is to not get the other sites to <em><strong>use keywords</strong></em> in the link text itself.  The search engine spiders may not necessarily <strong><em>understand</em></strong> why another site links to your site.  It will just find a link and think &#8220;oh here is a link, I will follow it.&#8221; But by using keywords in the link text itself, the spider can understand the link in context and understand <strong><em>what</em></strong> the link is about.</p>
<p>If Bob&#8217;s Cheese can get other sites to link to his site using good keywords then the search engines will associate these keywords with bob&#8217;s site.  So a link like <a href="#">click here for premium discount cheese</a> would give the search engine better context than just <a href="#">visit Bob&#8217;s Cheese</a>.  By doing this the search engine gets the idea that the link has something to do with premium discount cheese, and so associates these keywords with Bob&#8217;s site.  The more sites with links like this pointing to Bob&#8217;s site the more the search engine thinks that Bob&#8217;s site is an authority on premium discount cheese.</p>
<p><strong>Wrap up</strong></p>
<p>So that&#8217;s it for now.  Four simple tips to search engine success.  There are, as always, plenty of other things you can do, but these four things will give you the most value.  No voodoo or black magic is required to get your site up in the search engine rankings, just some sensible steps and a bit of time and effort, and you will get great results.</p>
<p>Lastly if you want <em><strong>instant traffic</strong></em> to your site then have a look at a paid advertising campaign using <a title="Google Adwords" href="http://adwords.google.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/adwords.google.com?referer=');">Google&#8217;s Adwords</a>.  You still need to work out your keywords and get your website content right, but Adwords will give you that instant traffic you desire&#8230; but more on this another time <img src='http://www.8degrees.co.nz/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.8degrees.co.nz/2008/10/16/search-engine-marketing-for-dummies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet name suppression</title>
		<link>http://www.8degrees.co.nz/2008/08/30/internet-name-suppression/</link>
		<comments>http://www.8degrees.co.nz/2008/08/30/internet-name-suppression/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 22:48:45 +0000</pubDate>
		<dc:creator>Vaughan Rowsell</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://8degrees.wordpress.com/?p=173</guid>
		<description><![CDATA[It is amazing how anyone can think you can suppress anything on the Internet that is in the public domain, astounding. I am referring to Judge David Harvey who has put an Internet only suppression on naming the two murder suspects in relation to the murder of Weymouth 14-year-old John Hapeta, but TV and print [...]]]></description>
			<content:encoded><![CDATA[<p>It is amazing how anyone can think you can suppress anything on the Internet that is in the public domain, astounding.  I am referring to Judge David Harvey who has put an <em>Internet only</em> suppression on naming the two murder suspects in relation to the murder of Weymouth 14-year-old John Hapeta, but TV and print is okay.</p>
<p>I think the idea being so people could not google them and be prejudiced prior to the trial perhaps?.  What?  The media are reporting only what is plainly public domain, like the fact they are accused of the murder of John Hapeta.  Anything else someone is likely to find about the two men is already there.  Will this stop people blogging about the trial?  No.  Will it stop people talking about it?  No.  Will it stop people thinking about it?  No.</p>
<p>Now correct me if I am wrong, but are we entitled to free speech still?  I can respect name suppression in general, and understand its importance, but is this a little half-arsed?  By last count, I have found <a title="Google search on names" href="http://www.google.com/search?hl=en&amp;q=%22Judge+David+Harvey%22+%2B(Nathan+AND+Daniel)&amp;btnG=Search" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.google.com/search?hl=en_amp_q=_22Judge+David+Harvey_22+_2B_Nathan+AND+Daniel_amp_btnG=Search&amp;referer=');">atleast 10 posts</a> online already naming the men, plus stuff.co.nz is already <a title="Stuff naming the murder accused" href="http://www.stuff.co.nz/4675046a28.html" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.stuff.co.nz/4675046a28.html?referer=');">openly naming them online</a> (UPDATE: this only lasted a couple of hours, and they have now removed the names from the article).  Once you have one you might as well have 100,000.  It is near impossible to police and to stop.  The Internet has a memory and does not forget.  In fact the more you try and conceal something online, the more prolific it becomes, why?  Just because people don&#8217;t like to be told not to do something, or think something.</p>
<p>So why did Judge David Harvey pick this case?  I am not sure.  It is no more high profile than any other case at the moment or in recent history.  It is not Internet related.  Perhaps it is because these fellows have fairly uncommon names and would be easily googled?  Well the only posts online I found about either were the above posts and articles naming them in connection with the murder.  Is it to test the waters a little?  The media were all taken aback by this one.  Perhaps Judge David Harvey, trying to establish a precedent, was slipping this one through?</p>
<p>Seriously, I can&#8217;t for a moment think that Judge David Harvey is a fool, in fact I suspect he is quite smart and he is very aware of what will come out of this, people will post online the details, the media will challenge him, and there will be a good deal of discussion over the idea of suppression on the Internet of case details and accused identities.</p>
<p>Perhaps there are one or more points being made here.  Here is one.</p>
<p>Does new media creates challenges for a legal system that is built on some basic premises, one being you will be judged by a jury with a relatively unbiased point of view.  Once upon a time you picked from the &#8220;peers&#8221; of the accused a jury, stuck them in a room and they deliberated, went home, perhaps caught the six-o-clock news, and read some stuff about the case in the paper, went back to court and deliberated some more.  Today a juror can google anything.  They can find the accused on Facebook, Bebo, MySpace, LinkedIn.  They can read blogs about the accused, and the case itself.  They can do this from their computer, or their mobile phone, from home, the court, on the way to the court.  There are no rules about what you and I can write about online, and if you do think someone is guilty and have a strong opinion you have every right to say so, don&#8217;t you?  It&#8217;s your opinion.  It may be unqualified, but it is your opinion and your right.  But could this influence the opinion of that juror?  Is that okay?  Is that part of being someone&#8217;s &#8220;peer&#8221; in today&#8217;s society?  &#8220;Geesh, everyone blogging about the case thinks he is guilty, so he must be&#8221;.  Can the Internet find someone guilty?</p>
<p>I don&#8217;t think this will stick and lawyers from the Herald and Fairfax will get involved, but it sure is getting the media thinking and talking about it, which I am guessing was Judge David Harvey&#8217;s goal.  It may have been a bit extreme, but I am guessing he has one or two important points to make and they will come out when &#8220;the media&#8221; challenges it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.8degrees.co.nz/2008/08/30/internet-name-suppression/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
