<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Mark King's Blog</title>
	<atom:link href="http://mgk1969.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mgk1969.wordpress.com</link>
	<description>Musings on all manner of things</description>
	<lastBuildDate>Thu, 17 Feb 2011 08:01:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mgk1969.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Mark King's Blog</title>
		<link>http://mgk1969.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mgk1969.wordpress.com/osd.xml" title="Mark King&#039;s Blog" />
	<atom:link rel='hub' href='http://mgk1969.wordpress.com/?pushpress=hub'/>
		<item>
		<title>SQL ORDER BY with &#8216;The&#8217; removed</title>
		<link>http://mgk1969.wordpress.com/2008/05/26/sql-order-by-with-the-removed/</link>
		<comments>http://mgk1969.wordpress.com/2008/05/26/sql-order-by-with-the-removed/#comments</comments>
		<pubDate>Mon, 26 May 2008 00:53:29 +0000</pubDate>
		<dc:creator>Mark King</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[alpha sort]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://mgk1969.wordpress.com/?p=23</guid>
		<description><![CDATA[I&#8217;ve often had to sort strings into alpha order but had problems with sorting the ones starting with &#8220;The&#8221;. Here&#8217;s how I solved it within the SQL query. SELECT partnerID,            partner,            partnersort =            CASE LEFT(partner,4)                 WHEN 'the' THEN RIGHT(partner,LEN(partner)-4)             [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=23&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve often had to sort strings into alpha order but had problems with sorting the ones starting with &#8220;The&#8221;. Here&#8217;s how I solved it within the SQL query.</p>
<pre>SELECT     partnerID,
           partner,
           partnersort =
                CASE LEFT(partner,4)
                WHEN 'the' THEN RIGHT(partner,LEN(partner)-4)
                ELSE partner
                END
FROM       partners
ORDER BY   partnersort</pre>
<p>Pretty happy with that!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mgk1969.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mgk1969.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mgk1969.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mgk1969.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mgk1969.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mgk1969.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mgk1969.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mgk1969.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mgk1969.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mgk1969.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mgk1969.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mgk1969.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mgk1969.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mgk1969.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mgk1969.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mgk1969.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=23&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mgk1969.wordpress.com/2008/05/26/sql-order-by-with-the-removed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17da2c132fdf560f87bcee52aff7e06f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mgk1969</media:title>
		</media:content>
	</item>
		<item>
		<title>Using JavaScript to autostripe a table</title>
		<link>http://mgk1969.wordpress.com/2007/12/02/using-javascript-to-autostripe-a-table/</link>
		<comments>http://mgk1969.wordpress.com/2007/12/02/using-javascript-to-autostripe-a-table/#comments</comments>
		<pubDate>Sun, 02 Dec 2007 10:47:04 +0000</pubDate>
		<dc:creator>Mark King</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mgk1969.wordpress.com/2007/12/02/using-javascript-to-autostripe-a-table/</guid>
		<description><![CDATA[I was recently working on a project where there were tables edited in a database so I had no control over the colours of the various cells (and didn&#8217;t want to have to do the striping manually). I eventually found the following code and altered it to suit my needs: if(window.addEventListener){ window.addEventListener('load', stripe, false); }else{ [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=22&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was recently working on a project where there were tables edited in a database so I had no control over the colours of the various cells (and didn&#8217;t want to have to do the striping manually). I eventually found the following code and altered it to suit my needs:</p>
<pre>if(window.addEventListener){
   window.addEventListener('load', stripe, false);
}else{
   window.attachEvent('onload', function(){ stripe(); });
}

function stripe() {
   var evenColor = "#eee";
   var oddColor = "#fff";

   var tables = document.body.getElementsByTagName('table');
   for(i=0;i&lt;tables.length;i++){
      if(tables[i].className == 'press'){
      var even = false;
	 var tbodies = tables[i].getElementsByTagName("tbody");
         for (var j = 0; j &lt; tbodies.length; j++) {
            var trs = tbodies[j].getElementsByTagName("tr");
	    for (var k = 0; k &lt; trs.length; k++) {
               var tds = trs[k].getElementsByTagName("td");
	       for (var l = 0; l &lt; tds.length; l++) {
                  var mytd = tds[l];
	          mytd.style.backgroundColor = even ? evenColor : oddColor;
               }
	       even =  ! even;
	    }
	 }
      }
   }
}</pre>
<p>The first part of this code causes the function to run automatically when the page finishes loading.</p>
<p>The function loops over all table tags, then finds the ones with a class of &#8216;press&#8217; (this table held a list of press releases), then loops over all the <em>tbody</em> tags, then the <em>tr</em> tags, then all the <em>td</em> tags. When we reach the <em>td</em> we just add the backgroundColor style for the colour we are currently using.</p>
<p>You just need the following script in your &lt;head&gt; and make sure your tables have the correct class and are properly coded;</p>
<pre>&lt;<span class="start-tag">script</span><span class="attribute-name"> type</span>=<span class="attribute-value">"text/javascript" </span><span class="attribute-name">src</span>=<span class="attribute-value">"stripe.js"</span>&gt;&lt;/<span class="end-tag">script</span>&gt;</pre>
<pre>&lt;<span class="start-tag">table</span><span class="attribute-name"> class</span>=<span class="attribute-value">"press" </span><span class="attribute-name">cellspacing</span>=<span class="attribute-value">"0"</span>&gt;
    &lt;<span class="start-tag">thead</span>&gt;
        &lt;<span class="start-tag">tr</span>&gt;
            &lt;<span class="start-tag">th</span><span class="attribute-name"> scope</span>=<span class="attribute-value">"col"</span>&gt;Released on&lt;/<span class="end-tag">th</span>&gt;
	    &lt;<span class="start-tag">th</span><span class="attribute-name"> scope</span>=<span class="attribute-value">"col"</span>&gt;Title&lt;/<span class="end-tag">th</span>&gt;
        &lt;/<span class="end-tag">tr</span>&gt;
    &lt;/<span class="end-tag">thead</span>&gt;
    &lt;<span class="start-tag">tbody</span>&gt;
        &lt;<span class="start-tag">tr</span>&gt;
            &lt;<span class="start-tag">td</span><span class="attribute-name"> class</span>=<span class="attribute-value">"date"</span>&gt;[date]&lt;/<span class="end-tag">td</span>&gt;
            &lt;<span class="start-tag">td</span>&gt;[title]&lt;/<span class="end-tag">td</span>&gt;
        &lt;/<span class="end-tag">tr</span>&gt;
        &lt;<span class="start-tag">tr</span>&gt;
            &lt;<span class="start-tag">td</span><span class="attribute-name"> class</span>=<span class="attribute-value">"date"</span>&gt;[date]&lt;/<span class="end-tag">td</span>&gt;
            &lt;<span class="start-tag">td</span>&gt;[title]&lt;/<span class="end-tag">td</span>&gt;
        &lt;/<span class="end-tag">tr</span>&gt;
        &lt;<span class="start-tag">tr</span>&gt;
            &lt;<span class="start-tag">td</span><span class="attribute-name"> class</span>=<span class="attribute-value">"date"</span>&gt;[date]&lt;/<span class="end-tag">td</span>&gt;
            &lt;<span class="start-tag">td</span>&gt;[title]&lt;/<span class="end-tag">td</span>&gt;
        &lt;/<span class="end-tag">tr</span>&gt;
        &lt;<span class="start-tag">tr</span>&gt;
            &lt;<span class="start-tag">td</span><span class="attribute-name"> class</span>=<span class="attribute-value">"date"</span>&gt;[date]&lt;/<span class="end-tag">td</span>&gt;
            &lt;<span class="start-tag">td</span>&gt;[title]&lt;/<span class="end-tag">td</span>&gt;
        &lt;/<span class="end-tag">tr</span>&gt;
    &lt;/<span class="end-tag">tbody</span>&gt;
&lt;/<span class="end-tag">table</span>&gt;</pre>
<p>And there it is!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mgk1969.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mgk1969.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mgk1969.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mgk1969.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mgk1969.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mgk1969.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mgk1969.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mgk1969.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mgk1969.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mgk1969.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mgk1969.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mgk1969.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mgk1969.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mgk1969.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mgk1969.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mgk1969.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=22&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mgk1969.wordpress.com/2007/12/02/using-javascript-to-autostripe-a-table/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17da2c132fdf560f87bcee52aff7e06f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mgk1969</media:title>
		</media:content>
	</item>
		<item>
		<title>Thinking about Lotto</title>
		<link>http://mgk1969.wordpress.com/2007/09/03/thinking-about-lotto/</link>
		<comments>http://mgk1969.wordpress.com/2007/09/03/thinking-about-lotto/#comments</comments>
		<pubDate>Mon, 03 Sep 2007 07:22:09 +0000</pubDate>
		<dc:creator>Mark King</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://mgk1969.wordpress.com/2007/09/03/thinking-about-lotto/</guid>
		<description><![CDATA[In the Gold Lotto you are required to choose 6 numbers from 40, in any order, to win the top prize. The odds of doing so are; 6/40 * 5/39 * 4/38 *3/37 * 2/26 * 1/35 = 720/2,763,633,600 = 1 in 3,838,380. I still buy a ticket every week.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=20&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In the Gold Lotto you are required to choose 6 numbers from 40, in any order, to win the top prize. The odds of doing so are;</p>
<p>6/40 * 5/39 * 4/38 *3/37 * 2/26 * 1/35 =  720/2,763,633,600 = 1 in 3,838,380.</p>
<p>I still buy a ticket every week.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mgk1969.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mgk1969.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mgk1969.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mgk1969.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mgk1969.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mgk1969.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mgk1969.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mgk1969.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mgk1969.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mgk1969.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mgk1969.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mgk1969.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mgk1969.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mgk1969.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mgk1969.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mgk1969.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=20&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mgk1969.wordpress.com/2007/09/03/thinking-about-lotto/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17da2c132fdf560f87bcee52aff7e06f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mgk1969</media:title>
		</media:content>
	</item>
		<item>
		<title>Discovery Metals</title>
		<link>http://mgk1969.wordpress.com/2007/07/01/discovery-metals/</link>
		<comments>http://mgk1969.wordpress.com/2007/07/01/discovery-metals/#comments</comments>
		<pubDate>Sun, 01 Jul 2007 00:50:02 +0000</pubDate>
		<dc:creator>Mark King</dc:creator>
				<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://mgk1969.wordpress.com/2007/07/01/discovery-metals/</guid>
		<description><![CDATA[http://www.discoverymetals.com.au Another D10 site, nice one too. Not much time to write about it but it was generally smooth to build and get up, hopefully not too many changes in the coming weeks.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=19&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.discoverymetals.com.au/">http://www.discoverymetals.com.au</a></p>
<p>Another D10 site, nice one too. Not much time to write about it but it was generally smooth to build and get up, hopefully not too many changes in the coming weeks.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mgk1969.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mgk1969.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mgk1969.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mgk1969.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mgk1969.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mgk1969.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mgk1969.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mgk1969.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mgk1969.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mgk1969.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mgk1969.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mgk1969.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mgk1969.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mgk1969.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mgk1969.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mgk1969.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=19&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mgk1969.wordpress.com/2007/07/01/discovery-metals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17da2c132fdf560f87bcee52aff7e06f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mgk1969</media:title>
		</media:content>
	</item>
		<item>
		<title>World Population vs. World of Warcraft Population</title>
		<link>http://mgk1969.wordpress.com/2007/06/28/world-population-vs-world-of-warcraft-population/</link>
		<comments>http://mgk1969.wordpress.com/2007/06/28/world-population-vs-world-of-warcraft-population/#comments</comments>
		<pubDate>Thu, 28 Jun 2007 05:40:01 +0000</pubDate>
		<dc:creator>Mark King</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://mgk1969.wordpress.com/2007/06/28/world-population-vs-world-of-warcraft-population/</guid>
		<description><![CDATA[World Population: 6.6 billion World of Warcraft Players: 8.5 million 6,600,000,000 / 8,500,000 = 776.4705. Or to put it differently &#8211; one in every 776 people in the world plays World of Warcraft. Can this be correct?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=18&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>World Population: 6.6 billion</p>
<p>World of Warcraft Players: 8.5 million</p>
<p>6,600,000,000 / 8,500,000 = 776.4705.</p>
<p>Or to put it differently &#8211; one in every 776 people in the world plays World of Warcraft.</p>
<p>Can this be correct?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mgk1969.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mgk1969.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mgk1969.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mgk1969.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mgk1969.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mgk1969.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mgk1969.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mgk1969.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mgk1969.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mgk1969.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mgk1969.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mgk1969.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mgk1969.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mgk1969.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mgk1969.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mgk1969.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=18&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mgk1969.wordpress.com/2007/06/28/world-population-vs-world-of-warcraft-population/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17da2c132fdf560f87bcee52aff7e06f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mgk1969</media:title>
		</media:content>
	</item>
		<item>
		<title>Too much Flash!</title>
		<link>http://mgk1969.wordpress.com/2007/06/26/too-much-flash/</link>
		<comments>http://mgk1969.wordpress.com/2007/06/26/too-much-flash/#comments</comments>
		<pubDate>Tue, 26 Jun 2007 00:32:17 +0000</pubDate>
		<dc:creator>Mark King</dc:creator>
				<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://mgk1969.wordpress.com/2007/06/26/too-much-flash/</guid>
		<description><![CDATA[I was feeling sick a few days ago and consequently decided to do my usual trawl through the various RSS feeds I look at. I eventually ended up looking at the Razorfish site (they came up because the company has just been bought by Microsoft). Razorfish was one of the big players in web design [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=16&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was feeling sick a few days ago and consequently decided to do my usual trawl through the various RSS feeds I look at. I eventually ended up looking at the Razorfish site (they came up because the company has just been bought by Microsoft). Razorfish was one of the big players in web design maybe 10 years ago, and still are I suppose, although I hadn&#8217;t seen anything by them for a long time.</p>
<p>Anyway, I was looking at their folio and noticed they had a site listed as a Communication Arts site of the week (it was Red Bull). So I went to look at the CommArts site, and their site of the week lists. And almost everything I saw listed there was Flash.</p>
<p>Now I don&#8217;t mind Flash, but I am not a fan of the 100% flash site. I fall squarely on the standards side of that fence. So why is it that so many of these &#8220;site of the day&#8221; kind of sites continue to feature them? I was annoyed when I first started building sites that web design books were always full of sites that actually looked better in print than they were when you tried to use them. They looked good and didn&#8217;t work &#8211; kind of like Myspace in reverse.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mgk1969.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mgk1969.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mgk1969.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mgk1969.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mgk1969.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mgk1969.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mgk1969.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mgk1969.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mgk1969.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mgk1969.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mgk1969.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mgk1969.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mgk1969.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mgk1969.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mgk1969.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mgk1969.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=16&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mgk1969.wordpress.com/2007/06/26/too-much-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17da2c132fdf560f87bcee52aff7e06f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mgk1969</media:title>
		</media:content>
	</item>
		<item>
		<title>Cannon Hill Community Links</title>
		<link>http://mgk1969.wordpress.com/2007/06/26/cannon-hill-community-links/</link>
		<comments>http://mgk1969.wordpress.com/2007/06/26/cannon-hill-community-links/#comments</comments>
		<pubDate>Tue, 26 Jun 2007 00:29:34 +0000</pubDate>
		<dc:creator>Mark King</dc:creator>
				<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://mgk1969.wordpress.com/2007/06/26/cannon-hill-community-links/</guid>
		<description><![CDATA[http://www.cannonlinks.com.au Another new site! This is just a little guy, only 10 or so pages. It was all done in record time too &#8211; I was told it was a reskin and then when it showed up the whole thing had been redesigned!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=17&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cannonlinks.com.au/">http://www.cannonlinks.com.au</a></p>
<p>Another new site! This is just a little guy, only 10 or so pages. It was all done in record time too &#8211; I was told it was a reskin and then when it showed up the whole thing had been redesigned!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mgk1969.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mgk1969.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mgk1969.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mgk1969.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mgk1969.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mgk1969.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mgk1969.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mgk1969.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mgk1969.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mgk1969.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mgk1969.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mgk1969.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mgk1969.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mgk1969.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mgk1969.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mgk1969.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=17&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mgk1969.wordpress.com/2007/06/26/cannon-hill-community-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17da2c132fdf560f87bcee52aff7e06f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mgk1969</media:title>
		</media:content>
	</item>
		<item>
		<title>www.3speed.com.au</title>
		<link>http://mgk1969.wordpress.com/2007/05/31/www3speedcomau/</link>
		<comments>http://mgk1969.wordpress.com/2007/05/31/www3speedcomau/#comments</comments>
		<pubDate>Thu, 31 May 2007 04:01:33 +0000</pubDate>
		<dc:creator>Mark King</dc:creator>
				<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://mgk1969.wordpress.com/2007/05/31/www3speedcomau/</guid>
		<description><![CDATA[http://www.3speed.com.au I made this site live yesterday. It&#8217;s nice, took some time to get the navigation working correctly across the top, also the opacity thing when you look at case studies. It&#8217;s basically lightbox but of course it had to be customised to suit the design. Sometimes I enjoy building sites from other people&#8217;s designs [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=15&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.3speed.com.au/" title="3speed">http://www.3speed.com.au</a></p>
<p>I made this site live yesterday. It&#8217;s nice, took some time to get the navigation working correctly across the top, also the opacity thing when you look at case studies. It&#8217;s basically lightbox but of course it had to be customised to suit the design.</p>
<p>Sometimes I enjoy building sites from other people&#8217;s designs &#8211; this is by D10 &#8211; but more often than not these kinds of projects take much longer than expected. They usually finish as better products though, since the thinking that has gone into the interface has not been influenced by the difficulty of implementing it.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mgk1969.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mgk1969.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mgk1969.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mgk1969.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mgk1969.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mgk1969.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mgk1969.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mgk1969.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mgk1969.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mgk1969.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mgk1969.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mgk1969.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mgk1969.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mgk1969.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mgk1969.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mgk1969.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=15&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mgk1969.wordpress.com/2007/05/31/www3speedcomau/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17da2c132fdf560f87bcee52aff7e06f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mgk1969</media:title>
		</media:content>
	</item>
		<item>
		<title>Fonts</title>
		<link>http://mgk1969.wordpress.com/2007/05/05/fonts/</link>
		<comments>http://mgk1969.wordpress.com/2007/05/05/fonts/#comments</comments>
		<pubDate>Sat, 05 May 2007 04:36:51 +0000</pubDate>
		<dc:creator>Mark King</dc:creator>
				<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://mgk1969.wordpress.com/2007/05/05/fonts/</guid>
		<description><![CDATA[I like fonts but (like everyone I guess) I have my favourites. Here&#8217;s a list I was just reading, I thought I would post it here so I don&#8217;t forget where I found it. Helvetica is not a surprise, but some of the newer ones are! http://www.inspirationbit.com/16-best-loved-font-bits-in-web-design/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=14&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I like fonts but (like everyone I guess) I have my favourites.</p>
<p>Here&#8217;s a list I was just reading, I thought I would post it here so I don&#8217;t forget where I found it.  Helvetica is not a surprise, but some of the newer ones are!</p>
<p><a href="http://www.inspirationbit.com/16-best-loved-font-bits-in-web-design/">http://www.inspirationbit.com/16-best-loved-font-bits-in-web-design/ </a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mgk1969.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mgk1969.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mgk1969.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mgk1969.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mgk1969.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mgk1969.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mgk1969.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mgk1969.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mgk1969.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mgk1969.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mgk1969.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mgk1969.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mgk1969.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mgk1969.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mgk1969.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mgk1969.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=14&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mgk1969.wordpress.com/2007/05/05/fonts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17da2c132fdf560f87bcee52aff7e06f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mgk1969</media:title>
		</media:content>
	</item>
		<item>
		<title>Re: The Designer/Client relationship</title>
		<link>http://mgk1969.wordpress.com/2007/05/05/re-the-designerclient-relationship/</link>
		<comments>http://mgk1969.wordpress.com/2007/05/05/re-the-designerclient-relationship/#comments</comments>
		<pubDate>Sat, 05 May 2007 04:36:43 +0000</pubDate>
		<dc:creator>Mark King</dc:creator>
				<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://mgk1969.wordpress.com/2007/05/05/re-the-designerclient-relationship/</guid>
		<description><![CDATA[Re: boagworld.com article In short i am coming to the conclusion that wherever possible the designer should be involved in the writing of a development brief. I think what usually happens is that the client comes in and the brief changes as the development is undertaken.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=13&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Re: <a href="http://www.boagworld.com/archives/2007/05/when_the_designerclient_relationship_should_begin.html" title="Via Boagworld">boagworld.com article</a><br />
<em>In short i am coming to the conclusion that wherever possible the designer should be involved in the writing of a development brief.</em></p>
<p>I think  what usually happens is that the client comes in and the brief changes as the development is undertaken.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mgk1969.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mgk1969.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mgk1969.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mgk1969.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mgk1969.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mgk1969.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mgk1969.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mgk1969.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mgk1969.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mgk1969.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mgk1969.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mgk1969.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mgk1969.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mgk1969.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mgk1969.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mgk1969.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mgk1969.wordpress.com&amp;blog=880382&amp;post=13&amp;subd=mgk1969&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mgk1969.wordpress.com/2007/05/05/re-the-designerclient-relationship/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17da2c132fdf560f87bcee52aff7e06f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mgk1969</media:title>
		</media:content>
	</item>
	</channel>
</rss>
