<?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>Goosh.co.uk&#187; Goosh.co.uk &#8211; The website of Kev Strong</title>
	<atom:link href="http://www.goosh.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.goosh.co.uk</link>
	<description></description>
	<lastBuildDate>Sun, 29 Aug 2010 11:35:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>SEO Tip: Give your WordPress blog a unique H1</title>
		<link>http://www.goosh.co.uk/web-development/seo-tip-give-your-wordpress-blog-a-unique-h1/</link>
		<comments>http://www.goosh.co.uk/web-development/seo-tip-give-your-wordpress-blog-a-unique-h1/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 09:00:19 +0000</pubDate>
		<dc:creator>Goosh</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.goosh.co.uk/?p=326</guid>
		<description><![CDATA[I manage a few WordPress blogs as do most people involved in SEO, and I have run into a similar problem with all of them – the ability to specify a unique H1 on just the homepage whilst the blog &#38; category titles are the H1’s throughout the rest of the blog.   The majority of [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="margin: 10px; float: right;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.goosh.co.uk%2Fweb-development%2Fseo-tip-give-your-wordpress-blog-a-unique-h1%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.goosh.co.uk%2Fweb-development%2Fseo-tip-give-your-wordpress-blog-a-unique-h1%2F&amp;source=Goosh&amp;style=normal&amp;service=bit.ly&amp;service_api=goosh%3AR_3700a5345fb0809f36a2a8461c362929" height="61" width="50" /><br />
			</a>
		</div>
<p>I manage a few WordPress blogs as do most people involved in SEO, and I have run into a similar problem with all of them – the ability to specify a unique H1 on just the homepage whilst the blog &amp; category titles are the H1’s throughout the rest of the blog.   The majority of WordPress blogs do not allow you to do this and replicate the Blog Title throughout the website.</p>
<p>There are several ways of changing your WordPress template to allow you to setup a unique H1 for your homepage. <span id="more-326"></span> By default, the majority of WordPress templates have the H1 setup as following:</p>
<p><code>&lt;h1&gt;&lt;a href="&lt;?php echo get_option('home'); ?&gt;/"&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/a&gt;&lt;/h1&gt;</code></p>
<p>In the case of my blog, I decided that I would change the WordPress template to show a snippet of text on only the homepage of my blog. To do this I replaced the H1 in the header.php file with a &lt;p&gt; tag, amended the CSS so the style was the same and then added the follow line of PHP text to the index.php file:</p>
<p><code>&lt;?php if(is_home() &amp;&amp; $post==$posts[0] &amp;&amp; !is_paged()) { ?&gt;</code></p>
<p><code>&lt;h1&gt;Custom H1&lt;/h1&gt;</code></p>
<p><code>&lt;P&gt;Custom intro text&lt;/p&gt;</code></p>
<p><code>&lt;?php } ?&gt;</code></p>
<p>Whilst this is acceptable for most blogs, I have encountered instances where I needed to leave the default H1 in its current position on the homepage (such as a replacement logo or strapline) and show it as a &lt;p&gt; tag on all other pages.</p>
<p>To achieve this, you can use the following lines of code in the header.php file:</p>
<p><code>//If the page is only the homepage with post snippets print out the Blog Name as an &lt;h1&gt;</code></p>
<p><code>&lt;?php if(is_home() &amp;&amp; $post==$posts[0] &amp;&amp; !is_paged()) { ?&gt;</code></p>
<p><code>&lt;h1&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/h1&gt;</code></p>
<p><code>&lt;?php } ?&gt;</code></p>
<p><code>//If the page is NOT the homepage, then print out the Blog Name as &lt;p&gt; tag.</code></p>
<p><code>&lt;?php if(!is_home()) { ?&gt;</code></p>
<p><code>&lt;p&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/p&gt;</code></p>
<p><code>&lt;?php } ?&gt;</code></p>
<p>In the instance above, I have set custom classes to replicate the styles so that to the end user the blog looks the same, but for the purposes of SEO I have created a unique H1 to increase relevancy on the homepage of the blog.<br />
<!--a5e05b2eaed548a9ad74d8e109627bec--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.goosh.co.uk/web-development/seo-tip-give-your-wordpress-blog-a-unique-h1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I Am Looking Forward to Think Visibility</title>
		<link>http://www.goosh.co.uk/search-engine-optimisation/why-i-am-looking-forward-to-think-visibility/</link>
		<comments>http://www.goosh.co.uk/search-engine-optimisation/why-i-am-looking-forward-to-think-visibility/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 20:27:24 +0000</pubDate>
		<dc:creator>Goosh</dc:creator>
				<category><![CDATA[Search Engine Optimisation]]></category>

		<guid isPermaLink="false">http://www.goosh.co.uk/?p=321</guid>
		<description><![CDATA[On the 4th September this year I will be heading down to Leeds with Mediaworks to attend Think Visibility. I have to say I am looking forward to it greatly! Having lost my conference virginity earlier in the year SASCon, I am eager to attend further conferences, particularly Think Visibility. Think Visibility has gathered a [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="margin: 10px; float: right;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.goosh.co.uk%2Fsearch-engine-optimisation%2Fwhy-i-am-looking-forward-to-think-visibility%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.goosh.co.uk%2Fsearch-engine-optimisation%2Fwhy-i-am-looking-forward-to-think-visibility%2F&amp;source=Goosh&amp;style=normal&amp;service=bit.ly&amp;service_api=goosh%3AR_3700a5345fb0809f36a2a8461c362929" height="61" width="50" /><br />
			</a>
		</div>
<p>On the 4<sup>th</sup> September this year I will be heading down to Leeds with Mediaworks to attend <a href="http://www.thinkvisibility.com/">Think Visibility</a>. I have to say I am looking forward to it greatly! Having lost my conference virginity earlier in the year <a href="http://www.sascon.co.uk/">SASCon</a>, I am eager to attend further conferences, particularly Think Visibility.<span id="more-321"></span></p>
<p>Think Visibility has gathered a reputation for being packed full of informative speakers from all corners of the SEO Industry, but it is also becoming a fantastic advertisement for the UK SEO scene. Located centrally in terms of the UK, it gathers interest from most SEO’s in the industry in the UK and this allows for all sorts of fun and games (or so I am told).</p>
<p>As an avid <a href="http://twitter.com/goosh">user of Twitter</a>, I have connected with many great SEO’s in the UK and this will be one of the first opportunities I have got to actually meeting them in person. Also, meeting new people and connecting is something that is a side benefit to the amazing list of <a href="http://www.thinkvisibility.com/speakers/">speakers at Think Visibility</a>.  Unfortunately one of the things that most people, including myself, are not particularly good at is networking. Thankfully Dr Peter Meyers (<a href="http://twitter.com/dr_pete">Dr Pete</a>) recently collated a bunch of <a href="http://www.seomoz.org/blog/confessions-of-a-conference-stalker">great tips</a> for conference attendees of all levels of experience which I am sure will help out.</p>
<p>Despite the high quality of <a href="http://www.mediaworks.co.uk/">SEO Newcastle</a> has to offer being very high, we are certainly at the wrong end of the country when it comes to conferences and panel-led events for the SEO industry. One of the main reasons I have had for not attending conferences in the past has been the majority have been held in London. This is why ThinkVis has appealed to me and is attracting many people who would not be willing to travel to London for a one day conference.</p>
<p>Hell, if you need any more reasons to go, check out <a href="http://twitter.com/rishil">Rishi Lakhani</a>’s post on <a href="http://explicitly.me/think-visibiility-september-2010">why you should attend Think Visibility</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goosh.co.uk/search-engine-optimisation/why-i-am-looking-forward-to-think-visibility/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Google Analytics Bombing</title>
		<link>http://www.goosh.co.uk/search-engine-optimisation/google-analytics-bombing/</link>
		<comments>http://www.goosh.co.uk/search-engine-optimisation/google-analytics-bombing/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 08:22:26 +0000</pubDate>
		<dc:creator>Goosh</dc:creator>
				<category><![CDATA[Search Engine Optimisation]]></category>

		<guid isPermaLink="false">http://www.goosh.co.uk/?p=311</guid>
		<description><![CDATA[We work with Google Analytics daily; it provides us with lots of amusement, but also frustrations. During a query that arose in the Mediaworks office surrounding uninviting an invited account from Google Analytics, Dan Hoggan brought to light a slightly annoying, yet deceptively brilliant problem with Google Analytics. Looking into it in a little more [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="margin: 10px; float: right;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.goosh.co.uk%2Fsearch-engine-optimisation%2Fgoogle-analytics-bombing%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.goosh.co.uk%2Fsearch-engine-optimisation%2Fgoogle-analytics-bombing%2F&amp;source=Goosh&amp;style=normal&amp;service=bit.ly&amp;service_api=goosh%3AR_3700a5345fb0809f36a2a8461c362929" height="61" width="50" /><br />
			</a>
		</div>
<p>We work with Google Analytics daily; it provides us with lots of <a href="../general/seo-dirty-mind/">amusement</a>, but also frustrations. During a query that arose in the <a href="http://www.mediaworks.co.uk">Mediaworks</a> office surrounding uninviting an invited account from Google Analytics, <a href="http://twitter.com/danielhoggan">Dan Hoggan</a> brought to light a slightly annoying, yet deceptively brilliant problem with Google Analytics. Looking into it in a little more detail, we discovered a great little trick that you can carry out with Google Analytics to cause chaos and mayhem to a fellow user you don’t like, be it a competitor, an ex-employer or whoever you hold a grudge against.</p>
<p>The process is simple and all you require is the email address of their GA account. You don’t need to know the password or anything else, just the email.</p>
<p><em>Disclaimer: This post is for information only. Do not try this. I do not condone anybody trying this to cause problems be it with malicious intent or otherwise. I’m not responsible for the consequences.<span id="more-311"></span></em></p>
<h2>How does it work?</h2>
<p>As part of Google Analytics you have the ability to grant other GA users’ access to your accounts via a method called Report Access Only.  This enables the person you invited to see the specific profile but not carry out any administrative tasks such as setting up goals.</p>
<p>Since the user cannot choose to accept the invite, let alone remove the invite once the need has passed, they are essentially at your mercy.</p>
<h2>Limitations and Hindrances</h2>
<p>Whilst being unable to remove the account is an annoyance in itself, GA has further limitations that make Google Analytics Bombing even more devastating if a malicious user was to hit your GA account. These currently include:</p>
<ul>
<li>a 50 account limit</li>
<li>a default view of 10 accounts</li>
<li>no way to see the email of the user who provided you access</li>
<li>an ordering system of 1, A</li>
</ul>
<p>These provide a perfect working environment to create mayhem for any Google Analytics users in a variety of ways and the worst part is: there is really no way to combat them&#8230;</p>
<h2>GA Bombing Scenarios</h2>
<h3>Competitor Hijacking</h3>
<p>Imagine you found out what email address your competitor was using to access their Google Analytics account.</p>
<p>You could create 10 new accounts following a numbered list to create a defamatory message when they login&#8230;</p>
<div id="attachment_312" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.goosh.co.uk/wp-content/uploads/2010/07/google-analytics-bombing-example-001-competitors.jpg" rel="lightbox[311]"><img class="size-medium wp-image-312" title="google-analytics-bombing-example-001-competitors" src="http://www.goosh.co.uk/wp-content/uploads/2010/07/google-analytics-bombing-example-001-competitors-300x132.jpg" alt="Google Analytics Bombing - Example 001: Slag Off Your Competitors " width="300" height="132" /></a><p class="wp-caption-text">You guys are so bad at SEO that you rank yourselves at night whilst crying about how bad you SUCK!</p></div>
<h2>Conference/Webinar Humiliation</h2>
<p>Imagine if during a conference, you’re bored of the speaker and they start browsing their analytics account live and show their analytics email address.  Don’t like their speech?  Not a problem, send them this for when they refresh&#8230;</p>
<div id="attachment_313" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.goosh.co.uk/wp-content/uploads/2010/07/google-analytics-bombing-example-002-conference-speaker.jpg" rel="lightbox[311]"><img class="size-medium wp-image-313" title="google-analytics-bombing-example-002-conference-speaker" src="http://www.goosh.co.uk/wp-content/uploads/2010/07/google-analytics-bombing-example-002-conference-speaker-300x132.jpg" alt="Google Analytics Bombing - Example 002: Conference Speaker" width="300" height="132" /></a><p class="wp-caption-text">Does anyone else think that Speaker X looks a bit like a bored Elephant Man sucking salt through a straw?????</p></div>
<h3>Ex-Client who just didn’t “get it”</h3>
<p>Not a problem, send them a report access only screenshot like the one below&#8230;</p>
<div id="attachment_314" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.goosh.co.uk/wp-content/uploads/2010/07/google-analytics-bombing-example-003-ex-client.jpg" rel="lightbox[311]"><img class="size-medium wp-image-314" title="google-analytics-bombing-example-003-ex-client" src="http://www.goosh.co.uk/wp-content/uploads/2010/07/google-analytics-bombing-example-003-ex-client-300x132.jpg" alt="Google Analytics Bombing - Example 003: The Ex Client" width="300" height="132" /></a><p class="wp-caption-text">The reason you did not rank on the 1st page of Google is &#39;cause you&#39;re a tight arse! Spend more than £100 next time!!! P.S. Pay My Invoice!</p></div>
<p>The possibilities are endless, and the annoyance you could carry out is too high to be annoyed. Imagine flooding an agency analytics account with 50 of your own accounts rendering their own account useless; imagine if that agency shared their entire account with someone else and they saw the knock on message? Exactly!</p>
<h2>Google Analytics should fix this</h2>
<p>The team at Google Analytics are a very receptive bunch and love hearing new ideas, but they should definitely look at addressing this problem. Even if they simply fix the ability to remove yourself once you have been invited that would solve the problem.</p>
<p>﻿</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goosh.co.uk/search-engine-optimisation/google-analytics-bombing/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Retarded Google Suggest</title>
		<link>http://www.goosh.co.uk/general/retarded-google-suggest/</link>
		<comments>http://www.goosh.co.uk/general/retarded-google-suggest/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 15:21:57 +0000</pubDate>
		<dc:creator>Goosh</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.goosh.co.uk/?p=307</guid>
		<description><![CDATA[Whilst looking into a potentially new Google SERP highlight, dictionary results, I stumbled across a fantastic Google Suggest&#8230;]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="margin: 10px; float: right;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.goosh.co.uk%2Fgeneral%2Fretarded-google-suggest%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.goosh.co.uk%2Fgeneral%2Fretarded-google-suggest%2F&amp;source=Goosh&amp;style=normal&amp;service=bit.ly&amp;service_api=goosh%3AR_3700a5345fb0809f36a2a8461c362929" height="61" width="50" /><br />
			</a>
		</div>
<p>Whilst looking into a potentially new Google SERP highlight, <a href="http://www.google.co.uk/search?q=manipulated">dictionary results</a>, I stumbled across a fantastic Google Suggest&#8230;</p>
<div id="attachment_308" class="wp-caption aligncenter" style="width: 548px"><a href="http://www.goosh.co.uk/wp-content/uploads/2010/07/retarded-google-suggest.jpg" rel="lightbox[307]"><img class="size-full wp-image-308" title="retarded-google-suggest" src="http://www.goosh.co.uk/wp-content/uploads/2010/07/retarded-google-suggest.jpg" alt="" width="538" height="469" /></a><p class="wp-caption-text">Retarded Google?</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.goosh.co.uk/general/retarded-google-suggest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blizzard Entertainment are about to screw their users privacy over</title>
		<link>http://www.goosh.co.uk/general/blizzard-entertainment-are-about-to-screw-their-users-privacy-over/</link>
		<comments>http://www.goosh.co.uk/general/blizzard-entertainment-are-about-to-screw-their-users-privacy-over/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 11:59:16 +0000</pubDate>
		<dc:creator>Goosh</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.goosh.co.uk/?p=301</guid>
		<description><![CDATA[It was recently announced that World of Warcraft maker, Blizzard Entertainment, are going to take their recent RealID service and implement it across their forums. Users will no longer be posting under their online aliases (character names) but will instead be posting under their real names. I have to say I am shocked at how [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="margin: 10px; float: right;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.goosh.co.uk%2Fgeneral%2Fblizzard-entertainment-are-about-to-screw-their-users-privacy-over%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.goosh.co.uk%2Fgeneral%2Fblizzard-entertainment-are-about-to-screw-their-users-privacy-over%2F&amp;source=Goosh&amp;style=normal&amp;service=bit.ly&amp;service_api=goosh%3AR_3700a5345fb0809f36a2a8461c362929" height="61" width="50" /><br />
			</a>
		</div>
<p>It was <a href="http://news.bbc.co.uk/1/hi/technology/10543100.stm">recently announced</a> that World of Warcraft maker, Blizzard Entertainment, are going to take their recent RealID service and implement it across their forums. Users will no longer be posting under their online aliases (character names) but will instead be <strong>posting under their real names</strong>.</p>
<p>I have to say I am shocked at how incredulous a move this is by Blizzard. Players of World of Warcraft invest A LOT of time into the game, and more often than not they are very competitive. Imagine what damage you could do with someones real name. *cough* Facebook *cough*</p>
<p><span id="more-301"></span>Online gaming has always been synonomous with abusive behaviour, trolling and a lower standard of consequence – thats the beauty of online gaming – you can be somebody else for a few hours and get away from the stresses of “real life”. This change by Blizzard strips all of this away and in an internet savvy age it is easy to gather information on someone starting with just their name.</p>
<h2>What are the alternatives?</h2>
<p>Blizzard has commented that the reason for this move is to combat the state of the forums: “a place where flame wars, trolling and other unpleasantness run wild”.  The main reason for this is the ability for users to create new characters within their accounts (level 1s) and post on the forums under this account hence the trolling and abuse. It’s undetectable by anyone other than Blizzard and is the ultimate veil of anonymity.</p>
<p>To combat this, Blizzard could implement two very simplistic changes:</p>
<ol>
<li>Don’t level level 1’s comment. Make them grind the character to level 10 or something (takes an hour).</li>
<li>Allow users to see ALL characters connected to that account. This will show the “main” character of the troll and allow him to be outed and dealt with by his Guild directly – all online of course!</li>
</ol>
<h2>Incorrect &amp; Expired Details</h2>
<p>This move has also got me thinking of scenarios where this could go wrong.  When you register an account you are asked to supply your real name and relevant details.  If you are underage, you are asked for your parent or guardians details. Also, accounts are sold to other persons on a very regular basis (despite breaching World of Warcrafts ToS).</p>
<p>Imagine if:</p>
<ul>
<li>Your son was making racist comments or sexual reference on Blizzards forums using YOUR name and your boss or family made a search for your name and found it?</li>
<li>The person you sold your account to 3 years ago has been abusive to a person online and that person takes it upon themselves to find that person. Yes, they’d be coming after you!</li>
<li>When you apply for a job you are subconsciously discriminated against because you play World of Warcraft. Breaking the mould of geeky gamers, many senior managers and business executives play the game.</li>
</ul>
<p>When you think about it, the repurcussions of this are very high!</p>
<h2>Privacy Concerns</h2>
<p>Whilst the BBC article touched on “a few rare cases of online gaming disputes spilling out into the real world” it failed to mention that <a href="http://www.eurogamer.net/articles/news010405mmorpgdeath">people</a> have been <a href="http://news.mmosite.com/content/2009-05-06/20090506234640394.shtml">killed</a> over such disputes.</p>
<p>Imagine if you were to remove the veil of anonymity that people have been using to be less than savoury to other people and expose <a href="http://lifehacker.com/329033/how-to-track-down-anyone-online">enough details to track somebody down</a>? At what point does Blizzard get roped into legal proceedings for privacy breaches and called into accountability proceedings.</p>
<p>Surely the recent listing of a Blizzard Employee whose details including his home address, telephone number and family photos all through using only his REAL NAME should be enough to sway Blizzard’s ridiculous minds that this can only end up smelling of flowers.</p>
<p>It won’t, and it will cause Blizzard a world of hurt if they destroy their community this way!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goosh.co.uk/general/blizzard-entertainment-are-about-to-screw-their-users-privacy-over/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Future Thinking: Planning an SEO campaign for an emerging market</title>
		<link>http://www.goosh.co.uk/search-engine-optimisation/future-thinking-planning-an-seo-campaign-for-an-emerging-market/</link>
		<comments>http://www.goosh.co.uk/search-engine-optimisation/future-thinking-planning-an-seo-campaign-for-an-emerging-market/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 09:00:05 +0000</pubDate>
		<dc:creator>Goosh</dc:creator>
				<category><![CDATA[Search Engine Optimisation]]></category>

		<guid isPermaLink="false">http://www.goosh.co.uk/?p=290</guid>
		<description><![CDATA[Wouldn’t it be great to be able to predict some of the largest yielding search results and have an SEO campaign ready for when it happens? Imagine ranking ready for the BP oil spill, Justin Bieber or the iPad? Sometimes, all it takes is a little forward thinking and you can prepare be ready to [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="margin: 10px; float: right;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.goosh.co.uk%2Fsearch-engine-optimisation%2Ffuture-thinking-planning-an-seo-campaign-for-an-emerging-market%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.goosh.co.uk%2Fsearch-engine-optimisation%2Ffuture-thinking-planning-an-seo-campaign-for-an-emerging-market%2F&amp;source=Goosh&amp;style=normal&amp;service=bit.ly&amp;service_api=goosh%3AR_3700a5345fb0809f36a2a8461c362929" height="61" width="50" /><br />
			</a>
		</div>
<p>Wouldn’t it be great to be able to predict some of the largest yielding search results and have an SEO campaign ready for when it happens? Imagine ranking ready for the BP oil spill, Justin Bieber or the iPad? Sometimes, all it takes is a little forward thinking and you can prepare be ready to soak up the traffic.</p>
<p>There are several ways to earmark an emerging market. These can include:</p>
<ul>
<li><a href="http://www.google.com/trends">Google Trends</a>, <a href="http://www.google.com/insights/search/">Seasonal Insights</a> etc.</li>
<li>Real Time Events (e.g. the BP Oil Spill)</li>
<li>Industry/Insider News</li>
<li>A bit of luck!</li>
</ul>
<p>Unfortunately, you have to either be in the right place at the right time, or simply put hard graft into planning and analyzing markets &amp; industries.<span id="more-290"></span></p>
<h2>Keep your ear to the ground</h2>
<p>Whether you are an SEO, a technology enthusiast, a gamer, a passionate fashion follower or simply a fan of anything that has an already thriving presence online you are already in an important position to jump first.</p>
<p>You will already be listening to the right grapevines in the form of blogs, twitter accounts, industry papers etc; All you have to do is keep your eyes &amp; ears open for a new opportunity, simply something no-one has mentioned before.</p>
<p>Take the ever popular gaming industry for example. I’m not talking gambling (e.g. online bingo); I’m talking games consoles, online MMORPG’s etc. There are quite literally hundreds of thousands of new titles for a variety of platforms released yearly. These are perfect opportunities to grab a little bit of brand traffic and rank in advance for something that has not been released yet.</p>
<h3>World of Warcraft: Cataclysm</h3>
<p>A great example of this is the forthcoming expansion pack for World of Warcraft entitled Cataclysm. If you follow this blog, you may know that <a href="../online-marketing/what-world-of-warcraft-taught-me-about-online-marketing/">I am a keen World of Warcraft player</a>.  The developers of World of Warcraft, Blizzard Entertainment, announced the new expansion pack in 2009, with an expected release in 2010. With over 11 million players playing the game as early as 2008, the unsurprising online rumour mill quickly caught steam as to what the expansion was going to be called and it was at this point where the SEO marketer in me should have listened to my own advice. Sadly I didn’t – <strong>I was too busy playing World of Warcraft!</strong></p>
<h2>React quickly</h2>
<p>There is nothing worse than not reacting. Once you have missed the boat, it’s gone and you will rarely get a chance to get on it again.</p>
<p>There are many things you should do when you hear about a potential gold mine of upcoming searches and the first is to get to a domain registrar.</p>
<h2>Snap up the domain names</h2>
<p>Whilst the days of net sitting are long gone, there is no harm in creating great domain names around the planned launch of a new game, piece of hardware, fashion range etc.</p>
<p>Let’s stick with WOW: Cataclysm and look at how you could have jumped on potential traffic generators in an already competitive market.</p>
<h3>Researching potential domain names</h3>
<p>It’s important you understand the market you are entering, particularly if you are new to it. The first step is to research the industry to see what particular searches are often carried out in relation to the market. This can be done through <a href="https://adwords.google.com/select/KeywordToolExternal?forceLegacy=true">Google’s keyword suggest tool</a> if there is a similar market already existing.</p>
<p>In the case of a forthcoming game such as World of Warcraft: Cataclysm there are currently searches around:</p>
<ul>
<li>Release date</li>
<li>Information</li>
<li>Levelling Guides</li>
</ul>
<p>Also, as with most games, the name is often abbreviated. Call Of Duty: Modern Warfare 2, for example, went by the moniker COD6, MW2, COD:MW etc. Sticking true to form, World Of Warcraft: Catalcysm is known in industry circles as WOW:Cata, Cata, Cataclysm etc. This gives a great pool of domain names to possibly target <em>*</em>. A selection of these includes:</p>
<ul>
<li>worldofwarcraftcataclysm.tld</li>
<li>worldofwarcraftcataclysmcheats.tld</li>
<li>worldofwarcraftcataclysmguides.tld</li>
<li>wowcataclysmcheats.tld</li>
<li>wowcataclysmguides.tld</li>
<li>wowcataclys-levelling-guides.tld</li>
<li>wowcataclysminformation.tld</li>
<li>cataclysmguide.tld</li>
<li>cataclysmcheats.tld</li>
<li>etc</li>
</ul>
<p><em>*I haven’t checked to see if these are available, so knock yourself out <img src='http://www.goosh.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </em></p>
<p>Obviously, if you can acquire these domain names with top-level TLD’s you will stand a chance of <a href="../search-engine-optimisation/how-i-easily-got-1st-page-for-an-alcohol-addiction-keyphrase/">achieving 1<sup>st</sup> page rankings</a> much easier than without.</p>
<h3>Become the market leader</h3>
<p>Regurgitate. It’s as simple as that. Unless you are severely connected you won’t get the exclusive that will drive you a tonne of traffic. However, what you can do is be the first to re-release the information thus building up your website as an authority in the market. I’m not advising you to rip off other peoples work. You can easily create fresh &amp; unique content by rewording and reworking their articles and cite them as a source. This will enable your new website to become the first stop for information thus making it a highly linkable source of credible information.</p>
<p>Create Google Alerts, subscribe to RSS readers of popular related websites who WILL get the scoop, monitor the creator of the market’s website (if applicable) to see if anything new gets announced. Finally, get immersed in the sector and get yourself known as an authority on the subject – people might just come to you with the exclusive <img src='http://www.goosh.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<h3>Create reasons for people to link to you</h3>
<p>Another option could be to create linkbait for your emerging market. An idea that has been carried out in the past (particularly by game creators themselves) is a live countdown to the launch date. It’s simple, yet effective.</p>
<h2>Once you&#8217;re there, don’t sit back!</h2>
<p>Once your website is setup with a host of content, a little bit of authority and a following, the worst thing you can do is to let your website degrade and lose the reason for people to link to you. Without links your website will not compete with the other websites that will also be popping up around you.</p>
<h2>What to do when the buzz dies down</h2>
<p>I like to make these decisions on a case-by-case. If you have created a website that is the overriding authority on your targeted market I would simply keep it and milk the link juice for all its worth. Monetize it a little with affiliates and sponsored ads and let it generate cash for you.</p>
<p>However, if it was a flash in the pan and was more of a linkbait idea, you could add a few links to your other websites or even simpler: 301 it to your core website and let the authority of the links seep into your own and give it a little boost.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goosh.co.uk/search-engine-optimisation/future-thinking-planning-an-seo-campaign-for-an-emerging-market/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How Panda Cloud Antivirus Wasted 2 Hours Of My Time</title>
		<link>http://www.goosh.co.uk/technology/how-panda-cloud-antivirus-wasted-2-hours-of-my-time/</link>
		<comments>http://www.goosh.co.uk/technology/how-panda-cloud-antivirus-wasted-2-hours-of-my-time/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 09:05:21 +0000</pubDate>
		<dc:creator>Goosh</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.goosh.co.uk/?p=282</guid>
		<description><![CDATA[I&#8217;m security conscious, as are the majority of Windows OS users, so the need for a good antivirus comes top of my agenda. I also wanted my machine to actually perform. That’s why I chose Panda’s Cloud Antivirus – it’s light on system resources &#38; non-intrusive. However, it also scared the hell out of me [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="margin: 10px; float: right;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.goosh.co.uk%2Ftechnology%2Fhow-panda-cloud-antivirus-wasted-2-hours-of-my-time%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.goosh.co.uk%2Ftechnology%2Fhow-panda-cloud-antivirus-wasted-2-hours-of-my-time%2F&amp;source=Goosh&amp;style=normal&amp;service=bit.ly&amp;service_api=goosh%3AR_3700a5345fb0809f36a2a8461c362929" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;m security conscious, as are the majority of Windows OS users, so the need for a good antivirus comes top of my agenda. I also wanted my machine to actually perform. That’s why I chose Panda’s Cloud Antivirus – it’s light on system resources &amp; non-intrusive. <em>However, it also scared the hell out of me yesterday!</em></p>
<p><em> </em></p>
<div id="attachment_278" class="wp-caption aligncenter" style="width: 444px"><em><em><a href="http://www.goosh.co.uk/wp-content/uploads/2010/06/Panda-Cloud-Antivirus-malware-popup.jpg" rel="lightbox[282]"><img class="size-full wp-image-278" title="Panda-Cloud-Antivirus-malware-popup" src="http://www.goosh.co.uk/wp-content/uploads/2010/06/Panda-Cloud-Antivirus-malware-popup.jpg" alt="You can get the new version! Why wait? Download it now and check out the imrpovements. FREE! Download now. FREE!" width="434" height="154" /></a></em></em><p class="wp-caption-text">You can get the new version!</p></div>
<p><em> </em></p>
<p>The pop up box in the screenshot above set every type of alarm off in my mind as a PC user. Over the years I’ve dealt with work colleagues having malware riddled laptops right through to family members having 0870 porn diallers racking up £400 phone bills, so everything about the screenshot above made me panic as it looks like a malware intrusion trying to get you to run a script or visit a malicious website.<span id="more-282"></span></p>
<h2>Panic!</h2>
<p>After running my preinstalled Antivirus programmes (including Panda Cloud Antivirus) I was checking everything on my system from browser connection settings to check for a proxy hijack through to my router settings &amp; rules just in case it was a manual exploit. I even <a href="http://twitter.com/goosh/status/17025443043">asked on twitter</a> (thanks to <a href="http://www.twitter.com/sharkseo">@SharkSEO</a> for the help) and installed a further three malware/spyware checkers which then had to be run individually.</p>
<p>After two hours or so I then finally found my answer on the good ole search engines.</p>
<h2>You Can Get The New Version!</h2>
<p>After searching for the exact text matches “You can now get the new version!” + “Why wait? Download it now and check out the improvements. FREE!” + “Download now. FREE!” it transpires that this little popup is part of Panda Cloud Antivirus’ update procedure – <strong>not that you could tell this from the popup</strong>. I can only imagine how many people didn’t update their version of Panda Cloud Antivirus because they didn’t trust it.</p>
<p>Users of the internet and PC’s in general are becoming savvier to exploits &amp; viruses and whilst there continues to be a number of victims falling for these types of scams, the worst thing you can do is to advise users that your software is available to be updated via a popup that looks exaclty like the ones you are trying to protect against!</p>
<p><strong>So once again, thanks Panda Security for wasting 2 hours of my time that could have easily been avoided by simply adding the name of your software or branding to the popup!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.goosh.co.uk/technology/how-panda-cloud-antivirus-wasted-2-hours-of-my-time/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Can Twitter Recover From The Fail Whale Disaster?</title>
		<link>http://www.goosh.co.uk/general/can-twitter-recover-from-the-fail-whale-disaster/</link>
		<comments>http://www.goosh.co.uk/general/can-twitter-recover-from-the-fail-whale-disaster/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 20:47:06 +0000</pubDate>
		<dc:creator>Goosh</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.goosh.co.uk/?p=264</guid>
		<description><![CDATA[Over the past couple of weeks you may have noticed Twitter starting to come undone at the seams with a higher level of poor site performance and overall downtime. Whilst regular users of twitter have experienced the Fail Whale, there was a large portion of users who experienced total outage from Twitter last week (Saturday [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="margin: 10px; float: right;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.goosh.co.uk%2Fgeneral%2Fcan-twitter-recover-from-the-fail-whale-disaster%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.goosh.co.uk%2Fgeneral%2Fcan-twitter-recover-from-the-fail-whale-disaster%2F&amp;source=Goosh&amp;style=normal&amp;service=bit.ly&amp;service_api=goosh%3AR_3700a5345fb0809f36a2a8461c362929" height="61" width="50" /><br />
			</a>
		</div>
<p>Over the past couple of weeks you may have noticed Twitter starting to come undone at the seams with a higher level of poor site performance and overall downtime. Whilst regular users of twitter have experienced the <a href="http://en.wikipedia.org/wiki/Twitter#Outages">Fail Whale</a>, there was a large portion of users who experienced <a href="http://engineering.twitter.com/2010/06/perfect-stormof-whales.html">total outage from Twitter</a> last week (Saturday 12<sup>th</sup> June 2010).</p>
<p>The question is, can Twitter recover from their very own need for reputation management<span id="more-264"></span></p>
<h2>What Was To Blame?</h2>
<p>Just as the surge for information brought many business networks down as a result of office workers craving news about 9/11 as it happened, the ability for people to comment live on the World Cup may have brought with it an increase in usage. Twitter says this was not to blame in its own right, but the “complexities that have been inherent in fixing and optimizing our systems before and during the event.”</p>
<h2>The Twitter Revolt</h2>
<p>Twitter is many things: a status, a promotional tool, a chat tool etc. One thing that Twitter has been responsible for in the past is <a href="../general/social-media/vodafoneuk-linkbait-or-not-its-a-dumb-move/">public relations disasters</a>. Unfortunately for Twitter, they themselves started trending for terms such as <a href="http://twitter.com/search?q=%23FailWhale">#failwhale</a> and <a href="http://twitter.com/search?q=%23twitterfail">#twitterfail</a>. Not only were Twitters own users turning on the service through their own platform, but they were also becoming disillusioned with the service &#8211; particularly with <a href="http://blog.twitter.com/2010/06/whats-happening-with-twitter.html">further downtime</a> throughout much of the following week.</p>
<p>The downtime allowed people to become creative in their slander. Several examples include:</p>
<div id="attachment_265" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.goosh.co.uk/wp-content/uploads/2010/06/block-fail-whale.jpg" rel="lightbox[264]"><img class="size-medium wp-image-265" title="block-fail-whale" src="http://www.goosh.co.uk/wp-content/uploads/2010/06/block-fail-whale-300x161.jpg" alt="The Fail Whale - Block Style" width="300" height="161" /></a><p class="wp-caption-text">The Block Fail Whale</p></div>
<div id="attachment_266" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.goosh.co.uk/wp-content/uploads/2010/06/css-fail-whale.jpg" rel="lightbox[264]"><img class="size-medium wp-image-266" title="css-fail-whale" src="http://www.goosh.co.uk/wp-content/uploads/2010/06/css-fail-whale-300x136.jpg" alt="CSS Fail Whale" width="300" height="136" /></a><p class="wp-caption-text">Pure CSS Fail Whale</p></div>
<p style="text-align: center;">(I highly recommend you view the <a href="http://www.subcide.com/articles/pure-css-twitter-fail-whale/">Pure CSS Fail Whale</a> by <a href="http://www.subcide.com/about/">Steve Dennis</a> (requires a webkit browser such as Safari or Chrome))</p>
<div id="attachment_268" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.goosh.co.uk/wp-content/uploads/2010/06/bp-fail-whale-version2.jpg" rel="lightbox[264]"><img class="size-medium wp-image-268" title="bp-fail-whale-version2" src="http://www.goosh.co.uk/wp-content/uploads/2010/06/bp-fail-whale-version2-300x225.jpg" alt="Another BP Fail Whale" width="300" height="225" /></a><p class="wp-caption-text">A BP Fail Whale</p></div>
<div id="attachment_267" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.goosh.co.uk/wp-content/uploads/2010/06/fail-whale-version1.jpg" rel="lightbox[264]"><img class="size-medium wp-image-267" title="fail-whale-version1" src="http://www.goosh.co.uk/wp-content/uploads/2010/06/fail-whale-version1-300x226.jpg" alt="The BP Fail Whale" width="300" height="226" /></a><p class="wp-caption-text">Another BP Fail Whale</p></div>
<p>Several other BP Fail Whales popped up, including a site of its own at <a href="http://www.bpkillsfailwhale.com/">bpkillsfailwhale.com</a></p>
<h2>What Are The Alternatives</h2>
<p>Users continue to be disgruntled at the intermittent outages which have resulted in direct messages being sent several times, updates not sending through third party programs including Echofon, Tweetdeck, Twidroid, loss of tweets, loss of tweet numbers etc.  This has left many users wondering if there are any alternatives to the popular services.</p>
<p>Perhaps Facebook will see a surge in usage whilst people are trying to connect with their friends?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goosh.co.uk/general/can-twitter-recover-from-the-fail-whale-disaster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Image Replacement: When Did It Become Black Hat SEO?</title>
		<link>http://www.goosh.co.uk/search-engine-optimisation/css-image-replacement-when-did-it-become-black-hat-seo/</link>
		<comments>http://www.goosh.co.uk/search-engine-optimisation/css-image-replacement-when-did-it-become-black-hat-seo/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 22:00:40 +0000</pubDate>
		<dc:creator>Goosh</dc:creator>
				<category><![CDATA[Search Engine Optimisation]]></category>

		<guid isPermaLink="false">http://www.goosh.co.uk/?p=255</guid>
		<description><![CDATA[Black Hat SEO is a term that gets bandied around with everything that the “White Hats” deem to be underhanded or to appear to be giving a webmaster an unfair advantage. When a legitimate web design technique gets caught in the crossfire, it annoys me &#8211; especially when the search engines are unable to differentiate [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="margin: 10px; float: right;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.goosh.co.uk%2Fsearch-engine-optimisation%2Fcss-image-replacement-when-did-it-become-black-hat-seo%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.goosh.co.uk%2Fsearch-engine-optimisation%2Fcss-image-replacement-when-did-it-become-black-hat-seo%2F&amp;source=Goosh&amp;style=normal&amp;service=bit.ly&amp;service_api=goosh%3AR_3700a5345fb0809f36a2a8461c362929" height="61" width="50" /><br />
			</a>
		</div>
<p>Black Hat SEO is a term that gets bandied around with everything that the “White Hats” deem to be underhanded or to appear to be giving a webmaster an unfair advantage. When a legitimate web design technique gets caught in the crossfire, it annoys me &#8211; especially when the search engines are unable to differentiate from a useful, (Google) law abiding technique and blatant abuse by spammers.<span id="more-255"></span></p>
<p>With the introduction of CSS came the ability to create beautifully elegant websites that not only worked for the majority of cross-browser users, but also worked with screen readers making it an accessibility evangelist’s wet dream!</p>
<p>Like every new innovation on the internet it was gamed by scrupulous webmasters who were trying to get a cheap fix for their rankings; the same people who abused keyword stuffing, META keyword abuse, hidden JavaScript content etc. Unfortunately this has seen instances of legitimate CSS image replacement get lumped into the same group.</p>
<h2>What is CSS Replacement?</h2>
<p>The purpose of <strong>CSS replacement </strong>is, primarily, to show an image in place of text when CSS is loaded in a supporting browser. When CSS is not loaded, the text will show in its place. This is often used with:</p>
<ul>
<li>Logos</li>
<li>Static Navigations</li>
<li>Promotion Boxes</li>
</ul>
<p>There are <a href="http://www.o2.co.uk/">several</a> <a href="http://www.rac.co.uk/">examples</a> <a href="http://www.tesco.com/">of</a> <a href="http://www.bk.com/en/us/international/index.html">this</a> <a href="http://www.apple.com/">in</a> <a href="http://www.seomoz.org/">force</a> on authoritative sites and it is widely regarded to be one of many valid methods.</p>
<p>It involves using CSS to load an image in the background and off-setting or disabling the text from being shown to enable the logo to be shown in its place. There are several methods such as setting an ID, a class, span wrapping etc. An example piece of code might look like this:</p>
<blockquote><p>#logo {</p>
<p>text-indent: -9000px</p>
<p>background: url(‘/images/logo.png’) top left no-repeat</p>
<p>height: 150px</p>
<p>width: 50px</p>
<p>}</p></blockquote>
<p>However, a friend of mine who works at a very large entertainment outlet was told by his Head of Search “<em>Remove the CSS Image Replacement from the logo as that’s Black Hat!</em>”</p>
<p>Even Maile Ohye, Googles Senior Developer Programs Engineer recently <a href="http://maileohye.com/html-text-indent-not-messing-up-your-rankings/">announced</a> that common CSS replacement methods were advised against. I have to ask at this point: <strong>When did CSS Replacement become Black Hat?</strong></p>
<p>As noted in the examples above, the CSS replacement tactic has been used in exactly the way it was meant to be used: as a replacement for the text.</p>
<p>The simple rule I have always stuck to with CSS image replacement is to replicate the text that is shown in the image. This not only helps accessibility guidelines, but it also benefits SEO as it is actual text on the page as opposed to text in the ALT attribute.</p>
<h2>It must be Black Hat, people are still using it!</h2>
<p>Obviously there are instances common across the web that show abuses of CSS image replacement, but there are also instances of hidden javascript content, META keyword stuffing etc.  The internet is full of stupid people who are willing to try everything to get ahead but thankfully they are often easy to spot – <em>the real “black hats” are the ones doing things you don’t know about</em>.</p>
<p>However, bear in mind that sometimes web developers unknowingly create false positives by being overzealous by using this method and adding keywords or phrases in there and not sticking to the text replication rule.  Search Engine Land was <a href="http://www.seroundtable.com/archives/013674.html">called out</a> for this back in 2007; in 2008 this was later found to be acceptable:</p>
<blockquote><p>I hadn’t caught this during the design process; our designer had no idea it was a bad thing. We fixed it. And not two months later in a discussion forum, I saw a Google rep saying this exact tactic wasn’t bad if the text matched identically.</p>
<p>Source: <a href="http://searchengineland.com/no-advanced-seo-does-not-mean-spamming-14165">http://searchengineland.com/no-advanced-seo-does-not-mean-spamming-14165</a></p></blockquote>
<h2>Should I still use CSS replacement?</h2>
<p>In a world of mixed signals it’s often hard to make the choice, especially when people are advising you to <a href="http://luigimontanez.com/2010/stop-using-text-indent-css-trick/">not take the risk</a>.</p>
<p>ALT is a perfectly acceptable alternative, but with newer browsers (such as Internet Explorer 8 ) removing the hover over functionality to show the ALT text of images, CSS image replacement is a much more useful alternative for soft text readers/temporary screen readers.</p>
<p>Other than ALT there are no real alternatives at this moment of time  that will work as well and many well known SEO’s have <a href="http://maileohye.com/html-text-indent-not-messing-up-your-rankings/#comment-398">mentioned</a> <a href="http://maileohye.com/html-text-indent-not-messing-up-your-rankings/#comment-390">this</a> in response to Maile’s article.</p>
<p>It won’t get you penalised, but you might get caught up in the signals – in my eyes, it’s worth the risk for something that works so well.</p>
<p><strong><em>What do you think &#8211; is CSS image replacement black hat?</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.goosh.co.uk/search-engine-optimisation/css-image-replacement-when-did-it-become-black-hat-seo/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Why You Need A Personal Blog</title>
		<link>http://www.goosh.co.uk/general/why-you-need-a-personal-blog/</link>
		<comments>http://www.goosh.co.uk/general/why-you-need-a-personal-blog/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 21:57:49 +0000</pubDate>
		<dc:creator>Goosh</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.goosh.co.uk/?p=252</guid>
		<description><![CDATA[For anybody working in an agency or a larger company it is sometimes very hard to let your voice be heard, your thoughts shared or your opinions vented. Sometimes there is a lack of platform at your current employment to blog and post your views. More often than not it is simply not company policy [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="margin: 10px; float: right;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.goosh.co.uk%2Fgeneral%2Fwhy-you-need-a-personal-blog%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.goosh.co.uk%2Fgeneral%2Fwhy-you-need-a-personal-blog%2F&amp;source=Goosh&amp;style=normal&amp;service=bit.ly&amp;service_api=goosh%3AR_3700a5345fb0809f36a2a8461c362929" height="61" width="50" /><br />
			</a>
		</div>
<p>For anybody working in an agency or a larger company it is sometimes very hard to let your voice be heard, your thoughts shared or your opinions vented. Sometimes there is a lack of platform at your current employment to blog and post your views. More often than not it is simply not company policy for staff to make their own posts, particularly with larger corporations where staff simply abuse the power.</p>
<p>I for one am a big fan of people setting up their own blogs, especially if their interests are in the same field as their employment. It’s a tough act to balance, but the benefits are there for all to see – <strong>for both their employers and themselves</strong>.<span id="more-252"></span></p>
<h2>Sharing Ideas &amp; Education</h2>
<p>Sometimes you can have a great idea that you would love to share with people, but perhaps the company platform is not the place for it. I like to share ideas, ask questions and gather opinions that not only help myself as an SEO, but will also increase my experience and knowledge on several subjects.</p>
<p>It’s one of those clichés that companies love their staff to be “immersed” with the company – living, breathing, and feeling – but I have to agree that the dividends pay off for everyone when you use your own blog to learn new tactics, solve problems and generally encourage interaction.</p>
<h2>Self Promotion &amp; Sector Involvement</h2>
<p>This, in my eyes, is invaluable.  One of the biggest avenues for learning about your industry is simply getting involved.  Until I <a href="../general/2010-year-relaunch/">re-launched my blog</a> and proactively started promoting my articles and mingling on Twitter I simply didn’t know the peers in my industry – and I’ve been in it a while!</p>
<p>By getting to know your peers, other people doing your job (in my case SEO) and generally getting to know you competitors, you can learn a vast amount of information very quickly AND you can get yourself recognised for the work you deliver outside of hours – for fun!</p>
<p>The added benefit is that you are not only promoting yourself, but you are also promoting your company/employers at the same time. When you go to industry seminars, functions or workshops, people may very well recognise your name and look closer at your employer based on something they read on your blog.</p>
<p>Obviously this can backfire and common-sense has to come into play at some point – which leads me to my next point.</p>
<h2>Venting</h2>
<p>I have been accused on several occasions of being an aggressive blogger, that my posts are laced with underlying venom and a couldn’t-care-less attitude.  I agree. And that’s one of the many reasons I run my personal blog, <a href="../">Goosh</a>.</p>
<p>I can simply say things that my employers’ platform is simply not the place for.  I can vent my spleen about things that have got my back up in my own way, let off some steam about something that <a href="http://seobullshit.com/seo-pisses-people-fact/">pisses me off </a>and ultimately get a load off my chest.</p>
<p>Whilst my blog is generally around SEO, I also talk about other elements of my life that piss me off – technology, world of warcraft etc. I also use my blog to highlight problems with other people’s sites and I also like to <a href="../link-building/want-a-link-on-jamieoliver-com/">draw attention to underhand tactics</a> that come across my radar. Some call this outing and <a href="http://www.hobo-web.co.uk/seo-blog/index.php/no-outing/">don’t agree with it</a>, some <a href="http://www.seobullshit.com/">appreciate it</a> – I make a call on a case by case basis <img src='http://www.goosh.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>You should, however, take care as to what you post as there are limits and boundaries, especially if you work for <a href="../social-media/vodafoneuk-linkbait-or-not-its-a-dumb-move/">Vodafone</a> or are generally an <a href="http://blog.resumebear.com/2009/04/10/30-ways-to-loose-a-job-on-twitter/">idiot on Twitter</a>.  As mentioned earlier, if your blog is in the same sector as the people who pay your mortgage then you have to have a degree of common sense about you as you could land yourself in hot water.</p>
<p>Ultimately, your blog is your blog &#8211; use it to the best of its ability and the rewards, however small, are there for all to see.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.goosh.co.uk/general/why-you-need-a-personal-blog/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
