<?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>Failure is the Key to Success &#187; Website</title>
	<atom:link href="http://blog.ijhedges.com/category/website/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ijhedges.com</link>
	<description></description>
	<lastBuildDate>Sun, 29 Aug 2010 23:30:00 +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>Upgraded to WordPress 2.7.1</title>
		<link>http://blog.ijhedges.com/2009/02/18/upgraded-to-wordpress-271/</link>
		<comments>http://blog.ijhedges.com/2009/02/18/upgraded-to-wordpress-271/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 19:58:01 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Blog-design]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[.htaccess file]]></category>
		<category><![CDATA[FireStats]]></category>
		<category><![CDATA[PHP 5]]></category>
		<category><![CDATA[upgrading Wordpress]]></category>
		<category><![CDATA[wordpress 2.7.1]]></category>

		<guid isPermaLink="false">http://blog.ijhedges.com/?p=393</guid>
		<description><![CDATA[I upgraded to WordPress 2.7.1 on one of my test blogs a few days ago using the new automatic upgrade feature. The upgrade went quickly and smoothly and everything worked afterwards, so that was good. Tonight, I got round to upgrading my other test blogs and they didn&#8217;t go well at all. Initially on 2 [...]]]></description>
			<content:encoded><![CDATA[<p>I upgraded to WordPress 2.7.1 on one of my test blogs a few days ago using the new automatic upgrade feature. The upgrade went quickly and smoothly and everything worked afterwards, so that was good.</p>
<p>Tonight, I got round to upgrading my other test blogs and they didn&#8217;t go well at all.</p>
<p>Initially on 2 of them I got as far as &#8220;Downloading update from http://wordpress.org/wordpress-2.7.1.zip&#8221; and that was all; it just sat there doing nothing. OK, so I looked on the forums and saw a suggestion that it might be plugin related, so I disabled all the plugins on one of the blogs, this then got to the next stage &#8220;Unpacking the core update&#8221; and sat there doing nothing. Hmm, this was strange it worked on the first blog. I tried the update on my last test blog and this worked automatically in seconds. The mystery deepens!</p>
<p>Then I had a thought, back in July, when I was working on the problem with Firestats, I found a resolution by adding a line to my .htaccess file:</p>
<blockquote><p>AddType x-mapp-php5 .php</p></blockquote>
<p><span id="more-393"></span>This causes php pages to processed by my host 1and1 using PHP 5 instead of PHP 4. Looking at the test blogs that had worked, both had this line in the .htaccess file. Ah, could it be this simple?</p>
<p>I downloaded a copy of the .htaccess file from one of the failing blogs and wasn&#8217;t happy to find that WordPress (I guess) had reset it to the default file with only the WordPress rewrite section. Anyway, I added my redirects back in and added the line for PHP 5 and uploaded it.</p>
<p>The automatic update then worked fine. I did the same for the other failing test blog, which also had a default .htaccess file (I&#8217;m glad I keep copies) and that also worked. So it looks like the automatic upgrade works with PHP 5 and not with PHP 4</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ijhedges.com/2009/02/18/upgraded-to-wordpress-271/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Revamping a website and preventing hot-linking</title>
		<link>http://blog.ijhedges.com/2008/07/07/revamping-a-website-and-preventing-hot-linking/</link>
		<comments>http://blog.ijhedges.com/2008/07/07/revamping-a-website-and-preventing-hot-linking/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 16:43:02 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[FamilyTree]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[.htaccess file]]></category>
		<category><![CDATA[family tree]]></category>
		<category><![CDATA[preventing hotlinking]]></category>

		<guid isPermaLink="false">http://blog.ijhedges.com/?p=320</guid>
		<description><![CDATA[It&#8217;s been a long time coming and at the end of last week I finally got around to revamping my family tree website. It used to be static pages that I hand-coded and hadn&#8217;t been updated for months. I have now converted it to a WordPress blog (just like this one), which means I can [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a long time coming and at the end of last week I finally got around to revamping <a href="http://family.ijhedges.com">my family tree</a> website. It used to be static pages that I hand-coded and hadn&#8217;t been updated for months. I have now converted it to a WordPress blog (just like this one), which means I can add entries there when I&#8217;m researching one branch or other of the family tree.</p>
<p>In addition to re-launching this site, I had to add code on all my sites this morning when I found a Russian site that had basically taken and translated every post on my blog into Russian and was presenting it complete with all my (hotlinked) images and style sheet. I have now added code in my sites&#8217; .htaccess file preventing hotlinking of images and my stylesheets from other sites. I checked David Airey&#8217;s blog post <a href="http://www.davidairey.com/stop-image-theft-hotlinking-htaccess/">How to stop image hotlinking and bandwidth theft</a> before adding the code.</p>
<pre>RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://([a-z\.\-]+)?ianhedges.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://([a-z\.\-]+)?ijhedges.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://([a-z\.\-]+)?ijhedges.co.uk/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://([a-z\.\-]+)?cre8Buzz.com/.*$ [NC]
RewriteRule .(gif|jpg|png|css)$ - [F]</pre>
<p>I&#8217;ve allowed cre8Buzz, as I hotlink my profile images from my gallery.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ijhedges.com/2008/07/07/revamping-a-website-and-preventing-hot-linking/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Added some new categories</title>
		<link>http://blog.ijhedges.com/2007/05/06/added-some-new-categories/</link>
		<comments>http://blog.ijhedges.com/2007/05/06/added-some-new-categories/#comments</comments>
		<pubDate>Sun, 06 May 2007 13:58:24 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Blog-design]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[categories]]></category>

		<guid isPermaLink="false">http://newblog.ijhedges.com/?p=188</guid>
		<description><![CDATA[After looking at the list of categories in my blog, I decided that I needed to add a few more. I have gone back through the posts and added them to the new categories where appropriate. This in theory, would reduce my use of my miscellaneous category &#8216;General&#8217;, but just to prove a point my [...]]]></description>
			<content:encoded><![CDATA[<p>After looking at the list of categories in my blog, I decided that I needed to add a few more. I have gone back through the posts and added them to the new categories where appropriate. This in theory, would reduce my use of my miscellaneous category &#8216;General&#8217;, but just to prove a point my post about the 900 years of Dunstable is in General. Oh well, never mind.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ijhedges.com/2007/05/06/added-some-new-categories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hitching up to the Technorati Fave Train</title>
		<link>http://blog.ijhedges.com/2007/04/25/hitching-up-to-the-technorati-fave-train/</link>
		<comments>http://blog.ijhedges.com/2007/04/25/hitching-up-to-the-technorati-fave-train/#comments</comments>
		<pubDate>Wed, 25 Apr 2007 20:22:29 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[technorati favorite]]></category>

		<guid isPermaLink="false">http://newblog.ijhedges.com/?p=183</guid>
		<description><![CDATA[I was added to the Technorati Fave Train yesterday by Ilker at The Thinking Blog. This is a link and favorite train started by Gary Lee a couple of weeks ago. I&#8217;ve just spent the last couple of hours working my way down the original list and reading the blogs. I didn&#8217;t want to just [...]]]></description>
			<content:encoded><![CDATA[<p>I was added to the <a href="http://www.thethinkingblog.com/2007/04/fave-my-blog-and-i-fave-yours.html"> Technorati Fave Train</a> yesterday by Ilker at <a href="http://www.thethinkingblog.com/">The Thinking Blog</a>. This is a link and favorite train started by <a href="http://www.mrgarylee.com/2007/04/10/share-the-power-of-technorati-faves/"> Gary Lee</a> a couple of weeks ago. I&#8217;ve just spent the last couple of hours working my way down the original list and reading the blogs. I didn&#8217;t want to just Favourite them without looking and so, anyway, now I have another 22 blogs to try to check regularly.</p>
<p>***Start Copying Here***</p>
<p>Here are the rules:</p>
<p>1. Write a short introduction paragraph about what how you found the list and include a link to the blog that referred you to the list.</p>
<p>2. COPY the Rules and ENTIRE List below and post it to your blog. To avoid duplicate content and increase the amount of keywords your site can accessible for, go ahead and change the titles of the blog. Just donâ€™t change the links of the blog.</p>
<p>3. Take â€œMy New Favesâ€ and move them into the â€œThe Original Favesâ€ list.</p>
<p>4. Add at least 3 Blogs that youâ€™ve just added to your Technorati Favorites to the â€œMy New Favesâ€ section. Remember to also add the â€œFave Meâ€ link next to your new blogs (i.e. http://technorati.com/faves?add=http://www.yourdomain.com)</p>
<p>5. Add Everyone on this list to your Technorati Favorites List by clicking on â€œFave the Site.â€ (Please FAVE EVERYONE on the List prior to posting the list or a Kitten will Die Alone in a Dark Alley Tonight). Those who want good karma will fave you back. If not, you will for sure get the benefits of faves from the bloggers who continue this list after you.</p>
<p><strong>My New Faves</strong></p>
<p><a href="http://techbold.com/"> Tech Bold</a> &#8211; <a href="http://technorati.com/faves?add=http://techbold.com/"> Fave the Site</a><br />
<a href="http://www.6doi.net/">Six Degrees of Inspiration</a> &#8211; <a href="http://technorati.com/faves?add=http://www.6doi.net/"> Fave the Site</a><br />
<a href="http://www.randaclay.com/"> Randa Clay Design</a> &#8211; <a href="http://technorati.com/faves?add=http://www.randaclay.com/"> Fave the Site</a></p>
<p><strong>The Original Faves</strong></p>
<p><a href="http://www.mrgarylee.com/"> Gary Lee</a> &#8211; <a href="http://technorati.com/faves?add=http://www.mrgarylee.com/"> Fave the Site</a> *<br />
<a href="http://www.doshdosh.com/">Dosh Dosh</a> &#8211; <a href="http://technorati.com/faves?add=http://www.doshdosh.com/"> Fave the Site</a><br />
<a href="http://www.natewhitehill.com/">Nate Whitehill</a> &#8211; <a href="http://technorati.com/faves?add=http://www.natewhitehill.com/"> Fave the Site</a><br />
<a href="http://www.msdanielle.com/">Ms. Danielle</a> &#8211; <a href="http://technorati.com/faves?add=http://www.msdanielle.com/"> Fave the Site</a><br />
<a href="http://blog.jeffkee.com/">Jeff Kee</a> &#8211; <a href="http://technorati.com/faves?add=http://blog.jeffkee.com/"> Fave the Site</a><br />
<a href="http://www.scribbleonthewall.com/">Scribble on the Wall</a> &#8211; <a href="http://technorati.com/faves?add=http://www.scribbleonthewall.com/"> Fave the Site</a><br />
<a href="http://www.jimimorrisonshead.com/">Jimi Morrisons Head</a> &#8211; <a href="http://technorati.com/faves?add=http://www.jimimorrisonshead.com/"> Fave the Site</a><br />
<a href="http://www.jonlee.ca/">Jon Lee</a> &#8211; <a href="http://technorati.com/faves?add=http://www.jonlee.ca/"> Fave the Site</a><br />
<a href="http://www.samanathon.com/">Samanathon</a> &#8211; <a href="http://technorati.com/faves?add=http://www.samanathon.com/"> Fave the Site</a><br />
<a href="http://www.eatdrinknbmerry.com/">Eat Drink &amp; Be Merry</a> &#8211; <a href="http://technorati.com/faves?add=http://www.eatdrinknbmerry.com/"> Fave the Site</a><br />
<a href="http://themanofsilver.blogspot.com/">The Man of Silver</a> &#8211; <a href="http://technorati.com/faves?add=http://themanofsilver.blogspot.com/"> Fave the Site</a><br />
<a href="http://www.hannesjohnson.com/">Hannes Johnson</a> &#8211; <a href="http://technorati.com/faves?add=http://www.hannesjohnson.com/"> Fave the Site</a><br />
<a href="http://www.mydandelionpatch.com/">My Dandelion Patch</a> &#8211; <a href="http://technorati.com/faves?add=http://www.mydandelionpatch.com/"> Fave the Site</a><br />
<a href="http://www.nathandrach.info/">Nathan Drach</a> &#8211; <a href="http://technorati.com/faves?add=http://www.nathandrach.info/"> Fave the Site</a><br />
<a href="http://www.sitelogic.co.uk/">SiteLogic</a> &#8211; <a href="http://technorati.com/faves?add=http://www.sitelogic.co.uk/"> Fave the Site</a><br />
<a href="http://www.juliesjournal.com/">Julies Journal</a> &#8211; <a href="http://technorati.com/faves?add=http://www.juliesjournal.com/"> Fave the Site</a><br />
<a href="http://www.teaandslippers.com/">Tea &amp; Slippers</a> &#8211; <a href="http://technorati.com/faves?add=http://www.teaandslippers.com/"> Fave the Site</a><br />
<a href="http://www.pencilthin.com/">Pencil Thin</a> &#8211; <a href="http://technorati.com/faves?add=http://www.pencilthin.com/"> Fave the Site</a><br />
<a href="http://garryconn.com/">Garry Conn</a> &#8211; <a href="http://technorati.com/faves?add=http://garryconn.com/"> Fave the Site</a><br />
<a href="http://www.stephenfung.net/">Stephen Fung</a> &#8211; <a href="http://technorati.com/faves?add=http://www.stephenfung.net/"> Fave the Site</a><br />
<a href="http://www.ededition.com/">Ed Lau</a> &#8211; <a href="http://technorati.com/faves?add=http://www.ededition.com/"> Fave the Site</a><br />
<a href="http://qmusings.com/blog/">QMusings</a> &#8211; <a href="http://technorati.com/faves?add=http://qmusings.com/blog/"> Fave the Site</a><br />
<a href="http://www.thethinkingblog.com/">The Thinking Blog</a> &#8211; <a href="http://technorati.com/faves?add=http://www.thethinkingblog.com/"> Fave the Site</a><br />
<a href="http://www.googletutor.com/">Google Tutor</a> &#8211; <a href="http://technorati.com/faves?add=http://www.googletutor.com/"> Fave the Site</a><br />
<a href="http://www.tvcells.org/">TV Cells</a> &#8211; <a href="http://technorati.com/faves?add=http://www.tvcells.org/"> Fave the Site</a><br />
<a href="http://www.ewriting.pamil-visions.com/">eWritings</a> &#8211; <a href="http://technorati.com/faves?add=http://www.ewriting.pamil-visions.com/"> Fave the Site</a><br />
<a href="http://www.mommysgetawayblog.blogspot.com/"> Mommy&#8217;s Getaway</a> &#8211; <a href="http://technorati.com/faves?add=http://www.mommysgetawayblog.blogspot.com/"> Fave the Site</a><br />
<a href="http://www.gr8egypt.blogspot.com/">GR8 Egypt</a> &#8211; <a href="http://technorati.com/faves?add=http://www.gr8egypt.blogspot.com/"> Fave the Site</a><br />
<a href="http://blogandpingtutorial.blogspot.com/">Divya Uttam</a> &#8211; <a href="http://technorati.com/faves?add=http://blogandpingtutorial.blogspot.com/"> Fave the Site</a><br />
<a href="http://sean-dinner.com/blog">Sean Dinner</a> &#8211; <a href="http://technorati.com/faves?add=http://sean-dinner.com/blog"> Fave the Site</a><br />
<a href="http://osalepito.blogspot.com/">O Salepito</a> &#8211; <a href="http://technorati.com/faves?add=http://osalepito.blogspot.com/"> Fave the Site</a><br />
<a href="http://kylebeabo.blogspot.com/">Kyle Beabo</a> &#8211; <a href="http://technorati.com/faves?add=http://kylebeabo.blogspot.com/"> Fave the Site</a><br />
<a href="http://blog.ijhedges.com/">Failure is the key to success</a> &#8211; <a href="http://technorati.com/faves?add=http://blog.ijhedges.com/"> Fave the Site</a>**<br />
* &#8211; Train Engineer<br />
** &#8211; Last Wagon<br />
***End Copying Here***</p>
<p>Wow, that took a lot longer than I thought it would.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ijhedges.com/2007/04/25/hitching-up-to-the-technorati-fave-train/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Problem with web feed and Technorati</title>
		<link>http://blog.ijhedges.com/2007/04/20/problem-with-web-feed-and-technorati/</link>
		<comments>http://blog.ijhedges.com/2007/04/20/problem-with-web-feed-and-technorati/#comments</comments>
		<pubDate>Fri, 20 Apr 2007 20:20:27 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Blog-design]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[technorati]]></category>
		<category><![CDATA[technorati support]]></category>

		<guid isPermaLink="false">http://newblog.ijhedges.com/?p=181</guid>
		<description><![CDATA[I had noticed about a week ago that my posts were not updating on Technorati although it was showing that my site had been updated. The problem seemed to be about the same time that I changed to using Feedburner and after searching on Google this seemed to be a known problem that Technorati had [...]]]></description>
			<content:encoded><![CDATA[<p>I had noticed about a week ago that my posts were not updating on <a href="http://www.technorati.com/blogs/http://blog.ijhedges.com">Technorati</a> although it was showing that my site had been updated. The problem seemed to be about the same time that I changed to using <a href="http://feeds.feedburner.com/FailureIsTheKeyToSuccess">Feedburner</a> and after searching on Google this seemed to be a known problem that Technorati had been made aware of, but were not responding to.</p>
<p>So, I placed a Support ticket with Technorati this evening not really expecting to get a response. While I was reading the automated acknowledgement, I got an email from Tonette Wong at Customer Services with the resolution.</p>
<p>It turns out that when I was making changes to the blog&#8217;s layout, I had made the entry title into a link and this was different to the link in the feed.</p>
<p>I have made the two links the same and now Technorati like me again. So, unlike many other people, it seems I got a very quick accurate response, Thank you.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ijhedges.com/2007/04/20/problem-with-web-feed-and-technorati/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog layout makeover</title>
		<link>http://blog.ijhedges.com/2007/03/26/blog-layout-makeover/</link>
		<comments>http://blog.ijhedges.com/2007/03/26/blog-layout-makeover/#comments</comments>
		<pubDate>Mon, 26 Mar 2007 21:06:40 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Blog-design]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://newblog.ijhedges.com/?p=170</guid>
		<description><![CDATA[I have spent some time over the past week working on a new layout for my blog. Some of the changes include: The header image has been replaced with a wider image. The RSS button has been increased in size and an email subcription added. The add comments page has been modified to also include [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-top: 0pt"> I have spent some time over the past week working on a new layout for my blog.</p>
<p style="margin-top: 0pt"> Some of the changes include:</p>
<p style="margin-top: 0pt"> The header image has been replaced with a wider image.</p>
<p style="margin-top: 0pt"> The RSS button has been increased in size and an email subcription added.</p>
<p style="margin-top: 0pt"> The add comments page has been modified to also include the entry on the page.</p>
<p style="margin-top: 0pt">&nbsp;</p>
<p style="margin-top: 0pt"> It works fine in Firefox and Opera, and after a bit of hassle, also in Internet Explorer.</p>
<p style="margin-top: 0pt">&nbsp;</p>
<p style="margin-top: 0pt"> If you have any comments please let me know through the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ijhedges.com/2007/03/26/blog-layout-makeover/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Why is this called &#8216;Failure is the key to success&#8217;?</title>
		<link>http://blog.ijhedges.com/2007/03/25/why-this-is-called-failure-is-the-key-to-success/</link>
		<comments>http://blog.ijhedges.com/2007/03/25/why-this-is-called-failure-is-the-key-to-success/#comments</comments>
		<pubDate>Sun, 25 Mar 2007 10:36:44 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Blog-design]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[aikido]]></category>
		<category><![CDATA[blog name]]></category>

		<guid isPermaLink="false">http://newblog.ijhedges.com/?p=168</guid>
		<description><![CDATA[I have just realised that after over 18 months, I have never explained why my blog is called &#8216;Failure is the key to success&#8217;. One of the sayings of Morihei Ueshiba, the founder of the Japanese martial art of Aikido, is &#8216;Failure is the key to success; each mistake teaches us something.&#8216; When I was [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://gallery.ijhedges.com/gallery/d/863-2/osensei.gif" alt="Picture of Morihei Ueshiba" class="picture_float_left" /></p>
<p>I have just realised that after over 18 months, I have never explained why my blog is called &#8216;Failure is the key to success&#8217;.</p>
<p>One of the sayings of Morihei Ueshiba, the founder of the Japanese martial art of Aikido, is &#8216;<em>Failure is the key to success; each mistake teaches us something.</em>&#8216;</p>
<p>When I was looking for a name, this seemed very appropriate. Everyone has failures in our lives and only by learning from them do we improve ourselves and succeed in our goals.</p>
<p>My connection with aikido goes back to the 1988. Several of my friends had joined a local martial arts club and talked me into coming along. Now, I had never seen myself as the next Bruce Lee or anything like that, but thought I would go along for a few weeks to keep them company. One of my friends, Dave Long, was a 1st Kyu (brown belt) in Shotokan Karate, so I figured that if he thought it was worth going to, it was probably worth looking into. I turned up the first night not even knowing the name of the martial art that they were doing.</p>
<p>What I found was a martial art that didn&#8217;t rely on strength or flexibility (although the latter comes with time). It uses a combination of wrist locks, pins and throws to deal with your opponent. You take your opponent&#8217;s balance and use their strength and momentum against themselves. I never saw myself as a slugger in a fight situation and the almost analytical approach to how the techniques work appealed to my logical mind. So much so that I outlasted all of those who talked me into going.</p>
<p>When training, you take it in turns to be uke, the receiver of the technique, and tori, the person applying the technique. The relationship between tori and uke has been similar in all clubs and courses where I trained; uke provides a honest spirited attack and then, if necessary, helps tori to understand where the technique is failing to have them falling to their knees in pain. Oh yes, I forgot to mention that, the wrist locks, twists, pressure on nerves can all be quite painful. You have to be mad; you pay for the privilege of having someone else inflict pain on you.</p>
<p>Anyway, after I had been training for about 3 years, when I was a 3rd Kyu (green belt), I was asked if I would be a reserve uke for Joanne, one of the club&#8217;s lady 2nd Kyu (blue belt) who was taking her 1st Kyu (brown belt) grading. I was second reserve, so there was little chance of being needed. That was until, in the same week, the first uke twisted his knee on a building site and the first reserve had a hospital appointment for an operation on a longstanding shoulder injury. Suddenly it was real and I was going to be thrown around in a grading. After getting some extra training in, we discovered that my breakfalls weren&#8217;t quite correct and it was a small miracle that I hadn&#8217;t broken anything yet. So in the months before the grading, not only were Joanne&#8217;s techniques polished, but my breakfalls were completely taken apart and relearned. This took me from turning up once a week and enjoying myself, to seriously getting involved and travelling around the country to courses.</p>
<p>So, that&#8217;s how I met my wife Joanne; she spend several months throwing me around a mat before her grading to get her brown belt. We eventually ended up running the local club for a few years and learnt from and trained under many instructors from the UK and abroad. During my time training I received technique many hundreds of times. However when being thrown, I can count on one hand the number of times when I was thrown without being aware of it. What I mean by this is the attack gets so redirected that you feel no force when you are thrown, one minute you are attacking (grab, strike etc) and the next you are flying through the air thinking &#8216;what happened?&#8217; This has happened once with Jo and twice with Sensei Tony Sargeant the head of <a href="http://www.takemusu-iwama-aikido.org/index.htm">Takemusu Iwama Aikido Europe</a>, another time was from Sensei Mike Smith who was the head of our association the <a href="http://www.kaishinkai.co.uk/">Kai Shin Kai</a>.</p>
<p>Aikido is not a quick martial art to learn. It is only at dan grade (black belt) that you really start to understand how to use it effectively. I am sure there are some people that would disagree with this, but this is my personal opinion. I stopped training about 10 years ago due to other commitments. I renewed my membership annually for another 3 years, before I accepted that I had stopped training for the moment.</p>
<p>Anyway, as you can see, aikido has had quite an effect on my life and so it seemed natural to look to the sayings of Morihei Ueshiba, known as O-Sensei, for a suitable name.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ijhedges.com/2007/03/25/why-this-is-called-failure-is-the-key-to-success/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Changes to blog layout</title>
		<link>http://blog.ijhedges.com/2007/02/25/changes-to-blog-layout/</link>
		<comments>http://blog.ijhedges.com/2007/02/25/changes-to-blog-layout/#comments</comments>
		<pubDate>Sun, 25 Feb 2007 15:02:46 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Blog-design]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[blog comments]]></category>

		<guid isPermaLink="false">http://newblog.ijhedges.com/?p=160</guid>
		<description><![CDATA[While looking at a comment I received from jmb about the area of my blog entry, I mentioned increasing the text size to make it more viewable. However, when I started to look at my style sheet, I could see a few changes that I wanted to make. I have changed the blog so that [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://gallery.ijhedges.com/weathericons/cloudy.jpg" alt="Cloudy" class="picture_float_left" height="64" width="64" /><br />
While looking at a comment I received from <a href="http://nobodyimportant-jmb.blogspot.com/">jmb</a> about the area of my blog entry, I mentioned increasing the text size to make it more viewable.</p>
<p>However, when I started to look at my style sheet, I could see a few changes that I wanted to make.</p>
<p>I have changed the blog so that the title of a post takes you to the entry page with any comments on. On the entry page the categories list has been moved from the right hand side of the screen to the left, leaving more space for the post and the post font size increased. On all pages, the post area is relative to the window size, not a fixed size.</p>
<p>I have increased the font size used for the comments, so a magnifying glass is no longer required.</p>
<p>If I have broken something or you think it has improved, let me know through the comments.</p>
<p class="techtags"> Tags: <a href="http://technorati.com/tag/blog+comments" class="techtag" rel="tag">blog comments</a> <a href="http://technorati.com/tag/blog+design" class="techtag" rel="tag">blog design</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ijhedges.com/2007/02/25/changes-to-blog-layout/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blogs I read</title>
		<link>http://blog.ijhedges.com/2007/02/23/blogs-i-read/</link>
		<comments>http://blog.ijhedges.com/2007/02/23/blogs-i-read/#comments</comments>
		<pubDate>Fri, 23 Feb 2007 22:29:47 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://newblog.ijhedges.com/?p=158</guid>
		<description><![CDATA[While reading some of the blogs that I follow through MyBlogLog today, I came across a post by Anatoly Lubarsky, MyBlogLog Service On Decline. There have been a few security and identity exploits in the past weeks and the recent one discovered by ShoeMoney got him banned. This got me thinking, if MyBlogLog disappeared, would [...]]]></description>
			<content:encoded><![CDATA[<p>While reading some of the blogs that I follow through MyBlogLog today, I came across a post by Anatoly Lubarsky, <a href="http://blogs.x2line.com/al/archive/2007/02/23/2874.aspx">MyBlogLog Service On Decline</a>. There have been a few security and identity exploits in the past weeks and the recent one discovered by <a href="http://www.shoemoney.com/2007/02/22/banned-from-mybloglog/"><br />
ShoeMoney got him banned</a>.</p>
<p>This got me thinking, if MyBlogLog disappeared, would I be able to find all the blogs that I have started to follow. So partly for that I have decided to list the blogs that I am currently watching.</p>
<table align="center" border="1" cellpadding="5" cellspacing="5" width="500">
<tr>
<th>Blogname</th>
<th>Author</th>
</tr>
<tr>
<td><a href="http://blogandpingtutorial.blogspot.com/">Blogging to Fame</a></td>
<td>Divya Uttam</td>
</tr>
<tr>
<td><a href="http://www.thethinkingblog.com/">The Thinking Blog</a></td>
<td>Ilker Yoldas</td>
</tr>
<tr>
<td><a href="http://www.adidap.com/">All Day I Dream About Photography</a></td>
<td>Antoine Khater</td>
</tr>
<tr>
<td><a href="http://blogs.x2line.com/al">Anatoly Lubarsky</a></td>
<td>Anatoly Lubarsky</td>
</tr>
<tr>
<td><a href="http://www.avinash.ws/">Avinash &#8211; An IT Blog</a></td>
<td>Avinah Kumar</td>
</tr>
<tr>
<td><a href="http://www.millionbabyboomers.com/">Baby Boomers Blog</a></td>
<td>David Au</td>
</tr>
<tr>
<td><a href="http://www.benediktrb.de/english/">Benedikt<br />
Rieke-Benninghaus</a></td>
<td>Benedikt Rieke-Benninghaus</td>
</tr>
<tr>
<td><a href="http://www.bravehumans.com/">Brave Humans</a></td>
<td>&nbsp;</td>
</tr>
<tr>
<td><a href="http://www.calivi.com/">Calivi</a></td>
<td>Orkun Soylu</td>
</tr>
<tr>
<td><a href="http://chateaulalinde.blogspot.com/">Chateau Lalinde</a></td>
<td>Red Shoes</td>
</tr>
<tr>
<td><a href="http://webtechlog.blogspot.com/">CompuWorld</a></td>
<td>Salman Siddiqui</td>
</tr>
<tr>
<td><a href="http://craig-photography.blogspot.com/">Craig Photography</a></td>
<td>John Craig</td>
</tr>
<tr>
<td><a href="http://www.davidairey.com/">Creative Design</a></td>
<td>David Airey</td>
</tr>
<tr>
<td><a href="http://www.gregladen.com/wordpress/">Evolution &#8230; not<br />
&#8220;just a theory&#8221; anymore</a></td>
<td>Greg Laden</td>
</tr>
<tr>
<td><a href="http://guitarealm.blogspot.com/">Guitar Realm</a></td>
<td>nightS &amp; Shogo</td>
</tr>
<tr>
<td><a href="http://heidas.typepad.com/">Heida Biddle</a></td>
<td>Heida Biddle</td>
</tr>
<tr>
<td><a href="http://nothpnowmommy.blogspot.com/index.html">I once was HP</a></td>
<td>Sarabeth</td>
</tr>
<tr>
<td><a href="http://www.johnchow.com/">John Chow Dot Com</a></td>
<td>John Chow</td>
</tr>
<tr>
<td><a href="http://www.jonathan-phillips.com/">Jonathan-C. Phillips</a></td>
<td>Jonathan-C. Phillips</td>
</tr>
<tr>
<td><a href="http://girlinshortshorts.blogspot.com/">Just a Girl in<br />
short shorts talking about whatever</a></td>
<td>Becky C</td>
</tr>
<tr>
<td><a href="http://www.metastaticlivercancer.org/">Metastatic Liver<br />
Cancer</a></td>
<td>Metastatic Liver Cancer</td>
</tr>
<tr>
<td><a href="http://distractiblemind.ambulatorycomputing.com/">Musings<br />
of a Distractible Mind</a></td>
<td>Dr Rob</td>
</tr>
<tr>
<td><a href="http://www.mynewchoice.com/">My New Choice</a></td>
<td>mnc</td>
</tr>
<tr>
<td><a href="http://carolsplaceforpeace.blogspot.com/">My View Of It</a></td>
<td>Carol1461</td>
</tr>
<tr>
<td><a href="http://nobodyimportant-jmb.blogspot.com/">Nobody Important</a></td>
<td>JMB</td>
</tr>
<tr>
<td><a href="http://www.ofzenandcomputing.com/">Of Zen and Computing</a></td>
<td>&nbsp;</td>
</tr>
<tr>
<td><a href="http://ruminatethissite.blogspot.com/">Ruminate This Site</a></td>
<td>The Ruminator</td>
</tr>
<tr>
<td><a href="http://catscanman.net/blog/">scan man&#8217;s notes</a></td>
<td>scan man</td>
</tr>
<tr>
<td><a href="http://screenrant.com/">Screen Rant</a></td>
<td>Vic Holtreman</td>
</tr>
<tr>
<td><a href="http://6doi.net/">Six Degrees of Inspiration</a></td>
<td>Nicholas</td>
</tr>
<tr>
<td><a href="http://susanjonesoutonthecoast.blogspot.com/">Out on the<br />
Coast</a></td>
<td>Susan Jones</td>
</tr>
<tr>
<td><a href="http://techbold.com/">Tech Bold</a></td>
<td>Vikas Nigam</td>
</tr>
<tr>
<td><a href="http://technogroove.blogspot.com/">TechnoGroove</a></td>
<td>Vaandoo</td>
</tr>
<tr>
<td><a href="http://jaslivingspace.blogspot.com/">Through the Lenses</a></td>
<td>Jas</td>
</tr>
<tr>
<td><a href="http://www.jennyryan.com/">Using My Powers For Good</a></td>
<td>Jenny Ryan</td>
</tr>
<tr>
<td><a href="http://davidbdale.wordpress.com/">Very Short Novels</a></td>
<td>David B Dale</td>
</tr>
<tr>
<td><a href="http://www.waitingforfairies.com/">Waiting For Fairies</a></td>
<td>Kia</td>
</tr>
</table>
<p>Thanks to <a href="http://nobodyimportant-jmb.blogspot.com/">JMB</a>, <a href="http://catscanman.net/blog/">scan man</a>, <a href="http://nothpnowmommy.blogspot.com/index.html">Sarabeth</a>, <a href="http://www.davidairey.com/blog/">David Airey</a> and <a href="http://www.jonathan-phillips.com/">Jonathan-C. Phillips</a> who have all left me comments on previous posts.</p>
<p>[Edit] Changed the link for ilker&#8217;s &#8216;<a href="http://www.thethinkingblog.com/">The Thinking Blog</a>&#8216;</p>
<p>[Edit] Changed the link for David Airey&#8217;s &#8216;<a href="http://http://www.davidairey.com/">Creative Design</a>&#8216;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ijhedges.com/2007/02/23/blogs-i-read/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Copy and Paste</title>
		<link>http://blog.ijhedges.com/2007/02/22/copy-and-paste/</link>
		<comments>http://blog.ijhedges.com/2007/02/22/copy-and-paste/#comments</comments>
		<pubDate>Thu, 22 Feb 2007 21:09:20 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://newblog.ijhedges.com/?p=157</guid>
		<description><![CDATA[In today&#8217;s computer literate society, you get so used to some concepts like copy and paste that you start assuming everyone is familiar with the skills required. It becomes difficult to remember when it didn&#8217;t exist. I think a post a few weeks ago by John Chow was a prime example of this. He was [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://gallery.ijhedges.com/weathericons/night_cloudy.jpg" alt="Cloudy Night" class="picture_float_left" height="64" width="64" /><br />
In today&#8217;s computer literate society, you get so used to some concepts like copy and paste that you start assuming everyone is familiar with the skills required. It becomes difficult to remember when it didn&#8217;t exist.</p>
<p>I think a post a few weeks ago by <a href="http://www.johnchow.com">John Chow</a> was a prime example of this. He was explaining about using a typewriter to write a letter and was asked &#8220;<a href="http://www.johnchow.com/how-do-you-copy-paste-with-that/">How do you copy and paste with that?</a>&#8221;</p>
<p>So, for anyone how needs to know, here is a quick guide to copying text from a webpage and pasting it into a blog post. The details may vary slightly depending on the blogging software that you use, but the concept is the same. I will use my last post <a href="http://blog.ijhedges.com/archives/2007/02/entry_177.php">Book Meme</a> as the example.</p>
<p>Find the text on the webpage that you want to use, in this case it was from sarabeth&#8217;s post <a href="http://nothpnowmommy.blogspot.com/2007/02/book-meme-2.html">Book Meme 2</a>. Move your mouse to just before the text that you want to copy.</p>
<p><img src="http://gallery.ijhedges.com/gallery/d/854-2/cutandpaste1.jpg" alt="Move mouse to before text to copy" /></p>
<p>Press and hold the left mouse button, then drag the mouse pointer, which will have probably changed to look like a letter &#8216;I&#8217;, over the text that you want until it is all selected, then let go of the left mouse button.</p>
<p><img src="http://gallery.ijhedges.com/gallery/d/857-2/cutandpaste2.jpg" alt="Highlight text to copy" /></p>
<p>At this point you either go to the Edit menu on your web-browser and select Copy or you can use the keyboard shortcut CTRL C (press and hold the CTRL key, then press the letter C, then let go of both). This copies the selection to the computer&#8217;s clipboard.</p>
<p>In your blogging software, choose the place in a post where you want to put the selected text and left click with your mouse in this place. Then either on the Edit menu choose Paste, or you can use the keyboard shortcut CTRL V (press and hold the CTRL key, then press the letter V, then release both).</p>
<p><img src="http://gallery.ijhedges.com/gallery/d/859-2/cutandpaste3.jpg" alt="Choose Paste from Edit menu or Ctrl C" /></p>
<p>This pastes the selection from the computer&#8217;s clipboard to the location that you selected.</p>
<p><img src="http://gallery.ijhedges.com/gallery/d/861-2/cutandpaste4.jpg" alt="Text pasted into post ready for formatting" /></p>
<p>After this you can reformat individual sections by selecting them and choosing Bold or Italic or changing the colour as required.</p>
<p>[Edited for spelling]</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ijhedges.com/2007/02/22/copy-and-paste/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
