<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
	<title>Gordonmac dot com - Free CSS Templates</title>
	<description>Latest blog entries at Gordonmac dot com - Free CSS Templates</description>
	<link>http://gordonmac.com/</link>

	<atom:link href="http://gordonmac.com/feed/" rel="self" type="application/rss+xml" />	<item>
		<title>New CDs!</title>
		<description><![CDATA[&lt;p&gt;Just bought some CDs from Amazon (surprisingly cheap!!). It's been ages since I've bought music from anywhere other than iTunes.&lt;/p&gt;
&lt;p&gt;I got: The Fragile by NIN, The Blackening by Machine Head, TEN (+ 3 Bonus Tracks version) by Pearl Jam, Psalm 69 by Ministry and also Pretty Hate Machine by NIN.&lt;/p&gt;
&lt;p&gt;They averaged out about maybe &amp;pound;5 - &amp;pound;6 each - seems I have a budget taste in music :)&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=137</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=137</guid>
		<pubDate>Thu, 5 Jan 2012 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Caithnesian - My new website</title>
		<description><![CDATA[&lt;p&gt;I recently completed a new website for myself. How exciting!&lt;/p&gt;
&lt;p&gt;Over the past three years Wordpress has almost become my sole occupation, creating client websites using its feature-rich API and templating system. Creating websites with it has become a pleasure, and with a reasonablly smooth learning curve, most people would be able to cobble together a fully functional website in no time at all.&lt;/p&gt;
&lt;p&gt;In the past I have built my own little applications for publishing content, much like this site - but having seen the light I've made myself a site. It's for me and Kirsty to publish photos of our walks and outdoor excursions, mostly focussing on our county of Caithness.&lt;/p&gt;
&lt;p&gt;If you're interested, have a look at &lt;a href=&quot;http://www.caithnesian.co.uk/&quot;&gt;Caithnesian.co.uk&lt;/a&gt;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=136</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=136</guid>
		<pubDate>Wed, 21 Dec 2011 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Validating e-mail addresses in PHP</title>
		<description><![CDATA[&lt;p&gt;This is easily the best function I've used for validating e-mail addresses in my PHP scripts and applications.&lt;/p&gt;
&lt;pre&gt;function is_valid_email($email)
{
	$qtext = '[^\\x0d\\x22\\x5c\\x80-\\xff]';
	$dtext = '[^\\x0d\\x5b-\\x5d\\x80-\\xff]';
	$atom = '[^\\x00-\\x20\\x22\\x28\\x29\\x2c\\x2e\\x3a-\\x3c\\x3e\\x40\\x5b-\\x5d\\x7f-\\xff]+';
	$quoted_pair = '\\x5c[\\x00-\\x7f]';
	$domain_literal = &quot;\\x5b($dtext|$quoted_pair)*\\x5d&quot;;
	$quoted_string = &quot;\\x22($qtext|$quoted_pair)*\\x22&quot;;
	$domain_ref = $atom;
	$sub_domain = &quot;($domain_ref|$domain_literal)&quot;;
	$word = &quot;($atom|$quoted_string)&quot;;
	$domain = &quot;$sub_domain(\\x2e$sub_domain)*&quot;;
	$local_part = &quot;$word(\\x2e$word)*&quot;;
	$addr_spec = &quot;$local_part\\x40$domain&quot;;
	return preg_match(&quot;!^$addr_spec$!&quot;, $email) ? true : false;
}
&lt;/pre&gt;
&lt;p&gt;Use it as follows:&lt;/p&gt;
&lt;pre&gt;if((isset($_POST['email']) &amp;amp;&amp;amp; !empty($_POST['email']))
{
    if(is_valid_email($_POST['email']))
    {
	    $email = $_POST['email'];
    } else {
    	$errors['email'] = 'Please provide a valid e-mail address.';
    }
} else {
    $errors['email'] = 'Please provide your e-mail address.';
}
&lt;/pre&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=135</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=135</guid>
		<pubDate>Thu, 17 Nov 2011 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Displaying recent posts in the Wordpress sidebar</title>
		<description><![CDATA[&lt;p&gt;To add recent posts navigation to your Wordpress blog, simple add the following code to sidebar.php.&lt;/p&gt;
&lt;pre&gt;&amp;lt;h2&amp;gt;Recent Posts&amp;lt;/h2&amp;gt;
&amp;lt;nav id=&quot;navigation-recent&quot;&amp;gt;
&amp;lt;ul&amp;gt;
&amp;lt;?php
$recent_posts = wp_get_recent_posts(5);
foreach( $recent_posts as $recent ){
	$date = date(&quot;M d, Y&quot;,strtotime($recent[&quot;post_date&quot;]));
	echo '&amp;lt;li&amp;gt;&amp;lt;a href=&quot;' . get_permalink($recent[&quot;ID&quot;]) . '&quot; title=&quot;Look '.$recent[&quot;post_title&quot;].'&quot; &amp;gt;' .   $recent[&quot;post_title&quot;].'&amp;lt;/a&amp;gt; '.$date.'&amp;lt;/li&amp;gt;'; 
}
?&amp;gt;
&amp;lt;/ul&amp;gt;
&amp;lt;/nav&amp;gt;&lt;/pre&gt;
&lt;p&gt;This will display the 5 most recent posts. To change the number of recent posts just edit the following:&lt;/p&gt;
&lt;pre&gt;$recent_posts = wp_get_recent_posts(&lt;strong&gt;10&lt;/strong&gt;);&lt;/pre&gt;
&lt;p&gt;This will now display the 10 most recent posts.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=134</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=134</guid>
		<pubDate>Mon, 14 Nov 2011 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Pacific Outdoor Equipment Peak ELITE AC - Conclusion</title>
		<description><![CDATA[&lt;p&gt;Finally, the big pass the buck.&lt;/p&gt;
&lt;blockquote&gt;
    &lt;p&gt;Hi Gordon&lt;br /&gt;
    &lt;br /&gt;
    If that is the case have you tried calling the Cotswold store to see if they can arrange something via post or a refund over the phone?&lt;br /&gt;
    &lt;br /&gt;
    We now have no stock of the Peak Elite AC until our next delivery in 2012.&lt;br /&gt;
    &lt;br /&gt;
    Let me know if you can't find a solution through Cotswold.&lt;/p&gt;
&lt;p&gt;Kind regards&lt;br /&gt;
    Chris&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Hardly seems fair, seeing as I've already had one &lt;a href=&quot;http://pacoutdoor.com/&quot;&gt;Pacific Outdoor Equipment&lt;/a&gt; Peak ELITE AC replaced by Cotswold outdoors. &lt;/p&gt;
&lt;p&gt;Can safely conclude that I will never purchase anything else from this company ever again.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=133</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=133</guid>
		<pubDate>Wed, 9 Nov 2011 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Pacific Outdoor Equipment Peak ELITE AC - 2</title>
		<description><![CDATA[&lt;p&gt;After contacting &lt;a href=&quot;http://pacoutdoor.com/&quot;&gt;Pacific Outdoor Equipment&lt;/a&gt; yesterday, I recieved the following response from their Uk Distributor, &lt;a href=&quot;http://www.burton-mccall.co.uk/&quot;&gt;Burton McCall&lt;/a&gt;'s Chris Stuckey &lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Dear Gordon&lt;br /&gt;
    &lt;br /&gt;
    I am sorry to hear about the problems the you have had with your sleeping pads. It has become apparent that a faulty batch of pads have been shipped to us in the UK and therefore a small number of customers have experienced a slow deflation problem similar to the one you have experienced. We have been assured by Pacific Outdoor that this has been corrected at the manufacturing stage and therefore all the pads coming off of the production line going forward will be fault free.&lt;br /&gt;
    &lt;br /&gt;
    As we are the distributor and supply to retailers we can't offer you a direct replacement / refund. However if you return your faulty pad to the Cotswold store that you purchased it from and ask for an exchange or refund they can then send it in to us for inspection and we will sort out a replacement directly with the store so they are not out of pocket.&lt;br /&gt;
    &lt;br /&gt;
    I hope this is satisfactory, again apologies for the inconvenience and please let me know if you need any further assistance.&lt;br /&gt;
    &lt;br /&gt;
    Kind regards&lt;br /&gt;
    Chris&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;With my nearest Cotswold Outdoors being 220 miles away in Aberdeen, I hardly think this is fair. Who is responsible for the fulfillment of these warranties anyway!?&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=132</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=132</guid>
		<pubDate>Tue, 8 Nov 2011 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Pacific Outdoor Equipment Peak ELITE AC</title>
		<description><![CDATA[&lt;p&gt;I have purchased a &lt;a href=&quot;http://pacoutdoor.com/sleeping-pads/view/peak-elite-ac&quot;&gt;Pacific Outdoor Equipment Peak ELITE AC&lt;/a&gt; from Cotswold Outdoors here in the United Kingdom. This is the second replacement I've had after the first one failing on me, resulting in a night on the cold ground.&lt;/p&gt;
&lt;p&gt;Last night, on this mattress's second camping trip, the same thing happened again. A slow deflation 1.5 hours into sleeping on it, then a night on the ground in 0 degrees celsius conditions.&lt;/p&gt;
&lt;p&gt;I'm not sure what is causing these failures, as after the first time it happened I have been extremely careful with the mattress when packing, storing and using it - but still the same end result. I only weight 9.5 stones, so I don't think I'm putting much pressure on it either.&lt;/p&gt;
&lt;p&gt;At this point I feel unable to trust this product on another camping trip, in spite of it being one of the most comfortable sleeping mattresses I've ever used.&lt;/p&gt;
&lt;p&gt;I've sent a note of complaint to Pacific Outdoor Equipment, and I'm awaiting a response.&lt;/p&gt;
&lt;p&gt;Very dissapointed :(&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=131</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=131</guid>
		<pubDate>Mon, 7 Nov 2011 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Customising the Wordpress admin area</title>
		<description><![CDATA[&lt;p&gt;If you would like to customise your Wordpress admin pages these functions are an excellent start. In this little tutorial we'll look at customising the Wordpress logo in the Wordpress admin area, editing the Wordpress admin footer to include your own company name and also customising the &quot;Howdy&quot; greeting in the top left of the WordPress admin area.&lt;/p&gt;
&lt;h3&gt;Edit the Wordpress admin Logo&lt;/h3&gt;
&lt;p&gt;In your template folder open the &lt;strong&gt;functions.php&lt;/strong&gt; file and simply add the following php code:&lt;/p&gt;
&lt;pre&gt;/**
  * my_custom_logo
  * Replace WordPress logo in Dashboard
*/
function my_custom_logo() {
  echo '
  &amp;lt;style type=&quot;text/css&quot;&amp;gt;
  #header-logo { background-image: url('.get_bloginfo('template_directory') . '/images/logo.jpg) !important; }
  &amp;lt;/style&amp;gt;';
}
add_action('admin_head', 'my_custom_logo');

&lt;/pre&gt;
&lt;p&gt;Now upload your own logo (&lt;em&gt;must be 16px X 16px&lt;/em&gt;) to the &lt;strong&gt;images&lt;/strong&gt; directory in your template folder.&lt;/p&gt;
&lt;h3&gt;Edit the Wordpress admin footer text&lt;/h3&gt;
&lt;p&gt;In your template folder open the &lt;strong&gt;functions.php&lt;/strong&gt; file and simply add the following php code:&lt;/p&gt;
&lt;pre&gt;/**
  * edit_admin_footer
  * Replace footer text in WordPress Dashboard
*/
function edit_admin_footer() {
  echo 'Content management system provided by &amp;lt;a href=&quot;http://www.yourcompany.com/&quot;&amp;gt;Your Company Ltd&amp;lt;/a&amp;gt;.';
}
add_filter('admin_footer_text', 'edit_admin_footer');
&lt;/pre&gt;
&lt;p&gt;Edit the text and link to suit your own needs&lt;/p&gt;
&lt;h3&gt;Edit the Wordpress &quot;Howdy&quot; welcome message&lt;/h3&gt;
&lt;p&gt;In your template folder open the &lt;strong&gt;functions.php&lt;/strong&gt; file and simply add the following php code:&lt;/p&gt;
&lt;pre&gt;/**
  *
  *
  * @param string  $translated
  * @param string  $text
  * @param string  $domain
  * @return Welcome to... instead of 'Howdy'
*/
function change_howdy($translated, $text, $domain) {
 if (!is_admin() || 'default' != $domain)
  return $translated;
 if (false !== strpos($translated, 'Howdy'))
  return str_replace('Howdy', 'Welcome to your website admin area', $translated);
 return $translated;
}
add_filter('gettext', 'change_howdy', 10, 3);
&lt;/pre&gt;
&lt;p&gt;Edit the text to suit your own needs&lt;/p&gt;
&lt;p&gt;Hope these help someone.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=130</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=130</guid>
		<pubDate>Tue, 23 Aug 2011 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Relay For Life - Help!</title>
		<description><![CDATA[&lt;p&gt;On Saturday I will be taking part in &lt;a href=&quot;http://www.cancerresearchuk.org/relay/&quot;&gt;Relay For Life&lt;/a&gt; in Thurso, and I'm looking for donations :)&lt;/p&gt;
&lt;p&gt;Donating through Justgiving is quick, easy and totally secure. It's also the most efficient way to sponsor me: Cancer Research UK gets your money faster and, if you're a UK taxpayer, Justgiving makes sure 25% in Gift Aid, plus a 3% supplement, are added to your donation.&lt;/p&gt;
&lt;p&gt;So please sponsor me now by following the link below!&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.donatetomyrelay.org/gordonmackay&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.donatetomyrelay.org/design/1/images/badges/justgiving_badge10.gif&quot; border=&quot;0&quot; alt=&quot;&quot; width=&quot;270&quot; height=&quot;50&quot; /&gt;&lt;/a&gt;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=129</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=129</guid>
		<pubDate>Mon, 22 Aug 2011 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Adding attached images to a Wordpress page</title>
		<description><![CDATA[&lt;p&gt;If you want to display images attached to a Wordpress page/post all you need to do is copy the code below to your theme's &lt;strong&gt;functions.php&lt;/strong&gt; file:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
/* Sizes can be thumbnail, full, medium, large */
function getAttachedimages($size='full', $before = '', $after = '')
{ 
	global $post;
	$qty = -1;
	if ( $images = get_children(array(
		'post_parent' =&amp;gt; $post-&amp;gt;ID,
		'post_type' =&amp;gt; 'attachment',
		'numberposts' =&amp;gt; $qty,
		'post_mime_type' =&amp;gt; 'image',
		'order' =&amp;gt; 'DESC', 
		'orderby' =&amp;gt; 'menu_order ID'
	)))
	{
		foreach( $images as $image ) 
		{
			$attachmenturl = wp_get_attachment_url($image-&amp;gt;ID);
			$attachmentimage = wp_get_attachment_image( $image-&amp;gt;ID, $size );
			echo $before . $attachmentimage . $after . &amp;quot;\n&amp;quot;;
		}
	}
}
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Usage&lt;/h3&gt;
&lt;p&gt;Using the function is a simple case of calling the function something like this:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
&amp;lt;ul id=&amp;quot;gallery&amp;quot;&amp;gt;
&amp;lt;?php getAttachedimages('thumbnail', '&amp;lt;li&amp;gt;', '&amp;lt;/li&amp;gt;'); ?&amp;gt;
&amp;lt;/ul&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Have fun!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=127</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=127</guid>
		<pubDate>Wed, 2 Mar 2011 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Prettier PHP meter to feet/inches conversions</title>
		<description><![CDATA[&lt;p&gt;Whilst it's fairly simple to convert meters to feet and inches using PHP the resulting conversion often looks rather complex and untidy.&lt;/p&gt;
&lt;p&gt;For example, most conversions will end up looking something like this: &lt;b&gt;12 meters = 39.3700 feet&lt;/b&gt;. This is not very pretty and looks overly complicated when you consider that most people express feet and inches like this: &lt;b&gt;39&amp;prime; 4&amp;Prime;&lt;/b&gt;.&lt;/p&gt;
&lt;p&gt;The following PHP function will convert meters to feet in a user friendly manner, easily recognised by most people.&lt;/p&gt;
&lt;h3&gt;The PHP Code&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;?php
function metersToFeetInches($meters, $echo = true)
{
	$m = $meters;
	$valInFeet = $m*3.2808399;
	$valFeet = (int)$valInFeet;
	$valInches = round(($valInFeet-$valFeet)*12);
	$data = $valFeet.&amp;quot;&amp;amp;prime;&amp;quot;.$valInches.&amp;quot;&amp;amp;Prime;&amp;quot;;
	if($echo == true)
	{
		echo $data;
	} else {
		return $data;
	}
}
?&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Usage&lt;/h3&gt;
&lt;p&gt;To echo out the converted data simply call the function like this:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;?php metersToFeetInches(12); ?&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;To assign the converted data to a variable call the function like this:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;?php
$feetInches = metersToFeetInches(12,false);
echo $feetInches;
?&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Have fun :)&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=126</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=126</guid>
		<pubDate>Tue, 15 Feb 2011 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Digging into Wordpress</title>
		<description><![CDATA[&lt;p&gt;&lt;a style=&quot;float:left; padding:0 10px 0 0&quot; href=&quot;https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;amp;c=ib&amp;amp;aff=95630&quot;&gt;&lt;img src=&quot;../../i_blog/diwbook-cover.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;There is much to learn about the World's most popular publishing platform. From your first steps of learning about WordPress all the way through maintaining a site throughout the years, this book is packed with truly practical information.&lt;/p&gt; 
&lt;p&gt;The book goes into depth about the anatomy of a WordPress theme. How they work, and how to write the code you need to do the things you want. This means real code that you can sink your teeth into, as well as copy and paste. Beyond theme building, the book also introduces many tricks your functions.php file can pull off and show you ways to increase performance and security through HTAccess.&lt;/p&gt;
&lt;p style=&quot;clear:both;&quot;&gt;&lt;a href=&quot;https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;amp;c=ib&amp;amp;aff=95630&quot;&gt;Get your copy now!&lt;/a&gt;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=125</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=125</guid>
		<pubDate>Tue, 1 Dec 2009 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Energy Conservation, not just Generation</title>
		<description><![CDATA[&lt;p&gt;Whilst reading the John Muir Trust's &amp;ldquo;&lt;a href=&quot;http://www.jmt.org/what-we-think.asp&quot;&gt;What we think&lt;/a&gt;&amp;rdquo; page I came across this very compelling point within their manifesto about wind farms:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The current rush for large scale onshore wind developments, connected by a hugely centralised grid system shows a poverty of imagination and thinking rooted in the early 20th Century. If attention continues to be focused on increasing renewable energy targets, without any requirement to demonstrate what each development will achieve in greenhouse gas emissions reductions (including all aspects of the generation and transmission), we face a possible worst case scenario, where we achieve renewable energy targets through inappropriate developments and at great cost to important environments - only to discover that our greenhouse gas emissions are up, along with our energy consumption, and our energy supply is not secure.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I also quite liked Tony Juniper, director of Friends of the Earth take on things:&lt;/p&gt; 
&lt;blockquote&gt;
&lt;p&gt;Climate change is no longer a theory. It is the world's most pressing environmental problem and the anti-lobby, helped by nuclear interests, is trying to undermine Britain's role as a leader in tackling it and to fatally delay action. Wind is the most advanced of all the renewable technologies, but it needs to be followed quickly by solar, wave, tidal, biomass and others,&quot; he says. &quot;No one is arguing that wind generators should cover all the national parks. That would be mad. The landscape can and must be protected.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Me, well I think we all think we're in control, and that's why I'm sitting on the *anti* side of the fence and rooting my beliefs in the Gaia hypothesis :)&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=124</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=124</guid>
		<pubDate>Tue, 11 Aug 2009 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>LittleSnapper and QuickSnapper</title>
		<description><![CDATA[&lt;blockquote&gt;&lt;p&gt;&amp;#8220;Built to be the designer's digital scrapbook, LittleSnapper allows you to capture, organise, annotate and share screenshots from your desktop and the web.&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;What a great little Mac application &lt;a href=&quot;http://www.realmacsoftware.com/littlesnapper/&quot;&gt;LittleSnapper&lt;/a&gt; is!&lt;/p&gt;
&lt;p&gt;With the vast number of sites showcasing web design patterns (my fave being &lt;a href=&quot;http://patterntap.com/&quot;&gt;Pattern Tap&lt;/a&gt;) it's great to have a desktop application where you can very quickly grab captures of design elements you like from any web page. Back that up with a website to store and share your images straight from the application and you're bound to be up to your eyeballs in a pit of juicy inspiration!&lt;/p&gt;
&lt;p&gt;Check out &lt;a href=&quot;http://www.quicksnapper.com/gordonmac/&quot;&gt;my QuickSnapper page&amp;#8230;&lt;/a&gt;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=122</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=122</guid>
		<pubDate>Thu, 2 Apr 2009 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Fantastic Cat</title>
		<description><![CDATA[&lt;p&gt;&lt;object width=&quot;425&quot; height=&quot;355&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/MnjoIkq4y7s&amp;hl=en&quot;&gt;&lt;/param&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/MnjoIkq4y7s&amp;hl=en&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; width=&quot;425&quot; height=&quot;355&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;Coolness!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=121</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=121</guid>
		<pubDate>Mon, 17 Mar 2008 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Momusu's Engrish</title>
		<description><![CDATA[&lt;p&gt;&lt;object classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; width=&quot;425&quot; height=&quot;355&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0&quot;&gt;&lt;param name=&quot;src&quot; value=&quot;http://www.youtube.com/v/SRFUKjCTBCI&amp;amp;hl=en&quot; /&gt;&lt;embed type=&quot;application/x-shockwave-flash&quot; width=&quot;425&quot; height=&quot;355&quot; src=&quot;http://www.youtube.com/v/SRFUKjCTBCI&amp;amp;hl=en&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;Funny as!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=120</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=120</guid>
		<pubDate>Wed, 12 Mar 2008 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>CMS buttons</title>
		<description><![CDATA[&lt;p&gt;At the moment I'm working on a small CMS project (just for fun) and have been trying to make the back-end admin part look reasonably good. This has meant a lot of time piddling around in Adobe Fireworks.&lt;/p&gt;
&lt;p&gt;Seeing as I'm in a good mood I thought I'd give away a few of the buttons I made.&lt;/p&gt;
&lt;p class=&quot;centered&quot;&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/cms_buttons.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;You can &lt;a href=&quot;http://gordonmac.com/i_blog/cms_buttons.zip&quot;&gt;download the PNG source here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Enjoy &amp;#8230;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=119</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=119</guid>
		<pubDate>Sun, 24 Feb 2008 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>なぜ僕らは夢を見るの？</title>
		<description><![CDATA[&lt;p&gt;&ccedil;&reg;&plusmn;&atilde;&eacute;&atilde;&atilde;&atilde;&uml;&atilde;&aelig;&sect;&atilde;&atilde;&ordf;&aring;&curren;&cent;&atilde;&auml;&cedil;&shy;&atilde;&atilde;&eacute;&pound;&atilde;&sup3;&aring;&ordm;&atilde;&atilde;&atilde;&egrave;&brvbar;&atilde;&atilde;&ordf;&atilde;&atilde;&ordf;&atilde;&atilde;&curren;&atilde;&sup3;&atilde;&macr;&atilde;&sect;&aelig;&cedil;&atilde;&atilde;&atilde;&ccedil;&sect;&aring;&macr;&atilde;&uml;&atilde;&atilde;&atilde;&atilde;&reg;&atilde;&atilde;&atilde;&egrave;&shy;&atilde;&atilde;&uml;&atilde;&atilde;&pound;&atilde;&atilde;&atilde;&reg;&atilde;&laquo;&atilde;&curren;&atilde;&atilde;&brvbar;&atilde;&reg;&aring;&curren;&cent;&atilde;&eacute;&pound;&atilde;&sup3;&aring;&ordm;&atilde;&atilde;&atilde;&reg;&atilde;&nbsp;&atilde;&pound;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&ccedil;&sect;&atilde;&atilde;&iexcl;&atilde;&macr;&auml;&raquo;&atilde;&sect;&atilde;&egrave;&yen;&atilde;&atilde;&uml;&atilde;&atilde;&reg;&aring;&curren;&cent;&atilde;&laquo;&aring;&ordm;&aring;&middot;&atilde;&atilde;&brvbar;&atilde;&atilde;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=118</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=118</guid>
		<pubDate>Fri, 22 Feb 2008 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Recursive file deletion</title>
		<description><![CDATA[&lt;p&gt;This is a handy PHP function (I can&amp;#8217;t remember where I found it) which performs a recursive deletion of every file in a given directory. I&amp;#8217;ve been using it to periodically flush cache files created by my CMS on this site.&lt;/p&gt;
&lt;pre&gt;
&lt;code&gt;function destroy($dir) {
    $mydir = opendir($dir);
    while(false !== ($file = readdir($mydir))) {
        if($file != &amp;#8221;.&amp;#8221; &amp;#38;&amp;#38; $file != &amp;#8221;..&amp;#8221;) {
            chmod($dir.$file, 0777);
            if(is_dir($dir.$file)) {
                chdir(&amp;#8217;.&amp;#8217;);
                destroy($dir.$file.&amp;#8217;/&amp;#8217;);
                rmdir($dir.$file) or die(&amp;#8216;No deletey &amp;#8217;.$dir.$file);
            }
            else
                unlink($dir.$file) or die(&amp;#8216;No deletey &amp;#8217;.$dir.$file);
        }
    }
    closedir($mydir);
}&lt;/code&gt;
&lt;/pre&gt;
&lt;h3&gt;Example usage&lt;/h3&gt;
&lt;p&gt;Set the server path to the directory:&lt;/p&gt;
&lt;pre&gt;
&lt;code&gt;define(&amp;#8216;PATH&amp;#8217;, &amp;#8221;/path/to/directory/&amp;#8221;);&lt;/code&gt;
&lt;/pre&gt;
&lt;p&gt;Then let rip&amp;#8230;&lt;/p&gt;
&lt;pre&gt;
&lt;code&gt;destroy(PATH);&lt;/code&gt;
&lt;/pre&gt;
&lt;p&gt;Have fun, but &lt;strong&gt;use with caution!&lt;/strong&gt;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=117</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=117</guid>
		<pubDate>Mon, 18 Feb 2008 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Spacer</title>
		<description><![CDATA[&lt;p class=&quot;centered&quot;&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/spacer.jpg&quot; style=&quot;width:46em; height: 46em;&quot; alt=&quot;&quot; /&gt; &lt;/p&gt;
&lt;p&gt;View a &lt;a href=&quot;http://gordonmac.com/i_blog/spacer.jpg&quot;&gt;larger version&lt;/a&gt;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=116</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=116</guid>
		<pubDate>Sat, 2 Feb 2008 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>One to the head</title>
		<description><![CDATA[&lt;p&gt;This is the All Japan Kendo Championship final of 2004. Someone ended up with a sore head.&lt;/p&gt;
&lt;p class=&quot;centered&quot;&gt;&lt;object width=&quot;425&quot; height=&quot;355&quot;&gt;&lt;br /&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/H8K90IBOvAU&amp;rel=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/H8K90IBOvAU&amp;rel=1&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; width=&quot;425&quot; height=&quot;355&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;Watch closely for the winning hit. It's very fast!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=115</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=115</guid>
		<pubDate>Mon, 28 Jan 2008 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Grinner</title>
		<description><![CDATA[&lt;p&gt;Every once in a while boredom strikes, and Adobe Fireworks is opened. This is my latest doodle made when awaiting IM responses.&lt;/p&gt;
&lt;p class=&quot;centered&quot;&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/grinner.jpg&quot; style=&quot;width:46em; height: 46em;&quot; alt=&quot;&quot; /&gt; &lt;/p&gt;
&lt;p&gt;View a &lt;a href=&quot;http://gordonmac.com/i_blog/grinner.jpg&quot;&gt;larger version&lt;/a&gt;.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=114</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=114</guid>
		<pubDate>Mon, 28 Jan 2008 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Styling previous and next links</title>
		<description><![CDATA[&lt;p&gt;Previous and next &amp;#8220;pagination&amp;#8221; is a fairly common design element found on sites. As the name suggests, it's a simple navigation structure designed to allow users to move forward to the next, or return to the previous page in a sequence of documents. The purpose of this type of navigation is simple; it allows the author to break a large amount of information into smaller pieces instead of displaying a massive amount of information on the same page.&lt;/p&gt;
&lt;p&gt;This little tutorial is an example of the HTML markup and CSS which could be used to make this type of navigation look nice, and also user friendly. Here is &lt;a href=&quot;http://gordonmac.com/i_blog/paginate/&quot;&gt;what we'll achieve&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;The HTML markup&lt;/h3&gt;
&lt;p&gt;For this mini navigation we will use a simple unordered list with two list items. One for the link to the previous page, and one for the link to the next page in the sequence:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
&amp;lt;ul id=&amp;quot;pagination&amp;quot;&amp;gt;
&amp;lt;li class=&amp;quot;pagination-next&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot; rel=&amp;quot;next&amp;quot;&amp;gt;Next&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;li class=&amp;quot;pagination-prev&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot; rel=&amp;quot;prev&amp;quot;&amp;gt;Previous&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;That's simple enough. We've all seen an unordered list before. However, I'd like to point out two things which I consider to be important in this instance:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;p&gt;I could have placed the link to the previous page first, but assuming that the user is logically moving their way through the paginated content, it's safe to also assume that they have already viewed the previous page. Therefore placing the next page link first in the list makes the most sense.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You will notice that I have added &lt;code&gt;rel&lt;/code&gt; attributes to the anchors. Rel attributes convey &lt;strong&gt;rel&lt;/strong&gt;ationships between the current page and the page that the URI points to.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Minor details, I know, but worth mentioning.&lt;/p&gt;
&lt;h3&gt;The CSS&lt;/h3&gt;
&lt;p&gt;The CSS required to style our page navigation is very simple. A few floats, background images and nothing complex.&lt;/p&gt;
&lt;p&gt;First up, let's give the basic styles to the unordered list element.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
#pagination
{
	font-size : .8em;
	list-style-type : none;
	margin : 0;
	overflow : hidden;
	padding : 2px 0;
	text-transform : uppercase
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;Updated:&lt;/strong&gt; &lt;ins&gt;I had previously used &lt;code&gt;overflow : auto;&lt;/code&gt;, but it seems that this generates horizontal scroll bars in Firefox 2 when you click on the links. Fixed now thanks to &lt;a href=&quot;http://richardathome.wordpress.com/&quot;&gt;Richard&lt;/a&gt;&lt;/ins&gt;.&lt;/p&gt;
&lt;p&gt;Again, this is quite simple to understand. We set the font size, remove the bullets from the list, reset margin and padding and set the text to display in uppercase. You will also notice that I have added &lt;code&gt;overflow : hidden;&lt;/code&gt; to the list of rules. The reason for this quite cool. We will float the links inside the unordered list. Because they will be floated we have to find a way to ensure that any content coming after the pagination links does not collapse inside the floated links. The overflow rule ensures this without us having to use any clearing elements after the floated elements.&lt;/p&gt;
&lt;p&gt;Now we will do something to the list items.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
#pagination li
{
	display : inline
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;List items are block-level elements. This means that without the intervention of CSS they would appear on individual lines. Setting the to display inline allows us to place our next and previous links on the same line.&lt;/p&gt;
&lt;p&gt;Let's now add some basic link styling.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
#pagination a,#pagination a:visited
{
	color : #999;
	text-decoration : none
}
	
#pagination a:hover
{
	color : #000;
	text-decoration : none
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I chose to remove the link underlines with this rule, but you can replace them if you like.&lt;/p&gt;
&lt;p&gt;Now, let's float our links. Previous page link to the left, and next page link to the right:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
#pagination .pagination-prev a
{
	background : url(previous.gif) no-repeat left center;
	float : left;
	padding-left : 20px
}

#pagination .pagination-next a
{
	background : url(next.gif) no-repeat right center;
	float : right;
	padding-right : 20px;
	text-align : right
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;You'll notice that I also added the arrow images as backgrounds to the links. The padding is simply to stop the text appearing on top of the images. The float directions simply move each element to the defined edge of the parent element.&lt;/p&gt;
&lt;p&gt;You can &lt;a href=&quot;http://gordonmac.com/i_blog/paginate/&quot;&gt;view the finished navigation&lt;/a&gt; and &lt;a href=&quot;http://gordonmac.com/i_blog/paginate.zip&quot;&gt;download the source code and image files&lt;/a&gt;. &lt;/p&gt;
&lt;p&gt;Thanks for reading&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=113</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=113</guid>
		<pubDate>Sat, 26 Jan 2008 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Elasticity</title>
		<description><![CDATA[&lt;p&gt;Recently I have been learning more about em-based (elastic) layouts, and have to say that they are a lot more robust than the old fixed pixel width layouts that I have so consistently used in the past. That's not to say I disliked my previous design, but I disliked being limited to the tiny, cramped area that designing within a 780px box allowed me, so my apologies if people with smaller resolution monitors have to do a little horizontal scrolling now.&lt;/p&gt;
&lt;p&gt;As you can see I have stuck to a slightly Japanese-esque theme, with perhaps a little less character than the last design, but I still think this is quite nice too. It's brighter and I think the typography is much improved.&lt;/p&gt;
&lt;p&gt;On the front-end I have taken advantage of &lt;a href=&quot;http://www.microformats.org/&quot;&gt;Microformats&lt;/a&gt; on a fairly grand scale as I, and many other developers, strongly believe that this is the way to go in terms of semantically structured documents. The Microformats I have implemented include &lt;a href=&quot;http://www.microformats.org/wiki/hcard&quot;&gt;hCard&lt;/a&gt;, &lt;a href=&quot;http://www.microformats.org/wiki/hatom&quot;&gt;hAtom&lt;/a&gt; and &lt;a href=&quot;http://www.microformats.org/wiki/rel-tag&quot;&gt;rel-tags&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;On the back-end I have improved the caching of dynamically generated content using PHP output buffering. Hopefully this will help people to move through the site a wee bit faster than before. I have also taken advantage of some ajax, and a little bit of dom scripting to get things done that couldn't be achieved with CSS and browser support in it's current state.&lt;/p&gt;
&lt;p&gt;I hope you enjoy this version of the site, how long it will stay looking like this I don't know.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=112</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=112</guid>
		<pubDate>Wed, 23 Jan 2008 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>No sex since 1955</title>
		<description><![CDATA[&lt;p&gt;A crusty old Sergeant Major found himself at a gala event, hosted by a local liberal arts college. There was no shortage of extremely young, idealistic ladies in attendance, one of whom approached the Sergeant Major for conversation. &lt;/p&gt;
&lt;p&gt;She said, &amp;#8220;Excuse me, Sergeant Major, but you seem to be a very serious man. Is something bothering you?&amp;#8221;&lt;/p&gt;
&lt;p&gt;&amp;#8220;Negative, ma&amp;#8217;am,&amp;#8221; the Sergeant Major said, &amp;#8220;Just serious by nature.&amp;#8221;&lt;/p&gt;
&lt;p&gt;&amp;#8220;The young lady looked at his awards and decorations and said, &amp;#8220;It looks like you have seen a lot of action.&amp;#8221;&lt;/p&gt;
&lt;p&gt;The Sergeant Major&amp;#8217;s short reply was, &amp;#8220;Yes, ma&amp;#8217;am, a lot of action.&amp;#8221;&lt;/p&gt;
&lt;p&gt;The young lady, tiring of trying to start up a conversation, said, &amp;#8220;You know, you should lighten up a little. Relax and enjoy yourself.&amp;#8221;&lt;/p&gt;
&lt;p&gt;The Sergeant Major just stared at her in his serious manner.&lt;/p&gt;
&lt;p&gt;Finally the young lady said, &amp;#8220;You know, I hope you don&amp;#8217;t take this the wrong way, but when is the last time you had sex?&amp;#8221;&lt;/p&gt;
&lt;p&gt;The Sergeant Major looked at her and replied, &amp;#8220;1955.&amp;#8221;&lt;/p&gt;
&lt;p&gt;She said, &amp;#8220;Well, there you are. You really need to chill out and quit taking everything so seriously! I mean, no sex since 1955! She took his hand and led him to a private room where she proceeded to &amp;#8220;relax&amp;#8221; him several times.&lt;/p&gt;
&lt;p&gt;Afterwards, and panting for breath, she leaned against his bare chest and said, &amp;#8220;Wow, you sure didn&amp;#8217;t forget much since 1955!&amp;#8221;&lt;/p&gt;
&lt;p&gt;The Sergeant Major, glancing at his watch, said in his matter-of-fact voice, &amp;#8220;I hope not, it&amp;#8217;s only 2130 now.&amp;#8221; &lt;/p&gt;
&lt;p&gt;Doncha just LOVE the 24hour clock!!!!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=111</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=111</guid>
		<pubDate>Sat, 19 Jan 2008 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Merry Xmas!</title>
		<description><![CDATA[&lt;p&gt;I'd like to wish everyone who knows me and/or visits Gordonmac dot com a very happy Christmas and best wishes for 2008!&lt;/p&gt;
&lt;p&gt;Don't drink (way) to much and take care.&lt;/p&gt;
&lt;p&gt;Gordon M&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=110</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=110</guid>
		<pubDate>Mon, 24 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Cheeky for Xmas</title>
		<description><![CDATA[&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/gordonmac/2128610859/&quot; title=&quot;Cheeky for Xmas by Gordon Mackay, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2277/2128610859_3407513b77_m.jpg&quot; width=&quot;240&quot; height=&quot;177&quot; alt=&quot;Cheeky for Xmas&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Even the cat won't escape decoration.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=109</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=109</guid>
		<pubDate>Sat, 22 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Nihon Sutairu (日本スタイル)</title>
		<description><![CDATA[&lt;p&gt;&lt;a title=&quot;Nihon Sutairu by Gordon Mackay, on Flickr&quot; href=&quot;http://www.flickr.com/photos/gordonmac/2118674955/&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2219/2118674955_b10b20de78.jpg&quot; alt=&quot;Nihon Sutairu&quot; width=&quot;227&quot; height=&quot;500&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Recently I've enjoyed making layouts using some of my Adobe Fireworks drawings. Part of the motivation is that I &lt;strong&gt;hate&lt;/strong&gt; crappy stock images and would rather finish up with a product made completely by me.&lt;/p&gt;
&lt;p&gt;This is my latest effort. It's a fluid layout with a Japanese flavour. I like it &lt;strong&gt;a lot&lt;/strong&gt; and I'm seriously tempted to replace my current design with it.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=108</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=108</guid>
		<pubDate>Mon, 17 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>10 songs&#8230;</title>
		<description><![CDATA[&lt;p&gt;If I had a very small capacity MP3 player instead of a brick of an iPod I would choose these songs&amp;hellip;&lt;/p&gt;
&lt;p class=&quot;note-warning&quot;&gt;I'm bored as hell today; hence the 3 blog posts!&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;object width=&quot;13&quot; height=&quot;13&quot; classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0&quot; allowNetworking=&quot;internal&quot;&gt; &lt;param name=&quot;allowScriptAccess&quot; value=&quot;sameDomain&quot; /&gt;&lt;param name=&quot;FlashVars&quot; value=&quot;resourceID=118548097&amp;flp=false&quot; /&gt; &lt;param name=&quot;movie&quot; value=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; /&gt;&lt;param name=&quot;quality&quot; value=&quot;high&quot; /&gt;&lt;param name=&quot;bgcolor&quot; value=&quot;#ffffff&quot; /&gt;&lt;embed wmode=&quot;transparent&quot; src=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; quality=&quot;high&quot; FlashVars=&quot;resourceID=118548097&amp;flp=false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;13&quot; height=&quot;13&quot; name=&quot;inlinePlayer&quot; allowNetworking=&quot;internal&quot; allowScriptAccess=&quot;sameDomain&quot; type=&quot;application/x-shockwave-flash&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; /&gt; &lt;/object&gt; &lt;a href=&quot;http://www.last.fm/music/Band+of+Horses&quot;&gt;Band of Horses&lt;/a&gt; &acirc; &lt;a href=&quot;http://www.last.fm/music/Band+of+Horses/_/Is+There+a+Ghost&quot;&gt;Is There a Ghost&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;object width=&quot;13&quot; height=&quot;13&quot; classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0&quot; allowNetworking=&quot;internal&quot;&gt; &lt;param name=&quot;allowScriptAccess&quot; value=&quot;sameDomain&quot; /&gt;&lt;param name=&quot;FlashVars&quot; value=&quot;resourceID=97696414&amp;flp=false&quot; /&gt; &lt;param name=&quot;movie&quot; value=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; /&gt;&lt;param name=&quot;quality&quot; value=&quot;high&quot; /&gt;&lt;param name=&quot;bgcolor&quot; value=&quot;#ffffff&quot; /&gt;&lt;embed wmode=&quot;transparent&quot; src=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; quality=&quot;high&quot; FlashVars=&quot;resourceID=97696414&amp;flp=false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;13&quot; height=&quot;13&quot; name=&quot;inlinePlayer&quot; allowNetworking=&quot;internal&quot; allowScriptAccess=&quot;sameDomain&quot; type=&quot;application/x-shockwave-flash&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; /&gt; &lt;/object&gt; &lt;a href=&quot;http://www.last.fm/music/Editors&quot;&gt;Editors&lt;/a&gt; &acirc; &lt;a href=&quot;http://www.last.fm/music/Editors/_/An+End+Has+A+Start&quot;&gt;An End Has A Start&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;object width=&quot;13&quot; height=&quot;13&quot; classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0&quot; allowNetworking=&quot;internal&quot;&gt; &lt;param name=&quot;allowScriptAccess&quot; value=&quot;sameDomain&quot; /&gt;&lt;param name=&quot;FlashVars&quot; value=&quot;resourceID=33315006&amp;flp=false&quot; /&gt; &lt;param name=&quot;movie&quot; value=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; /&gt;&lt;param name=&quot;quality&quot; value=&quot;high&quot; /&gt;&lt;param name=&quot;bgcolor&quot; value=&quot;#ffffff&quot; /&gt;&lt;embed wmode=&quot;transparent&quot; src=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; quality=&quot;high&quot; FlashVars=&quot;resourceID=33315006&amp;flp=false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;13&quot; height=&quot;13&quot; name=&quot;inlinePlayer&quot; allowNetworking=&quot;internal&quot; allowScriptAccess=&quot;sameDomain&quot; type=&quot;application/x-shockwave-flash&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; /&gt; &lt;/object&gt; &lt;a href=&quot;http://www.last.fm/music/Mogwai&quot;&gt;Mogwai&lt;/a&gt; &acirc; &lt;a href=&quot;http://www.last.fm/music/Mogwai/_/Auto+Rock&quot;&gt;Auto Rock&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;object width=&quot;13&quot; height=&quot;13&quot; classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0&quot; allowNetworking=&quot;internal&quot;&gt; &lt;param name=&quot;allowScriptAccess&quot; value=&quot;sameDomain&quot; /&gt;&lt;param name=&quot;FlashVars&quot; value=&quot;resourceID=1157292&amp;flp=false&quot; /&gt; &lt;param name=&quot;movie&quot; value=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; /&gt;&lt;param name=&quot;quality&quot; value=&quot;high&quot; /&gt;&lt;param name=&quot;bgcolor&quot; value=&quot;#ffffff&quot; /&gt;&lt;embed wmode=&quot;transparent&quot; src=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; quality=&quot;high&quot; FlashVars=&quot;resourceID=1157292&amp;flp=false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;13&quot; height=&quot;13&quot; name=&quot;inlinePlayer&quot; allowNetworking=&quot;internal&quot; allowScriptAccess=&quot;sameDomain&quot; type=&quot;application/x-shockwave-flash&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; /&gt; &lt;/object&gt; &lt;a href=&quot;http://www.last.fm/music/Dead+Can+Dance&quot;&gt;Dead Can Dance&lt;/a&gt; &acirc; &lt;a href=&quot;http://www.last.fm/music/Dead+Can+Dance/_/Saltarello&quot;&gt;Saltarello&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;object width=&quot;13&quot; height=&quot;13&quot; classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0&quot; allowNetworking=&quot;internal&quot;&gt; &lt;param name=&quot;allowScriptAccess&quot; value=&quot;sameDomain&quot; /&gt;&lt;param name=&quot;FlashVars&quot; value=&quot;resourceID=34329500&amp;flp=false&quot; /&gt; &lt;param name=&quot;movie&quot; value=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; /&gt;&lt;param name=&quot;quality&quot; value=&quot;high&quot; /&gt;&lt;param name=&quot;bgcolor&quot; value=&quot;#ffffff&quot; /&gt;&lt;embed wmode=&quot;transparent&quot; src=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; quality=&quot;high&quot; FlashVars=&quot;resourceID=34329500&amp;flp=false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;13&quot; height=&quot;13&quot; name=&quot;inlinePlayer&quot; allowNetworking=&quot;internal&quot; allowScriptAccess=&quot;sameDomain&quot; type=&quot;application/x-shockwave-flash&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; /&gt; &lt;/object&gt; &lt;a href=&quot;http://www.last.fm/music/Band+of+Horses&quot;&gt;Band of Horses&lt;/a&gt; &acirc; &lt;a href=&quot;http://www.last.fm/music/Band+of+Horses/_/The+Funeral&quot;&gt;The Funeral&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;object width=&quot;13&quot; height=&quot;13&quot; classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0&quot; allowNetworking=&quot;internal&quot;&gt; &lt;param name=&quot;allowScriptAccess&quot; value=&quot;sameDomain&quot; /&gt;&lt;param name=&quot;FlashVars&quot; value=&quot;resourceID=53961387&amp;flp=true&quot; /&gt; &lt;param name=&quot;movie&quot; value=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; /&gt;&lt;param name=&quot;quality&quot; value=&quot;high&quot; /&gt;&lt;param name=&quot;bgcolor&quot; value=&quot;#ffffff&quot; /&gt;&lt;embed wmode=&quot;transparent&quot; src=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; quality=&quot;high&quot; FlashVars=&quot;resourceID=53961387&amp;flp=true&quot; bgcolor=&quot;#ffffff&quot; width=&quot;13&quot; height=&quot;13&quot; name=&quot;inlinePlayer&quot; allowNetworking=&quot;internal&quot; allowScriptAccess=&quot;sameDomain&quot; type=&quot;application/x-shockwave-flash&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; /&gt; &lt;/object&gt; &lt;a href=&quot;http://www.last.fm/music/Childs&quot;&gt;Childs&lt;/a&gt; &acirc; &lt;a href=&quot;http://www.last.fm/music/Childs/_/Yui&quot;&gt;Yui&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;object width=&quot;13&quot; height=&quot;13&quot; classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0&quot; allowNetworking=&quot;internal&quot;&gt; &lt;param name=&quot;allowScriptAccess&quot; value=&quot;sameDomain&quot; /&gt;&lt;param name=&quot;FlashVars&quot; value=&quot;resourceID=22272623&amp;flp=false&quot; /&gt; &lt;param name=&quot;movie&quot; value=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; /&gt;&lt;param name=&quot;quality&quot; value=&quot;high&quot; /&gt;&lt;param name=&quot;bgcolor&quot; value=&quot;#ffffff&quot; /&gt;&lt;embed wmode=&quot;transparent&quot; src=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; quality=&quot;high&quot; FlashVars=&quot;resourceID=22272623&amp;flp=false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;13&quot; height=&quot;13&quot; name=&quot;inlinePlayer&quot; allowNetworking=&quot;internal&quot; allowScriptAccess=&quot;sameDomain&quot; type=&quot;application/x-shockwave-flash&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; /&gt; &lt;/object&gt; &lt;a href=&quot;http://www.last.fm/music/Death+Cab+for+Cutie&quot;&gt;Death Cab for Cutie&lt;/a&gt; &acirc; &lt;a href=&quot;http://www.last.fm/music/Death+Cab+for+Cutie/_/Soul+Meets+Body&quot;&gt;Soul Meets Body&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;object width=&quot;13&quot; height=&quot;13&quot; classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0&quot; allowNetworking=&quot;internal&quot;&gt; &lt;param name=&quot;allowScriptAccess&quot; value=&quot;sameDomain&quot; /&gt;&lt;param name=&quot;FlashVars&quot; value=&quot;resourceID=26930624&amp;flp=false&quot; /&gt; &lt;param name=&quot;movie&quot; value=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; /&gt;&lt;param name=&quot;quality&quot; value=&quot;high&quot; /&gt;&lt;param name=&quot;bgcolor&quot; value=&quot;#ffffff&quot; /&gt;&lt;embed wmode=&quot;transparent&quot; src=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; quality=&quot;high&quot; FlashVars=&quot;resourceID=26930624&amp;flp=false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;13&quot; height=&quot;13&quot; name=&quot;inlinePlayer&quot; allowNetworking=&quot;internal&quot; allowScriptAccess=&quot;sameDomain&quot; type=&quot;application/x-shockwave-flash&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; /&gt; &lt;/object&gt; &lt;a href=&quot;http://www.last.fm/music/The+Sounds&quot;&gt;The Sounds&lt;/a&gt; &acirc; &lt;a href=&quot;http://www.last.fm/music/The+Sounds/_/Song+With+a+Mission&quot;&gt;Song With a Mission&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;object width=&quot;13&quot; height=&quot;13&quot; classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0&quot; allowNetworking=&quot;internal&quot;&gt; &lt;param name=&quot;allowScriptAccess&quot; value=&quot;sameDomain&quot; /&gt;&lt;param name=&quot;FlashVars&quot; value=&quot;resourceID=15662221&amp;flp=false&quot; /&gt; &lt;param name=&quot;movie&quot; value=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; /&gt;&lt;param name=&quot;quality&quot; value=&quot;high&quot; /&gt;&lt;param name=&quot;bgcolor&quot; value=&quot;#ffffff&quot; /&gt;&lt;embed wmode=&quot;transparent&quot; src=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; quality=&quot;high&quot; FlashVars=&quot;resourceID=15662221&amp;flp=false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;13&quot; height=&quot;13&quot; name=&quot;inlinePlayer&quot; allowNetworking=&quot;internal&quot; allowScriptAccess=&quot;sameDomain&quot; type=&quot;application/x-shockwave-flash&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; /&gt; &lt;/object&gt; &lt;a href=&quot;http://www.last.fm/music/Asobi+Seksu&quot;&gt;Asobi Seksu&lt;/a&gt; &acirc; &lt;a href=&quot;http://www.last.fm/music/Asobi+Seksu/_/New+Years&quot;&gt;New Years&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;object width=&quot;13&quot; height=&quot;13&quot; classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0&quot; allowNetworking=&quot;internal&quot;&gt; &lt;param name=&quot;allowScriptAccess&quot; value=&quot;sameDomain&quot; /&gt;&lt;param name=&quot;FlashVars&quot; value=&quot;resourceID=7106475&amp;flp=false&quot; /&gt; &lt;param name=&quot;movie&quot; value=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; /&gt;&lt;param name=&quot;quality&quot; value=&quot;high&quot; /&gt;&lt;param name=&quot;bgcolor&quot; value=&quot;#ffffff&quot; /&gt;&lt;embed wmode=&quot;transparent&quot; src=&quot;http://static.last.fm/webclient/inline/3/inlinePlayer.swf&quot; quality=&quot;high&quot; FlashVars=&quot;resourceID=7106475&amp;flp=false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;13&quot; height=&quot;13&quot; name=&quot;inlinePlayer&quot; allowNetworking=&quot;internal&quot; allowScriptAccess=&quot;sameDomain&quot; type=&quot;application/x-shockwave-flash&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; /&gt; &lt;/object&gt; &lt;a href=&quot;http://www.last.fm/music/Sufjan+Stevens&quot;&gt;Sufjan Stevens&lt;/a&gt; &acirc; &lt;a href=&quot;http://www.last.fm/music/Sufjan+Stevens/_/Chicago&quot;&gt;Chicago&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p class=&quot;note-general&quot;&gt;Yeah, no-shit-sherlock this page don't validate.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=107</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=107</guid>
		<pubDate>Sun, 16 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Styling search forms</title>
		<description><![CDATA[&lt;p&gt;Many people argue against removing browser default styles  for form elements, especial replacing the default submit input with an image. This for the simple fact that text in an image cannot be resized by the user.&lt;/p&gt;
&lt;p&gt;However, forms are a continual interest for me, and where possible I love to pretty them up:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/search_example.jpg&quot; alt=&quot;&quot; width=&quot;286&quot; height=&quot;69&quot; /&gt;&lt;/p&gt;
&lt;p&gt;In this very quick little tutorial I will show you how to style a search form so that it looks just like the one in the image above, but if you can't be bothered reading, and just want the images and the source there are downloadable as a &lt;a href=&quot;http://gordonmac.com/i_blog/searchform.zip&quot;&gt;zip archive&lt;/a&gt;. You can also view a &lt;a href=&quot;http://gordonmac.com/i_blog/searchform&quot;&gt;live example&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;The form markup&lt;/h3&gt;
&lt;p&gt;Forms generally don't differ much in terms of markup, and there is very little to them. Here is the markup used for the example:&lt;/p&gt;
&lt;pre&gt;&amp;lt;form id=&quot;form-search&quot; method=&quot;post&quot; action=&quot;#&quot;&amp;gt;
&amp;lt;p&amp;gt;
&amp;lt;label for=&quot;input-keywords&quot;&amp;gt;Search:&amp;lt;/label&amp;gt; &amp;lt;input type=&quot;text&quot; id=&quot;input-keywords&quot; value=&quot;&quot; /&amp;gt;&lt;br /&gt;
&amp;lt;input id=&quot;submit-search&quot; type=&quot;image&quot; src=&quot;img/btn_go.jpg&quot; alt=&quot;Search&quot; title=&quot;Search&quot; value=&quot;submit&quot; /&amp;gt;
&amp;lt;/p&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/pre&gt;
&lt;p class=&quot;note-general&quot;&gt;One thing I noticed when experimenting with this is the need to remove white space from the text input and the image submit input tags. Otherwise the space is also rendered on the page.&lt;/p&gt;
&lt;p&gt;Obviously you will have to add name attributes to provide the application which conducts the search to receive the values of the form's variables. You may also need to change the method attribute to &quot;get&quot;. Simply look at how the current search form on your site works and take it from there.&lt;/p&gt;
&lt;h3&gt;The CSS&lt;/h3&gt;
&lt;p&gt;The first required rule simply zeros margins, adds enough padding to clear the form content from the background image of the little search icon:&lt;/p&gt;
&lt;pre&gt;#form-search
{
background: #FFFFFF url(img/icn_search.jpg) no-repeat left center;
padding: 0 26px;
margin: 0;
}
&lt;/pre&gt;
&lt;p&gt;Next we zero margin and padding for the paragraph which contains the form contents:&lt;/p&gt;
&lt;pre&gt;#form-search p
{
padding: 0;
margin: 0;
}
&lt;/pre&gt;
&lt;p&gt;The next rule is important, it uses the &quot;vertical-align&quot; property to neatly line up the form label, text input and submit button, it's also going to zero out any nasty default margin and padding:&lt;/p&gt;
&lt;pre&gt;#form-search label, #input-keywords, #submit-search
{
vertical-align: middle;
padding: 0;
margin: 0;
}
&lt;/pre&gt;
&lt;p&gt;The following rule is simply a matter of taste and adds some typographical alteration to the label text:&lt;/p&gt;
&lt;pre&gt;#form-search label 
{
font-size: 10px;
text-transform: uppercase;
}
&lt;/pre&gt;
&lt;p&gt;The final CSS rule applies a fixed height (submit image = 22px height - 1px border on top &lt;strong&gt;and&lt;/strong&gt; bottom) and width to the text input. It also adds a nice border:&lt;/p&gt;
&lt;pre&gt;#input-keywords
{
border: 1px solid #7F7F7F;
height: 20px;
width: 200px;
line-height: 20px;	
}
&lt;/pre&gt;
&lt;p&gt;You will notice that I have also added 20 pixels of line-height to the text inside the input. Adding a line-height value equal to the height defined for the parent effectively centres the text within on the vertical axis.&lt;/p&gt;
&lt;p&gt;That's all there is to it folks, go and make pretty search forms!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=106</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=106</guid>
		<pubDate>Sun, 16 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Free Template ~ &#8220;Simple&#8230;&#8221;</title>
		<description><![CDATA[&lt;p&gt;Here is another quicky template design for you to use for your projects. It's only some CSS practice of mine but I hope someone will find it useful enough to use for something!&lt;/p&gt;
&lt;h3&gt;Features&lt;/h3&gt;
&lt;p&gt;Here is some quick information about the template before you go and download it.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;3 columns, fixed-width&lt;/li&gt;
&lt;li&gt;CSS horizontal navigation (scaleable)&lt;/li&gt;
&lt;li&gt;Secondary CSS vertical navigation&lt;/li&gt;
&lt;li&gt;Valid XHTML Strict&lt;/li&gt; &lt;li&gt;Valid (commented) CSS&lt;/li&gt;
&lt;li&gt;Editable Adobe Fireworks PNG image source file included&lt;/li&gt;
&lt;li&gt;Styles search form example&lt;/li&gt;
&lt;li&gt;UTF-8 encoding (Supports Japanese text)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Browser compatibility&lt;/h3&gt;
&lt;p&gt;The template has been tested on both Microsoft Windows and OS X based computers and supports the following browsers:&lt;/p&gt; 
&lt;ul&gt;
&lt;li&gt;Safari (OS X)&lt;/li&gt;
&lt;li&gt;Camino&lt;/li&gt;
&lt;li&gt;Firefox (Windows &amp;amp; OS X)&lt;/li&gt;
&lt;li&gt;Opera (Windows &amp;amp; OS X)&lt;/li&gt;
&lt;li&gt;Internet Explorer 5.01+&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It also degrades gracefully in earlier browsers.&lt;/p&gt;
&lt;h3&gt;Lemme 'ave it already!&lt;/h3&gt;
&lt;p&gt;Ok, ok!! from here you can either &lt;a href=&quot;http://gordonmac.com/downloads/html/demos/simple&quot;&gt;preview the template&lt;/a&gt;, or &lt;a href=&quot;http://gordonmac.com/downloads/index.php?type=templates&amp;amp;template=4&quot;&gt;download the zip file&lt;/a&gt;.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=105</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=105</guid>
		<pubDate>Sun, 16 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Relearning CSS</title>
		<description><![CDATA[&lt;p&gt;One of the very sad things about not doing something is the speed at which you forget, and this has definitely been the case for me with CSS.&lt;/p&gt;
&lt;p&gt;For many months I had no interest in anything much, especially not CSS, then I decided I'd redesign my site&amp;hellip; I used to enjoy doing that frequently (a little too frequently at times).&lt;/p&gt;
&lt;p&gt;The problem with that soon became apparent as I discovered that workarounds for dipshit browsers and all their quirky quirkiness had been long forgotten&amp;hellip; what a bugger!&lt;/p&gt;
&lt;p&gt;The great thing about the web development community is their general willingness to share information, and the sheer volume of available info online is amazing. I started checking out some up to date tutorials at &lt;a href=&quot;http://communitymx.com/&quot;&gt;Community MX&lt;/a&gt;, &lt;a href=&quot;http://projectseven.com/&quot;&gt;Project Seven&lt;/a&gt;, &lt;a href=&quot;http://alistapart.com/&quot;&gt;A List Apart&lt;/a&gt; and &lt;a href=&quot;http://sitepoint.com/&quot;&gt;Sitepoint&lt;/a&gt;, I also re-read &lt;a href=&quot;http://www.stuffandnonsense.co.uk/&quot;&gt;Andy Clarke&lt;/a&gt;'s awesome &amp;ldquo;&lt;a href=&quot;http://www.transcendingcss.com/&quot;&gt;Transcending CSS: The Fine Art of Web Design&lt;/a&gt;&amp;rdquo; book.&lt;/p&gt;
&lt;p&gt;Now instead of wasting time nattering the computer time away on MSN, &lt;a href=&quot;http://mixi.jp/&quot;&gt;Mixi&lt;/a&gt; and &lt;a href=&quot;http://facebook.com/&quot;&gt;Facebook&lt;/a&gt; (grr) I'm relearning something I used to love.&lt;/p&gt;
&lt;p&gt;The best way to learn anything is by doing something interesting, and for me CSS without an element of design included is monotonous to say the least. To stave of the bore of code I decided to create a worksheet to practice, which is actually beginning to look like a decent page!&lt;/p&gt;
&lt;p&gt;The fruits of my labour are &lt;a href=&quot;http://gordonmac.com/i_blog/playing&quot;&gt;here for all to see&lt;/a&gt;, and I'm glad to be back!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=104</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=104</guid>
		<pubDate>Thu, 13 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Free Template ~ &#8220;Somewhere Peaceful&#8221;</title>
		<description><![CDATA[&lt;p&gt;As promised I have finished a new free template called &amp;ldquo;Somewhere Peaceful&amp;rdquo;, and it's ready for everyone to get their hands on. This is my Christmas gift to the web development community.&lt;/p&gt;
&lt;p&gt;The design is based around &lt;a href=&quot;http://gordonmac.com/archive/?id=89&quot;&gt;an image I drew earlier this month&lt;/a&gt; in &lt;a href=&quot;http://www.adobe.com/products/fireworks/&quot;&gt;Adobe Fireworks CS3&lt;/a&gt; and looks quite Japanese-esque. As usual the template features only homemade graphics instead of 2&lt;sup&gt;nd&lt;/sup&gt; rate free stock images. Much better, don't you think?&lt;/p&gt;
&lt;h3&gt;Features&lt;/h3&gt;
&lt;p&gt;Here is some quick information about the template before you go and download it.&lt;/p&gt; &lt;ul&gt; &lt;li&gt;3 columns, fixed-width&lt;/li&gt; &lt;li&gt;Tabbed CSS horizontal navigation (scaleable)&lt;/li&gt; &lt;li&gt;Secondary CSS vertical navigation&lt;/li&gt; &lt;li&gt;Valid XHTML Strict&lt;/li&gt; &lt;li&gt;Valid (commented) CSS&lt;/li&gt; &lt;li&gt;Editable Adobe Fireworks PNG image source file included&lt;/li&gt; &lt;li&gt;OS X-style search form&lt;/li&gt; &lt;li&gt;UTF-8 encoding (Supports Japanese text)&lt;/li&gt; &lt;/ul&gt;
&lt;h3&gt;Browser compatibility&lt;/h3&gt;
&lt;p&gt;The template has been tested on both Microsoft Windows and OS X based computers and supports the following browsers:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Safari (OS X)&lt;/li&gt; 
&lt;li&gt;Camino&lt;/li&gt;
&lt;li&gt;Firefox (Windows &amp;amp; OS X)&lt;/li&gt;
&lt;li&gt;Opera (Windows &amp;amp; OS X)&lt;/li&gt;
&lt;li&gt;Internet Explorer 7&lt;/li&gt;
&lt;li&gt;Internet Explorer 6+&lt;/li&gt;
&lt;li&gt;Internet Explorer 5.5+&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It also degrades gracefully in earlier versions of Microsoft Internet Explorer allowing users of these (primitive) browsers to still use your website even if they haven't visited the Windows Update site in a long time :)&lt;/p&gt;
&lt;h3&gt;Lemme 'ave it already!&lt;/h3&gt;
&lt;p&gt;Ok, ok!! from here you can either &lt;a href=&quot;http://gordonmac.com/downloads/html/demos/Peace&quot;&gt;preview the template&lt;/a&gt;, or &lt;a href=&quot;http://gordonmac.com/downloads/index.php?type=templates&amp;amp;template=3&quot;&gt;download the zip file&lt;/a&gt;.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=103</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=103</guid>
		<pubDate>Tue, 11 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Somewhere peaceful (Template)</title>
		<description><![CDATA[&lt;p&gt;It's been a &lt;strong&gt;long time &lt;/strong&gt;since I have released a free template, and tonight was an extremely boring night. The result of that boredom was a little creativity based on some drawings I have been working on recently:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/peaceTemp_thumb.jpg&quot; alt=&quot;Template thumbnail&quot; width=&quot;149&quot; height=&quot;102&quot; /&gt;&lt;/p&gt;
&lt;p&gt;It's not quite finished at the moment, but hopefully I will have the zip file, complete with Adobe Fireworks PNG, ready within the next couple of days. Until then you can &lt;a href=&quot;http://gordonmac.com/i_blog/peaceTemp.jpg&quot;&gt;check out a larger image&lt;/a&gt;, or better still &lt;a href=&quot;http://gordonmac.com/downloads/html/demos/Peace&quot;&gt;a live preview of the page&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Stay tuned.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=102</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=102</guid>
		<pubDate>Mon, 10 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>面頬</title>
		<description><![CDATA[&lt;p&gt;I don't know why I'm enjoying drawing crazy pictures these days, but I think this creation is as bad as the other one. I was attempting to draw &lt;span xml:lang=&quot;ja&quot;&gt;&eacute;&cent;&eacute;&nbsp;&not;&lt;/span&gt; (&amp;#8220;mempo&amp;#8221; - Japanese Samurai visor), but unfortunately it deviated slightly:&lt;/p&gt;
&lt;p class=&quot;centered&quot;&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/mask.jpg&quot; style=&quot;width:46em; height: 46em;&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Here is &lt;a href=&quot;http://gordonmac.com/i_blog/mask.jpg&quot;&gt;a larger version&lt;/a&gt;. It looks more like &lt;a href=&quot;http://en.wikipedia.org/wiki/Image:SpauldingWMakeup.png&quot;&gt;Captain Spaulding&lt;/a&gt;.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=101</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=101</guid>
		<pubDate>Sun, 9 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Eh? What's this about?</title>
		<description><![CDATA[&lt;p&gt;If you didn't (or don't) speak Japanese, what would you think this ad was speaking about?&lt;/p&gt;
&lt;p&gt;lol&amp;hellip; do your best to give me a caption.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/mixi_eh.jpg&quot; alt=&quot;WTF?&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Well, it says:&lt;/p&gt; &lt;blockquote&gt;
&lt;p&gt;&atilde;&ordf;&atilde;&middot;&atilde;&uml;&atilde;&iuml;&frac14;&egrave;&cedil;&atilde;&macr;&aelig;&reg;&atilde;&atilde;&brvbar;&atilde;&curren;&atilde;&raquo;&atilde;&atilde;&atilde;&reg;&atilde;&lt;/p&gt;
&lt;p&gt;&atilde;&egrave;&sup1;&atilde;&macr;&atilde;&atilde;&atilde;&plusmn;&atilde;&egrave;&cedil;&atilde;&curren;&atilde;&raquo;&atilde;&macr;&atilde;&curren;&atilde;&curren;&atilde;&frac14;&iuml;&frac14;&auml;&frac12;&atilde;&atilde;&atilde;&aelig;&sup1;&aelig;&sup3;&atilde;&atilde;&atilde;&frac34;&atilde;&atilde;&atilde;&iuml;&frac14;&aring;&atilde;&reg;5&aelig;&yen;&eacute;&atilde;&atilde;&curren;&atilde;&uml;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&pound;&atilde;&brvbar;&amp;hellip;&lt;/p&gt; &lt;/blockquote&gt;
&lt;p&gt;&amp;hellip; I'll leave you to your own imagination though :)&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=100</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=100</guid>
		<pubDate>Fri, 7 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Japanese for Christmas</title>
		<description><![CDATA[&lt;p&gt;With Christmas fast-approaching I thought I'd share some words and phrases in Japanese which relate to this time of the year.&lt;/p&gt;
&lt;p&gt;If you have some Japanese friends, either online or in real life you can try some of these out on them&amp;hellip;&lt;/p&gt;
&lt;p class=&quot;note-general&quot;&gt;If all you can see are squares instead of text that means you do not have Japanese language support installed on your computer.&lt;/p&gt;
&lt;table class=&quot;blog-table   &quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;thead&gt;
&lt;tr&gt;&lt;th&gt;English Word/phrase&lt;/th&gt; &lt;th&gt;Romaji/Pronunciation&lt;/th&gt; &lt;th&gt;Japanese Text&lt;/th&gt;
&lt;/tr&gt; &lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Christmas&lt;/td&gt;
&lt;td&gt;kurisumasu&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;&atilde;&macr;&atilde;&ordf;&atilde;&sup1;&atilde;&atilde;&sup1;&lt;br /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Christmas card&lt;/td&gt;
&lt;td&gt;kurisumasukaado&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;&atilde;&macr;&atilde;&ordf;&atilde;&sup1;&atilde;&atilde;&sup1;&atilde;&laquo;&atilde;&frac14;&atilde;&lt;br /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Christmas Tree&lt;/td&gt;
&lt;td&gt;kurisumasutsurii&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;&atilde;&macr;&atilde;&ordf;&atilde;&sup1;&atilde;&atilde;&sup1;&atilde;&atilde;&ordf;&atilde;&frac14;&lt;br /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;I wish you a merry Christmas&lt;/td&gt;
&lt;td&gt;&lt;span style=&quot;font-family: &quot;&gt;kurisumasu omedetou gozaimasu&lt;/span&gt;&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;&atilde;&macr;&atilde;&ordf;&atilde;&sup1;&atilde;&atilde;&sup1;&atilde;&atilde;&atilde;&sect;&atilde;&uml;&atilde;&atilde;&atilde;&atilde;&atilde;&frac34;&atilde;&lt;br /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;What do you want for Christmas?&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;&lt;span style=&quot;font-family: &quot;&gt;kurisumasu ni ha nani ga hoshii no?&lt;/span&gt;&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;&atilde;&macr;&atilde;&ordf;&atilde;&sup1;&atilde;&atilde;&sup1;&atilde;&laquo;&atilde;&macr;&auml;&frac12;&atilde;&aelig;&not;&sup2;&atilde;&atilde;&atilde;&reg;&iuml;&frac14;&lt;br /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;A Christmas gift&lt;/td&gt;
&lt;td&gt;&lt;span style=&quot;font-family: &quot;&gt;kurisumasu no okurimono&lt;/span&gt;&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;&atilde;&macr;&atilde;&ordf;&atilde;&sup1;&atilde;&atilde;&sup1;&atilde;&reg;&egrave;&acute;&atilde;&ccedil;&copy;&lt;br /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;I'm looking forward to Christmas&lt;/td&gt;
&lt;td&gt;&lt;span style=&quot;font-family: &quot;&gt;watashi ha kurisumasu wo tanoshimi ni matteimasu&lt;/span&gt;&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;&lt;span style=&quot;font-family: &quot;&gt;&ccedil;&sect;&atilde;&macr;&atilde;&macr;&atilde;&ordf;&atilde;&sup1;&atilde;&atilde;&sup1;&atilde;&aelig;&yen;&frac12;&atilde;&atilde;&iquest;&atilde;&laquo;&aring;&frac34;&atilde;&pound;&atilde;&brvbar;&atilde;&atilde;&frac34;&atilde;&lt;/span&gt;&lt;br /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;I had a Christmas party&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;&lt;span style=&quot;font-family: &quot;&gt;kurisumasu paateii wo hirai ta&lt;/span&gt;&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;&atilde;&macr;&atilde;&ordf;&atilde;&sup1;&atilde;&atilde;&sup1;&atilde;&atilde;&frac14;&atilde;&atilde;&pound;&atilde;&frac14;&atilde;&eacute;&atilde;&atilde;&lt;br /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;I hope these help!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=99</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=99</guid>
		<pubDate>Fri, 7 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>WTG Elizabeth I!</title>
		<description><![CDATA[&lt;p&gt;&lt;img class=&quot;floatleft&quot; src=&quot;http://gordonmac.com/i_blog/Elizabeth1.jpg&quot; alt=&quot;Elizabeth the 1st&quot; width=&quot;302&quot; height=&quot;406&quot; /&gt;I recently watched the film &amp;ldquo;Elizabeth: The Golden Age&amp;rdquo; and thought that Cate Blanchett played the most awesome Elizabeth I; even better than her first time round as The Virgin Queen. She looks stern, a true hard-ass monarch, but absolutely beautiful! Red hair, armour, on a white horse... those things may give the current Queen Elizabeth hemorrhoids and an allergic reaction to nickel and tin. They don't make them like they used to.&lt;/p&gt;
&lt;p&gt;Aside from the way Cate Blanchett looks in the film, I love the things she says, particularly in reference to the country not being beaten by Spain:&lt;/p&gt; 
&lt;blockquote&gt; &lt;p&gt;Let them come with the armies of Hell! They will not pass! &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Sadly I've never heard any Prime Minister since Margaret Thatcher say anything as comforting as that about our current domestic and foreign enemies.&lt;/p&gt; 
&lt;blockquote&gt; &lt;p&gt;I know I have the body but of a weak and feeble woman; but I have the heart and stomach of a king, and of a king of England too, and think foul scorn that Parma or Spain, or any prince of Europe, should dare to invade the borders of my realm; to which rather than any dishonour shall grow by me, I myself will take up arms, I myself will be your general, judge, and rewarder of every one of your virtues in the field. &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;So, c'mon Gordon Brown and Alex Salmond get your ugly arse faces into some ballistic armour, grab an SA80 and go get 'em, we'll follow ya&amp;hellip; promise.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=98</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=98</guid>
		<pubDate>Thu, 6 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Plain weird 3</title>
		<description><![CDATA[&lt;p&gt;Third Fireworks rendering of &lt;a href=&quot;http://gordonmac.com/archive/?id=95&quot;&gt;the image I drew yesterday&lt;/a&gt;. I have enhanced the eyes and added some texture to the forehead and eye areas:&lt;/p&gt;
&lt;p class=&quot;centered&quot;&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/dunkel3.jpg&quot; alt=&quot;Plain weird&quot; style=&quot;width:46em; height: 46em;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Here is a &lt;a href=&quot;http://gordonmac.com/i_blog/dunkel3.jpg&quot;&gt;larger version&lt;/a&gt;.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=97</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=97</guid>
		<pubDate>Wed, 5 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Plain weird 2</title>
		<description><![CDATA[&lt;p&gt;Well, here's the second Fireworks rendering of &lt;a href=&quot;http://gordonmac.com/archive/?id=95&quot;&gt;the image I drew yesterday&lt;/a&gt;. I have enhanced the eyes and changed the shape of the &amp;ldquo;face&amp;rdquo;:&lt;/p&gt;
&lt;p class=&quot;centered&quot;&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/dunkel2.jpg&quot; alt=&quot;Plain weird&quot; style=&quot;width:46em; height: 46em;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Here is a &lt;a href=&quot;http://gordonmac.com/i_blog/dunkel2.jpg&quot;&gt;larger version&lt;/a&gt;.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=96</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=96</guid>
		<pubDate>Wed, 5 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Plain weird</title>
		<description><![CDATA[&lt;p&gt;Well, I dunno what the hell this one is supposed to be. I was just messing around with paths in Fireworks and this was the result:&lt;/p&gt;
&lt;p class=&quot;centered&quot;&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/dunkel.jpg&quot; style=&quot;width:46em; height: 46em;&quot; alt=&quot;A weird picture&quot; width=&quot;350&quot; height=&quot;350&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Here is a &lt;a href=&quot;http://gordonmac.com/i_blog/dunkel.jpg&quot;&gt;larger version&lt;/a&gt;.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=95</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=95</guid>
		<pubDate>Tue, 4 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Japanese for Instant Messaging</title>
		<description><![CDATA[&lt;p&gt;A lot of people use instant messaging as a way to exchange languages. I do this as a way to learn Japanese.&lt;/p&gt;
&lt;p&gt;Here are some Japanese words and phrases you may find useful during an &lt;abbr title=&quot;Instant Messaging&quot;&gt;IM&lt;/abbr&gt; conversation with a Japanese person&amp;hellip;&lt;/p&gt;
&lt;table class=&quot;blog-table &quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;thead&gt;
&lt;tr&gt;&lt;th&gt;English Word&lt;/th&gt; &lt;th&gt;Romaji/Pronunciation&lt;/th&gt; &lt;th&gt;Japanese Text&lt;/th&gt;
&lt;/tr&gt; &lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Be right back&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;Suguni modorimasu&lt;/td&gt;
&lt;td&gt;&atilde;&atilde;&atilde;&laquo;&aelig;&raquo;&atilde;&atilde;&frac34;&atilde;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ASL?&lt;/td&gt;
&lt;td&gt;Nenrei, seibetsu, shusshi&lt;strong&gt;n&lt;/strong&gt;chi ha?&lt;/td&gt;
&lt;td&gt;&aring;&sup1;&acute;&eacute;&frac12;&cent;&atilde;&aelig;&sect;&aring;&yen;&atilde;&aring;&ordm;&egrave;&ordm;&laquo;&aring;&deg;&atilde;&macr;&iuml;&frac14;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Screen-name&lt;/td&gt;
&lt;td&gt;Sukuriin neemu&lt;/td&gt;
&lt;td&gt;&atilde;&sup1;&atilde;&macr;&atilde;&ordf;&atilde;&frac14;&atilde;&sup3;&atilde;&atilde;&frac14;&atilde;&nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;What's your name?&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;Anata no onamae ha?&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;&atilde;&atilde;&ordf;&atilde;&atilde;&reg;&atilde;&aring;&aring;&atilde;&macr;&iuml;&frac14;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Where do you live?&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;Dochira ni osumai desu ka?&lt;/td&gt;
&lt;td&gt;&atilde;&copy;&atilde;&iexcl;&atilde;&atilde;&laquo;&atilde;&auml;&frac12;&atilde;&atilde;&sect;&atilde;&atilde;&iuml;&frac14;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;I live in (place name), you?&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;(place name)ni sundeimasu. Anata ha?&lt;/td&gt;
&lt;td&gt;(place name)&atilde;&laquo;&auml;&frac12;&atilde;&atilde;&sect;&atilde;&atilde;&frac34;&atilde;&atilde;&atilde;&atilde;&ordf;&atilde;&atilde;&macr;&iuml;&frac14;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;No problem&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;Mondainai&lt;/td&gt;
&lt;td&gt;&aring;&eacute;&iexcl;&atilde;&ordf;&atilde;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;hahaha/hehehe&lt;/td&gt;
&lt;td&gt;hahaha/hehehe&lt;/td&gt;
&lt;td&gt;&atilde;&macr;&atilde;&macr;&atilde;&macr;/&atilde;&cedil;&atilde;&cedil;&atilde;&cedil;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;I hope you find this useful.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=94</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=94</guid>
		<pubDate>Tue, 4 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Barbara Luna （バーバラ・ルーナ）</title>
		<description><![CDATA[&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/BarbaraLuna1.jpg&quot; alt=&quot;Barabara Luna&quot; width=&quot;301&quot; height=&quot;369&quot; class=&quot;floatleft&quot; /&gt; Yesterday I was watching Sunday afternoon TV and came across the 1968 movie &lt;a href=&quot;http://www.imdb.com/title/tt0062975/&quot;&gt;Firecreek&lt;/a&gt;. There are a few very famous actors in the movie including James Stewart, Henry Fonda, Inger Stevens&amp;hellip; but the one who caught my eye most was &lt;a href=&quot;http://barbaraluna.com/&quot;&gt;Barbara Luna&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Barbara Luna is probably most famous for playing the part of Marlena in the classic Star Trek series, where she looked as beautiful as she did in Firecreek.&lt;/p&gt;
&lt;p&gt;She had also parts in many other TV series' of that time, including Buck Rogers, Mission Impossible and Bonanza to name but a few.&lt;/p&gt;
&lt;p&gt;There is something amazing about the actresses of yesteryear. I am a big fan of Grace Kelly, and think that she's one of the most beautiful women I've ever seen, but having watched Firecreek I have to say that Barbara Luna is a damn close second place!&lt;/p&gt;
&lt;p class=&quot;note-general&quot;&gt;Image borrowed from &lt;a href=&quot;http://barbaraluna.com/&quot;&gt;Barbaraluna.com&lt;/a&gt;.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=93</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=93</guid>
		<pubDate>Mon, 3 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>蛍の光 ~ Auld Lang Syne in Japanese</title>
		<description><![CDATA[&lt;p&gt;If you're learning Japanese, or any other foreign language for that matter, educating your tongue to defy gravity is an important, and difficult part of the learning curve.&lt;/p&gt;
&lt;p&gt;I recently came across a great example exercise&amp;hellip; the Japanese version of the Scottish song &amp;#8220;Auld Lang Syne&amp;#8221; by Robert Burns.&lt;/p&gt;
&lt;p&gt;The Japanese call it &amp;#8220;hotaru no hikari&amp;#8221; (Glow of a firefly) and It looks like this&amp;hellip;&lt;/p&gt;
&lt;p xml:lang=&quot;ja&quot;&gt;&atilde;&raquo;&atilde;&atilde;&atilde;&reg;&atilde;&sup2;&atilde;&atilde;&atilde;&atilde;&frac34;&atilde;&copy;&atilde;&reg;&atilde;&atilde;&atilde;&lt;br /&gt;
&aelig;&cedil;&atilde;&atilde;&atilde;&curren;&atilde;&aelig;&yen;&atilde;&atilde;&atilde;&atilde;&shy;&atilde;&curren;&atilde;&curren;&atilde;&lt;br /&gt;
&atilde;&atilde;&curren;&atilde;&atilde;&aring;&sup1;&acute;&atilde;&atilde;&atilde;&atilde;&atilde;&reg;&atilde;&uml;&atilde;&atilde;&lt;br /&gt;
&atilde;&atilde;&atilde;&brvbar;&atilde;&atilde;&atilde;&atilde;&macr;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&lt;/p&gt;
&lt;p xml:lang=&quot;ja&quot;&gt;&atilde;&uml;&atilde;&frac34;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&uml;&atilde;&brvbar;&atilde;&lt;br /&gt;
&atilde;&atilde;&atilde;&iquest;&atilde;&laquo;&atilde;&atilde;&atilde;&micro;&atilde;&atilde;&iexcl;&atilde;&atilde;&atilde;&yen;&atilde;&reg;&atilde;&lt;br /&gt;
&atilde;&atilde;&atilde;&atilde;&reg;&atilde;&macr;&atilde;&atilde;&atilde;&atilde;&sup2;&atilde;&uml;&atilde;&atilde;&uml;&atilde;&laquo;&atilde;&lt;br /&gt;
&atilde;&atilde;&atilde;&atilde;&uml;&atilde;&deg;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&micro;&atilde;&ordf;&atilde;&atilde;&lt;/p&gt;
&lt;p xml:lang=&quot;ja&quot;&gt;&atilde;&curren;&atilde;&atilde;&atilde;&reg;&atilde;&atilde;&atilde;&iquest;&atilde;&atilde;&iquest;&atilde;&iexcl;&atilde;&reg;&atilde;&atilde;&atilde;&lt;br /&gt;
&atilde;&atilde;&iquest;&atilde;&atilde;&frac34;&atilde;&uml;&atilde;&raquo;&atilde;&atilde;&atilde;&cedil;&atilde;&nbsp;&atilde;&curren;&atilde;&uml;&atilde;&atilde;&lt;br /&gt;
&atilde;&atilde;&reg;&atilde;&frac34;&atilde;&atilde;&atilde;&atilde;&macr;&atilde;&atilde;&cedil;&atilde;&nbsp;&atilde;&brvbar;&atilde;&ordf;&atilde;&atilde;&lt;br /&gt;
&atilde;&sup2;&atilde;&uml;&atilde;&curren;&atilde;&laquo;&atilde;&curren;&atilde;&atilde;&atilde;&atilde;&atilde;&laquo;&atilde;&reg;&atilde;&atilde;&atilde;&lt;/p&gt;
&lt;p xml:lang=&quot;ja&quot;&gt;&aring;&aring;&sup3;&para;&atilde;&reg;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&ordf;&atilde;&macr;&atilde;&atilde;&lt;br /&gt;
&atilde;&atilde;&atilde;&frac34;&atilde;&reg;&atilde;&atilde;&iexcl;&atilde;&reg;&atilde;&atilde;&frac34;&atilde;&atilde;&atilde;&ordf;&atilde;&atilde;&lt;br /&gt;
&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&laquo;&atilde;&laquo;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&lt;br /&gt;
&atilde;&curren;&atilde;&uml;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&curren;&atilde;&curren;&atilde;&atilde;&ordf;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;That's simple enough huh? Now stretch your tongue a few times to warm it up, take a good deep breath and repeat after me&amp;hellip;&lt;/p&gt;
&lt;dl&gt;
&lt;dt xml:lang=&quot;ja&quot;&gt;&atilde;&raquo;&atilde;&atilde;&atilde;&reg;&atilde;&sup2;&atilde;&atilde;&atilde;&atilde;&frac34;&atilde;&copy;&atilde;&reg;&atilde;&atilde;&atilde;&lt;/dt&gt;
&lt;dd&gt;hotarunohikari, madonoyuki,&lt;/dd&gt;
&lt;dt xml:lang=&quot;ja&quot;&gt;&aelig;&cedil;&atilde;&atilde;&atilde;&curren;&atilde;&aelig;&yen;&atilde;&atilde;&atilde;&atilde;&shy;&atilde;&curren;&atilde;&curren;&atilde;&lt;/dt&gt;
&lt;dd&gt;kaki yomutsuki nichi, kasanetsutsu,&lt;/dd&gt;
&lt;dt xml:lang=&quot;ja&quot;&gt;&atilde;&atilde;&curren;&atilde;&atilde;&aring;&sup1;&acute;&atilde;&atilde;&atilde;&atilde;&atilde;&reg;&atilde;&uml;&atilde;&atilde;&lt;/dt&gt;
&lt;dd&gt;itsushika nen mo, suginotowo,&lt;/dd&gt;
&lt;dt xml:lang=&quot;ja&quot;&gt;&atilde;&atilde;&atilde;&brvbar;&atilde;&atilde;&atilde;&atilde;&macr;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&lt;/dt&gt;
&lt;dd&gt;aketezokesaha, wakareyuku.&lt;/dd&gt;
&lt;/dl&gt;
&lt;dl&gt;
&lt;dt xml:lang=&quot;ja&quot;&gt;&atilde;&uml;&atilde;&frac34;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&uml;&atilde;&brvbar;&atilde;&lt;/dt&gt;
&lt;dd&gt;tomarumoyukumo, kagiritote,&lt;/dd&gt;
&lt;dt xml:lang=&quot;ja&quot;&gt;&atilde;&atilde;&atilde;&iquest;&atilde;&laquo;&atilde;&atilde;&atilde;&micro;&atilde;&atilde;&iexcl;&atilde;&atilde;&atilde;&yen;&atilde;&reg;&atilde;&lt;/dt&gt;
&lt;dd&gt;kataminiomofu, chiyoroduno,&lt;/dd&gt;
&lt;dt xml:lang=&quot;ja&quot;&gt;&atilde;&atilde;&atilde;&atilde;&reg;&atilde;&macr;&atilde;&atilde;&atilde;&atilde;&sup2;&atilde;&uml;&atilde;&atilde;&uml;&atilde;&laquo;&atilde;&lt;/dt&gt;
&lt;dd&gt;kokoronohashiwo, hitokotoni,&lt;/dd&gt;
&lt;dt xml:lang=&quot;ja&quot;&gt;&atilde;&atilde;&atilde;&atilde;&uml;&atilde;&deg;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&micro;&atilde;&ordf;&atilde;&atilde;&lt;/dt&gt;
&lt;dd&gt;sakikutobakari, utafunari.&lt;/dd&gt;
&lt;/dl&gt;
&lt;dl&gt;
&lt;dt xml:lang=&quot;ja&quot;&gt;&atilde;&curren;&atilde;&atilde;&atilde;&reg;&atilde;&atilde;&atilde;&iquest;&atilde;&atilde;&iquest;&atilde;&iexcl;&atilde;&reg;&atilde;&atilde;&atilde;&lt;/dt&gt;
&lt;dd&gt;tsukushinokiwami, michinooku,&lt;/dd&gt;
&lt;dt xml:lang=&quot;ja&quot;&gt;&atilde;&atilde;&iquest;&atilde;&atilde;&frac34;&atilde;&uml;&atilde;&raquo;&atilde;&atilde;&atilde;&cedil;&atilde;&nbsp;&atilde;&curren;&atilde;&uml;&atilde;&atilde;&lt;/dt&gt;
&lt;dd&gt;umiyamatohoku, hedatsutomo,&lt;/dd&gt;
&lt;dt xml:lang=&quot;ja&quot;&gt;&atilde;&atilde;&reg;&atilde;&frac34;&atilde;&atilde;&atilde;&atilde;&macr;&atilde;&atilde;&cedil;&atilde;&nbsp;&atilde;&brvbar;&atilde;&ordf;&atilde;&atilde;&lt;/dt&gt;
&lt;dd&gt;sonomagokoroha, hedatenaku,&lt;/dd&gt;
&lt;dt xml:lang=&quot;ja&quot;&gt;&atilde;&sup2;&atilde;&uml;&atilde;&curren;&atilde;&laquo;&atilde;&curren;&atilde;&atilde;&atilde;&atilde;&atilde;&laquo;&atilde;&reg;&atilde;&atilde;&atilde;&lt;/dt&gt;
&lt;dd&gt;hitotsunitsukuse, kuninotame.&lt;/dd&gt;
&lt;/dl&gt;
&lt;dl&gt;
&lt;dt xml:lang=&quot;ja&quot;&gt;&aring;&aring;&sup3;&para;&atilde;&reg;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&ordf;&atilde;&macr;&atilde;&atilde;&lt;/dt&gt;
&lt;dd&gt;sen shima nookumo, okinahamo,&lt;/dd&gt;
&lt;dt xml:lang=&quot;ja&quot;&gt;&atilde;&atilde;&atilde;&frac34;&atilde;&reg;&atilde;&atilde;&iexcl;&atilde;&reg;&atilde;&atilde;&frac34;&atilde;&atilde;&atilde;&ordf;&atilde;&atilde;&lt;/dt&gt;
&lt;dd&gt;yashimanouchino, mamorinari.&lt;/dd&gt;
&lt;dt xml:lang=&quot;ja&quot;&gt;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&laquo;&atilde;&laquo;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&lt;/dt&gt;
&lt;dd&gt;itarankunini, isawoshiku,&lt;/dd&gt;
&lt;dt xml:lang=&quot;ja&quot;&gt;&atilde;&curren;&atilde;&uml;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&curren;&atilde;&curren;&atilde;&atilde;&ordf;&atilde;&atilde;&lt;/dt&gt;
&lt;dd&gt;tsutomeyowagase, tsutsuganaku.&lt;/dd&gt;
&lt;/dl&gt;
&lt;p&gt;Try saying that after a few New years drinks without biting your tongue off!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=92</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=92</guid>
		<pubDate>Mon, 3 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>毎秋</title>
		<description><![CDATA[&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/Autumn.jpg&quot; alt=&quot;&aelig;&macr;&ccedil;&sect;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;A quick doodle. &amp;#8220;Maiaki&amp;#8221; ~ Every Autumn.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=91</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=91</guid>
		<pubDate>Sun, 2 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>雪月花の時最も君を憶ふ</title>
		<description><![CDATA[&lt;p class=&quot;centered&quot;&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/JapaneseWinter.jpg&quot; style=&quot;width:46em; height: 46em;&quot; alt=&quot;&eacute;&ordf;&aelig;&egrave;&plusmn;&atilde;&reg;&aelig;&aelig;&atilde;&aring;&atilde;&aelig;&para;&atilde;&micro;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Just another attempt at drawing using Fireworks CS3. Here is a &lt;a href=&quot;http://gordonmac.com/i_blog/JapaneseWinter.jpg&quot;&gt;larger version&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Want to see &lt;a href=&quot;http://gordonmac.com/archive/?id=89&quot;&gt;some more&lt;/a&gt;?&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=90</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=90</guid>
		<pubDate>Sat, 1 Dec 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Japanese art in Fireworks CS3</title>
		<description><![CDATA[&lt;p&gt;As anyone who knows me will know&amp;hellip; I love anything that's Japanese. I don't think there's a single person in the world who doesn't find Japanese art either aesthetically pleasing or inspiring. Today I decided to have a go at a Japanese(esque) image in Adobe Fireworks CS3. &lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/Japaneseart1thumb.jpg&quot; alt=&quot;&aring;&iquest;&atilde;&reg;&aring;&sup1;&sup3;&eacute; - kokoro no heisei&quot; width=&quot;290&quot; height=&quot;290&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I'm happy with it for a first attempt. Here is a &lt;a href=&quot;http://gordonmac.com/i_blog/Japaneseart1BlogMain.jpg&quot;&gt;larger version&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The text says &amp;#8220;&lt;strong&gt;&aring;&iquest;&atilde;&reg;&aring;&sup1;&sup3;&eacute;&lt;/strong&gt;&amp;#8221; (kokoro no heisei), which really means &quot;tranquility of mind&quot;.&lt;/p&gt;
&lt;p&gt;I also made a second attempt using some more Japanese text:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/forTomoko_thumb.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Here is a &lt;a href=&quot;http://gordonmac.com/i_blog/forTomoko.jpg&quot;&gt;larger version&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It's good fun&amp;hellip; crank up your image editor and have a go!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=89</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=89</guid>
		<pubDate>Fri, 30 Nov 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Styling dates with CSS</title>
		<description><![CDATA[&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/CSSDates/date_sample.jpg&quot; alt=&quot;&quot; width=&quot;49&quot; height=&quot;47&quot; class=&quot;floatleft&quot; /&gt; I have seen similar styling of blog post dates on many blogs, and always thought it was a rather neat way of doing it. Tonight I decided to have a go for myself and discovered that it's pretty darn simple really. All it takes is an image, a few span tags and a sprinkle of basic CSS.&lt;/p&gt;
&lt;p&gt;Here's how it's done&amp;hellip;&lt;/p&gt;
&lt;h3&gt;The HTML markup&lt;/h3&gt;
&lt;p&gt;The average blog post heading contains a few common textual elements; the date of the post, the title of the post, the category which best describes its theme and often the person who posted. With those things considered I decided on the following markup:&lt;/p&gt;
&lt;pre&gt;&amp;lt;h2&amp;gt;
&amp;lt;span class=&amp;quot;date&amp;quot;&amp;gt;
&amp;lt;span class=&amp;quot;month&amp;quot;&amp;gt;
Dec
&amp;lt;/span&amp;gt;
&amp;lt;span class=&amp;quot;day&amp;quot;&amp;gt;
25
&amp;lt;/span&amp;gt;
&amp;lt;/span&amp;gt; Blog Title 
&amp;lt;span class=&amp;quot;meta&amp;quot;&amp;gt;Posted in HTML by Gordon Mackay.&amp;lt;/span&amp;gt;&amp;lt;/h2&amp;gt;
&lt;/pre&gt;
&lt;p&gt;Seems like there are quite a few span tags, huh? Well, to do what we want I think that's the bare minimum.&lt;/p&gt;
&lt;p&gt;The heading (&lt;code&gt;&amp;lt;h2&amp;gt;&lt;/code&gt;) tag makes sense for obvious reasons, here are explanations of the others:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&amp;quot;&lt;strong&gt;date&lt;/strong&gt;&amp;quot; is the wrapper span, and will give dimension to the date box large enough to place the calendar image as its background.&lt;/li&gt;
&lt;li&gt;&amp;quot;&lt;strong&gt;month&lt;/strong&gt;&amp;quot; will allow us to keep the name of the month on it's own line and allow us to style it individually.&lt;/li&gt;
&lt;li&gt;&amp;quot;&lt;strong&gt;day&lt;/strong&gt;&amp;quot; &amp;hellip; for the exact same reasons as month.&lt;/li&gt;
&lt;li&gt;&amp;quot;&lt;strong&gt;meta&lt;/strong&gt;&amp;quot; will allow us to place other information on a new line directly under the main title, and also allow us to style it individually too.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Simple stuff really [^.^]&lt;/p&gt;
&lt;h3&gt;The CSS&lt;/h3&gt;
&lt;p&gt;The CSS is pretty simple and consists of only four rules. Here is the first one:&lt;/p&gt;
&lt;pre&gt;.date
{
float: left;
height: 52px;
width: 52px;
background: url(date.png) no-repeat;
margin-right: 10px;
padding-top: 0px;
line-height: normal;
}&lt;/pre&gt;
&lt;p&gt;This rule moves the span to the right of the parent heading element using a float. It is set to the same dimensions as the calendar image. &lt;/p&gt;
&lt;p&gt;Some margin on the right is given to stop the text of the main title from butting up against it, and top padding and line height are reset.&lt;/p&gt;
&lt;pre&gt;.date .month
{
display: block;
text-align: center;
color: #FFF;
font-size: 11px;
padding-top: 4px;
text-transform: uppercase;
}&lt;/pre&gt;
&lt;p&gt;This rule places the month on it's own line by forcing it to display as a block level element rather than the inline span that it is. The font size is set to 11px so that we can make it a pixel-perfect fit inside the top date section of the image.&lt;/p&gt;
&lt;p&gt;Some padding is given to center it vertically and the text is set to display in uppercase.&lt;/p&gt;
&lt;pre&gt;.date .day
{
display: block;
text-align: center;
padding-top: 5px;
color: #222;
font-size: 18px;
font-weight: bold;
}&lt;/pre&gt;
&lt;p&gt;Yep, you've guessed correctly&amp;hellip; the day rule does almost exactly the same for the day as the previous rule did for the month.&lt;/p&gt;
&lt;pre&gt;.meta
{
display: block;
font-size: 11px;
color: #666;
}&lt;/pre&gt;
&lt;p&gt;The final rule places the post meta info nicely under the larger main title. That's all there is to making your dates look great [^.^]&lt;/p&gt;
&lt;h3&gt;Browser compatibility&lt;/h3&gt;
&lt;p&gt;This method works in all common modern browsers on both Apple OS X and Windows (Yeah Internet Explorer 6!!).&lt;/p&gt;
&lt;h3&gt;Example&lt;/h3&gt;
&lt;p&gt;You can &lt;a href=&quot;http://gordonmac.com/i_blog/CSSDates/&quot;&gt;view the finished product here&lt;/a&gt; if you like, and you can also &lt;a href=&quot;http://gordonmac.com/i_blog/CSSDates/CSSDates.zip&quot;&gt;download the files and Fireworks PNG source&lt;/a&gt; for the calendar image.&lt;/p&gt;
&lt;p&gt;Have fun!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=88</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=88</guid>
		<pubDate>Thu, 29 Nov 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Japanese for the internet</title>
		<description><![CDATA[&lt;p&gt;I don't know whether or not many of the people who visit my website will be interested in reading this, but I thought I'd compile some notes for using Japanese online, starting with some Japanese web terminology and then moving on to an example of an introductory message/email in Japanese.&lt;/p&gt;
&lt;p&gt;Let's begin with some simple words.&lt;/p&gt;
&lt;h3&gt;Simple Words&lt;/h3&gt;
&lt;p&gt;These are words are the ones very commonly used in Japanese sentences. Don't go anywhere without them.&lt;/p&gt;
&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;blog-table&quot;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;English Word&lt;/th&gt;
&lt;th&gt;Romaji/Pronunciation&lt;/th&gt;
&lt;th&gt;Japanese Text&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Me/I&lt;/td&gt;
&lt;td&gt;watashi&lt;/td&gt;
&lt;td&gt;&ccedil;&sect;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;You&lt;/td&gt;
&lt;td&gt;anata&lt;/td&gt;
&lt;td&gt;&atilde;&atilde;&ordf;&atilde;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;We&lt;/td&gt;
&lt;td&gt;watashitachi&lt;/td&gt;
&lt;td&gt;&ccedil;&sect;&atilde;&atilde;&iexcl;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;They&lt;/td&gt;
&lt;td&gt;karera (masc.) kanojora (fem.)&lt;/td&gt;
&lt;td&gt;&aring;&frac12;&frac14;&atilde;(masc.) &aring;&frac12;&frac14;&aring;&yen;&sup3;&atilde; (fem.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Y'all&lt;/td&gt;
&lt;td&gt;anatatachi&lt;/td&gt;
&lt;td&gt;&atilde;&atilde;&ordf;&atilde;&atilde;&atilde;&iexcl;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The&lt;/td&gt;
&lt;td&gt;sono&lt;/td&gt;
&lt;td&gt;&atilde;&atilde;&reg;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Of/belonging to&lt;/td&gt;
&lt;td&gt;no&lt;/td&gt;
&lt;td&gt;&atilde;&reg;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Person&lt;/td&gt;
&lt;td&gt;jin&lt;/td&gt;
&lt;td&gt;&auml;&ordm;&ordm;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;

&lt;h3&gt;Countries&lt;/h3&gt;
&lt;p&gt;Part of any introduction with people from a different country will almost always make reference to nationality, so here's a small list.&lt;/p&gt;
&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;blog-table&quot;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;English Word&lt;/th&gt;
&lt;th&gt;Romaji/Pronunciation&lt;/th&gt;
&lt;th&gt;Japanese Text&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Japan&lt;/td&gt;
&lt;td&gt;Nihon&lt;/td&gt;
&lt;td&gt;&aelig;&yen;&aelig;&not;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;UK&lt;/td&gt;
&lt;td&gt;Eikoku/Igirisu&lt;/td&gt;
&lt;td&gt;&egrave;&plusmn;&aring;&frac12;/&atilde;&curren;&atilde;&reg;&atilde;&ordf;&atilde;&sup1;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;USA&lt;/td&gt;
&lt;td&gt;Amerika&lt;/td&gt;
&lt;td&gt;&atilde;&cent;&atilde;&iexcl;&atilde;&ordf;&atilde;&laquo;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Australia&lt;/td&gt;
&lt;td&gt;Osutoraria&lt;/td&gt;
&lt;td&gt;&atilde;&ordf;&atilde;&frac14;&atilde;&sup1;&atilde;&atilde;&copy;&atilde;&ordf;&atilde;&cent;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Italy&lt;/td&gt;
&lt;td&gt;Itarii&lt;/td&gt;
&lt;td&gt;&atilde;&curren;&atilde;&iquest;&atilde;&ordf;&atilde;&frac14;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Spain&lt;/td&gt;
&lt;td&gt;Supein&lt;/td&gt;
&lt;td&gt;&atilde;&sup1;&atilde;&atilde;&curren;&atilde;&sup3;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;France&lt;/td&gt;
&lt;td&gt;Furansu&lt;/td&gt;
&lt;td&gt;&atilde;&atilde;&copy;&atilde;&sup3;&atilde;&sup1;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Germany&lt;/td&gt;
&lt;td&gt;Doitsu&lt;/td&gt;
&lt;td&gt;&ccedil;&not;&eacute;&cedil;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Knowing the country name also easily allows you to say which language you speak by adding &amp;#8220;&lt;strong&gt;&egrave;&ordf;&lt;/strong&gt;&amp;#8221; (&amp;#8220;go&amp;#8221;) to the end of the Japanese text for the country. For example:&lt;/p&gt;
&lt;p&gt;French = &amp;#8220;furansu&lt;strong&gt;go&lt;/strong&gt;&amp;#8221; =&gt; &atilde;&atilde;&copy;&atilde;&sup3;&atilde;&sup1;&egrave;&ordf;.&lt;/p&gt;
&lt;p&gt;Unfortunately it's not so simple for &lt;strong&gt;English&lt;/strong&gt;, which is &amp;#8220;&lt;strong&gt;eigo&lt;/strong&gt;&amp;#8221; =&gt; &lt;strong&gt;&egrave;&plusmn;&egrave;&ordf;&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;OK, with the simple words out of the way let's move on to some Japanese for internet terminology.&lt;/p&gt;
&lt;h3&gt;Internet Words&lt;/h3&gt;
&lt;p&gt;These are words we all use online every day, and this is how Japanese people say and write them.&lt;/p&gt;
&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;blog-table&quot;&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;English Word&lt;/th&gt;
&lt;th&gt;Romaji/Pronunciation&lt;/th&gt;
&lt;th&gt;Japanese Text&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Website/site&lt;/td&gt;
&lt;td&gt;uebusaito/saito&lt;/td&gt;
&lt;td&gt;&atilde;&brvbar;&atilde;&sect;&atilde;&atilde;&micro;&atilde;&curren;&atilde;&iuml;&frac14;&atilde;&micro;&atilde;&curren;&atilde;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;E-mail&lt;/td&gt;
&lt;td&gt;denshimeeru&lt;/td&gt;
&lt;td&gt;&eacute;&raquo;&aring;&shy;&atilde;&iexcl;&atilde;&frac14;&atilde;&laquo;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Blog&lt;/td&gt;
&lt;td&gt;burogu&lt;/td&gt;
&lt;td&gt;&atilde;&atilde;&shy;&atilde;&deg;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Link&lt;/td&gt;
&lt;td&gt;rinku&lt;/td&gt;
&lt;td&gt;&atilde;&ordf;&atilde;&sup3;&atilde;&macr;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RSS Feed&lt;/td&gt;
&lt;td&gt;RSS saito samarii&lt;/td&gt;
&lt;td&gt;RSS&atilde;&micro;&atilde;&curren;&atilde;&atilde;&raquo;&atilde;&micro;&atilde;&atilde;&ordf;&atilde;&frac14;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Photos&lt;/td&gt;
&lt;td&gt;shashin&lt;/td&gt;
&lt;td&gt;&aring;&ccedil;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Images&lt;/td&gt;
&lt;td&gt;imeejizu&lt;/td&gt;
&lt;td&gt;&atilde;&curren;&atilde;&iexcl;&atilde;&frac14;&atilde;&cedil;&atilde;&ordm;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Comment&lt;/td&gt;
&lt;td&gt;komento&lt;/td&gt;
&lt;td&gt;&atilde;&sup3;&atilde;&iexcl;&atilde;&sup3;&atilde;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Page&lt;/td&gt;
&lt;td&gt;peeji&lt;/td&gt;
&lt;td&gt;&atilde;&atilde;&frac14;&atilde;&cedil;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Design&lt;/td&gt;
&lt;td&gt;dezain&lt;/td&gt;
&lt;td&gt;&atilde;&atilde;&para;&atilde;&curren;&atilde;&sup3;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Web designer&lt;/td&gt;
&lt;td&gt;webudezainaa&lt;/td&gt;
&lt;td&gt;&atilde;&brvbar;&atilde;&sect;&atilde;&atilde;&atilde;&para;&atilde;&curren;&atilde;&atilde;&frac14;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Graphic designer&lt;/td&gt;
&lt;td&gt;gurafikkudezainaa&lt;/td&gt;
&lt;td&gt;&atilde;&deg;&atilde;&copy;&atilde;&atilde;&pound;&atilde;&atilde;&macr;&atilde;&atilde;&para;&atilde;&curren;&atilde;&atilde;&frac14;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Ok, now that we have some vocabulary let's string some of it together into something that could be used as a random e-mail to a Japanese person&acirc;&brvbar;&lt;/p&gt;
&lt;h3&gt;An E-mail in Japanese&lt;/h3&gt;
&lt;p&gt;This is a simple introduction e-mail which isn't too formal and at the same time, not informal either.&lt;/p&gt;
&lt;p&gt;Here goes&acirc;&brvbar;&lt;/p&gt;
&lt;p&gt;&aring;&atilde;&atilde;&frac34;&atilde;&atilde;&brvbar;&atilde;&lt;/p&gt;
&lt;p&gt;&amp;#8220;&lt;em&gt;Hajimemashite&lt;/em&gt;&amp;#8221; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;=&gt;&lt;/strong&gt; Pleased to meet you.&lt;/p&gt;
&lt;p&gt;&ccedil;&ordf;&ccedil;&para;&atilde;&reg;&atilde;&iexcl;&atilde;&atilde;&raquo;&atilde;&frac14;&atilde;&cedil;&aring;&curren;&plusmn;&ccedil;&curren;&frac14;&atilde;&atilde;&atilde;&atilde;&frac34;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&amp;#8220;&lt;em&gt;totsuzen no messeeji shitsurei itashimasu&lt;/em&gt;&amp;#8221; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;=&gt;&lt;/strong&gt; Sorry for the random/sudden message.&lt;/p&gt;
&lt;p&gt;&aelig;&yen;&aelig;&not;&egrave;&ordf;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&frac34;&atilde;&atilde;&ccedil;&sect;&atilde;&macr;&aelig;&yen;&aelig;&not;&egrave;&ordf;&atilde;&aelig;&cedil;&atilde;&atilde;&uml;&aring;&iquest;&atilde;&aring;&deg;&atilde;&eacute;&eacute;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&amp;#8220;&lt;em&gt;nihongo ga sukoshi wakarimasu. watashi ha nihongo o kaku to kanarazu sukoshi machigaeru, gomen.&lt;/em&gt;&amp;#8221; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;=&gt;&lt;/strong&gt; I understand a little Japanese. If I use Japanese I am bound to make some mistakes, sorry.&lt;/p&gt;
&lt;p&gt;&ccedil;&sect;&atilde;&reg;&aring;&aring;&atilde;&macr;[INSERT YOUR NAME]&atilde;&sect;&atilde;&atilde;&ccedil;&sect;&atilde;&macr;[INSERT YOUR COUNTRY]&auml;&ordm;&ordm;&atilde;&sect;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&amp;#8220;&lt;em&gt;watashi no namae ha (name) desu. watashi ha (country) jin desu&lt;/em&gt;&amp;#8221;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;=&gt;&lt;/strong&gt; My name is (name). I am (nationality).&lt;/p&gt;
&lt;p&gt;&egrave;&middot;&aelig;&yen;&shy;&atilde;&macr;[INSERT JOB TITLE]&atilde;&sect;&atilde;&atilde;[INSERT SOMETHING YOU LIKE 1]&atilde;&uml;[INSERT SOMETHING ELSE YOU LIKE]&atilde;&aring;&curren;&sect;&aring;&yen;&frac12;&atilde;&iuml;&frac14;&lt;/p&gt;
&lt;p&gt;&amp;#8220;&lt;em&gt;shokugyou ha (job title) desu. (something I like) to (something else I like) ga daisuki!&lt;/em&gt;&amp;#8221; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;=&gt;&lt;/strong&gt; I work as a (job title/occupation). I love (something) and (something else) a lot.&lt;/p&gt;
&lt;p&gt;&atilde;&atilde;&ordf;&atilde;&atilde;&reg;[&atilde;&atilde;&para;&atilde;&curren;&atilde;&sup3;] [&aring;&ccedil;] [&atilde;&curren;&atilde;&iexcl;&atilde;&frac14;&atilde;&cedil;&atilde;&ordm;] [&atilde;&brvbar;&atilde;&sect;&atilde;&atilde;&micro;&atilde;&curren;&atilde;]&atilde;&macr;&atilde;&atilde;&atilde;&atilde;&sect;&atilde;&atilde;&shy;&iuml;&frac14;&lt;/p&gt;
&lt;p&gt;&amp;#8220;&lt;em&gt;anata no [ dezain ] [ shashin ] [ imeejizu ] [ webusaito ] (choose one, or place &amp;#8220;&atilde;&uml;&amp;#8221; between two things for &amp;#8221;and&amp;#8220;)ha sugoi desu ne!&lt;/em&gt;&amp;#8221;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;=&gt;&lt;/strong&gt; Your (design) (photos) (images) (website) is/are cool!&lt;/p&gt;
&lt;p&gt;&ccedil;&sect;&atilde;&reg;&atilde;&brvbar;&atilde;&sect;&atilde;&atilde;&micro;&atilde;&curren;&atilde;&atilde;&macr;[INSERT YOUR WEBSITE URL]&atilde;&sect;&atilde;&atilde;&atilde;&atilde;&pound;&atilde;&atilde;&ccedil;&sect;&atilde;&reg;&atilde;&brvbar;&atilde;&sect;&atilde;&atilde;&micro;&atilde;&curren;&atilde;&atilde;&laquo;&atilde;&atilde;&uml;&atilde;&atilde;&copy;&atilde;&eacute;&atilde;&sup3;&atilde;&laquo;&atilde;&atilde;&atilde;&atilde;&brvbar;&atilde;&atilde;&nbsp;&atilde;&atilde;&atilde;&shy;&atilde;&lt;/p&gt;
&lt;p&gt;&amp;#8220;&lt;em&gt;watashi no webusaito ha (link to your website) desu. kattara watashi no webusaito ni mo tokidoki asobi ni ira shi te kudasai ne.&lt;/em&gt;&amp;#8221;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;=&gt;&lt;/strong&gt; My web site is (link). Come and have a look around if you like.&lt;/p&gt;
&lt;p&gt;&ccedil;&sect;&atilde;&macr;[INSERT YOUR COUNTRY]&auml;&ordm;&ordm;&atilde;&ordf;&atilde;&atilde;&sect;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&pound;&atilde;&atilde;&auml;&raquo;&sup2;&egrave;&macr;&atilde;&atilde;&atilde;&brvbar;&atilde;&atilde;&nbsp;&atilde;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&amp;#8220;&lt;em&gt;watashi ha (country) jin nan desu ga, yokattara nakayokushite kudasai.&lt;/em&gt;&amp;#8221;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;=&gt;&lt;/strong&gt; Although I am a foreigner from (country), let's make friends.&lt;/p&gt;
&lt;p&gt;&atilde;&atilde;&reg;&atilde;&atilde;&egrave;&copy;&plusmn;&eacute;&iexcl;&atilde;&aelig;&yen;&frac12;&atilde;&atilde;&iquest;&atilde;&laquo;&atilde;&atilde;&brvbar;&atilde;&atilde;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&amp;#8220;&lt;em&gt;tanoshii wadai o tanoshimi ni shiteiru wa.&lt;/em&gt;&amp;#8221;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;=&gt;&lt;/strong&gt; I look forward to interesting conversations.&lt;/p&gt;
&lt;p&gt;&atilde;&atilde;&atilde;&atilde;&atilde;&eacute;&iexcl;&atilde;&atilde;&atilde;&atilde;&atilde;&frac34;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&amp;#8220;&lt;em&gt;yoroshiku onegai itashimasu.&lt;/em&gt;&amp;#8221;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;=&gt;&lt;/strong&gt; Thank you for your consideration&lt;/p&gt;
&lt;p&gt;[INSERT YOUR NAME]&lt;/p&gt;
&lt;p&gt;And that's all there is to it!&lt;/p&gt;
&lt;p&gt;Now go and find some Japanese people and be friends :)&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=87</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=87</guid>
		<pubDate>Thu, 29 Nov 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Japanese Comedy Game Shows</title>
		<description><![CDATA[&lt;p&gt;In the UK we have people hosting game shows who &lt;em&gt;pretend&lt;/em&gt; to be nasty. For example, Anne Robinson in the Weakest Link. However, in Japan it seems that, for some, a great deal of pleasure and amusement is gained from watching TV shows where the name-of-the-game is to completely humiliate and/or cause pain to the participants.&lt;/p&gt;
&lt;p&gt;Take this example for instance&amp;hellip;&lt;/p&gt;
&lt;p&gt;&lt;object width=&quot;425&quot; height=&quot;355&quot;&gt;&lt;br /&gt;
&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/LdgdBOTUSqg&amp;rel=1&quot;&gt;&lt;/param&gt;
&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/LdgdBOTUSqg&amp;rel=1;rel=1&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; width=&quot;425&quot; height=&quot;355&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p class=&quot;note-general&quot;&gt;Want to &lt;a href=&quot;http://tinyurl.com/28w5d9&quot;&gt;watch more Japanese game shows&lt;/a&gt;?&lt;/p&gt;
&lt;p&gt;I wonder how they manage to find volunteer guests for their shows! lol&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=86</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=86</guid>
		<pubDate>Tue, 27 Nov 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Favicons, Favicons</title>
		<description><![CDATA[&lt;p&gt;Today I decided it was time for a new favicon. The previous one was bright orange, and not in keeping with my new design, therefore I decided I would make a new one using my little Japanese guy who features in the main graphic of the site. Here's how&amp;hellip;&lt;/p&gt;
&lt;p&gt; I copied him onto a transparent 32 bit PNG file like this:&lt;/p&gt;
&lt;p&gt;&lt;img class=&quot;png&quot; src=&quot;http://gordonmac.com/i_blog/favicon.png&quot; width=&quot;241&quot; height=&quot;331&quot; alt=&quot;&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Then I took myself along to &lt;a href=&quot;http://dynamicdrive.com/&quot;&gt;Dynamic Drive&lt;/a&gt;'s &lt;a href=&quot;http://tools.dynamicdrive.com/favicon/&quot;&gt;Favicon Generator&lt;/a&gt;, which helped me to make everyone who visits my page address bar look smashing:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/maFavicon.jpg&quot; width=&quot;404&quot; height=&quot;51&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I know, I'm easily amused [^.^]&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=85</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=85</guid>
		<pubDate>Mon, 26 Nov 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Getting the current URL</title>
		<description><![CDATA[&lt;p&gt;When I was creating the &amp;quot;&lt;a href=&quot;#quicknav&quot;&gt;Quick Navigation&lt;/a&gt;&amp;quot; page section I wanted to add as much helpful stuff as I could and place it in a readily accessible area of the layout. It contains a skip navigation link, a breadcrumb trail and a permanent link for easy bookmarking.&lt;/p&gt;
&lt;p&gt;The functionality of those tools are automatically generated using a tiny amount of PHP, and it was whilst writing these functions that I discovered a really awesome little function which returns the complete URL for the current page, along with any URL variables attached. &lt;/p&gt;
&lt;p&gt;It also gets my cool vote as it also works with &lt;strong&gt;https://&lt;/strong&gt; addresses and with sites (normally testing servers) running on different ports, making it a very useful and reusable code snippet. Here it is:&lt;/p&gt;
&lt;pre&gt;
function curPageURL() {
$pageURL = 'http';
if ($_SERVER[&amp;quot;HTTPS&amp;quot;] == &amp;quot;on&amp;quot;) {$pageURL .= &amp;quot;s&amp;quot;;}
$pageURL .= &amp;quot;://&amp;quot;;
if ($_SERVER[&amp;quot;SERVER_PORT&amp;quot;] != &amp;quot;80&amp;quot;) {
$pageURL .= $_SERVER[&amp;quot;SERVER_NAME&amp;quot;].&amp;quot;:&amp;quot;.$_SERVER[&amp;quot;SERVER_PORT&amp;quot;].$_SERVER[&amp;quot;REQUEST_URI&amp;quot;];
} else {
$pageURL .= $_SERVER[&amp;quot;SERVER_NAME&amp;quot;].$_SERVER[&amp;quot;REQUEST_URI&amp;quot;];
}
return $pageURL;
}
&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;Source&lt;/strong&gt;: &lt;a href=&quot;http://www.webcheatsheet.com/PHP/get_current_page_url.php&quot;&gt;http://www.webcheatsheet.com/PHP/get_current_page_url.php&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I hope this will be useful to someone.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=84</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=84</guid>
		<pubDate>Sun, 25 Nov 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>New Wallpaper</title>
		<description><![CDATA[&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/gordonmac/2059197119/&quot; title=&quot;My Wallpaper by Gordon Mackay, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2016/2059197119_3d8ecdd664_m.jpg&quot; width=&quot;240&quot; height=&quot;193&quot; alt=&quot;My Wallpaper&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;New wallpaper which I created for myself based on my new blog design. &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://gordonmac.com/i_blog/GmDesk2.jpg.zip&quot;&gt;Download&lt;/a&gt; (1280 X 1024) &lt;a href=&quot;http://gordonmac.com/i_blog/GmDesk21024768.jpg.zip&quot;&gt;Download&lt;/a&gt; (1024 X 768)&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=83</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=83</guid>
		<pubDate>Sat, 24 Nov 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Local Searches</title>
		<description><![CDATA[&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/gordonmac/2054248074/&quot; title=&quot;Local Searches by Gordon Mackay, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2238/2054248074_340ff7999b_o.jpg&quot; width=&quot;386&quot; height=&quot;229&quot; alt=&quot;Local Searches&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The &lt;a href=&quot;http://www.haveamint.com/peppermill/pepper/6/local_searches/&quot;&gt;Local Searches Pepper&lt;/a&gt; for &lt;a href=&quot;http://haveamint.com/&quot;&gt;Mint&lt;/a&gt; has to be one of the most entertaining aspects of my Mint page&acirc;&brvbar; some of the things people search for are hilarious, and these are poor examples compared to some.&lt;/p&gt;
&lt;p&gt;I wonder if people know how much their activities on a website are sometimes scrutinized? :) &lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=82</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=82</guid>
		<pubDate>Fri, 23 Nov 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Time for a change</title>
		<description><![CDATA[&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/theCoo.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;As you have probably noticed my cheeky looking cow has been replaced by a rather weird looking guy speaking in Japanese.&lt;/p&gt;
&lt;p&gt;Some areas of the site are not complete, but are still available via the navigation.&lt;/p&gt;
&lt;p&gt;I decided it was time for a change of graphics, and I hope that everyone enjoys the new version of the site.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=81</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=81</guid>
		<pubDate>Wed, 21 Nov 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Heather、僕の友達</title>
		<description><![CDATA[&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/gordonmac/2048177676/&quot; title=&quot;Heather&atilde;&aring;&atilde;&reg;&aring;&eacute; by Gordon Mackay, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2158/2048177676_ae6b2c1bd0_m.jpg&quot; width=&quot;240&quot; height=&quot;184&quot; alt=&quot;Heather&atilde;&aring;&atilde;&reg;&aring;&eacute;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Nice to know someone finks so, sniff.&lt;/p&gt;
&lt;p&gt;This is my pal Heather, she's a Texan gal.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=80</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=80</guid>
		<pubDate>Mon, 19 Nov 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>初めまして！</title>
		<description><![CDATA[&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/gordonmac/2047018099/&quot; title=&quot; &aring;&atilde;&atilde;&frac34;&atilde;&atilde;&brvbar; by Gordon Mackay, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2187/2047018099_c65cf36b0f_m.jpg&quot; width=&quot;240&quot; height=&quot;122&quot; alt=&quot; &aring;&atilde;&atilde;&frac34;&atilde;&atilde;&brvbar;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Just messing around. Fun though!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=79</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=79</guid>
		<pubDate>Mon, 19 Nov 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Crazy Cow</title>
		<description><![CDATA[&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/gordonmac/2034521532/&quot; title=&quot;Gordonmac Wallpaper by Gordon Mackay, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2114/2034521532_de9f237018_m.jpg&quot; width=&quot;240&quot; height=&quot;193&quot; alt=&quot;Gordonmac Wallpaper&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I decided to make a desktop wallpaper based on the crazy cow image I drew for this site's design.&lt;/p&gt;
&lt;p&gt;If anyone wants it you can &lt;a href=&quot;http://gordonmac.com/i_blog/GordonMac_DSK.jpg.zip&quot;&gt;download it here&lt;/a&gt; (1280 X 1024).&lt;/p&gt;
&lt;p&gt;Moo!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=78</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=78</guid>
		<pubDate>Thu, 15 Nov 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>僕はひどく退屈して</title>
		<description><![CDATA[&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/gordonmac/2018612853/&quot; title=&quot;&aring;&atilde;&macr;&atilde;&sup2;&atilde;&copy;&atilde;&eacute;&aring;&plusmn;&atilde;&atilde;&brvbar; by Gordon Mackay, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2307/2018612853_b4fd7d7f4b_m.jpg&quot; width=&quot;240&quot; height=&quot;186&quot; alt=&quot;&aring;&atilde;&macr;&atilde;&sup2;&atilde;&copy;&atilde;&eacute;&aring;&plusmn;&atilde;&atilde;&brvbar;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&aring;&atilde;&macr;&atilde;&sup2;&atilde;&copy;&atilde;&eacute;&aring;&plusmn;&atilde;&atilde;&brvbar;&iuml;&frac14;&amp;#8220;Boku ha hidoku taikutsushite&amp;#8221;&iuml;&frac14;... That's me.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=77</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=77</guid>
		<pubDate>Wed, 14 Nov 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Over-inflated iTunes Library</title>
		<description><![CDATA[&lt;p&gt;I'm seriously running out of space for my iTunes library and need some sort of cheap large capacity storage option. Any ideas?&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/gordonmac/2003051690/&quot; title=&quot;Over-inflated iTunes Library by Gordon Mackay, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2400/2003051690_fcbb36a62a.jpg&quot; width=&quot;265&quot; height=&quot;492&quot; alt=&quot;Over-inflated iTunes Library&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;240 gigaBytes (7000+ media files) is quite easy to rack up when it includes TV Shows, Movies, CD artwork and music... then comes backing it all up!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=76</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=76</guid>
		<pubDate>Tue, 13 Nov 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Cool OS X Leopard Features #1</title>
		<description><![CDATA[&lt;p&gt;This is actually one of my fave parts of OS X Leopard. The dictionary also seems to be very concise... common Japanese swear words are included, hehe.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/gordonmac/1933256044/&quot; title=&quot;Photo Sharing&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2095/1933256044_6aafefabe4_m.jpg&quot; width=&quot;240&quot; height=&quot;149&quot; alt=&quot;Japanese/English Dictionary&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Although, I doubt it compares to Eijiro. We'll see.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=75</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=75</guid>
		<pubDate>Fri, 9 Nov 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>WTF!!! is Adobe playing at!?</title>
		<description><![CDATA[&lt;p&gt;&lt;i&gt;Apparently&lt;/i&gt; Adobe Fireworks CS3 is compatible with OS X Leopard, but my OS X Leopard is telling me something a whole lot different!&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/gordonmac/1907812758/&quot; title=&quot;Photo Sharing&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2046/1907812758_de3e89a26c_m.jpg&quot; width=&quot;240&quot; height=&quot;171&quot; alt=&quot;FWfuckup&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Clearly there is some sort of problem when you go to cleanly reinstall Fireworks under the new Apple OS, and I can't express how utterly pissed off I am about the whole thing!&lt;/p&gt;
&lt;p&gt;I miss the Macromedia days!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=74</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=74</guid>
		<pubDate>Wed, 7 Nov 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Current iTunes Playlist</title>
		<description><![CDATA[&lt;p&gt;This month I have discovered many good bands through the iTunes mini store and an obsession with &lt;a href=&quot;http://last.fm/&quot;&gt;Last.fm&lt;/a&gt;. Here is what I'm listening to at the moment&amp;#8230;&lt;/p&gt;
&lt;p&gt;As you can see, it's quite a mix and mash.&lt;/p&gt;
&lt;div class=&quot;wrapper-table-blog&quot;&gt;
&lt;table class=&quot;blog-table&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;th&gt;Song&lt;/th&gt;
&lt;th&gt;Artist&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Unfamiliar Ceilings&lt;/td&gt;
&lt;td&gt;Fightstar&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Auto Rock&lt;/td&gt;
&lt;td&gt;Mogwai&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Burst Generator&lt;/td&gt;
&lt;td&gt;The Chemical Brothers&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Just Like Honey&lt;/td&gt;
&lt;td&gt;The Jesus And Mary Chain&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Mutiny, I Promise You&lt;/td&gt;
&lt;td&gt;The New Pornographers&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Burn&lt;/td&gt;
&lt;td&gt;Alkaline Trio&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Salmon Dance (feat. Fatlip)&lt;/td&gt;
&lt;td&gt;The Chimical Brothers&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Everything&lt;/td&gt;
&lt;td&gt;Lifehouse&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Bodysnatchers&lt;/td&gt;
&lt;td&gt;Radiohead&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Challengers&lt;/td&gt;
&lt;td&gt;The New Pornographers&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Sometimes&lt;/td&gt;
&lt;td&gt;My Bloody Valentine&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;What Hurts&lt;/td&gt;
&lt;td&gt;The Most Rascal Flatts&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Keep the Car Running&lt;/td&gt;
&lt;td&gt;Arcade Fire&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Do It Again&lt;/td&gt;
&lt;td&gt;The Chimical Brothers&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SEX&lt;/td&gt;
&lt;td&gt;Geeks&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Settle for Satin&lt;/td&gt;
&lt;td&gt;Alkaline Trio&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Death Bed&lt;/td&gt;
&lt;td&gt;Alkaline Trio&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Emma&lt;/td&gt;
&lt;td&gt;Alkaline Trio&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;It&amp;#8217;s Too Late&lt;/td&gt;
&lt;td&gt;Evermore&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Dark Blue&lt;/td&gt;
&lt;td&gt;Jack&amp;#8217;s Mannequin&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Brighter Than Sunshine&lt;/td&gt;
&lt;td&gt;Aqualung&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Something Wicked&lt;/td&gt;
&lt;td&gt;British Sea Power&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Dumb Luck&lt;/td&gt;
&lt;td&gt;Dntel&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;I Know You Are But What Am I?&lt;/td&gt;
&lt;td&gt;Mogwai&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Mercy Me&lt;/td&gt;
&lt;td&gt;Alkaline Trio&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Nausea&lt;/td&gt;
&lt;td&gt;Beck&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Prepare For A Wound&lt;/td&gt;
&lt;td&gt;The Blackout&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Please Stand Up British&lt;/td&gt;
&lt;td&gt;Sea Power&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Skin Of My Yellow Country Teeth&lt;/td&gt;
&lt;td&gt;Clap Your Hands Say Yeah&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;E.M.P.T.Y.&lt;/td&gt;
&lt;td&gt;The Clientele&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Five Day Morning&lt;/td&gt;
&lt;td&gt;The Clientele&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Going Nowhere&lt;/td&gt;
&lt;td&gt;Cut Copy&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Transatlanticism&lt;/td&gt;
&lt;td&gt;Death Cab for Cutie&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The End&lt;/td&gt;
&lt;td&gt;Geeks&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Barracuda&lt;/td&gt;
&lt;td&gt;Miho Hatori&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;All On Black&lt;/td&gt;
&lt;td&gt;Alkaline Trio&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;We Used To Vacation&lt;/td&gt;
&lt;td&gt;Cold War Kids&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Your Heart Is An Empty Room&lt;/td&gt;
&lt;td&gt;Death Cab For Cutie&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Patent Pending&lt;/td&gt;
&lt;td&gt;Heavens&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Over And Over&lt;/td&gt;
&lt;td&gt;Hot Chip&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Love Like Semtex&lt;/td&gt;
&lt;td&gt;Infadels&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The City Is At Standstill&lt;/td&gt;
&lt;td&gt;Liam Frost And Slowdown Family&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;You Could Have Both&lt;/td&gt;
&lt;td&gt;The Long Blondes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Fast Cars And Freedom&lt;/td&gt;
&lt;td&gt;Rascal Flats&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;My Wish&lt;/td&gt;
&lt;td&gt;Rascal Flatts&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Here Rascal&lt;/td&gt;
&lt;td&gt;Flatts&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;You Only Live Once&lt;/td&gt;
&lt;td&gt;The Strokes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Saints Are Coming&lt;/td&gt;
&lt;td&gt;U2 &amp; Green Day&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;New English&lt;/td&gt;
&lt;td&gt;Ambulance Ltd&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Janie Jones (Strummerville)&lt;/td&gt;
&lt;td&gt;Babyshambles&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;White Collar Boy&lt;/td&gt;
&lt;td&gt;Belle &amp; Sebastian&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;To You&lt;/td&gt;
&lt;td&gt;The Bipolar Bears&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;It Ended On An Oily Stage&lt;/td&gt;
&lt;td&gt;British Sea Power&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;remember me&lt;/td&gt;
&lt;td&gt;British Sea Power&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Bookshop Casanova&lt;/td&gt;
&lt;td&gt;The Clientele&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Reflections After Jane&lt;/td&gt;
&lt;td&gt;The Clientele&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;That Old Pair Of Jeans&lt;/td&gt;
&lt;td&gt;Fatboy Slim&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Mr. Ambulance Driver&lt;/td&gt;
&lt;td&gt;The Flaming Lips&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;See The World&lt;/td&gt;
&lt;td&gt;Gomez&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;p&gt;I'm looking for additional ideas, anybody got some?&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=73</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=73</guid>
		<pubDate>Sun, 28 Oct 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>感じがない</title>
		<description><![CDATA[&lt;p&gt;&ccedil;&sect;&atilde;&macr;&atilde;&aelig;&aelig;&atilde;&reg;&atilde;&macr;&atilde;&aring;&pound;&atilde;&aelig;&atilde;&pound;&atilde;&brvbar;&atilde;&atilde;&ordf;&atilde;&atilde;&pound;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&ccedil;&sect;&atilde;&reg;&aring;&ordf;&aring;&atilde;&auml;&raquo;&auml;&ordm;&ordm;&atilde;&laquo;&egrave;&ordf;&atilde;&atilde;&atilde;&atilde;&ordf;&atilde;&atilde;&atilde;&uml;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&ordf;&atilde;&atilde;&egrave;&uml;&atilde;&pound;&atilde;&atilde;&atilde;&uml;&atilde;&atilde;&copy;&atilde;&atilde;&raquo;&atilde;&copy;&ccedil;&sect;&atilde;&reg;&aelig;&deg;&aelig;&atilde;&iexcl;&atilde;&aring;&middot;&atilde;&curren;&atilde;&atilde;&atilde;&atilde;&frac34;&atilde;&atilde;&sect;&aring;&atilde;&atilde;&pound;&atilde;&brvbar;&atilde;&atilde;&ordf;&atilde;&atilde;&ccedil;&sect;&atilde;&laquo;&atilde;&sect;&atilde;&atilde;&atilde;&atilde;&uml;&atilde;&macr;&aring;&uml;&aring;&atilde;&aring;&deg;&frac12;&atilde;&atilde;&atilde;&atilde;&uml;&atilde;&nbsp;&atilde;&atilde;&sect;&atilde;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&aelig;&atilde;&atilde;&atilde;&laquo;&atilde;&ccedil;&sect;&atilde;&egrave;&uml;&ccedil;&raquo;&atilde;&aring;&aelig;&acute;&ccedil;&atilde;&atilde;&atilde;&reg;&atilde;&sect;&atilde;&aring;&frac12;&frac14;&aring;&yen;&sup3;&atilde;&reg;&ccedil;&para;&egrave;&brvbar;&ordf;&atilde;&macr;&ccedil;&sect;&atilde;&laquo;&egrave;&sup1;&atilde;&ccedil;&laquo;&atilde;&brvbar;&atilde;&brvbar;&atilde;&atilde;&frac34;&atilde;&atilde;&ccedil;&sect;&atilde;&macr;&atilde;&atilde;&atilde;&aelig;&reg;&aring;&iquest;&micro;&atilde;&laquo;&aelig;&atilde;&atilde;&frac34;&atilde;&atilde;&aring;&atilde;&aring;&middot;&atilde;&curren;&atilde;&atilde;&atilde;&curren;&atilde;&atilde;&atilde;&macr;&atilde;&ordf;&atilde;&atilde;&pound;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&atilde;&atilde;&reg;&auml;&cedil;&atilde;&sect;&aelig;&atilde;&atilde;&atilde;&atilde;&reg;&atilde;&aring;&curren;&plusmn;&atilde;&auml;&ordm;&atilde;&raquo;&atilde;&copy;&egrave;&brvbar;&atilde;&atilde;&auml;&ordm;&atilde;&macr;&atilde;&ordf;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&ccedil;&sect;&atilde;&macr;&eacute;&eacute;&atilde;&pound;&atilde;&atilde;&atilde;&reg;&atilde;&atilde;&sup1;&atilde;&brvbar;&atilde;&atilde;&atilde;&frac34;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&ccedil;&sect;&atilde;&macr;&aring;&frac12;&sup1;&ccedil;&laquo;&atilde;&atilde;&atilde;&auml;&frac12;&auml;&cedil;&atilde;&atilde;&aelig;&not;&nbsp;&atilde;&atilde;&atilde;&atilde;&aelig;&egrave;&brvbar;&atilde;&aelig;&atilde;&atilde;&frac34;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&aelig;&sup2;&atilde;&atilde;&auml;&ordm;&ordm;&atilde;&atilde;&atilde;&reg;&atilde;&atilde;&atilde;&atilde;&ordf;&atilde;&atilde;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=72</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=72</guid>
		<pubDate>Sat, 27 Oct 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>MSN Opening Lines</title>
		<description><![CDATA[&lt;p&gt;Some people don't know how to start a conversation on MSN, some people are very good at it, but some people just say some of the craziest things.&lt;/p&gt;
&lt;p&gt;Here are a few examples of random things people have said to me when starting an MSN conversation:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;I think I want to take fencing lessons again.&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;Cutting off boy toys is no fun.&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;No more charity  walks I am fuckin destroyed today&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;Dude, I think I work with the dirtiest whore ever in life&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;Penis people are weird&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;Right, why do some guys who claim to be straight want it up the butt&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;Celebrity gossip sux&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;I am back in pop culture purgatory&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;Nude mosh dudes are funny&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;Alright handsome you need to explain to me why guys like to send unsolicited pics of their junk at random&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;One day I am going to tell one of these fucks that god hates the english and that's why they are bald&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;Dude do you hate it when you go out and there is no sexy to look at?&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;zeig heil&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;Bosses are wankers&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;The FBI are a bunch of queers&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;Sitting in the corner is a good thing lol&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;Damnit my place still smells like gin, sour milk, sweat and stale smokes&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;Damn his bunghole is still in tact!&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;I hope the lady at the salon welds my ex's bunghole welded shut next time he gets his crack waxed&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;I am afraid of pretty boys with mutant cocks&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Funny thing is, these are all from the same person haha. You know who you are!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=71</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=71</guid>
		<pubDate>Wed, 24 Oct 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Stun gun&#8230; Only a guy would do this.</title>
		<description><![CDATA[&lt;p&gt;This was submitted by a guy who purchased his lovely wife a &amp;#8220;pocket Taser&amp;#8221; for their anniversary.&lt;/p&gt;

&lt;p&gt;Last weekend I saw something at Larry&amp;#8217;s Pistol &amp;#38; Pawn Shop that sparked my interest. The occasion was our 22nd anniversary and I was looking for a little something extra for my wife, Toni. What I came across was a 100,000 volt, pocket/purse-sized taser. &lt;/p&gt;

&lt;p&gt;The effects of the taser were suppose to be short lived, with no long-term adverse affect on your assailant, allowing her adequate time to retreat to safety&amp;#8230;. WAY TOO COOL! &lt;/p&gt;

&lt;p&gt;Long story short, I bought the device and brought it home. I loaded two triple A batteries in the darn thing and pushed the button. Nothing! I was disappointed. I learned, however, that if I pushed the button AND pressed it against a metal surface at the same time; I&amp;#8217;d get the blue arch of electricity darting back and forth between the prongs. Awesome!!! Unfortunately, I have yet to explain to Toni what that burn spot is on the face of her microwave. &lt;/p&gt;

&lt;p&gt;Okay, so I was home alone with this new toy, thinking to myself that it couldn&amp;#8217;t be all that bad with only two triple-a batteries&amp;#8230; right?There I sat in my recliner, my cat Gracie looking on intently (trusting little soul) while I was reading the directions and thinking that I really needed to try this thing out on a flesh &amp;#38; blood moving target. I must admit I thought about zapping Gracie (for a fraction of a second) and thought better of it. She is such a sweet cat. But, if I was going to give this thing to my wife to protect herself against a mugger, I did want some assurance that it would work as advertised. Am I wrong? &lt;/p&gt;

&lt;p&gt;So, there I sat in a pair of shorts and a tank top with my reading glasses perched delicately on the bridge of my nose, directions in one hand, taser in another. The directions said that a one-second burst would shock and disorient your assailant; a two-second burst was supposed to cause muscle spasms and a major loss of bodily control; a three-second burst would purportedly make your assailant flop on the ground like a fish out of water. Any burst longer than three seconds would be wasting the batteries. All the while I&amp;#8217;m looking at this little device measuring about 5&amp;#8221; long, less than 3/4 inch in circumference; pretty cute really and loaded with two itsy, bitsy triple-a batteries, thinking to myself, &amp;#8220;no possible way!&amp;#8221; &lt;/p&gt;

&lt;p&gt;What happened next is almost beyond description, but I&amp;#8217;ll do my best&amp;#8230; I&amp;#8217;m sitting there alone, Gracie looking on with her head cocked to one side as to say, &amp;#8220;don&amp;#8217;t do it master,&amp;#8221; reasoning that a one-second burst from such a tiny little ole thing couldn&amp;#8217;t hurt all that bad&amp;#8230; I decided to give myself a one-second burst just for the heck of it. &lt;/p&gt;

&lt;p&gt;I touched the prongs to my naked thigh, pushed the button, and HOLY MOTHER, WEAPONS OF MASS DESTRUCTION@!@$@$%!@ *!&lt;/p&gt;

&lt;p&gt;I&amp;#8217;m pretty sure Jessie Ventura ran in through the side door, picked me up in the recliner, then body slammed us both on the carpet, over and over and over again. &lt;/p&gt;

&lt;p&gt;I vaguely recall waking up on my side in the fetal position, with tears in my eyes, body soaking wet, both nipples on fire, testicles nowhere to be found, with my left arm tucked under my body in the oddest position, and tingling in my legs. &lt;/p&gt;

&lt;p&gt;The cat was standing over me making meowing sounds I had never heard before, licking my face, undoubtedly thinking to herself, &amp;#8220;do it again, do it again!&amp;#8221; &lt;/p&gt;

&lt;p&gt;Note: If you ever feel compelled to &amp;#8220;mug&amp;#8221; yourself with a taser, one note of caution: there is no such thing as a one-second burst when you zap yourself. You will not let go of that thing until it is dislodged from your hand by a violent thrashing about on the floor. A three second burst would be considered conservative. &lt;br /&gt;
SON-OF-A-... that hurt like he**!&lt;/p&gt;

&lt;p&gt;A minute or so later (I can&amp;#8217;t be sure, as time was a relative thing at that point), collected my wits (what little I had left), sat up and surveyed the landscape. My bent reading glasses were on the mantel of the fireplace. How did they up get there??? My triceps, right thigh and both nipples were still twitching. My face felt like it had been shot up with Novocain, and my bottom lip weighed 88 lbs. &lt;/p&gt;

&lt;p&gt;I&amp;#8217;m still looking for my testicles! I&amp;#8217;m offering a significant reward for their safe return. Still in shock,&lt;/p&gt;

&lt;p&gt;Tony&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=70</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=70</guid>
		<pubDate>Mon, 22 Oct 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Sheep Rescue Team</title>
		<description><![CDATA[&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/gordonmac/1433812694/&quot; title=&quot;Photo Sharing&quot;&gt;&lt;img src=&quot;http://farm2.static.flickr.com/1248/1433812694_07261f2aeb_m.jpg&quot; width=&quot;240&quot; height=&quot;240&quot; alt=&quot;&atilde;&atilde;&atilde;&pound;!!&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&atilde;&atilde;&atilde;&pound;!! Very simple drawing made in FW to pass the time of day.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=69</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=69</guid>
		<pubDate>Mon, 24 Sep 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Long English Words and 五十音図</title>
		<description><![CDATA[&lt;p&gt;Tonight I was looking at some crazy English words. They&amp;#8217;re hard enough to say in English&amp;#8230; so I decided to have a go at translating them to Japanese using Katakana&amp;#8230; it was fun&amp;#8230; but I think I&amp;#8217;m a balder man than I was before I started &lt;span class=&quot;caps&quot;&gt;LOL&lt;/span&gt;&amp;#8230;&lt;/p&gt;

	&lt;p&gt;Here goes&amp;#8230;&lt;/p&gt;

	&lt;p&gt;The longest word in the English dictionary (45 letters):&lt;br /&gt;
&lt;span class=&quot;caps&quot;&gt;PNEUMONOULTRAMICROSCOPICSILICOVOLCANOCONIOSIS&lt;/span&gt;&lt;br /&gt;
(Some sort of lung disorder)&lt;/p&gt;

	&lt;p&gt;My Katakana translation:&lt;/p&gt;

	&lt;p&gt;&atilde;&atilde;&atilde;&yen;&atilde;&atilde;&atilde;&brvbar;&atilde;&laquo;&atilde;&atilde;&copy;&atilde;&atilde;&atilde;&macr;&atilde;&shy;&atilde;&sup1;&atilde;&sup3;&atilde;&atilde;&atilde;&macr;&atilde;&middot;&atilde;&copy;&atilde;&curren;&atilde;&laquo;&atilde;&acute;&atilde;&copy;&atilde;&laquo;&atilde;&plusmn;&atilde;&atilde;&sup3;&atilde;&atilde;&ordf;&atilde;&atilde;&sup1;&lt;/p&gt;

	&lt;p&gt;The longest chemical term in English (29 letters):&lt;br /&gt;
&lt;span class=&quot;caps&quot;&gt;TRINITROPHENYLMETHYLNITRAMINE&lt;/span&gt;&lt;br /&gt;
(An explosive)&lt;/p&gt;

	&lt;p&gt;My Katakana translation:&lt;/p&gt;

	&lt;p&gt;&atilde;&atilde;&ordf;&atilde;&atilde;&atilde;&shy;&atilde;&atilde;&sect;&atilde;&atilde;&laquo;&atilde;&iexcl;&atilde;&middot;&atilde;&laquo;&atilde;&atilde;&atilde;&copy;&atilde;&atilde;&sup3;&lt;/p&gt;

	&lt;p&gt;The longest word used by William Shakespeare (27 letters):&lt;br /&gt;
&lt;span class=&quot;caps&quot;&gt;HONORIFICABILITUDINITATIBUS&lt;/span&gt;&lt;br /&gt;
(honorablenes)&lt;/p&gt;

	&lt;p&gt;My Katakana translation:&lt;/p&gt;

	&lt;p&gt;&atilde;&atilde;&atilde;&ordf;&atilde;&curren;&atilde;&atilde;&iexcl;&atilde;&curren;&atilde;&shy;&atilde;&pound;&atilde;&atilde;&copy;&atilde;&curren;&atilde;&atilde;&atilde;&atilde;&curren;&atilde;&iquest;&atilde;&iquest;&atilde;&curren;&atilde;&atilde;&sup1;&lt;/p&gt;

	&lt;p&gt;The longest place name in the &lt;span class=&quot;caps&quot;&gt;UK &lt;/span&gt;(Wales) (lots of letters):&lt;br /&gt;
&lt;span class=&quot;caps&quot;&gt;LLANFAIRPWLLGWYNGYLLGOGERYCHWYRNDROBWLLLLANTYSILIO&lt;br /&gt;GOGOGOCH&lt;/span&gt;&lt;br /&gt;
(I&amp;#8217;m serious!)&lt;/p&gt;

	&lt;p&gt;My Katakana translation:&lt;br /&gt;
&atilde;&copy;&atilde;&sup3;&atilde;&atilde;&sect;&atilde;&laquo;&atilde;&atilde;&laquo;&atilde;&deg;&atilde;&curren;&atilde;&atilde;&laquo;&atilde;&acute;&atilde;&cedil;&atilde;&pound;&atilde;&curren;c&atilde;&atilde;&curren;&atilde;&laquo;&atilde;&sup3;&atilde;&atilde;&shy;&atilde;&atilde;&copy;&atilde;&sup3;&atilde;&atilde;&middot;&atilde;&ordf;&atilde;&ordf;&atilde;&acute;&atilde;&acute;&atilde;&acute;&atilde;&atilde;&yen; (HAHA )&lt;/p&gt;

	&lt;p&gt;&lt;span class=&quot;caps&quot;&gt;I GIVE UP&lt;/span&gt;!&lt;/p&gt;

	&lt;p&gt;&lt;span class=&quot;caps&quot;&gt;LOL&lt;/span&gt;, I probably made a lot of mistakes, but that was fun!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=68</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=68</guid>
		<pubDate>Wed, 12 Sep 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Reign Over Me</title>
		<description><![CDATA[&lt;p&gt;Last night I watched the movie &amp;#8220;Reign Over Me&amp;#8221; starring Adam Sandler.&lt;/p&gt;

	&lt;p&gt;I know, a peculiar choice of movie to watch on the eve of the September 11 tradgedy&amp;#8217;s aniversary.&lt;/p&gt;

	&lt;p&gt;Anyway, the story is about a young man who loses his wife and three children on one of the planes which flew into the buildings&amp;#8230; he is suffering from post traumatic stress disorder and retreats from the life he once knew, into a reclusive existence in order to escape his memories.&lt;/p&gt;

	&lt;p&gt;One day he meets his old college room mate, who quickly notices that there&amp;#8217;s something wrong with him. He also appears to be trying to escape his life, but for more trivial reasons.&lt;/p&gt;

	&lt;p&gt;They both become dependent on each other&amp;#8230; and ultimately fix each other.&lt;/p&gt;

	&lt;p&gt;Anyhow, the movie is one of the most disturbing movies I&amp;#8217;ve seen in a long time&amp;#8230; I watch a lot of horror, but it&amp;#8217;s not real&amp;#8230; this story is probably true for many people who lost people on that terrible day.&lt;/p&gt;

	&lt;p&gt;Today many people will write and talk about 9/11, many of them will be distracted with hatred towards the actions of the terrorists, and also the governments of the United States and the United Kingdom.&lt;/p&gt;

	&lt;p&gt;What I&amp;#8217;d like to see is less talk of politics, and more thoughts being directed towards the victims and families of people affected by the tradgedy, the members of armed forces still on active duty in the middle east and to the innocent non-combatant victims in Afghanistan and Iraq who have been caught in the middle.&lt;/p&gt;

	&lt;p&gt;I think all these people are more deserving of our thoughts than the governments and factions who created this mess in the first place.&lt;/p&gt;

	&lt;p&gt;Those are my thoughts for today.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=67</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=67</guid>
		<pubDate>Tue, 11 Sep 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>愛</title>
		<description><![CDATA[&lt;p&gt;&aring;&atilde;&macr;&aelig;&atilde;&laquo;&aelig;&ordm;&atilde;&iexcl;&atilde;&aring;&iquest;&atilde;&auml;&ordm;&curren;&eacute;&eacute;&cent;&auml;&iquest;&atilde;&reg;&aring;&sect;&atilde;&atilde;&laquo;&atilde;&macr;&atilde;&auml;&ordm;&atilde;&atilde;&laquo;&eacute;&brvbar;&atilde;&pound;&auml;&cedil;&atilde;&sect;&atilde;&atilde;&atilde;&eacute;&nbsp;&egrave;&middot;&eacute;&cent;&aelig;&aelig;&atilde;&macr;&ccedil;&deg;&atilde;&ordf;&atilde;&atilde;&frac34;&atilde;&atilde;&aring;&nbsp;&ordf;&atilde;&eacute;&pound;&atilde;&aring;&shy;&curren;&ccedil;&not;&atilde;&macr;&auml;&ordm;&ordm;&atilde;&atilde;&laquo;&aring;&cedil;&aelig;&atilde;&ccedil;&para;&ccedil;&para;&atilde;&atilde;&atilde;&frac34;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&aring;&cedil;&aelig;&atilde;&macr;&atilde;&auml;&cedil;&aring;&sup1;&cedil;&atilde;&reg;&atilde;&copy;&atilde;&aring;&ordm;&atilde;&laquo;&atilde;&atilde;&egrave;&atilde;&egrave;&brvbar;&aelig;&uml;&atilde;&brvbar;&atilde;&ordf;&atilde;&atilde;&atilde;&atilde;&auml;&frac12;&iuml;&frac14; &ccedil;&sup2;&atilde;&atilde;&laquo;&ccedil;&nbsp;&atilde;&atilde;&aring;&curren;&cent;&atilde;&macr;&ccedil;&sect;&atilde;&aelig;&atilde;&atilde;&atilde;&atilde;&atilde;&frac34;&atilde;&atilde;&aring;&atilde;&macr;&atilde;&atilde;&curren;&atilde;&aring;&reg;&aring;&uml;&atilde;&sect;&atilde;&macr;&atilde;&atilde;&atilde;&atilde;&ordf;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&aelig;&deg;&aring;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&frac34;&atilde;&atilde;&atilde;&aring;&atilde;&macr;&atilde;&atilde;&sup1;&atilde;&brvbar;&atilde;&aelig;&atilde;&atilde;&brvbar;&atilde;&atilde;&frac34;&atilde;&atilde;&auml;&raquo;&auml;&ordm;&atilde;&ccedil;&aring;&frac12;&atilde;&raquo;&atilde;&raquo;&atilde;&raquo;1&atilde;&curren;&atilde;&reg;&atilde;&atilde;&reg;&atilde;&nbsp;&atilde;&atilde;&atilde;&atilde;&atilde;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=66</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=66</guid>
		<pubDate>Sun, 9 Sep 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>♬ The Sounds ♬</title>
		<description><![CDATA[&lt;p&gt;Every once in a while I find a band, or even a song that I feel like listening to on repeat. &lt;/p&gt;
&lt;p&gt;Last night I found once such band, with numerous songs that I feel like listening to on repeat! &lt;/p&gt;
&lt;p&gt;They're called The Sounds, and they're from Sweden... but sing in English. &lt;/p&gt;
&lt;p&gt;Their music is very cheery... and good for Friday afternoons (^^). &lt;/p&gt;
&lt;p&gt;You can check out my two fave songs: &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://tinyurl.com/3cnfur&quot;&gt;&acirc;&laquo; Song With A Mission&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://tinyurl.com/3arfqt&quot;&gt;&acirc;&laquo; Seven Days A Week&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Enjoy&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=65</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=65</guid>
		<pubDate>Fri, 7 Sep 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Macbeth</title>
		<description><![CDATA[&lt;p&gt;Tonight I was doing some reading about Macbeth&amp;#8230; not so much the Shakespearian play (&atilde;&atilde;&macr;&atilde;&atilde;&sup1;&atilde;&atilde;&brvbar;&atilde;&pound;&atilde;&ordf;&atilde;&cent;&atilde;&nbsp;&atilde;&raquo;&atilde;&middot;&atilde;&sect;&atilde;&frac14;&atilde;&macr;&atilde;&sup1;&atilde;&atilde;&cent;), but about the real King Macbeth of Scotland&amp;#8230; &lt;/p&gt;
&lt;p&gt;Yep, he was a real guy&amp;#8230; not just Shakespeare's invention&amp;#8230; he was King of Alba (the old name for Scotland) for 17 years. &lt;/p&gt;
&lt;p&gt;The name &amp;quot;Macbeth&amp;quot; has a lot of lore and legend&amp;#8230; it's also considered to be an unlucky word in the theatre, and the Shakespearian play &amp;quot;Macbeth&amp;quot; is normally just referred to as &amp;quot;The Scottish Play&amp;quot;. &lt;/p&gt;
&lt;p&gt;I used to think that people in some other countries had peculiar names&amp;#8230; until I read that Macbeth's full name was actually: &lt;/p&gt;
&lt;p&gt;&amp;quot;Mac Bethad son of Findl&Atilde;&iexcl;ech son of Ruadr&Atilde;&shy; son of Domnall son of Morgg&Atilde;&iexcl;n son of Cathamal son of Ruadr&Atilde;&shy; son of Ailgelach son of Ferchar son of Fergus son of Nechtan son of Colm&Atilde;&iexcl;n son of B&Atilde;&iexcl;et&Atilde;&iexcl;n son of Eochaid son of Muiredach son of Loarn son of Ercc son of Eochaid Muinremuir.&amp;quot; &lt;/p&gt;
&lt;p&gt;Shakespeare would have had fun trying to market his play with a title like that  hehe. &lt;/p&gt;
&lt;p&gt;The reason for my interest in Macbeth is simple, his history and the history of my county (Caithness) have strong ties. And one of those ties also adds more intrigue to Macbeth's name. &lt;/p&gt;
&lt;p&gt;During Macbeth's reign over Scotland my corner of the country was colonised by Vikings. Macbeth, wanting control as King of Scotland wasn't very happy about this, so many battles ensued in the North Eastern Highlands between Scots and Vikings. &lt;/p&gt;
&lt;p&gt;There is an ancient book (still being printed) called &amp;quot;The Orkneyinga Saga&amp;quot;, written by an anonymous Noresman. It contains accounts of battles which took place in Orkney and Caithness at that time. &lt;/p&gt;
&lt;p&gt;It makes reference to a King of Scotland known as &amp;quot;Karl Hundason&amp;quot;, who reclaimed rule over Caithness from the Viking, Thorfinn Sigurdsson, Earl of Orkney&amp;#8230; this confused many historians, as they thought that they knew for a fact that Macbeth was King of Scotland at this exact time in history&amp;#8230; &lt;/p&gt;
&lt;p&gt;&amp;#8230; However, it turns out that those old Vikings had a sense of humour&amp;#8230; the name &amp;quot;Karl Hundason&amp;quot; was in fact a direct reference to Macbeth&amp;#8230; but when translated into old Norse language, the language of the Vikings, it means: &lt;/p&gt;
&lt;p&gt;&amp;quot;Churl, son of a Dog&amp;quot;, hehe &lt;/p&gt;
&lt;p&gt;&amp;#8230; a derogatory nickname given to Macbeth by his enemies in the North. &lt;/p&gt;
&lt;p&gt;Anyway, that was a lot of useless information, but I thought it was quite funny in a stupid sort of way&amp;#8230; &amp;#8230; and for some crazy reason I thought I'd share it with you.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=64</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=64</guid>
		<pubDate>Wed, 5 Sep 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Funny Japanese Phrases</title>
		<description><![CDATA[&lt;p&gt;Eijiro Dictionary is one of my favourite learning tools, although I sometimes question its content... here are some very funny example phrases I found when looking at the &auml;&frac12; kanji: &lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt; &auml;&frac12;&iuml;&frac14;&iuml;&frac14;&atilde;&frac34;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&ordf;&atilde;&atilde;&uml;&atilde;&atilde;&sup3;&atilde;&sup3;&atilde;&atilde;&frac14;&atilde;&nbsp;&atilde;&nbsp;&atilde;&pound;&atilde;&brvbar;&aelig;&macr;&aring;&auml;&frac12;&iquest;&atilde;&pound;&atilde;&atilde;&iuml;&frac14; &lt;br /&gt;
    &amp;quot;No, no way. I used a condom every time!&amp;quot; &lt;/li&gt;
  &lt;li&gt; &auml;&frac12;&iuml;&frac14;&iuml;&frac14;&auml;&frac12;&atilde;&atilde;&atilde;&pound;&atilde;&atilde;&reg;&iuml;&frac14;&aring;&yen;&yen;&atilde;&atilde;&atilde;&ccedil;&sect;&atilde;&atilde;&iexcl;&atilde;&reg;&atilde;&atilde;&uml;&ccedil;&yen;&atilde;&pound;&atilde;&brvbar;&atilde;&atilde;&frac34;&atilde;&pound;&atilde;&atilde;&reg;&iuml;&frac14;&lt;br /&gt;
    &amp;quot;What happened? Your wife found out about us?&amp;quot; &lt;/li&gt;
  &lt;li&gt; &auml;&frac12;&iuml;&frac14;&iuml;&frac14;&ccedil;&ccedil;&atilde;&egrave;&ordf;&aring;&atilde;&auml;&frac12;&aelig;&sect;&atilde;&nbsp;&atilde;&uml;&aelig;&atilde;&pound;&atilde;&brvbar;&atilde;&atilde;&nbsp;&atilde;&iuml;&frac14;&iuml;&frac14;&atilde;&atilde;&curren;&atilde;&atilde;&atilde;&atilde;&curren;&iuml;&frac14;&ccedil;&micro;&aring;&copy;&atilde;&atilde;&brvbar;&atilde;&atilde;&atilde;&shy;&iuml;&frac14; &lt;br /&gt;
    &amp;quot;What?! Who the hell does he think he is!? How old is he anyways? Isn't he married?&amp;quot; &lt;/li&gt;
  &lt;li&gt; &auml;&frac12;&atilde;&atilde;&atilde;&reg;&atilde;&laquo;&atilde;&atilde;&iuml;&frac14; &lt;br /&gt;
    &amp;quot;What's that smell?&amp;quot; &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I hope these won't be useful to anyone LOL&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=63</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=63</guid>
		<pubDate>Wed, 5 Sep 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Stupidity</title>
		<description><![CDATA[&lt;p&gt;I used to think that people in the web dev community said the craziest things, but now I realise that it happens everywhere.&lt;/p&gt;
&lt;p&gt;I read the following ridiculous thread on a Mixi page today:&lt;/p&gt; 
&lt;blockquote&gt;
&lt;p&gt;Yesterday, I was sitting in a Tokyo park talking to friends. 
Standing in front of me was a cute one legged pigeon begging for food. 
He stood there a long time but I did not have any food at the time so I went to buy something I could give him/her. When I returned he was still waiting so I started to feed him.&lt;/p&gt;
&lt;p&gt;Many Japanese walked by and saw that he did not run (because he could only fly). They would point and say &amp;#8220;How cute&amp;#8221; or &amp;#8220;What a friendly bird&amp;#8221;. Many people walked by. It was a beautiful day. &lt;/p&gt;
&lt;p&gt;Once when all the other birds flew away a White guy noticed that this one bird does not fly away and came back to scare it... &amp;#8220;Whah!!&amp;#8220; he said as the birld scared away. &lt;/p&gt;
&lt;p&gt;As a Gaijin myself I kind of felt sad that the only aggressive person had to be another Gaijin too!? &lt;/p&gt;
&lt;p&gt;Why would he like to scare a pigeon!?&lt;/p&gt; 
&lt;p&gt;Anyway, do other people think that white people or gaijin are too aggressive? too violent? &lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;It seems that some people want to be super-gaijin, better than every other foreigner in Japan; but using pigeons to say that white people are really bad is just plain dumb!&lt;/p&gt;
&lt;p&gt;I don't think the guy even knew the definition of the word &amp;#8220;violence&amp;#8221; before he spouted off.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=62</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=62</guid>
		<pubDate>Mon, 3 Sep 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Cats</title>
		<description><![CDATA[&lt;object width=&quot;350&quot; height=&quot;350&quot;&gt;
&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/kYypEW94GyU&quot;&gt;&lt;/param&gt;
&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/param&gt;
&lt;embed src=&quot;http://www.youtube.com/v/kYypEW94GyU&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; width=&quot;350&quot; height=&quot;350&quot;&gt;&lt;/embed&gt;
&lt;/object&gt;
&lt;p&gt;Haha, this is so funny  ... the music and the captions are amazing!&lt;/p&gt;
&lt;p&gt;Look out for &quot;Monorail cat&quot; Haha!&lt;/p&gt;
&lt;p&gt;&aring;&iquest;&laquo;&aelig;&acute;&raquo;&atilde;&ordf;&aring;&ccedil;&atilde;&shy;&atilde;&pound;&atilde;&atilde;&middot;&atilde;&sect;&atilde;&sup3;&atilde;&atilde;&atilde;&sup3;&eacute;&sup3;&aelig;&yen;&frac12;&atilde;&lt;/p&gt; 
&lt;p&gt;Hehe&atilde;&atilde;MONORAIL CAT&atilde;&atilde;&aring;&frac34;&atilde;&curren;&atilde;&egrave;&brvbar;&aring;&reg;&atilde; &atilde;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=61</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=61</guid>
		<pubDate>Tue, 28 Aug 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Mixi for Gaijin</title>
		<description><![CDATA[&lt;p&gt;If anyone out there has been curious about the Japanese  &lt;a href=&quot;http://mixi.jp/&quot;&gt;Mixi&lt;/a&gt; (&atilde;&atilde;&macr;&atilde;&middot;&atilde;&pound;) SNS service, but not been able to figure out how to get onboard, I have some good news.&lt;/p&gt;
&lt;p&gt;My good buddy Leon has &lt;a href=&quot;http://gaijinwomen.com/&quot;&gt;a site&lt;/a&gt; that tells you in plain English how to get through the sign up process, and also how to use Mixi to best effect once you get there.&lt;/p&gt;
&lt;p&gt;If you're at all interested in Japan, or learning Japanese you'll love Mixi!&lt;/p&gt;
&lt;p&gt;There are two snags. Firstly, Mixi is an invitation-only service. However, that's not a huge problem as you can request one by filling in &lt;a href=&quot;http://gaijinwomen.com/be-invited-to-mixi/&quot;&gt;this form&lt;/a&gt;. This is where the second snag comes in. If you take Leon up on this offer you have to be his friend for three months, LOL&iuml;&frac14;&ccedil;&not;&iuml;&frac14;.&lt;/p&gt;
&lt;p&gt;If any of you do decide to join&amp;#8230; &atilde;&atilde;&macr;&atilde;&middot;&atilde;&pound;&atilde;&atilde;&atilde;&atilde;!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=60</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=60</guid>
		<pubDate>Mon, 27 Aug 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>焦げる（＞＜）</title>
		<description><![CDATA[&lt;p&gt;&aelig;&uml;&aring;&curren;&atilde;&aring;&atilde;&macr;&atilde;&atilde;&atilde;&sup1;&atilde;&atilde;&shy;&atilde;&frac14;&atilde;&atilde;&eacute;&pound;&sup2;&atilde;&iquest;&atilde;&frac34;&atilde;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&atilde;&atilde;&atilde;&atilde;&ordf;&atilde;&atilde;&atilde;&aring;&atilde;&macr;&atilde;&atilde;&atilde;&aelig;&deg;&aring;&eacute;&aring;&middot;&atilde;&atilde;&atilde;&atilde;&atilde;&sup1;&atilde;&atilde;&sect;&atilde;&atilde;&atilde;&raquo;&atilde;&raquo;&atilde;&raquo;&auml;&cedil;&aring;&pound;I&atilde;&aelig;&atilde;&atilde;&atilde;&atilde;&atilde;&uml;&atilde;&ccedil;&ordm;&egrave;&brvbar;&atilde;&atilde;&aring;&frac34;&iuml;&frac14;&iuml;&frac14;&iuml;&frac14;&iuml;&frac14;&atilde;&lt;/p&gt;
&lt;p&gt;&atilde;&cent;&atilde;&atilde;&atilde;&curren;&atilde;&sup1;&atilde;&raquo;&atilde;&raquo;&atilde;&raquo;&atilde;&iexcl;&atilde;&atilde;&pound;&atilde;&uml;&aring;&middot;&atilde;&frac34;&atilde;&atilde;&brvbar;&atilde;&ccedil;&plusmn;&atilde;&atilde;&atilde;&iexcl;&atilde;&laquo;&eacute;&pound;&atilde;&sup1;&atilde;&ordf;&atilde;&atilde;&atilde;&atilde;&laquo;&atilde;&lt;/p&gt;
&lt;p&gt;&auml;&raquo;&aelig;&yen;&atilde;&atilde;&atilde;&atilde;&copy;&atilde;&sect;&aelig;&deg;&acute;&atilde;&para;&atilde;&atilde;&atilde;&atilde;&sect;&atilde;&atilde;&frac34;&atilde;&atilde;&iuml;&frac14;&iuml;&frac14;&iuml;&frac14;&iuml;&frac14;&atilde;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=59</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=59</guid>
		<pubDate>Mon, 27 Aug 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>日本の写真撮影</title>
		<description><![CDATA[&lt;p&gt;&ccedil;&sect;&atilde;&macr;&aelig;&deg;&aring;&sup1;&acute;&eacute;&lt;a href=&quot;http://flickr.com/&quot;&gt;FLICKR&lt;/a&gt;&atilde;&reg;&auml;&cedil;&aring;&iexcl;&atilde;&sect;&atilde;&atilde;&aelig;&yen;&aelig;&not;&atilde;&reg;&aring;&ccedil;&atilde;&aring;&curren;&sect;&aring;&yen;&frac12;&atilde;&atilde; &lt;/p&gt;
&lt;p&gt;FLICKR&atilde;&macr;&atilde;&ccedil;&sect;&atilde;&laquo;&aring;&curren;&aelig;&deg;&atilde;&reg;&aelig;&yen;&aelig;&not;&auml;&ordm;&ordm;&aring;&ccedil;&aring;&reg;&para;&atilde;&reg;&auml;&raquo;&auml;&ordm;&atilde;&egrave;&brvbar;&atilde;&aelig;&copy;&auml;&frac14;&atilde;&auml;&cedil;&atilde;&atilde;&frac34;&atilde;&atilde;&atilde; &lt;/p&gt;
&lt;p&gt;&ccedil;&sect;&atilde;&reg;&atilde;&aelig;&deg;&atilde;&laquo;&aring;&yen;&atilde;&iuml;&frac14; &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.flickr.com/photos/rizhi/ &quot;&gt;TeraMeguri&atilde;&atilde;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.flickr.com/photos/kissoflife/ &quot;&gt;Taro&atilde;&atilde;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.flickr.com/photos/tokyo_eye/&quot;&gt;Yohei Sekiguchi&atilde;&atilde;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.flickr.com/photos/hippomum/ &quot;&gt;hippoPAPA +mum&atilde;&atilde;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.flickr.com/photos/lynhana/ &quot;&gt;+lyn&atilde;&atilde;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&iuml;&frac12;&atilde;&aring;&sup3;&atilde;&atilde;&atilde; &lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=58</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=58</guid>
		<pubDate>Sat, 25 Aug 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Reminiscence</title>
		<description><![CDATA[&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/gordonmac/1224138595/&quot;&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/JapStuff.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt; &lt;span class=&quot;caption&quot;&gt;Tickets, bags, leaflets, JR Railpass and other assorted things I found in my bag after returning from Japan.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;One of the cool things about returning from a holiday is finding all the bits and pieces that you took back with you&amp;#8230; not the souvenirs or grand purchases&amp;#8230; but just the little things.&lt;/p&gt;
&lt;p&gt;They provide you with a great opportunity to reminisce on all the lovely things you got up to during your time away.&lt;/p&gt;
&lt;p&gt;Tonight I decided to have a look in my backpack's zipper pocket, and found tickets, my JR Railpass, lots of receipts, some Japanese money, a pack of tissues that people kept handing to me on the streets, leaflets for places Tomoko and I visited&amp;#8230; &amp;hearts;&amp;hearts;&lt;/p&gt;
&lt;p&gt;Everything that returned to Scotland with me in my bag has become a set of truly treasured possessions&amp;#8230; which perhaps just looks like litter or junk to anyone else.&lt;/p&gt;
&lt;p class=&quot;update&quot;&gt;&lt;ins&gt;On another note, some of you may wonder what all the Japanese text is about. Well, I'm learning Japanese, and the best way to learn is by doing.&lt;/ins&gt;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=57</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=57</guid>
		<pubDate>Fri, 24 Aug 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>今の仕事に満足していますか？</title>
		<description><![CDATA[&lt;p&gt;&auml;&frac14;&ccedil;&curren;&frac34;&atilde;&macr;&ccedil;&micro;&para;&aring;&macr;&frac34;&egrave;&frac34;&atilde;&atilde;&atilde;&atilde;&ordf;&atilde;&atilde;&pound;&atilde;&brvbar;&atilde;&atilde;&pound;&atilde;&uml;&aelig;&atilde;&pound;&atilde;&brvbar;&atilde;&atilde;&atilde;&atilde;&copy;&atilde;&atilde;&atilde;&auml;&raquo;&yen;&auml;&cedil;&egrave;&ordf;&aring;&atilde;&aelig;&reg;&ordm;&atilde;&atilde;&brvbar;&ccedil;&atilde;&atilde;&brvbar;&atilde;&atilde;&atilde;&ordf;&atilde;&atilde;&brvbar;&atilde;&sect;&atilde;&atilde;&ordf;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&ccedil;&sect;&atilde;&aelig;&deg;&atilde;&atilde;&auml;&raquo;&auml;&ordm;&atilde;&egrave;&brvbar;&atilde;&curren;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&ordf;&atilde;&atilde;&ccedil;&sect;&atilde;&reg;&atilde;&macr;&aelig;&aelig;&ordf;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&atilde;&atilde;&auml;&frac12;&aring;&sup1;&acute;&atilde;&atilde;&atilde;&para;&atilde;&atilde;&para;&aring;&atilde;&atilde;&brvbar;&atilde;&atilde;&aelig;&atilde;&atilde;&sect;&atilde;&atilde;&auml;&cedil;&aring;&cedil;&atilde;&reg;&eacute;&laquo;&eacute;&pound;&egrave;&raquo;&atilde;&ordf;&aelig;&aring;&ordm;&brvbar;&atilde;&laquo;&atilde;&curren;&atilde;&atilde;&yen;&atilde;&aelig;&aelig;&sup3;&atilde;&aring;&deg;&frac12;&atilde;&atilde;&atilde;&atilde;&nbsp;&atilde;&ccedil;&sect;&atilde;&macr;&egrave;&raquo;&cent;&egrave;&middot;&atilde;&egrave;&atilde;&atilde;&brvbar;&atilde;&atilde;&frac34;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&aelig;&atilde;&atilde;&atilde;&aring;&atilde;&atilde;&iexcl;&atilde;&auml;&iquest;&iexcl;&atilde;&atilde;&brvbar;&atilde;&atilde;&atilde;&aelig;&reg;&atilde;&atilde;&atilde;&macr;&atilde;&shy;&acirc;&brvbar;&acirc;&brvbar;&atilde;&aring;&reg;&para;&aelig;&atilde;&sect;&atilde;&atilde;&atilde;&atilde;&atilde;&brvbar;&atilde;&atilde;&ordf;&aring;&reg;&para;&atilde;&sect;&atilde;&atilde;&atilde;&atilde;&atilde;&frac14;&atilde;&uml;&atilde;&atilde;&atilde;&atilde;&acirc;&brvbar;&acirc;&brvbar;&atilde;&atilde;&brvbar;&atilde;&atilde;&ordf;&egrave;&raquo;&atilde;&uml;&aring;&reg;&aring;&reg;&atilde;&atilde;&egrave;&middot;&aelig;&yen;&shy;&atilde;&laquo;&atilde;&aring;&yen;&aring;&ordm;&middot;&atilde;&ordf;&aring;&reg;&para;&aelig;&atilde;&atilde;&ordf;&atilde;&aring;&atilde;&atilde;&iexcl;&atilde;&reg;&egrave;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&iuml;&frac14;&lt;/p&gt;
&lt;p&gt;&ccedil;&sect;&atilde;&macr;&aelig;&pound;&ccedil;&iquest;&atilde;&laquo;&aring;&middot;&reg;&atilde;&egrave;&frac34;&frac14;&atilde;&frac34;&atilde;&atilde;&frac34;&atilde;&atilde;&aring;&eacute;&iquest;&atilde;&macr;&atilde;&ordf;&atilde;&atilde;&atilde;&atilde;&laquo;&egrave;&brvbar;&atilde;&atilde;&frac34;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&ccedil;&sect;&atilde;&macr;&atilde;&deg;&atilde;&copy;&atilde;&sup3;&atilde;&atilde;&frac14;&atilde;&atilde;&atilde;&atilde;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=56</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=56</guid>
		<pubDate>Wed, 22 Aug 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>サースティ・キャット</title>
		<description><![CDATA[&lt;p&gt;&auml;&raquo;&aelig;&atilde;&ccedil;&sect;&atilde;&macr;&aring;&yen;&aring;&brvbar;&atilde;&ordf;&eacute;&sup3;&atilde;&laquo;&aelig;&deg;&auml;&raquo;&atilde;&atilde;&frac34;&atilde;&atilde;&atilde;&raquo;&atilde;&raquo;&atilde;&raquo;&atilde;&atilde;&pound;&atilde;&frac14;&atilde;&atilde;&atilde;&pound;&atilde;&frac14;&atilde;&atilde;&sup1;&atilde;&atilde;&copy;&atilde;&atilde;&middot;&atilde;&yen;&atilde;&raquo;&atilde;&raquo;&atilde;&raquo;&aelig;&micro;&acute;&aring;&reg;&curren;&atilde;&reg;&aelig;&sup1;&atilde;&sect;&atilde;&atilde; &lt;/p&gt;
&lt;p&gt;&ccedil;&sect;&atilde;&macr;&eacute;&sup3;&atilde;&reg;&aelig;&sup1;&aring;&atilde;&laquo;&aelig;&yen;&atilde;&atilde;&nbsp;&atilde;&atilde;&atilde;&reg;&eacute;&sup3;&atilde;&macr;&auml;&frac12;&atilde;&nbsp;&atilde;&pound;&atilde;&atilde;&reg;&atilde;&iuml;&frac14;&atilde;&egrave;&atilde;&atilde;&atilde;&atilde;&frac34;&atilde;&atilde;&ccedil;&sect;&atilde;&macr;&aelig;&micro;&acute;&aring;&reg;&curren;&atilde;&laquo;&aring;&yen;&atilde;&atilde;&uml;&atilde;&atilde;&atilde;&laquo;&aring;&ordm;&eacute;&cent;&atilde;&laquo;&ccedil;&reg;&atilde;&atilde;&curren;&atilde;&atilde;&atilde;&raquo;&atilde;&raquo;&atilde;&raquo;&aelig;&deg;&acute;&atilde;&reg;&ccedil;&laquo;&egrave;&para;&sup3;&egrave;&middot;&iexcl; &atilde; &lt;/p&gt;
&lt;p&gt;&ccedil;&sect;&atilde;&reg;&ccedil;&laquo;&atilde;&aring;&curren;&sect;&auml;&frac34;&iquest;&aring;&uml;&atilde;&laquo;&egrave;&frac12;&atilde;&iexcl;&atilde;&brvbar;&atilde;&atilde;&frac34;&atilde;&pound;&atilde;&atilde;&reg;&atilde;&iuml;&frac14;&iuml;&frac14;&atilde;&atilde;&frac14;&atilde;&shy;&atilde;&frac14;&atilde;&iexcl;&atilde;&atilde;&atilde;&macr;&aelig;&shy;&pound;&aelig;&deg;&atilde;&sect;&atilde;&ordf;&atilde;&aring;&ccedil;&copy;&iuml;&frac14;&iuml;&frac14;&atilde; &lt;/p&gt;
&lt;p&gt;&aring;&frac12;&frac14;&aring;&yen;&sup3;&atilde;&macr;&aelig;&cedil;&aelig;&atilde;&atilde;&frac34;&atilde;&atilde;&atilde;&atilde;&sup2;&atilde;&frac14;&atilde;&iuml;&frac14;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=55</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=55</guid>
		<pubDate>Wed, 22 Aug 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>不況に喘ぐ</title>
		<description><![CDATA[&lt;p&gt;&auml;&frac12;&atilde;&laquo;&aelig;&eacute;&atilde;&atilde;&macr;&aring;&uml;&ccedil;&para;&aring;&atilde;&aring;&yen;&atilde;&pound;&atilde;&brvbar;&atilde;&ordf;&atilde;&atilde;&shy;&atilde;&lt;/p&gt;
&lt;p&gt;&aring;&atilde;&macr;&aelig;&eacute;&not;&plusmn;&ccedil;&para;&aelig;&atilde;&sect;&atilde;&atilde;&pound;&atilde;&atilde;&auml;&cedil;&aelig;&sup3;&aelig;&atilde;&laquo;&atilde;&macr;&atilde;&atilde;&iquest;&atilde;&atilde;&atilde;&aelig;&ordf;&aring;&frac34;&ordf;&ccedil;&deg;&atilde;&laquo;&eacute;&yen;&atilde;&atilde;&atilde;&iexcl;&atilde;&nbsp;&atilde;
&egrave;&ordf;&nbsp;&aring;&shy;&atilde;&atilde;&atilde;&aring;&atilde;&atilde;&ccedil;&sect;&atilde;&macr;&aelig;&yen;&aelig;&not;&atilde;&sect;&aelig;&yen;&frac12;&atilde;&atilde;&atilde;&nbsp;&atilde;&aring;&cedil;&deg;&ccedil;&atilde;&atilde;&atilde;&raquo;&atilde;&raquo;&atilde;&raquo;&aring;&frac12;&frac14;&aring;&yen;&sup3;&atilde;&macr;&atilde;&atilde;&ordf;&atilde;&atilde;&brvbar;&auml;&cedil;&auml;&ordm;&ordm;&atilde;&frac14;&atilde;&pound;&atilde;&iexcl;&atilde;&nbsp;&atilde;&pound;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&aring;&frac12;&frac14;&aring;&yen;&sup3;&atilde;&macr;&atilde;&frac34;&atilde;&atilde;&ordf;&atilde;&ccedil;&sect;&atilde;&reg;&aring;&frac12;&aring;&atilde;&laquo;&aring;&yen;&atilde;&pound;&atilde;&brvbar;&atilde;&atilde;&atilde;&aring;&frac12;&frac14;&atilde;&reg;&aelig;&atilde;&atilde;&curren;&atilde;&macr;&aring;&frac12;&frac14;&aring;&yen;&sup3;&atilde;&atilde;&shy;&atilde;&sup1;&atilde;&atilde;&atilde;&atilde;&uml;&aelig;&acute;&atilde;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&aring;&atilde;&macr;&auml;&raquo;&atilde;&atilde;&sup3;&atilde;&atilde;&atilde;&atilde;&atilde;&frac34;&atilde;&atilde; &lt;img src=&quot;/i/V.gif&quot; alt=&quot;&quot; /&gt;&atilde;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=54</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=54</guid>
		<pubDate>Mon, 20 Aug 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>ミクシィ</title>
		<description><![CDATA[&lt;p&gt;&aring;&curren;&aring;&frac12;&auml;&ordm;&ordm;&atilde;&aelig;&yen;&aelig;&not;&egrave;&ordf;&atilde;&aring;&shy;&brvbar;&atilde;&para;&atilde;&reg;&atilde;&macr;&eacute;&pound;&atilde;&atilde;&atilde;&atilde;&atilde;&aelig;&yen;&aelig;&not;&egrave;&ordf;&atilde;&aelig;&cedil;&atilde;&atilde;&atilde;&atilde;&laquo;&atilde;&macr;&atilde;&atilde;&atilde;&atilde;&atilde;&ccedil;&middot;&acute;&ccedil;&iquest;&atilde;&atilde;&ordf;&atilde;&atilde;&atilde;&deg;&atilde;&ordf;&atilde;&atilde;&ordf;&atilde;&atilde; &lt;/p&gt;

&lt;p&gt;&aelig;&yen;&aelig;&not;&egrave;&ordf;&atilde;&reg;&aring;&ccedil;&sect;&aring;&curren;&sect;&aring;&shy;&brvbar;&atilde;&macr;&aring;&curren;&atilde;&atilde;&reg;&aring;&frac12;&atilde;&atilde;&sect;&aring;&shy;&aring;&uml;&atilde;&atilde;&frac34;&atilde;&atilde;&atilde;&aring;&atilde;&macr;&lt;a href=&quot;http://mixi.jp/&quot;&gt;&atilde;&atilde;&macr;&atilde;&middot;&atilde;&pound;&lt;/a&gt;&atilde;&aelig;&yen;&aelig;&not;&egrave;&ordf;&atilde;&atilde;&atilde;&atilde;&pound;&atilde;&atilde;&atilde;&laquo;&atilde;&atilde;&atilde; &lt;/p&gt;

&lt;p&gt;&atilde;&atilde;&atilde;&brvbar;&atilde;&aelig;&yen;&aring;&cedil;&cedil;&aelig;&yen;&aelig;&not;&auml;&frac14;&egrave;&copy;&plusmn;&atilde;&reg;&ccedil;&middot;&acute;&ccedil;&iquest;&atilde;&atilde;&atilde;&atilde;&atilde;&uml;&aelig;&atilde;&pound;&atilde;&brvbar;&atilde;&atilde;&frac34;&atilde;&atilde;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=53</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=53</guid>
		<pubDate>Sun, 19 Aug 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>彼を笑ってはいけない &#126; Don't Laugh</title>
		<description><![CDATA[&lt;object width=&quot;320&quot; height=&quot;263&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/7tz5YsPK0F0&quot;&gt;&lt;/param&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/7tz5YsPK0F0&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; width=&quot;320&quot; height=&quot;263&quot;&gt;&lt;/embed&gt;&lt;/object&gt;
&lt;p&gt;&ccedil;&not;&atilde;&pound;&atilde;&brvbar;&atilde;&macr;&atilde;&atilde;&atilde;&frac34;&atilde;&atilde;&atilde;&egrave;&ordf;&aring;&atilde;&sect;&atilde;&atilde;&pound;&atilde;&brvbar;&atilde;&iquest;&atilde;&ordf;&atilde;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;I managed to last about 2 minutes without laughing&amp;#8230; that guy is so funny&amp;#8230; my Japanese is probably worse than his English, hehe.&lt;/p&gt;
&lt;p&gt;See how long you can watch without laughing&amp;#8230;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=52</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=52</guid>
		<pubDate>Wed, 8 Aug 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>誠子さん</title>
		<description><![CDATA[&lt;p&gt;&egrave;&ordf;&nbsp;&aring;&shy;&atilde;&atilde;&atilde;&macr;&auml;&frac14;&aelig;&eacute;&atilde;&atilde;&atilde;&laquo;&atilde;&sup1;&atilde;&sup3;&atilde;&atilde;&atilde;&copy;&atilde;&sup3;&atilde;&atilde;&laquo;&atilde;&atilde;&pound;&atilde;&brvbar;&aelig;&yen;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;&atilde;&atilde;&reg;&aelig;&aelig;&atilde;&aelig;&yen;&aelig;&not;&atilde;&reg;&auml;&ordm;&ordm;&atilde;&atilde;&macr;1&eacute;&plusmn;&eacute;&atilde;&reg;&auml;&frac14;&aelig;&atilde;&aelig;&yen;&frac12;&atilde;&atilde;&iquest;&atilde;&frac34;&atilde;&atilde;&aelig;&yen;&aelig;&not;&atilde;&reg;&aring;&curren;&copy;&aring;&atilde;&macr;&atilde;&aring;&curren;&atilde;&macr;&aelig;&atilde;&atilde;&aelig;&sup1;&iquest;&aring;&ordm;&brvbar;&atilde;&eacute;&laquo;&atilde;&atilde;&atilde;&atilde;&frac34;&atilde;&aelig;&atilde;&atilde;&reg;&atilde;&sect;&aring;&atilde;&atilde;&ordf;&atilde;&atilde;&lt;/p&gt;
&lt;p&gt;8&aelig;&atilde;&reg;&eacute;&uml;&atilde;&macr;&aelig;&sup3;&aring;&atilde;&atilde;&atilde;&frac34;&atilde;&sect;&atilde;&atilde;&ordf;&atilde;&atilde;&atilde;&atilde;&brvbar;&atilde;&uml;&atilde;&atilde;&frac14;&atilde;&lt;/p&gt;
&lt;p&gt;&atilde;&sup1;&atilde;&sup3;&atilde;&atilde;&atilde;&copy;&atilde;&sup3;&atilde;&atilde;&sect;&atilde;&macr;&iuml;&frac14;&aelig;&atilde;&macr;&atilde;&uml;&atilde;&brvbar;&atilde;&aelig;&atilde;&atilde;&ordf;&atilde;&atilde;&atilde;&uml;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&atilde;&nbsp;&atilde;&uml;&atilde;&atilde;&atilde;&atilde;&copy;&atilde;&lt;/p&gt;
&lt;p&gt;&aelig;&yen;&frac12;&atilde;&atilde;&iquest;&atilde;&laquo;&atilde;&atilde;&brvbar;&atilde;&atilde;&atilde;&frac34;&atilde;&atilde;(^^) &egrave;&ordf;&nbsp;&aring;&shy;&atilde;&atilde;&atilde;&atilde;&atilde;&ordf;&atilde;&atilde;&brvbar;&aring;&macr;&atilde;&atilde;&atilde;&pound;&atilde;&atilde;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=51</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=51</guid>
		<pubDate>Wed, 8 Aug 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Holidays in Japan</title>
		<description><![CDATA[&lt;p&gt;Just in case anyone has thought that I've vanished I thought I'd make a quick post just to say that I'm on holiday in Nagoya, Japan.&lt;/p&gt;
&lt;p&gt;It's &lt;strong&gt;AWESOME&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Here are a couple of pictures from Ueno Park in Tokyo:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/saigo.jpg&quot; alt=&quot;&quot; /&gt;&lt;br /&gt; This is me standing in front of the statue of Saigo Takamori in Ueno Park.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/pagoda.jpg&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;Posing in front of a pagoda.&lt;/p&gt;
&lt;p&gt;Anyway, I'm off to have dinner. Japanese beef. Yummy!!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=50</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=50</guid>
		<pubDate>Thu, 26 Apr 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>ISAN: Gunnera</title>
		<description><![CDATA[&lt;p&gt;ISAN are for me a really cool sound at the moment. Check this out:&lt;/p&gt;
&lt;object width=&quot;370&quot; height=&quot;350&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/Qp844ah450c&quot;&gt;&lt;/param&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/Qp844ah450c&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; width=&quot;370&quot; height=&quot;350&quot;&gt;&lt;/embed&gt;&lt;/object&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=49</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=49</guid>
		<pubDate>Mon, 26 Mar 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Female vocalists</title>
		<description><![CDATA[&lt;p&gt;Over the past few months I've been listening to a lot more music than I ever have, and I have found that my taste definitely swings towards strong female artists. These are my current three favourites:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/asobi.jpg&quot; alt=&quot;Asobi Seksu&quot; width=&quot;300&quot; height=&quot;142&quot; /&gt;&lt;br /&gt; Asobi Seksu&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/pjharvey.jpg&quot; alt=&quot;PJ Harvey&quot; width=&quot;300&quot; height=&quot;142&quot; /&gt;&lt;br /&gt; PJ Harvey&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/regina.jpg&quot; alt=&quot;Regina Spektor&quot; width=&quot;300&quot; height=&quot;142&quot; /&gt;&lt;br /&gt; Regina Spektor&lt;/p&gt;
&lt;p&gt;For anyone who hasn't heard any of this lot, do yourself a favour and check them out, but for anyone who has, and think the know the sort of music I like, please offer me some suggestions for new iTunes purchases. Thanks!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=48</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=48</guid>
		<pubDate>Wed, 21 Mar 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>BallGirl</title>
		<description><![CDATA[&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/BallGirl_preview.jpg&quot; alt=&quot;&quot; /&gt;&lt;br /&gt; &lt;a href=&quot;http://gordonmac.com/i_blog/BallGirl.jpg&quot;&gt;Bigger version&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Anyone know a person shaped like that? I don't, but I seem to keep on drawing these really stupid little pictures.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=46</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=46</guid>
		<pubDate>Tue, 27 Feb 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Weird</title>
		<description><![CDATA[&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/weird_preview.jpg&quot; alt=&quot;&quot; /&gt;&lt;br /&gt; &lt;a href=&quot;http://gordonmac.com/i_blog/weird.jpg&quot;&gt;Bigger version&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Even more stupidity in Fireworks.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=45</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=45</guid>
		<pubDate>Mon, 26 Feb 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>MyMonster</title>
		<description><![CDATA[&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/MyMonster_preview.jpg&quot; alt=&quot;&quot; /&gt;&lt;br /&gt; &lt;a href=&quot;http://gordonmac.com/i_blog/MyMonster.jpg&quot;&gt;Bigger version&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Just more messing around in Macromedia Fireworks.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=44</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=44</guid>
		<pubDate>Mon, 19 Feb 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Xbox 360 games</title>
		<description><![CDATA[&lt;p&gt;Hi folks. After purchasing an Xbox 360 last month I have been enjoying playing two games: Tom Clancy's Splinter Cell Double Agent and Project Gotham Racing 3.&lt;/p&gt;
&lt;p&gt;These games are excellent, and they're both in the game genres that I like.&lt;/p&gt;
&lt;p&gt;With this in mind, I'm wondering what others would suggest for me to buy next, as you can only play the same games for so long :)&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=43</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=43</guid>
		<pubDate>Tue, 13 Feb 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Testing a new layout</title>
		<description><![CDATA[&lt;p&gt;After buying a larger monitor I have noticed how crappy my site looks , even at only 1280 X 1024 resolution.&lt;/p&gt;
&lt;p&gt;It made me realise just how important fluid layouts are in today's world of big-assed browsers, and forced me to attempt a redesign (slowly). This is how far I have got, which isn't very far at all: &lt;a href=&quot;http://gordonmac.com/fluid/&quot;&gt;Gordonmac gets fluid&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Anyway, at this point I'm just playing around, but at the same time I would like some feedback.&lt;/p&gt;
&lt;p&gt;Thanks in advance.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=40</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=40</guid>
		<pubDate>Wed, 31 Jan 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>iTunes iMix (Publish to The Web)</title>
		<description><![CDATA[&lt;p&gt;I just discovered &amp;#8220;Publish to the web&amp;#8221; in iTunes iMix:&lt;/p&gt;
&lt;div style=&quot;position:relative;&quot;&gt;&lt;a href=&quot;http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewIMix?id=214092829&amp;s=143444&amp;v0=575&quot;&gt;&lt;img src=&quot;http://ax.phobos.apple.com.edgesuite.net/images/spacer.gif&quot; alt=&quot;&quot; width=&quot;60&quot; height=&quot;60&quot; style=&quot;position:absolute; top:30px; left:12px;&quot;/&gt;&lt;/a&gt;&lt;a href=&quot;http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewIMix?id=214092829&amp;s=143444&amp;v0=575&quot;&gt;&lt;img src=&quot;http://ax.phobos.apple.com.edgesuite.net/images/spacer.gif&quot; alt=&quot;&quot; width=&quot;200&quot; height=&quot;20&quot;  style=&quot;position:absolute; top:30px; left:75px;&quot;/&gt;&lt;/a&gt;&lt;a href=&quot;itms://ax.phobos.apple.com.edgesuite.net/WebObjects/MZStore.woa/wa/publishedPlayListHelp?v0=575&quot;&gt;&lt;img src=&quot;http://ax.phobos.apple.com.edgesuite.net/images/spacer.gif&quot; alt=&quot;&quot; width=&quot;175&quot; height=&quot;20&quot; style=&quot;position:absolute; top:295px; left:65px;&quot;/&gt;&lt;/a&gt;
&lt;embed src=&quot;http://ax.phobos.apple.com.edgesuite.net/flash/feedreader.swf?feed=WebObjects/MZStoreServices.woa/ws/RSS/imix/html=false/imixid=214092829/sf=143444/xml?v0=575&quot; quality=&quot;high&quot; salign=&quot;lt&quot; wmode=&quot;transparent&quot; width=&quot;300&quot; height=&quot;330&quot; name=&quot;feedreader&quot; align=&quot;top&quot; allowScriptAccess=&quot;sameDomain&quot; type=&quot;application/x-shockwave-flash&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; /&gt;
&lt;/div&gt;
&lt;p&gt;Pretty cool!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=39</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=39</guid>
		<pubDate>Mon, 29 Jan 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>24 Season 6</title>
		<description><![CDATA[&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/24-6.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Four episodes in and &lt;a href=&quot;http://www.fox.com/24/ &quot;&gt;24 season 6&lt;/a&gt; is &lt;strong&gt;amazing!!&lt;/strong&gt;. Definitely the best so far.&lt;/p&gt;
&lt;h3&gt;Updates&lt;/h3&gt;
&lt;p class=&quot;update&quot;&gt; &lt;span&gt;(25/01/2007)&lt;/span&gt; - &lt;ins&gt;Where the hell did they get the &lt;a href=&quot;http://us.imdb.com/name/nm0005204/&quot;&gt;actor for Jack's geeky evil brother&lt;/a&gt;, Graham? Does he really look like anyone who could be responsible for the nuclear bomb that just detonated in LA??&lt;/ins&gt;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=38</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=38</guid>
		<pubDate>Tue, 23 Jan 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Why parents drink</title>
		<description><![CDATA[&lt;p&gt;A boss wondered why one of his most valued employees had not phoned in sick one day. Having an urgent problem with one of the main computers, he dialed the employee's home phone number and was greeted with a child's whisper.&lt;/p&gt;
&lt;p&gt;&amp;#8220;Hello.&amp;#8221; &amp;#8220;Is your daddy home?&amp;#8221; he asked.&lt;/p&gt;
&lt;p&gt;&amp;#8220;Yes,&amp;#8221; whispered the small voice.&lt;/p&gt;
&lt;p&gt;&amp;#8220;May I talk with him?&amp;#8221;&lt;/p&gt;
&lt;p&gt;The child whispered, &amp;#8220;No.&amp;#8221;&lt;/p&gt;
&lt;p&gt;Surprised and wanting to talk with an adult, the boss asked, &amp;#8220;Is your Mommy there?&amp;#8221; &amp;#8220;Yes.&amp;#8221; &lt;/p&gt;
&lt;p&gt;&amp;#8220;May I talk with her?&amp;#8221; Again the small voice whispered, &amp;#8220;No.&amp;#8221; &lt;/p&gt;
&lt;p&gt;Hoping there was somebody with whom he could leave a message, the boss asked, &amp;#8220;Is anybody else there?&amp;#8221;&lt;/p&gt;
&lt;p&gt;&amp;#8220;Yes,&amp;#8221; whispered the child, &amp;#8220;a policeman&amp;#8221;&lt;/p&gt;
&lt;p&gt;Wondering what a cop would be doing at his employee's home, the boss asked,&lt;/p&gt;
&lt;p&gt;&amp;#8220;May I speak with the policeman?&amp;#8221; &amp;#8220;No, he's busy&amp;#8221;, whispered the child.&lt;/p&gt;
&lt;p&gt;&amp;#8220;Busy doing what?&amp;#8221;&lt;/p&gt;
&lt;p&gt;&amp;#8220;Talking to Daddy and Mommy and the Fireman,&amp;#8221;came the whispered answer.&lt;/p&gt;
&lt;p&gt;Growing more worried as he heard what sounded like a helicopter through the ear piece on the phone, the boss asked,&lt;/p&gt;
&lt;p&gt;&amp;#8220;What is that noise?&amp;#8221; &amp;#8220;A helicopter&amp;#8221; answered the whispering voice.&lt;/p&gt;
&lt;p&gt;&amp;#8220;What is going on there?&amp;#8221; demanded the boss, now truly apprehensive.&lt;/p&gt;
&lt;p&gt;Again, whispering, the child answered, &amp;#8220;The search team just landed the Helicopter.&amp;#8221;&lt;/p&gt;
&lt;p&gt;Alarmed, concerned and a little frustrated the boss asked, &amp;#8220;What are they searching for?&amp;#8221;&lt;/p&gt;
&lt;p&gt;Still whispering, the young voice replied with a muffled giggle: &amp;#8220;ME.&amp;#8221;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=37</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=37</guid>
		<pubDate>Sun, 14 Jan 2007 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Famous at last</title>
		<description><![CDATA[&lt;p&gt;&lt;a href=&quot;http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt1.html&quot;&gt;Taking a Fireworks comp to a CSS-based layout in Dreamweaver&lt;/a&gt; over at the Adobe Developer Center.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=36</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=36</guid>
		<pubDate>Tue, 19 Dec 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Why do people steal?</title>
		<description><![CDATA[&lt;p&gt;Why do people steal other people's designs? They always make such a hips of it, and they always allow the originator to track their copy.&lt;/p&gt;

&lt;h3&gt;Update&lt;/h3&gt;
&lt;p&gt;&lt;ins&gt;After sending a cease and desist letter to the author of the infringing site I received a positive response and an apology. I have therefor removed the link to the site.&lt;/ins&gt;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=35</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=35</guid>
		<pubDate>Fri, 15 Dec 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Dead Airport Express</title>
		<description><![CDATA[&lt;p&gt;After only thirteen months my little &lt;a href=&quot;http://www.apple.com/airportexpress/&quot;&gt;Airport Express&lt;/a&gt; appears to have died.&lt;/p&gt;
&lt;p&gt;I loved my Airport, but like so many other people reviewing it on the Apple store, I'm completely gutted by the fact that my &amp;pound;90 investment has bitten the dust after such a short life span.&lt;/p&gt;
&lt;p&gt;I am &lt;strong&gt;SO&lt;/strong&gt; disappointed, and don't really know if I want to fork out more money for the same product with perhaps the same defect. This is the first time that I have been disappointed with any Apple product.&lt;/p&gt;
&lt;p&gt;Does anyone know of any reliable alternatives to the Airport Express?&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=34</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=34</guid>
		<pubDate>Thu, 26 Oct 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Removing file extensions from a string</title>
		<description><![CDATA[&lt;p&gt;This is a question, and I ask because I need some help :)&lt;/p&gt;
&lt;p&gt;I have been trying to figure out the best way to remove file extensions from a string, but being completely &lt;strong&gt;crap&lt;/strong&gt; at regular expressions (that's no understatement by the way) the best I could come up with was something along the ugly lines of this:&lt;/p&gt;
&lt;pre&gt;
function ridExtensions($thefile) {
  $ext = substr(strrchr($thefile, &amp;quot;.&amp;quot;), 0);
  $thefile = str_replace($ext,'',$thefile);
  return $thefile;
}
&lt;/pre&gt;
&lt;p&gt;Does anyone have a better method?&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=33</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=33</guid>
		<pubDate>Wed, 18 Oct 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Wee Island</title>
		<description><![CDATA[&lt;p&gt;&lt;img src=&quot;/i_blog/WeeIsland_preview.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;/i_blog/WeeIsland.jpg&quot;&gt;See full-size version&lt;/a&gt;&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=32</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=32</guid>
		<pubDate>Thu, 5 Oct 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>SwordDude &trade;</title>
		<description><![CDATA[&lt;p&gt;Another attempt at drawing something stupid:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/i_blog/SwordDude_preview.jpg&quot; alt=&quot;&quot; /&gt; &lt;br /&gt; (&lt;a href=&quot;/i_blog/SwordDude.jpg&quot;&gt;View full size version&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;Now I need some more ideas for things to draw. Any ideas?&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=31</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=31</guid>
		<pubDate>Sun, 1 Oct 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Things I like at the moment.</title>
		<description><![CDATA[&lt;p&gt;This isn't a meme. It's just me thinking about some of the random things I like at the moment, hehe.&lt;/p&gt;
&lt;p&gt;Here goes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.cocteautwins.com/&quot;&gt;Cocteau Twins&amp;#8217;&lt;/a&gt; song &amp;#8220;Iceblink Luck&amp;#8221;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.cbs.com/primetime/ncis/index.shtml&quot;&gt;NCIS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.specialopswatch.com/cart/products.cgi?category=2&quot;&gt;MTM Pro Ops watches&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/WebDAV&quot;&gt;WebDAV&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.netmag.co.uk/&quot;&gt;.net Magazine&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Drawing silly illustrations.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;There are other things, but those were the first that came to mind.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=30</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=30</guid>
		<pubDate>Thu, 28 Sep 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>A Dolphin</title>
		<description><![CDATA[&lt;p&gt;This is supposed to be a dolphin, but I got carried away with the scenery.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i_blog/Dolphin_preview.jpg&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;300&quot; /&gt;&lt;br /&gt;
(&lt;a href=&quot;http://gordonmac.com/i_blog/Dolphin.jpg&quot;&gt;full size version&lt;/a&gt;)&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=29</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=29</guid>
		<pubDate>Wed, 20 Sep 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Gorilla doodle</title>
		<description><![CDATA[&lt;p&gt;A rather crappy doodle of a gorilla :)&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/i_blog/gorilla.jpg&quot; alt=&quot;Gorilla&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I wish I was better at this stuff.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=28</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=28</guid>
		<pubDate>Wed, 13 Sep 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Holy cow</title>
		<description><![CDATA[&lt;p&gt;How do you like my new mast head?&lt;/p&gt;
&lt;p&gt;I decided to actually use one of my crappy drawings and replace that sun that looked like an explosion in a fried egg factory :D 
&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=27</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=27</guid>
		<pubDate>Sun, 3 Sep 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Keeping on drawing</title>
		<description><![CDATA[&lt;p&gt;In my quest to learn how to draw with more skill in Fireworks I think I have found the perfect method. What I have been doing is selecting a simple object to draw on a daily basis.&lt;/p&gt;
&lt;p&gt;Some of the things I have been attempting are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Simple three dimensional shapes, like cubes and cylinders&lt;/li&gt;
&lt;li&gt;Cartoon faces&lt;/li&gt;
&lt;li&gt;Cartoon penguins :)&lt;/li&gt;
&lt;li&gt;Trees&lt;/li&gt;
&lt;li&gt;Ugly looking houses :( &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;These experiments have gone rather well, and through my attempts I have picked up some rather nifty imaging techniques that I will be able to apply to more advanced drawings at a later stage in my development. You can download the templates using the link below. They should only take a moment to download on your standard &lt;a href=&quot;http://www.o2.co.uk/&quot;&gt;broadband&lt;/a&gt; connection. &lt;/p&gt;
&lt;p&gt;I said that the experiments have gone rather well, but unfortunately a lot (maybe most) of them would be embarrassing to show here. So I will stick to presenting you with only the PNG files that I'm most proud of :) &lt;/p&gt;
&lt;p&gt;Last night I attempted to draw a flower, one that doesn't actually exist in nature :P I managed to easily get the flower looking pretty darn good, and in turn I felt pretty darn good too. So much so that I got carried away and added some sky, then some clouds, then some more clouds, then some grass and ground to plant my flower in.&lt;/p&gt;
&lt;p&gt;The amazing thing about starting off simple is that your highly unlikely to be completely disappointed with the fruits of your labor. In fact, in my case it made me more enthusiastic. &lt;/p&gt;
&lt;p&gt;So much so that I don't find this picture embarrassing enough to make me want to hide my face for a year if I show you it:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/CMX/blog/Flower_preview.jpg&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;300&quot; /&gt;&lt;br /&gt;
(&lt;a href=&quot;/downloads/?pngfileid=10&quot;&gt;&lt;em&gt;Download the PNG source file here&lt;/em&gt;&lt;/a&gt;) &lt;/p&gt;
&lt;p&gt;If you're really serious about designing web sites you should consider learning to draw in Fireworks. It's a lot of fun and it's also a great way to create graphics that are unique to your own designs.&lt;/p&gt;
&lt;p&gt;I hope that some of these posts I have been making are enough to whet your appetite. &lt;/p&gt;
&lt;p&gt;Have fun :)&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=26</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=26</guid>
		<pubDate>Wed, 30 Aug 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Boredom, ideas, productivity&#8230; and penguins.</title>
		<description><![CDATA[&lt;p&gt;When I'm bored I sometimes watch TV, I sometimes read a book, but most of the time I switch on my computer and fire-up Fireworks, then iTunes and then start drawing things. &lt;/p&gt;
&lt;p&gt;For me boredom generates productivity and ideas. The need to do &lt;em&gt;something&lt;/em&gt; during those times normally leads to a PNG with a doodle planted slap-bang in the middle of it.&lt;/p&gt;
&lt;p&gt;The images folder on my Mac contains around 500 Fireworks PNG files that consist mainly of random ideas that have poured out of my head and onto a blank canvas. Not all of them are good, and some of them are downright ugly, but that's not the point, the point is that I can go back to them at some time in the future and maybe use them for a project, or for something to tutorialize at &lt;a href=&quot;http://communitymx.com/&quot;&gt;CMX&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Boredom led me to make this post, so I will share with you the product of that boredom.&lt;/p&gt;
&lt;p&gt;Here it is:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/downloads/files/Penguin.png&quot; width=&quot;220&quot; height=&quot;220&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;em&gt;(Right click to save the PNG to your desktop) &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I don't know about you guys, but there is something about penguins (maybe it's a Linux thing, hehe) that makes me happy.&lt;/p&gt;
&lt;p&gt;Anyway, please feel free to tear the PNG apart, edit it&amp;#8230; use it&amp;#8230; do whatever you want with it&amp;#8230; just have fun :)&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=25</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=25</guid>
		<pubDate>Wed, 23 Aug 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>RSS Icons in Fireworks</title>
		<description><![CDATA[&lt;p&gt;One of the things I hate when it comes to design is being forced to use un editable, flattened images in designs, especially when they are icons or symbols.&lt;/p&gt;
&lt;p&gt;One of the most commonly used icons on modern blogs is the RSS one that first appeared in the Mozilla Firefox status bar a good few versions ago. It looks like this:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/i/gm_feed.jpg&quot; alt=&quot;RSS icon&quot; width=&quot;16&quot; height=&quot;16&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Like most good icons it's very simple, so why use other people's versions of it when it's so easy to recreate in Fireworks. Here's how:&lt;/p&gt;
&lt;h3&gt;Let's get drawing the icon&lt;/h3&gt;
&lt;p&gt;Open up Fireworks and create a new 100 pixel by 100 pixel canvas. The reason it's 100 pixels is just to give you enough room to play.&lt;/p&gt;
&lt;p&gt;Set the canvas color to black so that it's easier to see what you're doing.&lt;/p&gt;
&lt;p&gt;Select the Ellipse Tool (&lt;img src=&quot;http://gordonmac.com/CMX/blog/elipsetool.jpg&quot; alt=&quot;&quot; width=&quot;30&quot; height=&quot;29&quot; /&gt;) and draw a 40 pixel by 40 pixel circle in the middle of your canvas.&lt;/p&gt;
&lt;p&gt;Set the fill to &amp;quot;none&amp;quot;, and set the stroke to a 3 pixel soft line. Your circle should look like this: &lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/CMX/blog/GM_rss1.jpg&quot; alt=&quot;&quot; width=&quot;101&quot; height=&quot;101&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Now clone the circle you just drew (Edit &amp;gt; Clone) and set it's dimensions to 24 pixels by 24 pixels and position it centrally within the larger circle: &lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/CMX/blog/GM_rss2.jpg&quot; alt=&quot;&quot; width=&quot;100&quot; height=&quot;100&quot; /&gt; &lt;/p&gt;
&lt;p&gt;To make our little &amp;quot;RADAR&amp;quot; from these circles we use the Knife Tool (&lt;img src=&quot;http://gordonmac.com/CMX/blog/knifetool.jpg&quot; alt=&quot;&quot; width=&quot;25&quot; height=&quot;25&quot; /&gt;) to make two cuts through our circle:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;From the 9 o'clock position right through to the 3 o'clock position &lt;/li&gt;
&lt;li&gt;From the 12 o'clock position through to the 6 o'clock position &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;To do this select both the circles and and drag the Knife Tool along the same paths as shown in this picture:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/CMX/blog/GM_rss3.jpg&quot; alt=&quot;&quot; width=&quot;101&quot; height=&quot;100&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Now delete all the excess paths so that you're left with something that looks like this:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/CMX/blog/GM_rss4.jpg&quot; alt=&quot;&quot; width=&quot;100&quot; height=&quot;101&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Now draw a 10 pixel by 10 pixel solid white circle and position it like this:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/CMX/blog/GM_rss5.jpg&quot; alt=&quot;&quot; width=&quot;98&quot; height=&quot;99&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Now all that's left is to place a nice orange filled rectangle behind it, and change the canvas color back to white:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/CMX/blog/GM_rss6.jpg&quot; alt=&quot;&quot; width=&quot;100&quot; height=&quot;100&quot; /&gt; &lt;/p&gt;
&lt;p&gt;That's all there is to it. Feel free to get creative and use different background colors for your rectangle. Here is a PNG that I made (right click to save to your desktop):&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://gordonmac.com/CMX/blog/RSS_icons.png&quot; alt=&quot;&quot; width=&quot;100&quot; height=&quot;100&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Have fun :)&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=24</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=24</guid>
		<pubDate>Wed, 16 Aug 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Doodling in Fireworks</title>
		<description><![CDATA[&lt;p&gt;Hey folks,&lt;/p&gt;
&lt;p&gt;I don't know how most other people draw up inspiration for their design work when using Fireworks, but for me it normally begins with a series of basic shapes. Rectangles, squares, polygons, whatever, are the core building blocks of all graphics. You can't do anything without them.&lt;/p&gt;
&lt;p&gt;When you start punching holes in those basic shapes, joining their paths, changing their colors, or even just overlapping them, they start to gel together as a more creative formation&amp;#8230; then all-of-a-sudden it hits you! &lt;strong&gt;BANG!!&lt;/strong&gt; You have an idea!!&lt;/p&gt;
&lt;p&gt;Maybe it's simply because your crazy array of pixels has begun to actually look like something that you could possibly use for a current project, or maybe it's something you could archive in some deep, dark directory on your HDD for future use.&lt;/p&gt;
&lt;p&gt;Either way, it's possibly one of the coolest feelings you could have sitting in front of a computer (OK, I have left myself open to some fairly creative comments with that statement :D .)&lt;/p&gt;
&lt;p&gt;(This is the method that I have used when creating the Design Elements and JumpStarts over at &lt;a href=&quot;http://communitymx.com/&quot;&gt;Community MX&lt;/a&gt;.)&lt;/p&gt;
&lt;p&gt;Just the other day I was staring at a blank Fireworks canvas, feeling the effects of designer's block and I started pushing random shapes around in the way I just described. Would you like to see what happened on my canvas? Well, here it is, &lt;a href=&quot;http://gordonmac.com/cabinet/files/Doodles.png&quot;&gt;right here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It's not the coolest of creations, granted, but it &lt;em&gt;could&lt;/em&gt; be something I may develop into a bigger &amp;#8220;something&amp;#8221; in the future, who knows.&lt;/p&gt;
&lt;p&gt;While I think that it's important to learn how to use Fireworks' (or whatever graphics package you use) massive library of functions, I still believe that it's more important to play around and get creative without being all technical about it. So think back to when you were a kid, and all you needed to make you happy and creative was a box of crayons and some rag paper, open Fireworks with that feeling fresh in your mind, and get doodling!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=23</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=23</guid>
		<pubDate>Fri, 4 Aug 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Cartoonised</title>
		<description><![CDATA[&lt;p&gt;When you know people like &lt;a href=&quot;http://www.csfgraphics.com/&quot;&gt;Chris Flick&lt;/a&gt; you can be pretty sure that you're not going to escape being drawn :S&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/i_blog/flick.jpg&quot; width=&quot;420&quot; height=&quot;158&quot; alt=&quot;A cartoon featuring me&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Isn't his artwork awesome!?&lt;/p&gt;
&lt;p&gt;Chris is the guy who does all the &lt;a href=&quot;http://www.communitymx.com/flicks/04112006.cfm&quot;&gt;CMX Suite&lt;/a&gt; cartoons over at &lt;a href=&quot;http://communitymx.com/&quot;&gt;Community MX&lt;/a&gt;. He's also the guy that I'm going to be having the pleasure of working with on a small (top secret) project.&lt;/p&gt;
&lt;p&gt;I'm very much looking forward to the experience.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=22</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=22</guid>
		<pubDate>Mon, 24 Apr 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>BeansBox relaunches</title>
		<description><![CDATA[&lt;p&gt;&lt;img src=&quot;/i_blog/beansbx.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://belleliu.com/&quot;&gt;Belle Liu&lt;/a&gt; of &lt;a href=&quot;http://beansbox.com/&quot;&gt;BeansBox&lt;/a&gt; has done an amazing job of redesigning the new version of the company web site for her Hong Kong based web development studio.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=21</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=21</guid>
		<pubDate>Mon, 17 Apr 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>CMX Design Elements - Carbon</title>
		<description><![CDATA[&lt;p&gt;&lt;img src=&quot;/i_blog/Carbon.jpg&quot; alt=&quot;&quot; class=&quot;float-left&quot; /&gt;&lt;/p&gt;
&lt;p&gt;My latest template :) Check it out over at &lt;a href=&quot;http://www.communitymx.com/abstract.cfm?cid=02D36&quot;&gt;Community MX&lt;/a&gt;.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=20</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=20</guid>
		<pubDate>Thu, 13 Apr 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Two new Macromedia&reg; Fireworks&reg; files</title>
		<description><![CDATA[&lt;p&gt;The great thing about annual leave is the way it leaves you time to indulge in the things that you enjoy. I guess that's what being on holiday is all about.&lt;/p&gt;
&lt;p&gt;Sadly, for the past few days the Highlands have been subjected to some fairly horrific snow storms that have made getting out and about pretty much impossible, and because of that I have been suffering from a mild form of cabin fever.&lt;/p&gt;
&lt;p&gt;On the flip-side, the isolation of being amidst a snow drift has left me a lot of time to spend in front of my computer; actually doing stuff! The results can be found in the &lt;a href=&quot;/downloads/?type=fireworks&quot;&gt;Macromedia&amp;reg; Fireworks&amp;reg; downloads&lt;/a&gt; section.&lt;/p&gt;
&lt;p&gt;Enjoy!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=19</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=19</guid>
		<pubDate>Mon, 6 Mar 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Designing for CMX</title>
		<description><![CDATA[&lt;p&gt;Ok, so this post is a bit of a shameless plug, but may be of interest to some :) &lt;/p&gt;
&lt;p&gt;In the time that I have been a partner at &lt;a href=&quot;http://communitymx.com/&quot;&gt;Community MX&lt;/a&gt; I have designed two &amp;#8220;&lt;a href=&quot;http://www.communitymx.com/abstract.cfm?cid=C1035&quot;&gt;JumpStart's&lt;/a&gt;&amp;#8221;. JumpStart's are ready to deploy templates that come with extensive documentation and full support via the Community's set of 30 odd professional web developers.&lt;/p&gt;
&lt;p&gt;The first JumpStart I created was called &lt;a href=&quot;http://www.communitymx.com/abstract.cfm?cid=8C35C&quot;&gt;Inverness&lt;/a&gt; (the capital city of the Highlands and Islands). Inverness is a blog-theme design that includes example styles for the most commonly used elements of a generic blog.&lt;/p&gt;
&lt;p&gt;The JumpStart that was released today is named &lt;a href=&quot;http://www.communitymx.com/abstract.cfm?cid=0B12A&quot;&gt;Minneapolis&lt;/a&gt;. It's a three column, fluid layout based on the elements of eCommerce design. It's quite nifty :)&lt;/p&gt;
&lt;p&gt;The really great thing about the CMX JumpStarts is the support, like I said, having a backup team of 30 + professional web developers can never be a bad thing, then add the sweet price of only $29.99&amp;#8230; you just can't go wrong.&lt;/p&gt;
&lt;p&gt;The templates come with a Dreamweaver extension that allows them to be rapidly deployed, but they also come with a generic zip archive containing all the files required to use them.&lt;/p&gt;
&lt;p&gt;All-in-all JumpStart's are an excellent way to, erm, &amp;#8220;jump-start&amp;#8221; a client design if you're lacking time or inspiration and they are also a really great way to learn about using CSS, Adobe &amp;#8482; Fireworks&amp;#8482; and Adobe&amp;#8482; Dreamweaver&amp;#8482;.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=18</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=18</guid>
		<pubDate>Fri, 3 Mar 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Two new templates</title>
		<description><![CDATA[&lt;p&gt;As a celebration of the new version of my site I have released two new templates. As always they are the result of me attempting to redesign Gordonmac dot com, but failing to be happy with anything I come up with.&lt;/p&gt;
&lt;p&gt;I hope that you like them, you can grab them at the &lt;a href=&quot;/downloads/&quot;&gt;normal location&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Seeing as this a new version, and hopefully a new beginning for Gordonmac dot com I am looking for anyone who has suggestions for new content, please let me know.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=17</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=17</guid>
		<pubDate>Sun, 26 Feb 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>A live redesign/update</title>
		<description><![CDATA[&lt;p&gt;Welcome to the beta for the new version of Gordonmac dot com. This is a &lt;strong&gt;live redesign&lt;/strong&gt;, so a lot of what used to be here hasn't been updated yet. This wont take long though, and I assure you that it will all be worth waiting for,&lt;/p&gt;
&lt;p&gt;I have discontinued the older templates and PNG files in order to replace them with fresher, more contemporary designs. They will be available shortly, so please be patient :)&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=16</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=16</guid>
		<pubDate>Sun, 26 Feb 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Domain transfer</title>
		<description><![CDATA[&lt;p&gt;I am currently transferring gordonmac.com to a new web host, so please accept my apologies for any disruption.&lt;/p&gt;
&lt;p&gt;The reason for my change of host is due to my current host's lack of interest in updating PHP to version 5, and the development of my new CMS and design has taken advantage of the need for some of PHP5's features.&lt;/p&gt;
&lt;p&gt;Does anyone have any tips for the smooth transfer of hosting? I would be delighted to hear them!&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=15</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=15</guid>
		<pubDate>Sat, 25 Feb 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>He lives</title>
		<description><![CDATA[&lt;p&gt;OK, so it has been a while (erm, bloody long time actually!) since I have posted anything here, or in fact done anything at all with this site. There have been a number of reasons for this, and none of them are lack of interest in the subject.&lt;/p&gt;
&lt;p&gt;One of the most interesting reasons for my absence is due to the fact that I have been writing tutorials on a range of subjects that include PHP, CSS and XML for a project called &lt;a href=&quot;http://communitymx.com/&quot;&gt;Community MX&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Community MX is a subscription based resource for people who use the Macromedia (now Adobe) Studio application suite, and it's made up of a group of extremely intelligent and friendly bunch of web professionals (that doesn't include me by the way ;)) who provide fresh content on a daily basis, it's very cool.&lt;/p&gt;
&lt;p&gt;My short term plans include re-designing this site, it has been a long time since I have done that, and I used to do it far too often. &lt;/p&gt;
&lt;p&gt;In the background  I have been playing around quite a bit with various layouts, but I had never actually settled on anything. I will show you two of the rejected ideas I had for my redesign if you're interested &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://bokutouweb.com/tests/GMACDOTCOM/&quot;&gt;Reject 1&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://bokutouweb.com/tests/GORDONMAC2/&quot;&gt;Reject 2&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Those were just ideas, the design that I have settled on is much different than the efforts I have made in the past, and I can't wait to let it loose for all to see.&lt;/p&gt;
&lt;p&gt;Please stay tuned :)&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=14</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=14</guid>
		<pubDate>Fri, 17 Feb 2006 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>My musical baton</title>
		<description><![CDATA[&lt;p&gt;It's been a while since I posted anything here, just not a lot going on really but I received the &amp;#8220;Musical Baton&amp;#8221; from &lt;a href=&quot;http://www.macromedia.com/support/forums/team_macromedia/team_members/212.html&quot;&gt;Stephanie Sullivan&lt;/a&gt; at &lt;a href=&quot;http://www.communitymx.com/blog/index.cfm?blogger=15&quot;&gt;Community MX&lt;/a&gt;. I guess I have no choice now but to write something :)&lt;/p&gt;
&lt;h3&gt;Total Volume&lt;/h3&gt;
&lt;p&gt;9.47&lt;abbr title=&quot;GigaBytes&quot;&gt;GB&lt;/abbr&gt;.&lt;/p&gt;
&lt;h3&gt;Last CD Bought&lt;/h3&gt;
&lt;p&gt;Ok, it's been a &lt;strong&gt;LONG&lt;/strong&gt; time since I bought a CD, I have been using iTunes for ages now and only really by single music files, the last whole album I bought from there was &amp;#8220;;Progressive History-X&amp;#8221; by Fluke.&lt;/p&gt;
&lt;h3&gt;Song playing right now&lt;/h3&gt;
&lt;p&gt;&amp;#8220;Strict Machine&amp;#8221; by &lt;a href=&quot;http://www.goldfrapp.co.uk/&quot;&gt;Goldfrapp&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;Five songs I listen to a lot, &lt;span style=&quot;strikeout&quot;&gt;or that mean a lot to me:&lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;Hmmm... this is what my iTunes says that I listen to most: &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&amp;#8220;White Rabbit&amp;#8221; by Jefferson Airplane.&lt;/li&gt;
&lt;li&gt;&amp;#8220;Thumper&amp;#8221; by Fluke.&lt;/li&gt;
&lt;li&gt;&amp;#8220;Like Glue&amp;#8221; by Sean Paul.&lt;/li&gt;
&lt;li&gt;&amp;#8220;Black Steel&amp;#8221; by Tricky.&lt;/li&gt;
&lt;li&gt;&amp;#8220;A Warm Place&amp;#8221; by Nine Inch Nails.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Five People to Whom I'm Passing the Baton&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://dzinelabs.com/&quot;&gt;Luc&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://thepattysite.com/&quot;&gt;Patty Ayers&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://belleliu.com/&quot;&gt;Belle Liu&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://roubaixinteractive.com/&quot;&gt;Kindler Chase&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.webtemplatesblog.com/&quot;&gt;James&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=13</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=13</guid>
		<pubDate>Sat, 21 May 2005 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>My awesome new keyboard</title>
		<description><![CDATA[	&lt;p&gt;This is the canine&amp;#8217;s gonads of keyboards, and it will arrive at my door in 24 hours :)&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://www.logitech.com/lang/images/0/2985.jpg&quot; alt=&quot;diNovo Keypad by Logitech&quot; /&gt;&lt;/p&gt;
	&lt;p&gt;&lt;a href=&quot;http://www.logitech.com/index.cfm/products/details/GB/EN,CRID=2158,CONTENTID=9874&quot; title=&quot;&quot;&gt;Have a look at it&lt;/a&gt;&lt;/p&gt;
 ]]></description>
		<link>http://gordonmac.com/archive/?id=12</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=12</guid>
		<pubDate>Tue, 5 Apr 2005 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Hobbyist CSSer</title>
		<description><![CDATA[&lt;p&gt;Although I have not been saying much on this &amp;#8220;blog&amp;#8221; I have been designing lots of little bits and bobs. It's what I do when I ain't working.&lt;/p&gt;
&lt;p&gt;I don't know if anyone really wants to see these, they are far from perfection, but I had fun making them.&lt;/p&gt;
&lt;p&gt;Here is the list:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;/testing/GMV20/&quot;&gt;GMV20&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;/GMVDB/&quot;&gt;GMVDB&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;/Sumo/&quot;&gt;Sumo&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Sorry about the weird names for them, but they made sense to me at the time :D&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=11</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=11</guid>
		<pubDate>Mon, 4 Apr 2005 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Time for another makeover</title>
		<description><![CDATA[	&lt;p&gt;At the moment everyone seems to be in some sort of site redevelopment state of mind, but I have always been afflicted. Mostly because after having looked at my site for a few months it really begins to look crap. Seeing so many other beautiful designs on the go doesn&amp;#8217;t help my condition at all :)&lt;/p&gt;

	&lt;p&gt;I have decided to change a few things in addition to the design. One of those things is the removal of the &lt;span class=&quot;caps&quot;&gt;CMS I&lt;/span&gt; made with the intention of keeping updated regularly. That never happened, and will never happen as far as I can see it :)&lt;/p&gt;

	&lt;p&gt;What I am planning to have on the index page is simply a tiny application to allow me to link to things relating to design that I find interesting. It wont have comments or anything like that, just a link and a description. They will be archived and categorized.&lt;/p&gt;

	&lt;p&gt;Anyway, I will leave the link to the test directory for my redesign, you can watch me make an arse of my &lt;span class=&quot;caps&quot;&gt;CSS&lt;/span&gt; and adding bits and bobs as the time passes if you like :)&lt;/p&gt;

	&lt;p&gt;Here is the &lt;a href=&quot;/Japanmac/&quot; title=&quot;&quot;&gt;first draft&lt;/a&gt;&lt;/p&gt;

	&lt;p&gt;The image at the top is a Japanese woman painting a decorative fan. I bought it as an antique print (circa. 1870) for 25, and love it!&lt;/p&gt;

	&lt;p&gt;Thanks for looking :)&lt;/p&gt;
 ]]></description>
		<link>http://gordonmac.com/archive/?id=10</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=10</guid>
		<pubDate>Thu, 31 Mar 2005 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>A New Pill</title>
		<description><![CDATA[&lt;p&gt;&lt;img src=&quot;/i/re-newpill.jpg&quot; alt=&quot;That's pronounced Fuck It All&quot; title=&quot;That's pronounced Fuck It All&quot; /&gt;&lt;/p&gt;
&lt;p&gt;'nuff said.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=9</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=9</guid>
		<pubDate>Mon, 28 Mar 2005 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Stringy List Navigation</title>
		<description><![CDATA[&lt;p&gt;I don&amp;#8217;t know if this is of any use to anyone, neither do I know if it&lt;br /&gt;
works in Mac browsers but I&amp;#8217;m sure someone here will be able to tell&lt;br /&gt;
me :)&lt;/p&gt;
&lt;p&gt;The more I use relative | absolute postioning the more I see it&amp;#8217;s
practicalities when it is used properly.&lt;/p&gt;
&lt;p&gt;Anyway, the link is &lt;a href=&quot;http://gordonmac.com/testing/String_nav/&quot;&gt;here&lt;/a&gt;.
&lt;span class=&quot;caps&quot;&gt;CSS&lt;/span&gt; is not externalized for easy source viewing and the very basic Fireworks &lt;span class=&quot;caps&quot;&gt;PNG&lt;/span&gt; file I used for the graphics is &lt;a href=&quot;http://gordonmac.com/testing/String_nav/source.png&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Hope someone can make something pretty with it :D&lt;/p&gt;
]]></description>
		<link>http://gordonmac.com/archive/?id=8</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=8</guid>
		<pubDate>Fri, 25 Mar 2005 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Another PNG 4U</title>
		<description><![CDATA[	&lt;p&gt;Playing around with Fireworks before dinner tonight and made a little something that maybe someone could use.&lt;/p&gt;

	&lt;p&gt;It&amp;#8217;s just a really simple little layout idea, but maybe of use to someone.&lt;/p&gt;

	&lt;p&gt;&lt;a href=&quot;/downloads/png/index.php?download=3&quot; title=&quot;Get the file&quot;&gt;Go grab it&lt;/a&gt;&lt;/p&gt;

 ]]></description>
		<link>http://gordonmac.com/archive/?id=7</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=7</guid>
		<pubDate>Thu, 3 Mar 2005 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Free Fireworks MX Symbols</title>
		<description><![CDATA[&lt;p&gt;Don't know if they will be of any use to anyone, but you can &lt;a href=&quot;/downloads/png/index.php?download=2&quot;&gt;grab em here&lt;/a&gt;.&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=6</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=6</guid>
		<pubDate>Mon, 14 Feb 2005 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Happy Chinese New Year</title>
		<description><![CDATA[	&lt;p&gt;Oh, and I think the common way to greet someone from China at this time of the year is &amp;#8220;Kung Hei Fat Choy&amp;#8221;.&lt;/p&gt;
 ]]></description>
		<link>http://gordonmac.com/archive/?id=5</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=5</guid>
		<pubDate>Tue, 8 Feb 2005 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Flash Paper 2</title>
		<description><![CDATA[&lt;p&gt;I was looking for a cheap way to generate &lt;abbr title=&quot;Portable Document Format&quot;&gt;PDF&lt;/abbr&gt; for use on my web site and toyed with a few different application possibilities. Adobe Acrobat was one of those options, despite being much too powerful for my humble needs.&lt;/p&gt;
&lt;p&gt;Today I found a pretty much inexpensive and versatile application to cater for that requirement, &lt;a href=&quot;http://www.macromedia.com/software/flashpaper/productinfo/overview/&quot; rel=&quot;external&quot;&gt;Macromedia Flash Paper 2&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It allows you to generate either a generic  &lt;abbr title=&quot;Portable Document Format&quot;&gt;PDF&lt;/abbr&gt; or a Macromedia Flash File Format (&lt;abbr title=&quot;ShockWave Flash&quot;&gt;SWF&lt;/abbr&gt;) of your printed media.&lt;/p&gt;
&lt;p&gt;Here is what Macromedia has to say about Flash Paper 2:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;FlashPaper 2 allows anyone to convert printable files into Flash documents or Adobe PDF files with one click. Instantly generate Flash documents that can be accessed by over half a billion web users. Or transform files into secure, compact PDFs for e-mailing, archiving, and printing. FlashPaper 2 is an affordable solution to create web-ready documents easily that can be shared on any website.&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Just thought I would share that :)&lt;/p&gt;]]></description>
		<link>http://gordonmac.com/archive/?id=4</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=4</guid>
		<pubDate>Tue, 1 Feb 2005 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Version 9.5</title>
		<description><![CDATA[	&lt;p&gt;A lot of things have to be done yet. I have to set up my &lt;acronym title=&quot;frequently asked questions&quot;&gt;FAQ&lt;/acronym&gt; application again, I have to find all the &lt;acronym title=&quot;Portable Network Graphics&quot;&gt;PNG&lt;/acronym&gt; I intend on giving away and then I have to re write my gallery application.&lt;/p&gt;

	&lt;p&gt;Anyway, I hope you like this&amp;#8230; any suggestions are welcome (unless they mean a lot of work for me :) ).&lt;/p&gt;
 ]]></description>
		<link>http://gordonmac.com/archive/?id=3</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=3</guid>
		<pubDate>Thu, 27 Jan 2005 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Designers Block</title>
		<description><![CDATA[	&lt;p&gt;I don&amp;#8217;t know if this is a common malady among people who participate in both design &lt;strong&gt;and&lt;/strong&gt; application development, but it&amp;#8217;s certainly affecting me with symptoms manifesting themselves as extreme mental fatigue and tongue twisting salvos of blasphemy.&lt;/p&gt;

	&lt;p&gt;As if trying to recall the logic of things like the box model and the nuisance of Microsoft Internet Explorer in general wasn&amp;#8217;t bad enough you then have to go about firing all your frustrations in to something that looks &lt;strong&gt;original&lt;/strong&gt;!! &lt;acronym title=&quot;ohhhh myyyyy godddddd Grrrrrrrrr&quot;&gt;OMG&lt;/acronym&gt;&lt;/p&gt;

	&lt;p&gt;Still, ain&amp;#8217;t it fun? :D&lt;/p&gt;
 ]]></description>
		<link>http://gordonmac.com/archive/?id=2</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=2</guid>
		<pubDate>Tue, 25 Jan 2005 00:00:00 GMT</pubDate>
	</item>
	<item>
		<title>Helloha</title>
		<description><![CDATA[	&lt;p&gt;Ok, the new version of this site is nearly finished. Still some things to do with it.&lt;/p&gt;

	&lt;p&gt;Will be up and running soon though, promise.&lt;/p&gt;
 ]]></description>
		<link>http://gordonmac.com/archive/?id=1</link>
		<guid isPermaLink="true">http://gordonmac.com/archive/?id=1</guid>
		<pubDate>Sat, 22 Jan 2005 00:00:00 GMT</pubDate>
	</item>
	</channel>
</rss>
