<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>EthicTech</title>
	
	<link>http://www.ethictech.co.uk</link>
	<description>Ethical web building, marketing &amp; security advice</description>
	<lastBuildDate>Thu, 05 Aug 2010 11:51:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Ethictech" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="ethictech" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">Ethictech</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Blinkin’ Amazon banners</title>
		<link>http://www.ethictech.co.uk/2010/07/blinkin-amazon-banners/</link>
		<comments>http://www.ethictech.co.uk/2010/07/blinkin-amazon-banners/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 08:41:37 +0000</pubDate>
		<dc:creator>Carol</dc:creator>
				<category><![CDATA[Web Accessibility]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[banner]]></category>
		<category><![CDATA[flashing]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.ethictech.co.uk/?p=666</guid>
		<description><![CDATA[How to add an Amazon widget without the annoying flashing 'free delivery' graphic (and why you need to).]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently been working on my website containing games for special needs children and web accessibility is obviously top priority.  One of the main considerations is keeping the website clean and simple, so that the user can focus on the content without being distracted by anything flashy or annoying!</p>
<p>As the games on the website are largely designed for use with touch screen monitors, I decided to add an Amazon banner to the sidebar showing touch screen monitor product links.  Unfortunately, the generated banner code also includes an awful flashing &#8220;free delivery&#8221; graphic at the top.  The Web Accessibility Initiative guidelines state that for a website to be accessible &#8220;any moving, blinking or scrolling information that (1) starts automatically, (2) lasts more than five seconds, and (3) is presented in parallel with other content, there is a mechanism for the user to pause, stop, or hide it unless the movement, blinking, or scrolling is part of an activity where it is essential&#8221; (<a title="This will open in a new window." href="http://www.w3.org/TR/2008/REC-WCAG20-20081211/#time-limits-pause" target="_blank">link to this guideline here</a>).</p>
<p>So, I contacted Amazon, explained the accessibility dilemma and asked if they would provide an accessible banner that doesn&#8217;t flash.</p>
<p>This morning, I received an email from them saying that they &#8220;appreciated my needs as an individual&#8221; (!) but couldn&#8217;t provide me with a personalised banner and suggest that I make my own accessible banner.  Think they might have missed the point a little, so I emailed them back with more information about the WAI guidelines and reminded them that this banner would be useful for <em>anyone who uses these guidelines</em> to build an accessible website, not just me.</p>
<p>Anyway, as I&#8217;m not really expecting them to change their mind, I decided to take their advice in creating my own banner.  I&#8217;m using the &#8220;recommended product&#8221; widget, which dynamically shows a number of touch screen monitors.  The code Amazon give for placement on my a website looks a little something like this:</p>
<p><code>&lt;iframe src="http://rcm-uk.amazon.co.uk/e/cm?t=specialneedssoftware-21&amp;o=2&amp;p=14&amp;l=st1&amp;mode=electronics-uk&amp;search=touch%20screen%20monitor&amp;fc1=000000&amp;lt1=&amp;lc1=3366FF&amp;bg1=FFFFFF&amp;f=ifr" marginwidth="0" marginheight="0" width="160" height="600" border="0" frameborder="0" style="border:none;" scrolling="no"&gt;&lt;/iframe&gt;</code></p>
<p>All I wanted to do was get rid of the animated &#8216;free delivery&#8217; graphic, so I created my own static &#8216;free delivery&#8217; graphic by downloading their one and removing the animation frames.  I uploaded the new static banner to my own website and created a PHP page that looked for the reference to their animated banner and replaced it with my own, then outputs the new banner:</p>
<p><code>$contents = file_get_contents('http://rcm-uk.amazon.co.uk/e/cm?t=specialneedssoftware-21&amp;o=2&amp;p=14&amp;l=st1&amp;mode=electronics-uk&amp;search=touch%20screen%20monitor&amp;fc1=000000&amp;lt1=&amp;lc1=3366FF&amp;bg1=FFFFFF&amp;f=ifr');<br />
echo str_replace('http://ecx.images-amazon.com/images/G/02/associates/recommends/recommends_160x80.gif','http://www.special-needs-software.co.uk/recommends_160x80.gif',$contents);</code></p>
<p>Then instead of putting the IFRAME containing their banner on my website, I put an IFRAME containing my PHP page.</p>
<p>code>&lt;iframe src=&#8221;http://www.special-needs-software.co.uk/amazon.php&#8221; marginwidth=&#8221;0&#8243; marginheight=&#8221;0&#8243; width=&#8221;160&#8243; height=&#8221;600&#8243; border=&#8221;0&#8243; frameborder=&#8221;0&#8243; style=&#8221;border:none;&#8221; scrolling=&#8221;no&#8221;&gt;&lt;/iframe&gt;</code></p>
<p>And it works a treat!</p>

<p><a href="http://feedads.g.doubleclick.net/~a/9N8w0QtekwHEI8nDyG9Vj83p9VI/0/da"><img src="http://feedads.g.doubleclick.net/~a/9N8w0QtekwHEI8nDyG9Vj83p9VI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/9N8w0QtekwHEI8nDyG9Vj83p9VI/1/da"><img src="http://feedads.g.doubleclick.net/~a/9N8w0QtekwHEI8nDyG9Vj83p9VI/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ethictech.co.uk/2010/07/blinkin-amazon-banners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brilliant animations</title>
		<link>http://www.ethictech.co.uk/2010/07/brilliant-animations/</link>
		<comments>http://www.ethictech.co.uk/2010/07/brilliant-animations/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 18:31:00 +0000</pubDate>
		<dc:creator>Carol</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[alan becker]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[humour]]></category>

		<guid isPermaLink="false">http://www.ethictech.co.uk/?p=656</guid>
		<description><![CDATA[A couple of friends shared these with me today and I think they&#8217;re fab! Animator vs Animation by Alan Becker Animator vs Animation 2 by Alan Becker Enjoy!]]></description>
			<content:encoded><![CDATA[<p>A couple of friends shared these with me today and I think they&#8217;re fab!</p>
<p><a href="http://fc01.deviantart.com/fs13/f/2007/077/2/e/Animator_vs__Animation_by_alanbecker.swf" target="_blank">Animator vs Animation by Alan Becker</a></p>
<p><a href="http://www.weebls-stuff.com/toons/Animator+vs+Animation+2/" target="_blank">Animator vs Animation 2 by Alan Becker</a></p>
<p>Enjoy!</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ethictech.co.uk/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>
<p><a href="http://feedads.g.doubleclick.net/~a/T7bi69qIltqex_8V87twsgfOi-w/0/da"><img src="http://feedads.g.doubleclick.net/~a/T7bi69qIltqex_8V87twsgfOi-w/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/T7bi69qIltqex_8V87twsgfOi-w/1/da"><img src="http://feedads.g.doubleclick.net/~a/T7bi69qIltqex_8V87twsgfOi-w/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ethictech.co.uk/2010/07/brilliant-animations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Flash into WordPress</title>
		<link>http://www.ethictech.co.uk/2010/07/adding-flash-into-wordpress/</link>
		<comments>http://www.ethictech.co.uk/2010/07/adding-flash-into-wordpress/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 10:38:28 +0000</pubDate>
		<dc:creator>Carol</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.ethictech.co.uk/index.php?main_page=wordpress&amp;p=590</guid>
		<description><![CDATA[If you've ever battled with the Wordpress editor while trying to add in a Flash movie, you'll be pleased to read about this plugin.]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve ever battled with the WordPress editor while trying to add in a Flash movie, you&#8217;ll be pleased to know there&#8217;s a plugin that makes the whole process almost as easy as adding a new image!</p>
<p>The plugin is called <a href="http://wordpress.org/extend/plugins/kimili-flash-embed/" target="_blank">Kimili Flash Embed</a> and you can install it through WordPress Admin &gt; Plugins &gt; Add New, then search for the &#8220;Kimili Flash Embed&#8221;.</p>
<div id="attachment_593" class="wp-caption alignnone" style="width: 298px"><a href="http://www.ethictech.co.uk/wp-content/uploads/2010/07/flashbutton2.jpg"><img class="size-full wp-image-593" title="flashbutton" src="http://www.ethictech.co.uk/wp-content/uploads/2010/07/flashbutton2.jpg" alt="New 'f' button appears after plugin installation" width="288" height="132" /></a><p class="wp-caption-text">New &#39;f&#39; button appears after plugin installation</p></div>
<p>Once the plugin has been installed and activated, you&#8217;ll find a new button has appeared in your post/page editor with an &#8216;F&#8217;.  The first step is to upload your flash movie (either through FTP or using the Media Uploader in WordPress).  Then, click the new F button and complete the fields (swf file location, movie size etc.) to embed your flash movie.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/3BLVp1flKwghvLC0J2m0OvOe_B4/0/da"><img src="http://feedads.g.doubleclick.net/~a/3BLVp1flKwghvLC0J2m0OvOe_B4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/3BLVp1flKwghvLC0J2m0OvOe_B4/1/da"><img src="http://feedads.g.doubleclick.net/~a/3BLVp1flKwghvLC0J2m0OvOe_B4/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ethictech.co.uk/2010/07/adding-flash-into-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What to do if your website is hacked</title>
		<link>http://www.ethictech.co.uk/2010/07/what-to-do-if-your-website-is-hacked/</link>
		<comments>http://www.ethictech.co.uk/2010/07/what-to-do-if-your-website-is-hacked/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 08:02:26 +0000</pubDate>
		<dc:creator>Carol</dc:creator>
				<category><![CDATA[Security & Malware]]></category>

		<guid isPermaLink="false">http://www.ethictech.co.uk/index.php?main_page=wordpress&amp;p=586</guid>
		<description><![CDATA[Step by step guide to dealing with a website attack.]]></description>
			<content:encoded><![CDATA[<p>A client of mine recently received the dreaded email from Google, telling her that her website had been blocked due to to the presence of malware.</p>
<p>So, what do you do if YOU get this email about YOUR website?</p>
<p>Firstly, you need to identify the problem.  It&#8217;s fairly unlikely that there&#8217;s any malware on your website; instead, it&#8217;s far more likely that a script has been inserted into one or more of your web pages that connects to a <em>different</em> website, where the malware is actually hosted.</p>
<p>If you&#8217;ve received the email from Google and h ave set up Google Webmaster Tools, you should be able to get a better idea of what&#8217;s happening.  Then, I&#8217;d suggest doing a quick Google search using the information you <em>do </em>have, to see if you can find out more information about the problem and what the solution might be.  If the attack is due to a vulnerability in your system (e.g. Oscommerce) it&#8217;s highly likely to be affecting other websites, so you may well find quite a lot of information.</p>
<p>You should let your hosting company know that there&#8217;s a problem, as it may turn out to be their server that&#8217;s infected.  Even if it isn&#8217;t, they may still be able to help with fixing the problem.</p>
<p>You&#8217;ll need to change all your passwords &#8211; control panel, FTP and admin areas.  Ask your hosting company if you&#8217;re not sure how to do this.  You should also run a virus scan on your own computer, to make sure you aren&#8217;t infected with something that&#8217;s allowing someone access to your passwords.</p>
<p>Now, onto the website itself.  You&#8217;ll need to remove any malicious lines of code throughout your entire site &#8211; this can be a big job if your site is large.  Ask your hosting company if they can do a search &amp; replace!  Failing that, use FTP software such as <a href="http://filezilla-project.org/" target="_blank">Filezilla</a> to download a copy of your website and remove the affected code manually.  Take a backup of the files you&#8217;ve downloaded, in case it all goes horribly wrong <img src='http://www.ethictech.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Re-upload your website files and your site should be infection free.  You will need to make sure that any vulnerabilities are fixed &#8211; what the vulnerability is, will depend on the infection &#8211; otherwise it will simply happen again.</p>
<p>Need a hand?  I&#8217;m <a href="http://www.ethictech.co.uk/get-in-touch/" target="_blank">available for hire</a> for one-off jobs or ongoing maintenance.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/wRHXEidAgtvHBCkl86OifxU5eag/0/da"><img src="http://feedads.g.doubleclick.net/~a/wRHXEidAgtvHBCkl86OifxU5eag/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/wRHXEidAgtvHBCkl86OifxU5eag/1/da"><img src="http://feedads.g.doubleclick.net/~a/wRHXEidAgtvHBCkl86OifxU5eag/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ethictech.co.uk/2010/07/what-to-do-if-your-website-is-hacked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get your website up and running for under £10</title>
		<link>http://www.ethictech.co.uk/2010/02/how-to-get-your-website-up-and-running-for-under-10/</link>
		<comments>http://www.ethictech.co.uk/2010/02/how-to-get-your-website-up-and-running-for-under-10/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 14:54:39 +0000</pubDate>
		<dc:creator>Carol</dc:creator>
				<category><![CDATA[Websites General]]></category>
		<category><![CDATA[cheap hosting]]></category>
		<category><![CDATA[cheap website]]></category>

		<guid isPermaLink="false">http://www.trainormaintain.co.uk/?p=542</guid>
		<description><![CDATA[You can get your business online for less than £10 by following these simple steps.]]></description>
			<content:encoded><![CDATA[<p>You can get your business online for less than £10 by following these simple steps:</p>
<ol>
<li><strong>Register your domain name</strong><br />
Whether your choose your trading name or a name based on your keywords, your first step is to check it&#8217;s available then BUY it!  Domain names start at around £3 per year and can be purchased from websites such as <a href="http://www.123-reg.co.uk/" target="_blank">123-reg</a> or <a href="http://www.heartinternet.co.uk/" target="_blank">Heart Internet</a>.  There are plenty of other domain name registration companies out there, but these are two that I&#8217;ve used personally and can therefore recommend.</li>
<li><strong>Choose your hosting company</strong><br />
This is the magical part &#8211; I&#8217;m going to tell you where to find web hosting for an incredibly low price! Pop along to <a href="http://www.m8internet.com/" target="_blank">M8 Internet</a> and you&#8217;ll find they have packages starting from £1 per year.  I&#8217;m not affiliated with M8 but I <em>am </em>a happy customer of theirs, which is why I&#8217;m happy to recommend them.  You can also register your domain through M8 and it sometimes is easier to keep everything in one place but that&#8217;s your choice!  There are other hosting companies which offer similar packages to M8, but I haven&#8217;t found anyone else who offers such good value.</li>
<li><strong>Set up your website in a few easy clicks</strong><br />
Once M8 (or your chosen web host) have created your hosting package and your domain is fully set up (it can take anything from a few minutes to a couple of days for your domain registration to work its way around the internet!), you&#8217;ll be able to login to your website control panel.  Scroll down and you&#8217;ll see a section called &#8220;E-commerce&#8221; and below that &#8220;CGI Scripts&#8221; &#8211; these contain several powerful website packages which will give you e-commerce capabilities &#8230; and won&#8217;t cost you a penny, due do them being &#8220;open source&#8221;.  I won&#8217;t tell you which package to choose, but Zen Cart and OsCommerce are very popular.  All you need to do is click on your choice of package and follow the simple instructions to have your website up and running in minutes.</li>
</ol>

<p><a href="http://feedads.g.doubleclick.net/~a/FQrEmC5ZkcNjlvbyD5jPbli-VMg/0/da"><img src="http://feedads.g.doubleclick.net/~a/FQrEmC5ZkcNjlvbyD5jPbli-VMg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/FQrEmC5ZkcNjlvbyD5jPbli-VMg/1/da"><img src="http://feedads.g.doubleclick.net/~a/FQrEmC5ZkcNjlvbyD5jPbli-VMg/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ethictech.co.uk/2010/02/how-to-get-your-website-up-and-running-for-under-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Accessibility</title>
		<link>http://www.ethictech.co.uk/2009/11/web-accessibility/</link>
		<comments>http://www.ethictech.co.uk/2009/11/web-accessibility/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 14:32:48 +0000</pubDate>
		<dc:creator>Carol</dc:creator>
				<category><![CDATA[Web Accessibility]]></category>
		<category><![CDATA[Websites General]]></category>

		<guid isPermaLink="false">http://www.trainormaintain.co.uk/?p=533</guid>
		<description><![CDATA[Web Accessibility is all about making sure your website is accessible to EVERYONE, including those people with disabilities who may use assistive technology.]]></description>
			<content:encoded><![CDATA[<p>Web Accessibility is all about making sure your website is accessible to EVERYONE, including those people with disabilities.  This includes visual, auditory, physical, speech, cognitive, and neurological disabilities.</p>
<p>The Web Accessibility Initiative develops and publishes a list of guidelines in web accessibility that are considered the international standard.  You can read the guidelines for yourself at <a href="http://www.w3.org/WAI/">http://www.w3.org/WAI/</a> along with some more information on why accessibility is important.</p>
<p>I&#8217;ve always found that the best way to make sure your website is accessible is to experience it through assistive technologies.  Download <a href="http://www.screenreader.net/index.php?pageid=2" target="_blank">Thunder</a>, a screen reader for Windows, then try navigating your website and see where you need to make improvements.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/t_m3u6zHN9jrQtc3vsDWf8D-tms/0/da"><img src="http://feedads.g.doubleclick.net/~a/t_m3u6zHN9jrQtc3vsDWf8D-tms/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/t_m3u6zHN9jrQtc3vsDWf8D-tms/1/da"><img src="http://feedads.g.doubleclick.net/~a/t_m3u6zHN9jrQtc3vsDWf8D-tms/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ethictech.co.uk/2009/11/web-accessibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DIY SEO</title>
		<link>http://www.ethictech.co.uk/2009/07/diy-seo/</link>
		<comments>http://www.ethictech.co.uk/2009/07/diy-seo/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 18:46:13 +0000</pubDate>
		<dc:creator>Carol</dc:creator>
				<category><![CDATA[SEO tips]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.trainormaintain.co.uk/?p=522</guid>
		<description><![CDATA[If you fancy doing your own SEO, Google has put together a handy startup guide full of best practices. Download it for free here.]]></description>
			<content:encoded><![CDATA[<p>If you fancy doing your own SEO, Google has put together a handy startup guide full of best practices.</p>
<p><a href="http://googlewebmastercentral.blogspot.com/2008/11/googles-seo-starter-guide.html" target="_blank">Download it for free here</a>.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ethictech.co.uk/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>
<p><a href="http://feedads.g.doubleclick.net/~a/u2DTJgUi1eeESpfje3JdGGrRC1I/0/da"><img src="http://feedads.g.doubleclick.net/~a/u2DTJgUi1eeESpfje3JdGGrRC1I/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/u2DTJgUi1eeESpfje3JdGGrRC1I/1/da"><img src="http://feedads.g.doubleclick.net/~a/u2DTJgUi1eeESpfje3JdGGrRC1I/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ethictech.co.uk/2009/07/diy-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nice viral game</title>
		<link>http://www.ethictech.co.uk/2009/07/nice-viral-game/</link>
		<comments>http://www.ethictech.co.uk/2009/07/nice-viral-game/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 10:11:51 +0000</pubDate>
		<dc:creator>Carol</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[stephen fry]]></category>
		<category><![CDATA[viral marketing]]></category>

		<guid isPermaLink="false">http://www.trainormaintain.co.uk/?p=519</guid>
		<description><![CDATA[Glasgow design firm T-Enterprise have just released a fun Stephen Fry viral game.]]></description>
			<content:encoded><![CDATA[<p>Glasgow design firm <a href="http://www.t-enterprise.co.uk" target="_blank">T-Enterprise</a> have just released this Stephen Fry viral game: <a href="http://www.t-enterprise.co.uk/flashgame/playgame.aspx?id=stephenfry" target="_blank">The Name&#8217;s Fry, Stephen Fry</a>.  Inspired by his recent comments on illegally downloading episodes of <em>House</em>, the game is based around Fry trying to avoid the police.</p>
<p>Great fun &#8211; <a href="http://www.t-enterprise.co.uk/flashgame/playgame.aspx?id=stephenfry" target="_blank">have a go</a>!!</p>

<p><a href="http://feedads.g.doubleclick.net/~a/WCIfIbjPzsG5a-JPoM1z_MEvQQ8/0/da"><img src="http://feedads.g.doubleclick.net/~a/WCIfIbjPzsG5a-JPoM1z_MEvQQ8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/WCIfIbjPzsG5a-JPoM1z_MEvQQ8/1/da"><img src="http://feedads.g.doubleclick.net/~a/WCIfIbjPzsG5a-JPoM1z_MEvQQ8/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ethictech.co.uk/2009/07/nice-viral-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building incoming links</title>
		<link>http://www.ethictech.co.uk/2009/07/building-incoming-links/</link>
		<comments>http://www.ethictech.co.uk/2009/07/building-incoming-links/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 10:53:03 +0000</pubDate>
		<dc:creator>Carol</dc:creator>
				<category><![CDATA[SEO tips]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[link building]]></category>
		<category><![CDATA[reciprocal links]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.trainormaintain.co.uk/?p=516</guid>
		<description><![CDATA[I&#8217;ve written an article at Hubpages about how best to build incoming links for your site.  Read it here!]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve written an article at Hubpages about how best to <a href="http://hubpages.com/hub/Building-incoming-links-for-SEO" target="_blank">build incoming links for your site</a>.  <strong><a href="http://hubpages.com/hub/Building-incoming-links-for-SEO" target="_blank">Read it here</a></strong>!</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.ethictech.co.uk/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>
<p><a href="http://feedads.g.doubleclick.net/~a/2clJm2y0nObCLrQKolDEJIby9v8/0/da"><img src="http://feedads.g.doubleclick.net/~a/2clJm2y0nObCLrQKolDEJIby9v8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/2clJm2y0nObCLrQKolDEJIby9v8/1/da"><img src="http://feedads.g.doubleclick.net/~a/2clJm2y0nObCLrQKolDEJIby9v8/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ethictech.co.uk/2009/07/building-incoming-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO for your WordPress site</title>
		<link>http://www.ethictech.co.uk/2009/07/seo-for-your-wordpress-site/</link>
		<comments>http://www.ethictech.co.uk/2009/07/seo-for-your-wordpress-site/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 08:58:41 +0000</pubDate>
		<dc:creator>Carol</dc:creator>
				<category><![CDATA[SEO tips]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[descriptions]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[titles]]></category>

		<guid isPermaLink="false">http://www.trainormaintain.co.uk/?p=513</guid>
		<description><![CDATA[If your site runs on Wordpress, this free plugin is a must: All in One SEO Pack. Amongst other features, it allows you to add unique titles, meta descriptions and meta keywords to each of your pages.]]></description>
			<content:encoded><![CDATA[<p>If your site runs on WordPress, this free plugin is a must:</p>
<p><strong><a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" target="_blank">All in One SEO Pack</a></strong></p>
<p>Amongst other features, it allows you to add unique titles, meta descriptions and meta keywords to each of your pages.  Lots of other options to choose from!</p>
<p>To install on your WordPress site:</p>
<ul>
<li>Ggo into WP Admin, click <strong>Plugins </strong>then <strong>Add New</strong></li>
<li>Search for &#8220;<strong>All in one SEO</strong>&#8220;</li>
<li>Click on &#8220;<strong>All in one SEO</strong>&#8220;, then click &#8220;<strong>Install</strong>&#8220;</li>
<li>Once installed, just click &#8220;<strong>Activate Plugin</strong>&#8221; and adjust the settings as required in <strong>Settings </strong>&gt; <strong>All in one SEO</strong></li>
<li>You&#8217;ll find you now have the ability to add unique meta titles, descriptions and keywords in each of your blog posts &amp; pages.</li>
</ul>

<p><a href="http://feedads.g.doubleclick.net/~a/HPtoJXyr0bYfpCDSTCYFIlN5uho/0/da"><img src="http://feedads.g.doubleclick.net/~a/HPtoJXyr0bYfpCDSTCYFIlN5uho/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/HPtoJXyr0bYfpCDSTCYFIlN5uho/1/da"><img src="http://feedads.g.doubleclick.net/~a/HPtoJXyr0bYfpCDSTCYFIlN5uho/1/di" border="0" ismap="true"></img></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ethictech.co.uk/2009/07/seo-for-your-wordpress-site/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
