<?xml version="1.0" ?>
<rss version="2.0">
<channel>
<title>Harvey Kane</title>
<description></description>
<link>http://www.harveykane.com</link>
<copyright>Harvey Kane 2008</copyright>
<item>
<title>Monster hailstones in Auckland</title>
<description>Last Friday was a pretty miserable day, and it was raining yet again. Then the hail started, then shortly after the neighbours started throwing rocks at my house.
&lt;br /&gt;
&lt;br /&gt;
I stick my head out the window to see what's going on, and it's raining gigantic hailstones (not the neighbours after all).
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img-shadow&quot;&gt;&lt;img src=&quot;http://www.harveykane.com/images/500/articles/souped-up-hailstone.jpg&quot; alt=&quot;Super sized hailstone  in Auckland NZ.&quot; /&gt;&lt;/div&gt;&lt;br style=&quot;clear:both;&quot; /&gt;
&lt;br /&gt;
&lt;br /&gt;
This may be a normal sized hailstone in many parts of the world, but it's by far the biggest on I have seen in Auckland. Measuring over 1cm in diameter, and certainly large enough to keep your bourbon cold, there were probably plenty larger than the one I grabbed. Luckily these sized hailstones didn't last that long.&lt;p&gt;Source: &lt;a href=&quot;http://www.harveykane.com/articles/46/monster-hailstones-in-auckland/&quot;&gt;Monster hailstones in Auckland&lt;/a&gt;&lt;/p&gt;</description>
<link>http://www.harveykane.com/articles/46/monster-hailstones-in-auckland/</link>
<pubDate>Mon, 25 Jun 2007 00:00:00 +1200</pubDate>
</item>
<item>
<title>A day of blog silence?</title>
<description>People have been suggesting that bloggers take a day of silence in respect of the shootings at Virginia recently. Well, my deeply respectful blog has taken many weeks of silence, but somehow this is not the reason.
&lt;br /&gt;
&lt;br /&gt;
So I'm going to share my thoughts on the whole issue.
&lt;br /&gt;
&lt;h3&gt;Gun control&lt;/h3&gt;
Over here in New Zealand, where we have actual gun control laws, it's somewhat difficult for the average joe to get his hands on a gun. If I woke up one morning, a bit upset and in a good mood for a gun wielding rampage, let's see what I could muster at a moment's notice...
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;A large piece of 4x2 with rusty nails in it&lt;/li&gt;
&lt;li&gt;A well-used crowbar&lt;/li&gt;
&lt;li&gt;A squash racquet&lt;/li&gt;
&lt;li&gt;An empty bottle of Wild Turkey&lt;/li&gt;
&lt;li&gt;I have enough spare pipe in the garage to make a potato gun, but I'd need to go to the shops and get some potatoes&lt;/li&gt;
&lt;li&gt;Or, of I felt like a 20 min trip out to see my parents, I could steal a .22 rifle from Dad, a formidable weapon if you are a possum or rabbit.&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;br /&gt;
I haven't even followed this story closely enough to know what sort of weapon the gunman used, but it doesn't really matter. I'll wager it was a semi-auto rifle of sorts, or a pistol with a fair sized clip. Certainly none of the weapons listed above.
&lt;br /&gt;
&lt;br /&gt;
With the &amp;quot;constitutional right to bear arms&amp;quot; I understand this makes it fairly easy for anyone to own a semi-automatic weapon or pistol. Or, at least easy to know someone who has one of these weapons.
&lt;br /&gt;
&lt;br /&gt;
America is now in the position where Americans need military grade weaponry to protect themselves against other Americans with military grade weaponry. To me, that logic is so totally fucked that I wouldn't know where to start in fixing things. Introducing tighter gun control laws isn't going to prevent this sort of thing happening - there are far too many guns in the wild, and it's going to take generations of propaganda to change the constitutional mindset.
&lt;br /&gt;
&lt;br /&gt;
Gun control is not the whole cause of the problem, but &lt;strong&gt;it is a part of the problem&lt;/strong&gt;. A potato-gun-wielding nut job on a rampage is a lot less deadly than a nut job with a semi-auto. The rampages will still happen, but the story will end up as local trivia, not world headlines with 32 casualties.
&lt;br /&gt;
&lt;br /&gt;
America needs some strong leadership to see through these major social issues.&lt;p&gt;Source: &lt;a href=&quot;http://www.harveykane.com/articles/45/a-day-of-blog-silence/&quot;&gt;A day of blog silence?&lt;/a&gt;&lt;/p&gt;</description>
<link>http://www.harveykane.com/articles/45/a-day-of-blog-silence/</link>
<pubDate>Mon, 23 Apr 2007 00:00:00 +1200</pubDate>
</item>
<item>
<title>PHP Warnings on or off?</title>
<description>I managed to break a website yesterday without realising it. This sounds really bad, but in this case breaking things is the first step on the road to fixing things. Let me explain.
&lt;br /&gt;
&lt;br /&gt;
What was unusual about this particular incident was that I didn't actually break the site - I just turned on the PHP warnings that said the site was broken.
&lt;br /&gt;
&lt;br /&gt;
All of a sudden, the site owner was getting emails from visitors saying his site was broken.
&lt;br /&gt;
&lt;br /&gt;
However, the site had been broken all along. The errors were still happening, and whatever data was being saved may have all kinds of errors in it.
&lt;br /&gt;
&lt;h3&gt;PHP error messages&lt;/h3&gt;
With PHP, you can choose what sort of errors you want displayed on the screen. All, errors, warnings, notices, or none.
&lt;br /&gt;
&lt;br /&gt;
If you choose none, then your clients don't get to see any ugly PHP errors on your site.
&lt;br /&gt;
&lt;br /&gt;
If you show all errors, then your clients do see all these ugly messages. Changes are you or them will see the error, and then do something about it (fix it).
&lt;br /&gt;
&lt;br /&gt;
I consider it much better to have the error visible than to have the site failing silently and alerting nobody that there is a problem.
&lt;br /&gt;
&lt;br /&gt;
A better way again is to log the errors to a file, and have the log emailed to your developer every so often. This way, your clients don't get to see the nasty looking messages, but the developer does.
&lt;br /&gt;
&lt;br /&gt;
Errors happen all the time, so it's worthwhile to take the time to understand how the error reporting system works, and to ensure that errors don't happen quietly and unnoticed.
&lt;br /&gt;
&lt;p&gt;Source: &lt;a href=&quot;http://www.harveykane.com/articles/44/php-warnings-on-or-off/&quot;&gt;PHP Warnings on or off?&lt;/a&gt;&lt;/p&gt;</description>
<link>http://www.harveykane.com/articles/44/php-warnings-on-or-off/</link>
<pubDate>Wed, 11 Apr 2007 00:00:00 +1200</pubDate>
</item>
<item>
<title>PHP Tutor</title>
<description>PHP Tutor is a collection of &lt;a href=&quot;http://www.phptutor.info&quot; target=&quot;_BLANK&quot;&gt;PHP tutorials&lt;/a&gt; and articles, covering topics such as security, how-to guides and the like.
&lt;br /&gt;
&lt;br /&gt;
&lt;div align=&quot;center&quot;&gt;
&lt;div class=&quot;img-shadow&quot;&gt;&lt;img src=&quot;http://www.harveykane.com/images/600/phptutor.jpg&quot; alt=&quot;PHP Tutor - PHP Tutorials&quot; /&gt;&lt;/div&gt;&lt;br style=&quot;clear:both;&quot; /&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
The homepage states the site is a place to get started with PHP, and the site offers PHP tutorials, links to PHP discussion forums and information on PHP security.
&lt;br /&gt;
&lt;h3&gt;PHP Tutorials&lt;/h3&gt;
The &lt;a href=&quot;http://www.phptutor.info/php-tutorials.php&quot; target=&quot;_BLANK&quot;&gt;PHP tutorials&lt;/a&gt; section of the site appears to be a list of tutorials from the PHP Freaks website.
&lt;br /&gt;
The tutorials themselves seem well written, though I would hardly say they were for beginners.
&lt;br /&gt;
Interesting to see they have a tutorial on how to write a BBCode parser, something I have spent many many hours doing myself.
&lt;br /&gt;
I would prefer to see a little more depth in the tutorials section, and perhaps some way of categorising them. Separating out the tutorials by difficulty level or functionality would be a good way of adding value.
&lt;br /&gt;
&lt;h3&gt;PHP Discussion&lt;/h3&gt;
The &lt;a href=&quot;http://www.phptutor.info/php-discussion.php&quot; target=&quot;_BLANK&quot;&gt;PHP discussion&lt;/a&gt; section provides hot links to the various discussion threads on popular forums.
&lt;br /&gt;
DigitalPoint, Webmaster Talk and PHP freaks are listed here, all popular forums for coding and internet marketing and good places to hang out.
&lt;br /&gt;
The site includes links to the latest topics on these forums.
&lt;br /&gt;
&lt;h3&gt;PHP Security&lt;/h3&gt;
The section on PHP security covers some of the more common security mistakes new coders make, such as register globals being left on, how to prevent &lt;a href=&quot;http://www.phptutor.info/php-security.php&quot; target=&quot;_BLANK&quot;&gt;SQL injection&lt;/a&gt; and cross site scripting (XSS).
&lt;br /&gt;
&lt;h3&gt;Overall&lt;/h3&gt;
I really think this site would benefit from more hand-written, unique content.
&lt;br /&gt;
&lt;br /&gt;
PHP has a lot to offer, and there are plenty of ways to add value to the community and help new coders to learn PHP.
&lt;br /&gt;
Tutorials are always a good start, and I spent many days running through tutorials when I started with PHP. I would add more reviews on popular software packages - is VBulletin better than PHPBB? Is Joomla! search engine friendly? etc. Links to coding standards such as &lt;a href=&quot;http://www.horde.org/horde/docs/?f=CODING_STANDARDS.html &quot; target=&quot;_BLANK&quot;&gt;Horde&lt;/a&gt; would have been something I could have used many years ago - I now spend a lot of time replacing tabs with spaces in all my old code!
&lt;br /&gt;
&lt;br /&gt;
It's totally possible to make a successful site based around syndicated content, but it's important to add your own touch to give your site a unique feel.
&lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;This article is a sponsored review for PHP Tutor.&lt;/em&gt;&lt;p&gt;Source: &lt;a href=&quot;http://www.harveykane.com/articles/43/php-tutor/&quot;&gt;PHP Tutor&lt;/a&gt;&lt;/p&gt;</description>
<link>http://www.harveykane.com/articles/43/php-tutor/</link>
<pubDate>Wed, 14 Feb 2007 00:00:00 +1300</pubDate>
</item>
<item>
<title>Local Moa</title>
<description>Today's post takes a look at Local Moa - a fairly new &lt;a href=&quot;http://www.localmoa.co.nz/&quot; target=&quot;_BLANK&quot;&gt;local search&lt;/a&gt; service for finding stuff near you. Local Moa is a New Zealand search facility that brings up the results on a map.
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img-shadow&quot;&gt;&lt;img src=&quot;http://www.harveykane.com/images/600/articles/local-moa.jpg&quot; alt=&quot;Local Moa - local search engine for New Zealand&quot; /&gt;&lt;/div&gt;&lt;br style=&quot;clear:both;&quot; /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;Above: Local Moa - a local search engine with map-based results. And lots of lime green.&lt;/em&gt;
&lt;br /&gt;
&lt;br /&gt;
Potentially this sort of thing could be quite useful - Google often is no good for finding local bricks and mortar businesses, because they often don't have a website (or don't know how to optimise their website). We have a local Thai food place up the road, which does great Thai food and is well priced. I have been there a dozen times or more, but their branding is so terrible I can't say what they are called.
&lt;br /&gt;
&lt;h3&gt;Local Moa&lt;/h3&gt;
The first thing that peaks my interest on the site is the design - it's really nice. The graphics are pleasing to the eye, and it's full of web 2.0 goodness such as shaded text inputs and excessive lime green. Great stuff.
&lt;br /&gt;
&lt;br /&gt;
I see their mapping is based on Google maps, which is good - a much better idea for anyone who still thinks the Wises website is cool.
&lt;br /&gt;
&lt;br /&gt;
The site is broken down into categories to get you started - &lt;a href=&quot;http://www.localmoa.co.nz/hotels/&quot; target=&quot;_BLANK&quot;&gt;NZ hotels&lt;/a&gt;, &lt;a href=&quot;http://www.localmoa.co.nz/restaurants/&quot; target=&quot;_BLANK&quot;&gt;NZ restaurants&lt;/a&gt;, &lt;a href=&quot;http://www.localmoa.co.nz/entertainment/&quot; target=&quot;_BLANK&quot;&gt;entertainment&lt;/a&gt; etc.
&lt;br /&gt;
&lt;br /&gt;
But what's really important here is the search results. Can it bring up anything useful?
&lt;br /&gt;
&lt;h3&gt;Search results&lt;/h3&gt;
I'll have a look for my Thai takeaway, so I search for &amp;quot;thai&amp;quot; in  &amp;quot;henderson&amp;quot;. Sure enough, my local Thai place is called &amp;quot;Thai Pylin Restaurant&amp;quot;. Cool. I see the Thai Kitchen in Henderson is missing however, which should definitely be there in the results.
&lt;br /&gt;
&lt;br /&gt;
I try a few other local businesses I know exist, such as &amp;quot;childcare in henderson&amp;quot; and &amp;quot;music in henderson&amp;quot; and the results seem to be incomplete. Nobody would expect a complete directory of all businesses in NZ, however the site does need *most* of the businesses for it to be useful to the public. With a well filled out set of business listings, I think this site would be very useful for finding bricks and mortar type businesses near you.
&lt;br /&gt;
&lt;h3&gt;SEO&lt;/h3&gt;
I'm so used to reviewing sites for SEO mistakes, and I couldn't help myself this time. It's good to see the site owner has a SEO strategy in place. The URLs are nice looking eg http://www.localmoa.co.nz/search/thai/near/henderson
&lt;br /&gt;
&lt;br /&gt;
Titles include the words &amp;quot;Thai&amp;quot; and &amp;quot;Henderson&amp;quot; and they have been thoughtfully Camel Cased for readability. Better yet, the search results pages have bookmarkable URLs which search engines can find. Often people make their search results pages unindexable, so it's nice to see this being done. To help this along, the homepage includes links to the 5 most recent searches - presumably to give the spiders something to work with?
&lt;br /&gt;
&lt;br /&gt;
Cool - I love to see a strategy in place.
&lt;br /&gt;
&lt;h3&gt;Overall&lt;/h3&gt;
Overall, I'm impressed with the design, the speed of the site, and the overall functionality. I think the results would need to be more complete before I would use this service myself. I didn't see any way of adding a business into the directory, paid or otherwise - perhaps this would help get some traction.
&lt;br /&gt;
&lt;br /&gt;
This article is a paid review of LocalMoa - &lt;a href=&quot;http://www.localmoa.co.nz&quot; target=&quot;_BLANK&quot;&gt;Local search in New Zealand&lt;/a&gt;&lt;p&gt;Source: &lt;a href=&quot;http://www.harveykane.com/articles/42/local-moa/&quot;&gt;Local Moa&lt;/a&gt;&lt;/p&gt;</description>
<link>http://www.harveykane.com/articles/42/local-moa/</link>
<pubDate>Thu, 21 Dec 2006 00:00:00 +1300</pubDate>
</item>
<item>
<title>Environmental NZ</title>
<description>I launched a new website for &lt;a href=&quot;http://www.environmentalnz.co.nz&quot; target=&quot;_BLANK&quot;&gt;Environmental NZ&lt;/a&gt; yesterday. This site serves as a forum for New Zealand environmental engineers, and is owned and operated by a mate of mine.
&lt;br /&gt;
&lt;br /&gt;
Yes, I will sometimes design a website for a couple of bottles of wine if you push me long and hard enough :)
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img-shadow&quot;&gt;&lt;img src=&quot;http://www.harveykane.com/images/500/environmental-nz-screenshot.jpg&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;br style=&quot;clear:both;&quot; /&gt;
&lt;br /&gt;
&lt;br /&gt;
It's another CMS based site, and the success of any forum is based on how well the community is established - whether people feel the urge to post useful content, or just another haven for spammers.
&lt;br /&gt;
&lt;br /&gt;
The design is simple, and as usual, there is a strong focus on SEO. Most forums today still have ugly looking URLs - often including a session ID, and this is crazy when forums provide a free source of original content for your site. You just need to apply the same on-page SEO rules as you would any other page.
&lt;br /&gt;
&lt;h3&gt;What's with the frogs?&lt;/h3&gt;
Frogs are especially sensitive to their environment. If there are changes in temperature / radiation / environmental gases etc, chances are the frogs will notice it first.
&lt;br /&gt;
If you come across a pond full of dead frogs, I wouldn't recommend going for a swim.&lt;p&gt;Source: &lt;a href=&quot;http://www.harveykane.com/articles/41/environmental-nz/&quot;&gt;Environmental NZ&lt;/a&gt;&lt;/p&gt;</description>
<link>http://www.harveykane.com/articles/41/environmental-nz/</link>
<pubDate>Tue, 19 Dec 2006 00:00:00 +1300</pubDate>
</item>
<item>
<title>Sirius Sports</title>
<description>I launched the re-designed Sirius Sports site on the weekend. The new site takes some great existing content and packages it into a CMS (content management system) with a new design.
&lt;br /&gt;
This removes the frames and javascript from the old site, and makes managing the content very straightforward.
&lt;br /&gt;
&lt;br /&gt;
Sirius Sports supply sporting equipment across New Zealand, in particular softball, baseball, gridiron, soccer and basketball equipment.
&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.siriussports.co.nz&quot; target=&quot;_BLANK&quot;&gt;www.siriussports.co.nz&lt;/a&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img-shadow&quot;&gt;&lt;img src=&quot;http://www.harveykane.com/images/650/articles/sirius-sports-screenshot.jpg&quot; alt=&quot;Sirius Sports&quot; /&gt;&lt;/div&gt;&lt;br style=&quot;clear:both;&quot; /&gt;
&lt;p&gt;Source: &lt;a href=&quot;http://www.harveykane.com/articles/40/sirius-sports/&quot;&gt;Sirius Sports&lt;/a&gt;&lt;/p&gt;</description>
<link>http://www.harveykane.com/articles/40/sirius-sports/</link>
<pubDate>Sun, 09 Jul 2006 00:00:00 +1200</pubDate>
</item>
<item>
<title>Wine Photo Shop - Welcome back</title>
<description>I have been working on a redesign of an existing site for &lt;strong&gt;Wine Photo Shop&lt;/strong&gt;, a small image library site for Kerr Fram Vineyard in Kumeu. The site serves as a place to display local photography for Kerr Farm owner, Jaison Kerr.
&lt;br /&gt;
&lt;br /&gt;
The new Wine Photo Shop design is simple, clean and functional. All images on the site are resized automatically, and care has been taken to ensure the site meets modern web design standards, something that is becoming increasingly important. The site is based on my content management system to make it easy to maintain and search engine friendly.
&lt;br /&gt;
&lt;br /&gt;
Visit the site at www.winephotoshop.com for &lt;a href=&quot;http://www.winephotoshop.com&quot; target=&quot;_BLANK&quot;&gt;NZ winemaking images&lt;/a&gt;.&lt;p&gt;Source: &lt;a href=&quot;http://www.harveykane.com/articles/39/wine-photo-shop-welcome-back/&quot;&gt;Wine Photo Shop - Welcome back&lt;/a&gt;&lt;/p&gt;</description>
<link>http://www.harveykane.com/articles/39/wine-photo-shop-welcome-back/</link>
<pubDate>Fri, 05 May 2006 00:00:00 +1200</pubDate>
</item>
<item>
<title>How not to steal content</title>
<description>
&lt;div class=&quot;info&quot;&gt;Stolen content is probably more prevalent on the internet than most people think. It's so easy to steal content by right clicking and &amp;quot;view source&amp;quot; compared with the task of creating your own... Except when someone steals &lt;strong&gt;your&lt;/strong&gt; content....&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
With the internet being the vast place that it is, and given that digital information is designed to be copied, it's surprising this doesn't happen more often. But I had to laugh when I saw this shamless content theft from one of the sites I developed at &lt;a href=&quot;http://www.pdfcomm.co.nz&quot; target=&quot;_BLANK&quot;&gt;work&lt;/a&gt;.
&lt;br /&gt;
&lt;br /&gt;
Take a look at &lt;a href=&quot;http://www.nzflowers.co.nz/faq.php&quot; target=&quot;_BLANK&quot;&gt;http://www.nzflowers.co.nz/faq.php&lt;/a&gt; - it's my standard database-driven FAQ page module, wrapped up in a nice template.
&lt;br /&gt;
&lt;br /&gt;
Now have a look at &lt;a href=&quot;http://www.flowerstoturkey.com/florist-faq.asp&quot; target=&quot;_BLANK&quot;&gt;http://www.flowerstoturkey.com/florist-faq.asp&lt;/a&gt; - notice anything similar?
&lt;br /&gt;
&lt;br /&gt;
Not only is the content exactly the same, the HTML code is identical as well. A classic case of &amp;quot;view source&amp;quot; then cut-paste into their own site. As if this wasn't bad enough, they were too slack to proof-read the stolen content. The dead giveaway is the sentence beginning with...
&lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;&lt;strong&gt;Protecting your privacy is important to Iain Stephens Floral Design&lt;/strong&gt;&lt;/em&gt;
&lt;br /&gt;
&lt;br /&gt;
That's right - they forgot to change some of the references to Iain Stephens, which they should have replaced with their own name. A simple CTRL-F would have solved this very easily.
&lt;br /&gt;
&lt;br /&gt;
I found their site while doing a google search for &amp;quot;iain stephens floral design&amp;quot; - their site had fairly good rankings for this phrase as it appears 3 times on the page.
&lt;br /&gt;
&lt;br /&gt;
A more efficient way of finding &amp;quot;borrowed&amp;quot; content on the web is to use the &lt;a href=&quot;http://www.copyscape.com&quot; target=&quot;_BLANK&quot;&gt;copyscape&lt;/a&gt; search engine. This searches the web for pages that contain copied phrases - well worth looking at if you are worried about your content appearing all over the place. The free version looks for stolen content one page at a time, the paid version will scan your whole site and search for any duplicate or stolen content.&lt;p&gt;Source: &lt;a href=&quot;http://www.harveykane.com/articles/35/how-not-to-steal-content/&quot;&gt;How not to steal content&lt;/a&gt;&lt;/p&gt;</description>
<link>http://www.harveykane.com/articles/35/how-not-to-steal-content/</link>
<pubDate>Tue, 07 Feb 2006 00:00:00 +1300</pubDate>
</item>
<item>
<title>Road slicks better than expected</title>
<description>I have been riding the bike into work the past few weeks for a bit of exercise and it's all going well so far. I have borrowed a mountain bike, and are using that until I can get my road bike operational again - this may never happen as it needs 2 new wheels which may well cost more than a new bike.
&lt;br /&gt;
&lt;br /&gt;
Yesterday I put some road slicks on the bike instead of the knobbly tires. This took my time from 1 hour 10 mins to 55 mins. Just like that, &lt;strong&gt;15 minutes&lt;/strong&gt; gone from my time. I knew it would make a difference, but I'm quite impressed with this result.&lt;p&gt;Source: &lt;a href=&quot;http://www.harveykane.com/articles/34/road-slicks-better-than-expected/&quot;&gt;Road slicks better than expected&lt;/a&gt;&lt;/p&gt;</description>
<link>http://www.harveykane.com/articles/34/road-slicks-better-than-expected/</link>
<pubDate>Fri, 03 Feb 2006 00:00:00 +1300</pubDate>
</item>
<item>
<title>Ph33r the Kidney Stone</title>
<description>Right at the top of the list of things you don't want to get has to be Kidney Stones. I managed to get one of these little pirates on Monday.
&lt;br /&gt;
&lt;br /&gt;
It all started with a bike ride. All going well afterwards, apart from a slightly sore back. A few hours later, the back pain is getting worse, and I'm at a loss as to where it came from - I did raise the bike seat an extra notch, maybe this caused it?
&lt;br /&gt;
&lt;br /&gt;
A few hours later, the pain is just unbearable. Kirstin google's the symtoms and it's looking like Kidney Stones. So off to the doc I go to get it fixed up.
&lt;br /&gt;
Doc confirms this is the problem, tells me to drink loads of water, and gives me some painkillers via injection. The painkillers removed about half the pain, enough for it to not be sore, but still annoying.
&lt;br /&gt;
&lt;br /&gt;
This is all good until 1am, when the painkillers wear off. At this point, the pain is unbearable, I'm munching pills like sweets and it's not helping. I call the hospital to see what I need to do, and they pass me onto the 24 hour healthline. I think the name &amp;amp;quot;24 hour healthline&amp;amp;quot; refers to the amount of time you have to wait in the phone queue before you get to speak to a real person. I waited 25 mins, then gave up, thankful that I wasn't ringing with urgent heart problems.&amp;lt;
&lt;br /&gt;
&lt;br /&gt;
So I went to the med centre and got some pethedine, which worked a treat. Next day, I pass the kidney stone in my urine - pain gone.
&lt;br /&gt;
&lt;br /&gt;
I definitely don't recommend getting one of these - some people (who have experienced both) liken the pain to childbirth. Kidney stones can be prevented by drinking lots of water, so I guess I'll be doing just that from now on.&lt;p&gt;Source: &lt;a href=&quot;http://www.harveykane.com/articles/33/ph33r-the-kidney-stone/&quot;&gt;Ph33r the Kidney Stone&lt;/a&gt;&lt;/p&gt;</description>
<link>http://www.harveykane.com/articles/33/ph33r-the-kidney-stone/</link>
<pubDate>Wed, 01 Feb 2006 00:00:00 +1300</pubDate>
</item>
<item>
<title>A good start to the campaign</title>
<description>As mentioned in &lt;a title=&quot;tips for handling telemarketers&quot; href=&quot;http://www.harveykane.com/articles/31/tips-for-handling-telemarketers.htm&quot;&gt;this article&lt;/a&gt;, I'm now telling all telemarketers to &amp;quot;please hold&amp;quot; whenever they phone me at home. Then leave them hanging on indefinitely while they decide how long they should stay on the line.&lt;br/&gt;
&lt;br/&gt;
So tonight I get a call at home, the first line being &lt;br/&gt;
&lt;br/&gt;
&lt;span style=&quot;font-weight: bold;&quot;&gt;Marketing parasite: &lt;/span&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;&amp;quot;can I speak to the homeowner who is between 20 and.....&amp;quot;&lt;br/&gt;
&lt;/span&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Me(in the friendliest and most genuine voice I can muster): &lt;/span&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;Sure, that's me. Can I just put you on hold for a sec... &lt;/span&gt;&lt;br/&gt;
[put phone on speaker, check the time, carry on doing what I was doing and wait for the phone to start beeping]&lt;br/&gt;
&lt;br/&gt;
This took a whopping 5 minutes, 20 seconds. Well done marketing scumbag. Looking forward to the next one &lt;img src=&quot;http://www.harveykane.com//FCKeditor/editor/images/smiley/msn/teeth_smile.gif&quot; alt=&quot;&quot;/&gt;&lt;br/&gt;
&lt;span style=&quot;font-style: italic;&quot;&gt;&lt;/span&gt;&lt;p&gt;Source: &lt;a href=&quot;http://www.harveykane.com/articles/32/a-good-start-to-the-campaign/&quot;&gt;A good start to the campaign&lt;/a&gt;&lt;/p&gt;</description>
<link>http://www.harveykane.com/articles/32/a-good-start-to-the-campaign/</link>
<pubDate>Fri, 27 Jan 2006 00:00:00 +1300</pubDate>
</item>
<item>
<title>Big Schlong</title>
<description>Whilst taking a look through the visitor logs today, I noticed some odd keywords showing up. In particular, I seem to be getting more visitors for the phrase &amp;quot;big schlong&amp;quot; than I do for web development type keywords. Granted there is less competetion for &amp;quot;big schlong&amp;quot; than there is for &amp;quot;web development&amp;quot;, but who would have thought.
&lt;br /&gt;
&lt;br /&gt;
I mentioned the phrase &amp;quot;big schlong&amp;quot; once on an article a while ago in the context of deciding if the unborn baby was a boy or a girl. The article no longer mentions this, but I'm still getting a bit of traffic coming through.
&lt;br /&gt;
&lt;br /&gt;
I guess this proves that people who use the internet have smutty minds, and a look at the top searched keywords would confirm this.
&lt;br /&gt;
&lt;br /&gt;
So, it's possible that I'll rebrand this site as &amp;quot;Harvey Kane Paris Hilton Big Schlong PHP Sex Development&amp;quot; over coming weeks.
&lt;br /&gt;
&lt;br /&gt;
1 	sex
&lt;br /&gt;
2 	paris hilton
&lt;br /&gt;
3 	hentai
&lt;br /&gt;
4 	google
&lt;br /&gt;
5 	games cheat
&lt;br /&gt;
6 	yahoo
&lt;br /&gt;
7 	ebay
&lt;br /&gt;
8 	boobs
&lt;br /&gt;
9 	jessica simpson
&lt;br /&gt;
10 	games
&lt;br /&gt;
11 	poetry
&lt;br /&gt;
12 	jenna jameson
&lt;br /&gt;
13 	89.com
&lt;br /&gt;
14 	carmen electra 
&lt;br /&gt;
15 	mapquest
&lt;br /&gt;
16 	top 100 baby names
&lt;br /&gt;
17 	tits
&lt;br /&gt;
18 	girls
&lt;br /&gt;
19 	dogs
&lt;br /&gt;
20 	pamela anderson
&lt;br /&gt;
21 	lesbians
&lt;br /&gt;
22 	amoxil
&lt;br /&gt;
23 	girls gone wild
&lt;br /&gt;
24 	yahoo.com
&lt;br /&gt;
25 	anime
&lt;br /&gt;
26 	music lyrics
&lt;br /&gt;
27 	literotica
&lt;br /&gt;
28 	britney spears
&lt;br /&gt;
29 	nude
&lt;br /&gt;
30 	playboy
&lt;br /&gt;
31 	playstation 2 cheats
&lt;br /&gt;
32 	googletestad
&lt;br /&gt;
33 	jessica alba
&lt;br /&gt;
34 	tattoos
&lt;br /&gt;
35 	ass
&lt;br /&gt;
36 	teen girls
&lt;br /&gt;
37 	lesbian
&lt;br /&gt;
38 	hilary duff
&lt;br /&gt;
39 	hurricane katrina
&lt;br /&gt;
40 	hotmail
&lt;br /&gt;
41 	dictionary
&lt;br /&gt;
42 	lindsay lohan
&lt;br /&gt;
43 	big tits
&lt;br /&gt;
44 	radio stations
&lt;br /&gt;
45 	lolita
&lt;br /&gt;
46 	angelina jolie
&lt;br /&gt;
47 	thongs
&lt;br /&gt;
48 	funny jokes
&lt;br /&gt;
49 	green day
&lt;br /&gt;
50 	50 cent
&lt;br /&gt;
&lt;br /&gt;
Source: &lt;a href=&quot;http://www.mikes-marketing-tools.com/keywords/&quot; target=&quot;_BLANK&quot;&gt;http://www.mikes-marketing-tools.com/keywords/&lt;/a&gt;&lt;p&gt;Source: &lt;a href=&quot;http://www.harveykane.com/articles/38/big-schlong/&quot;&gt;Big Schlong&lt;/a&gt;&lt;/p&gt;</description>
<link>http://www.harveykane.com/articles/38/big-schlong/</link>
<pubDate>Thu, 26 Jan 2006 00:00:00 +1300</pubDate>
</item>
<item>
<title>Search Engine Optimisation</title>
<description>
&lt;div class=&quot;info&quot;&gt;&lt;strong&gt;Search engine optimisation&lt;/strong&gt; is the process of engineering your site to achieve better search engine positions. Search engine optimisation can be done in many different ways, this article covers the first steps you should take in &lt;em&gt;search engine optimisation&lt;/em&gt;.&lt;/div&gt;
&lt;br /&gt;
&lt;h3&gt;Keyword Research&lt;/h3&gt;
Before starting any search engine optimisation on your site, you should be targeting the right keywords. If it's visitor volume you are after, then you want to optimise for phrases that people actually search for.
&lt;br /&gt;
Wordtracker (http://www.wordtracker.com) is a paid service which has excellent keyword research tools - find the popular search phrases relating to your site, and see how much competetion there is for these phrases.
&lt;br /&gt;
You want to optimise for the high volume phrases that have the least competetion (as this makes it easier to get a top position).
&lt;br /&gt;
Create a list of phrases (in order of importance) and use this when optimising the content on your site.
&lt;br /&gt;
&lt;h3&gt;Competetive Analysis&lt;/h3&gt;
Before getting too far into this search engine optimisation process, it's good to know what you are up against. Enter some of the phrases from your above list, and get a feel for the competetion. Often the same sites will appear near the top, so spend some time checking out what they are doing right - what keywords they are targeting, how good their onsite SEO is, and how many backlinks they have.
&lt;br /&gt;
&lt;h3&gt;Optimising Content&lt;/h3&gt;
With your shopping list of phrases, target one phrase per page. Use the phrase at the start of your title tag, H1 tag, page URL, and twice in the first paragraph. Use the phrase at least once somewhere else on the page. Always make sure the phrase fits in with the text, and is readable to a human. You need to look professional so your visitors will trust your site.
&lt;br /&gt;
At this stage, you can optimise for secondary phrases. If your primary phrase is &amp;quot;SEO&amp;quot; then you can easily optimise for &amp;quot;SEO Techniques&amp;quot; as a secondary phrase.
&lt;br /&gt;
&lt;h3&gt;Internal Linking&lt;/h3&gt;
Link to your content pages using your chosen phrases as the clickable text. Due to space constraints and user considerations (eg &amp;quot;Home&amp;quot; should always be labelled &amp;quot;home&amp;quot; on the main navigation), you may want to include these optimised links in the footer navigation.
&lt;br /&gt;
This logic will also apply to any external links to the site, which comes later.
&lt;br /&gt;
&lt;h3&gt;Technical considerations&lt;/h3&gt;
At this stage, you have created your pages and optimised the text. Now you need to ensure that Google can index your site - Search engine optimisation is useless if your site isn't indexed.
&lt;br /&gt;
Primarily, you need to ensure every page is accessible through links from the homepage - an unlinked page is not going to get found. Use a sitemap on a large site, use footer navigation, and avoid forms, flash or javascript like the plague for your main navigation.
&lt;br /&gt;
Run &lt;a href=&quot;http://home.snafu.de/tilman/xenulink.html&quot; target=&quot;_BLANK&quot;&gt;Xenu&lt;/a&gt; through your site to check for broken links, and ensure Xenu can find each page - if it can't, the neither can Google.
&lt;br /&gt;
Remove all duplicate content from your site - see this article on &lt;a href=&quot;http://www.harveykane.com/articles/29/preventing-duplicate-content.htm&quot;&gt;preventing duplicate content&lt;/a&gt;.
&lt;br /&gt;
Create a Google sitemap and submit to Google (you will need a free Google account for this).
&lt;br /&gt;
&lt;h3&gt;Link Building&lt;/h3&gt;
A successful search engine optimisation campaign can be done by link building alone, however this is definitely the hard way to do it. The fact is there are thousands of very badly optimised sites that perform very well because they have great incoming links.
&lt;br /&gt;
Don't build links too quickly on new sites, build slowly over 6 months and don't push too hard.
&lt;br /&gt;
You can get links using any of the following methods..
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Reciprocal Link exchange with other sites&lt;/li&gt;
&lt;li&gt;Writing articles and submitting to article sites&lt;/li&gt;
&lt;li&gt;Paid one way links&lt;/li&gt;
&lt;li&gt;Writing interesting or contraversial content that other sites will naturally link to (the best method)&lt;/li&gt;
&lt;li&gt;Providing something free - a software tool or resource&lt;/li&gt;
&lt;li&gt;Getting links from your web developer on their client's other sites&lt;/li&gt;
&lt;li&gt;Posting signature links on various forums, such as this &lt;a href=&quot;http://www.v7n.com/forums/&quot; target=&quot;_BLANK&quot;&gt;SEO forum&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Submitting to directories (one way), free or paid&lt;/li&gt;
&lt;li&gt;Writing testimonials for products you have used (often these are published with a link)&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;h3&gt;Ongoing&lt;/h3&gt;
Remember, search engines do things slowly, so it's best to make small changes and upload them straight away, rather than doing the entire site offline and uploading the final product once it's all done. Changes to the homepage can be detected within a few days, whereas changes to subpages can take several weeks.
&lt;br /&gt;
Keep an eye on your rankings, and also the traffic each phrase is bringing in. If your homepage has a page 1 listing for a phrase, but isn't generating any traffic, then you are probably targeting the wrong phrase.
&lt;br /&gt;
&lt;br /&gt;
Also make sure you spend some time each month keeping up to date with what the search engines are doing. Keeping up with a good &lt;a href=&quot;http://blog.v7n.com&quot; target=&quot;_BLANK&quot;&gt;SEO blog&lt;/a&gt;, or visiting some of the bigger forums is a good way to find out what Google is up to and whether you need to vary your strategy.&lt;p&gt;Source: &lt;a href=&quot;http://www.harveykane.com/articles/36/search-engine-optimisation/&quot;&gt;Search Engine Optimisation&lt;/a&gt;&lt;/p&gt;</description>
<link>http://www.harveykane.com/articles/36/search-engine-optimisation/</link>
<pubDate>Thu, 19 Jan 2006 00:00:00 +1300</pubDate>
</item>
<item>
<title>Content Management Systems</title>
<description>A content management system, or cms is a web application for managing websites. The content management system will provide you with a login which you can use to change part of the content on the website.
&lt;br /&gt;
&lt;h3&gt;How Content Management Systems work&lt;/h3&gt;
All content management systems are different - built for different purposes and needs, but most share some level of basic functionality. Content Management Systems will normally store the pages of a website in a database, not in html files like traditional web management packages such as Frontpage or Dreamweaver.
&lt;br /&gt;
A CMS is usually a good idea when the website has a lot of pages, or the content needs to be changed frequently. A good CMS will speed up the process of adding content, by creating the new page, adding a button on the menu, and putting a link in the sitemap. Becuase this happens automatically, it makes for a good level of consistency across the site, where a manual system is subject to user error.&lt;p&gt;Source: &lt;a href=&quot;http://www.harveykane.com/articles/37/content-management-systems/&quot;&gt;Content Management Systems&lt;/a&gt;&lt;/p&gt;</description>
<link>http://www.harveykane.com/articles/37/content-management-systems/</link>
<pubDate>Thu, 19 Jan 2006 00:00:00 +1300</pubDate>
</item>
</channel>
</rss>
