<?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"
	>

<channel>
	<title>theblahman.net Designs</title>
	<atom:link href="http://www.theblahman.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.theblahman.net/blog</link>
	<description>The blogroll of theblahman.net and his stuff</description>
	<pubDate>Sun, 02 Nov 2008 06:15:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Logitech Z-5500 Digital Sound System</title>
		<link>http://www.theblahman.net/blog/2008/11/logitech-z-5500-digital-sound-system/</link>
		<comments>http://www.theblahman.net/blog/2008/11/logitech-z-5500-digital-sound-system/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 06:13:50 +0000</pubDate>
		<dc:creator>theblahman</dc:creator>
		
		<category><![CDATA[Fun]]></category>

		<category><![CDATA[Movies]]></category>

		<category><![CDATA[Music]]></category>

		<category><![CDATA[Awesome]]></category>

		<category><![CDATA[Logitech]]></category>

		<category><![CDATA[Speakers]]></category>

		<category><![CDATA[Z-5500D]]></category>

		<guid isPermaLink="false">http://www.theblahman.net/blog/?p=51</guid>
		<description><![CDATA[First impressions&#8230;  WTF.
The Logitech Z-5500D Speakers are in one word.. Awesome!
I got these speakers over a month ago but only just recently set them up in my room.  Took me nearly a whole day to get each speaker attached to the wall and having the cables nailed up to the cornice, after doing [...]]]></description>
			<content:encoded><![CDATA[<p>First impressions&#8230;  <abbr title="What the F#ck">WTF</abbr>.</p>
<p>The <a href="http://www.logitech.com/index.cfm/speakers_audio/home_pc_speakers/devices/224&#038;cl=au,en" title="Logitech Z-5500 Digital">Logitech Z-5500D</a> Speakers are in one word.. <strong>Awesome!</strong><span id="more-51"></span></p>
<p>I got these speakers over a month ago but only just recently set them up in my room.  Took me nearly a whole day to get each speaker attached to the wall and having the cables nailed up to the cornice, after doing so I sat down at watched some Scrubs.  </p>
<p>Okay, back to my first impressions.  The reason why I was going <abbr title="What the F#ck">WTF</abbr> was that the box is enormous.  The box is also quite heavy.  Taking the subwoofer out of the box was a pain in the neck (more like the back but meh).  Setting them up (as I mentioned earlier) was painful but fun.  </p>
<p>So, how do they sound?!  déjà vu time!  <strong>Awesome!</strong>  In all seriousness, these speakers really do sound and look terrific.  The subwoofer was described as &#8220;major overkill&#8221; by my friends, but hey, nothing makes your room shake like a giant subwoofer.</p>
<p>My only concerns are that the subwoofer is really heavy and the other problem is the &#8220;Digital SoundTouch&tm; Control Panel&#8221; cable is quite short, it&#8217;s a standard adapter, but it&#8217;s recommended that you don&#8217;t try and lengthen it due to possible damage.  A risk I <strong>will not</strong> take!</p>
<p>Watching movies that are catered to 5.1 surround sound is bliss.  It&#8217;s honestly just like being at the movies, but without the annoying kids throwing popcorn at you&#8230; and without the giant screen.  </p>
<p>If you&#8217;re willing execute your bank and wallet for these speakers, definately go for it!  You will not regret it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theblahman.net/blog/2008/11/logitech-z-5500-digital-sound-system/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Conditional Comments</title>
		<link>http://www.theblahman.net/blog/2008/09/conditional-comments/</link>
		<comments>http://www.theblahman.net/blog/2008/09/conditional-comments/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 00:52:35 +0000</pubDate>
		<dc:creator>theblahman</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[XHTML]]></category>

		<category><![CDATA[Comments]]></category>

		<category><![CDATA[Conditional]]></category>

		<category><![CDATA[Explorer]]></category>

		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.theblahman.net/blog/?p=48</guid>
		<description><![CDATA[When designing a website you can generally bet your bottom dollar that in most browsers it will be totally awesome, you open Internet Explorer and it&#8217;s a jumbled mess.  Shame.  Some people would just give up&#8230; MADNESS!  Never fear, the power of conditional comments is here!  Gee, that sounded cooler when [...]]]></description>
			<content:encoded><![CDATA[<p>When designing a website you can generally bet your bottom dollar that in most browsers it will be totally awesome, you open Internet Explorer and it&#8217;s a jumbled mess.  Shame.  Some people would just give up&#8230; MADNESS!<span id="more-48"></span>  Never fear, the power of conditional comments is here!  Gee, that sounded cooler when I wrote it.</p>
<p>So, how do you use them?  What <em>are</em> conditional comments?  They are special instructions that are hidden in the <code>&lt;!-- comments --&gt;</code> tag that allows Internet Explorer on Windows to do things other browsers would just ignore.  Comments right!</p>
<p>So now, to use the comments to our advantage we can do:</p>
<p><code>&lt;!--[if IE]&gt;<br />
	&lt;p&gt;IE only!  Hoorah!&lt;/p&gt;<br />
&lt;![endif]&#8211;&#8211;&gt;</code></p>
<p>That&#8217;s not all!  You can target certain versions of Internet Explorer by using different letters in the if statement.  Let me explain.</p>
<ol>
<li><code><strong>&lt;!&#8211;&#8211;[if IE]&gt;</strong>&lt;p&gt;this targets every version of Internet Explorer&lt;/p&gt;<strong>&lt;[endif]&#8211;&#8211;&gt;</strong></code></li>
<li><code><strong>&lt;!&#8211;&#8211;[if IE 5]&gt;</strong>&lt;p&gt;this targets Internet Explorer 5&lt;/p&gt;<strong>&lt;![endif]&#8211;&#8211;&gt;</strong></code></li>
<li><code><strong>&lt;!&#8211;&#8211;[if IE 5.0]&gt;</strong>&lt;p&gt;this targets Internet Explorer 5.0&lt;/p&gt;<strong>&lt;![endif]&#8211;&#8211;&gt;</strong></code></li>
<li><code><strong>&lt;!&#8211;&#8211;[if IE 5.5]&gt;</strong>&lt;p&gt;this targets Internet Explorer 5.5&lt;/p&gt;<strong>&lt;[endif]&#8211;&#8211;&gt;</strong></code></li>
<li><code><strong>&lt;!&#8211;&#8211;[if IE 6]&gt;</strong>&lt;p&gt;this targets Internet Explorer 6&lt;/p&gt;<strong>&lt;[endif]&#8211;&#8211;&gt;</strong></code></li>
<li><code><strong>&lt;!&#8211;&#8211;[if IE 7]&gt;</strong>&lt;p&gt;this targets Internet Explorer 7&lt;/p&gt;<strong>&lt;[endif]&#8211;&#8211;&gt;</strong></code></li>
<li><code><strong>&lt;!&#8211;&#8211;[if gte IE 5.5]&gt;</strong>&lt;p&gt;this targets Internet Explorer 5.5 and above&lt;/p&gt;<strong>&lt;![endif]&#8211;&#8211;&gt;</strong></code></li>
<li><code><strong>&lt;!&#8211;&#8211;[if lte IE 6]&gt;</strong>&lt;p&gt;this targets Internet Explorer 6 and below&lt;/p&gt;<strong>&lt;![endif]&#8211;&#8211;&gt;</strong></code></li>
<li><code><strong>&lt;!&#8211;&#8211;[if lt IE 7]&gt;</strong>&lt;p&gt;this targets all versions of Internet Explorer below 7&lt;/p&gt;<strong>&lt;![endif]&#8211;&#8211;&gt;</strong></code></li>
</ol>
<p>The possibilities are endless!  &#8220;But what does the lt mean!  This is madness!&#8221; I hear you yell in a King Leonidas-esque style.  Read on&#8230;</p>
<ol>
<li><code><strong>lt</strong></code> - Less than</li>
<li><code><strong>gt</strong></code> - Greater than</li>
<li><code><strong>lte</strong></code> - Less than or equal to</li>
<li><code><strong>gte</strong></code> - Equal to or Greater than</li>
</ol>
<p>These comments don&#8217;t have to be just for making your website pseudo-usable in Internet Explorer, you could (but I <strong>do not</strong> recommend you do this) display a message telling Internet Explorer users that there are better browsers available.  As cool as it sounds, it&#8217;s not a very nice thing to do!</p>
<p>There you have it, enjoy yourself!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theblahman.net/blog/2008/09/conditional-comments/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MySQL or MySQLi&#8230; that is the question</title>
		<link>http://www.theblahman.net/blog/2008/09/mysql-or-mysqli-that-is-the-question/</link>
		<comments>http://www.theblahman.net/blog/2008/09/mysql-or-mysqli-that-is-the-question/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 06:47:06 +0000</pubDate>
		<dc:creator>theblahman</dc:creator>
		
		<category><![CDATA[SQL]]></category>

		<category><![CDATA[Madness]]></category>

		<category><![CDATA[MySQL]]></category>

		<category><![CDATA[MySQLi]]></category>

		<guid isPermaLink="false">http://www.theblahman.net/blog/?p=36</guid>
		<description><![CDATA[So, as I wander down the path of learning how to integrate a MySQL database with PHP I have pondered the difference between MySQL and MySQL improved (MySQLi).  I have two &#8220;Beginning PHP &#038; MySQL&#8221; books at home and one of them uses MySQL and the other uses MySQLi.  They are both quite [...]]]></description>
			<content:encoded><![CDATA[<p>So, as I wander down the path of learning how to integrate a MySQL database with PHP I have pondered the difference between MySQL and MySQL improved (MySQLi).  I have two &#8220;Beginning PHP &#038; MySQL&#8221; books at home and one of them uses MySQL and the other uses MySQLi.  They are both quite recent, but neither cared to explain the difference between the two and why we should use one above the other.  &#8220;So!&#8221;  I thought, &#8220;I will find an answer and I&#8217;ll be damned if I can&#8217;t find an explanation!&#8221;<span id="more-36"></span></p>
<p><small><strong>Disclaimer:</strong> Before I begin, this information may not be correct.  I&#8217;ve tried to get all my information correct, but sometimes misinterpretation or errors in articles can be misleading.  Also, this is my opinion, which is not always right (sad I know).  You&#8217;ve been warned <img src='http://www.theblahman.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </small></p>
<p>The introduction of MySQLi brought in 3 new ways to perform queries in PHP.  They are <strong>mysqli_stmt</strong>, <strong>mysqli_query</strong> and <strong>mysqli_multi_query</strong>.  According to <a href="http://devzone.zend.com/node/view/id/686" title="Zend: ext/mysqli">this article</a>, MySQLi is up to <strong>40</strong> times faster than the traditional MySQL.  Wow.  Well, the following paragraph may beg to differ. </p>
<p>When perusing the internet trying to find an answer to my question, I stumbled across <a href="http://www.johnjawed.com/benchmarks/" title="MySQLi vs MySQL (benchmarks)">this link</a>, a test done by John Jawed on which is the best way of performing queries using PHP.  A quick wrap-up of this benchmark finds that the order of best to worst is:</p>
<p><strong>mysqli_stmt</strong> > <strong>mysql_query</strong> > <strong>mysqli_query</strong> > <strong>mysqli_multi_query</strong></p>
<p>and the speeds:</p>
<p>mysqli_stmt: <strong>24,242.85 ms</strong><br />
mysql_query: <strong>25,345.39 ms</strong><br />
mysqli_query: <strong>25,652,99 ms</strong><br />
mysqli_multi_query: <strong>53,579.16 ms</strong></p>
<p>What the bloody hell happened there?  MySQLi only has one contender that is faster than MySQL.  What surprised me the most was that <strong>mysqli_multi_query</strong> was twice as slow as all the other query methods and it&#8217;s the one that is &#8220;made&#8221; for multiple queries.  I wonder if anyone actually uses it, since it is very slow.  </p>
<p>So, now we have some information to run by, let&#8217;s get crackin&#8217;!  If <strong>mysqli_stmt</strong> is approximately ~1 second faster than <strong>mysql_query</strong>, then that&#8217;s all awesome right?  Well, I&#8217;m not convinced.  Why?  Because when I looked at php.net&#8217;s way of using <strong>mysqli_stmt</strong>, it&#8217;s very long (but having said that, php.net&#8217;s method for <strong>mysql_query</strong> is huge!  It&#8217;s just heavily explained).  Also, <strong>mysqli_stmt</strong> doesn&#8217;t seem to be straight forward.  A <strong>mysql/mysqli_query</strong> is pretty simple, but this takes things to an extreme.  Lines and lines for one little query&#8230; MADNESS!  I&#8217;m thinking that there&#8217;s now a trade off.  If you want to use <strong>mysqli_stmt</strong> which is ~1 second faster than <strong>mysql_query</strong> then you have to write a bit more, which makes your script filesize larger, then you have to download more when connecting and loading the page.  So, what is it you want then?  A faster database query or a faster loading page?</p>
<p>If I were to jump down to the basics and just use either <strong>mysql_query</strong> or <strong>mysqli_query</strong>, I&#8217;d go for <strong>mysqli_query</strong> simply because it has better security and you can do it <em>object oriented</em> <a href="http://dictionary.reference.com/search?q=object+oriented&#038;x=0&#038;y=0" title="Dictionary.com: Object Oriented">[OOP]</a>.</p>
<p>Well then, I think the way to go now is <strong>mysqli_stmt</strong>.  Let&#8217;s see some books using it!</p>
<p>I didn&#8217;t write quite what I wanted to, but it&#8217;s pretty long anyway.  Keep your eyes peeled for Part 2 in a week or so!</p>
<p><small><strong>Updates:</strong><br />
5/9 18:28 - changed some text formatting &#038; added a bit more</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theblahman.net/blog/2008/09/mysql-or-mysqli-that-is-the-question/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The quiet month of August</title>
		<link>http://www.theblahman.net/blog/2008/08/the-quiet-month-of-august/</link>
		<comments>http://www.theblahman.net/blog/2008/08/the-quiet-month-of-august/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 09:58:44 +0000</pubDate>
		<dc:creator>theblahman</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[August]]></category>

		<category><![CDATA[Crazy]]></category>

		<category><![CDATA[Rant]]></category>

		<guid isPermaLink="false">http://www.theblahman.net/blog/?p=32</guid>
		<description><![CDATA[Yes, well&#8230;. the title explains it all.  Normally I&#8217;m tweeting several times a day and a new blog post came out every few days.  So&#8230; &#8220;what&#8217;s been keeping you?&#8221;  I hear you ask.  Well, many things really  
First of all, the site.  For all of those who are new [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, well&#8230;. the title explains it all.  Normally I&#8217;m tweeting several times a day and a new blog post came out every few days.  So&#8230; &#8220;what&#8217;s been keeping you?&#8221;  I hear you ask.  Well, many things really <img src='http://www.theblahman.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <span id="more-32"></span></p>
<p>First of all, the site.  For all of those who are new visitors to the site, this is version 4 of theblahman.net.  This was released earlier this month, and I&#8217;m really proud of it!  Took about a month or so of designing, coding and testing.  Mad props goes to <a href="http://www.komodomedia.com/" title="Komodo Media">Rogie King</a>, you are a champion!  And your new footer is to die for!</p>
<p>Well, what else?  I picked up modelling for Half-Life 2.  I used to map but I got kinda bored of it, so I&#8217;ve moved onto modelling instead!  What can I say about modelling&#8230; it&#8217;s quite challenging, but I enjoy it.  I&#8217;ve started off making a Stop sign and so far it&#8217;s&#8230;. well, alright.  I made the model exactly the same size as it would be in real life, down to the millimetre!  In-game it turned out perfect, so I was happy.  What I wasn&#8217;t happy about however, was the texture.  Now, I&#8217;m sure I got my .vmt right, but I&#8217;ll have to check with friends.  Stop signs <strong>generally</strong> don&#8217;t have the Purple/Black checkerbox on them&#8230; at least they don&#8217;t in Australia!  My other problem is the physbox.  I followed an awesome tutorial (<a href="http://www.iwannamap.com/" title="Do you wanna map, punk?">iwannamap</a>) by Generalvivi but I swear I did it right <img src='http://www.theblahman.net/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>What else can I use as an excuse?  Oh yeah!  School!  And that&#8217;s enough talk about school.</p>
<p>And thus concludes my rant on August, my favourite month of the year.  </p>
<p>Enoy yourself <img src='http://www.theblahman.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theblahman.net/blog/2008/08/the-quiet-month-of-august/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Speed Challenges</title>
		<link>http://www.theblahman.net/blog/2008/08/speed-challenges/</link>
		<comments>http://www.theblahman.net/blog/2008/08/speed-challenges/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 09:05:07 +0000</pubDate>
		<dc:creator>theblahman</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[XHTML]]></category>

		<category><![CDATA[Challenge]]></category>

		<category><![CDATA[Speed]]></category>

		<guid isPermaLink="false">http://www.theblahman.net/blog/?p=26</guid>
		<description><![CDATA[So, today I was thinking of something that I could do every week and then write about it in my blog, like a weekly update, but not   
So my idea was that each week I get a website which has a defined layout and one that can be roughly made without using images. [...]]]></description>
			<content:encoded><![CDATA[<p>So, today I was thinking of something that I could do every week and then write about it in my blog, like a weekly update, but not <img src='http://www.theblahman.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <span id="more-26"></span></p>
<p>So my idea was that each week I get a website which has a defined layout and one that can be roughly made without using images.  I look at the site (but I can look at it again during the 30 minutes, it&#8217;s not a photographic memory challenge&#8230; if it was, I&#8217;d be screwed!) then have 30 minutes to make as much of it as I can using only XHTML and CSS.  After the 30 minutes are up I take a look at how much I&#8217;ve done.  </p>
<p>Sounds like fun huh.  Well, I&#8217;ve never coded against the clock so the first few weeks I&#8217;ll probably get very little done, but hopefuly my skills will improve.  That&#8217;s what this challenge is about, learning to code against the clock, learning to make mock-ups quickly and improving my skills.</p>
<p>I won&#8217;t have one done this week, I&#8217;m busy with other things but hopefuly next week I&#8217;ll be able to publish my first speed challenge!</p>
<p>Adios.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theblahman.net/blog/2008/08/speed-challenges/feed/</wfw:commentRss>
		</item>
		<item>
		<title>It&#8217;s all fun and games with the Playstation 3</title>
		<link>http://www.theblahman.net/blog/2008/07/its-all-fun-and-games-with-the-playstation-3/</link>
		<comments>http://www.theblahman.net/blog/2008/07/its-all-fun-and-games-with-the-playstation-3/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 07:22:16 +0000</pubDate>
		<dc:creator>theblahman</dc:creator>
		
		<category><![CDATA[Fun]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Assassin's Creed]]></category>

		<category><![CDATA[Playstation 3]]></category>

		<guid isPermaLink="false">http://www.theblahman.net/blog/?p=23</guid>
		<description><![CDATA[On Monday the 28th at 9:15AM my Playstation 3 arrived courtesy of Sony and their free Playstation 3 give away.  My first impression of opening it up and looking at it was &#8220;Holy moly!  This thing is massive!&#8221;.  It really is a beast.  Sony have done a great job with making [...]]]></description>
			<content:encoded><![CDATA[<p>On Monday the 28th at 9:15AM my Playstation 3 arrived courtesy of Sony and their free Playstation 3 give away.  My first impression of opening it up and looking at it was &#8220;Holy moly!  This thing is massive!&#8221;.<span id="more-23"></span>  It really is a beast.  Sony have done a great job with making it look beautiful, the piano black gloss finish is to die for!</p>
<p>Setting up the Playstation 3 was very easy too, my hat goes off to the people at Sony for making it so simple to get it working!  After turning it on and hearing the beasty fan spin I was in seventh heaven.  That Playstation spins a mean fan.  I also noticed that the little Playstation logo can be twisted to what angle your Playstation is sitting - a nice little attention to detail which made me giddy with glee.  </p>
<p>After setting up the Playstation I proceeded to put in my brand new copy of Assassin&#8217;s Creed into the disk drive.  The disk sliding in is a pretty cool feature, I like it <img src='http://www.theblahman.net/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  </p>
<p>Now Assassin&#8217;s Creed.  I love this game.  I&#8217;m not that far into it, but already it&#8217;s just so much fun.  The Animus device and the whole Desmond Mills thing is a weird concept at first, but it really drives the story line.  The whole memory thing and when you die you get desyncronized, I think that&#8217;s really cool.  Nice idea Ubisoft Montreal!  </p>
<p>Scaling a massive tower, sycronizing then performing a leap of faith is just wicked.  So is the Save Citizen feature, although it&#8217;s kind of stupid that you just run up, kill all the guards and then no one seems to care&#8230; but it&#8217;s hella fun while you do it <img src='http://www.theblahman.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>However, I&#8217;d have to say the &#8220;Press X to blend&#8221; feature on the horse is so annoying.  It&#8217;s much easier to just gallop then scale a tower, leap of faith and go back to Anonymous mode.  The guards seem so paranoid, you walk near them with blend on and you&#8217;re a marked man.  </p>
<p>Anyroad, time to go and play Assassin&#8217;s Creed.  I&#8217;ll write up some more when I&#8217;ve finished the game.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theblahman.net/blog/2008/07/its-all-fun-and-games-with-the-playstation-3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Le Tour 2008</title>
		<link>http://www.theblahman.net/blog/2008/07/le-tour-2008/</link>
		<comments>http://www.theblahman.net/blog/2008/07/le-tour-2008/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 08:10:35 +0000</pubDate>
		<dc:creator>theblahman</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[CSC]]></category>

		<category><![CDATA[France]]></category>

		<category><![CDATA[Tour]]></category>

		<guid isPermaLink="false">http://www.theblahman.net/blog/?p=20</guid>
		<description><![CDATA[Wow&#8230; this Tour de France has been the best one so far.  From Simon Gerrans winning Stage 15 to Carlos Sastre&#8217;s solo effort up the L&#8217;Alpe-d&#8217;Huez to snatch the Maillot jaune (Yellow Jersey) from his team mate Fränk Schleck but also get a significant time gap from Australia&#8217;s Cadel Evans.
The opinions expressed below are [...]]]></description>
			<content:encoded><![CDATA[<p>Wow&#8230; this Tour de France has been the best one so far.  From Simon Gerrans winning Stage 15 to Carlos Sastre&#8217;s solo effort up the L&#8217;Alpe-d&#8217;Huez to snatch the Maillot jaune (Yellow Jersey) from his team mate Fränk Schleck but also get a significant time gap from Australia&#8217;s Cadel Evans.<span id="more-20"></span></p>
<p><small>The opinions expressed below are my own and may not be correct.  I tried.</small></p>
<p>The most exciting stage of the Tour was the time trial.  I was watching it live with friends who work at CSC and we were all torn between cheering for Cadel or for Carlos.  To put it plainly, we would&#8217;ve been happy either way.  While it was sad to see Cadel come 2nd two years in a row, I&#8217;m sure next with and a supportive team Cadel can get a 1st place.</p>
<p>I can&#8217;t understand why Silence-Lotto got rid of Chris Horner, the only rider who seemed to help Cadel in the mountains, replace him with Yaroslav Popovych who had a bad tour this year.  In all the stages Cadel needed help Popovych was way behind and then Popovych breaks away one day with a few other riders and clearly got burnt out and couldn&#8217;t help Cadel the day after.  I&#8217;m pretty sure Popovych was hired to help Cadel in the mountains, a job which he failed to do.  Oh well.</p>
<p>With no team mates helping Cadel and no one else willing to help him chase Team CSC Saxo Bank, Cadel was doing so much work.  This and his crash made his time trial not as succesful as it could&#8217;ve been.  While Carlos was looking smooth and rolling in a nice gear Cadel seemed to be all over his machine grinding at the high gears.  Maybe this tactic wasn&#8217;t so great.  Anyway, onto positive stuff.</p>
<p>Congratulations to Carlos Sastre, Kurt-Asle Arvesen, Fabian Cancellara, Volodymir Gustov, Stuart O&#8217;Grady, Andy Schleck, Fränk Schleck, Nicki Sorensen, Jens Voigt, Kim Andersen, Lars Michaelsen, Bjarne Riis, Torsten Schmidt, Dan Frost Scott Sunderland and other members of Team CSC Saxo Bank.  Maillot jaune, Maillot blanc and Best team - all wonderful achievements.  Another shout-out goes to all the Australians in Le Tour 2008.  You&#8217;ve done our nation proud.</p>
<p>On a final note, I was glad to see that there were hardly any dopers in this years tour.  Ricco you are a fool.</p>
<p>Viva le Tour!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theblahman.net/blog/2008/07/le-tour-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>July July July</title>
		<link>http://www.theblahman.net/blog/2008/07/july-july-july/</link>
		<comments>http://www.theblahman.net/blog/2008/07/july-july-july/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 07:55:51 +0000</pubDate>
		<dc:creator>theblahman</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Talk]]></category>

		<guid isPermaLink="false">http://www.theblahman.net/blog/?p=18</guid>
		<description><![CDATA[Well, what a July this has been.  The Tour de France this year has been very exciting but also put me in a dilema.  Do I follow Team CSC or Cadel Evans.  While I love Team CSC, Australia really needs a winner of Le Tour!  I guess the best result for [...]]]></description>
			<content:encoded><![CDATA[<p>Well, what a July this has been.  The Tour de France this year has been very exciting but also put me in a dilema.<span id="more-18"></span>  Do I follow Team CSC or Cadel Evans.  While I love Team CSC, Australia really needs a winner of Le Tour!  I guess the best result for me is:</p>
<ol>
<li>Cadel Evans (SIL)</li>
<li>Carlos Sastre (CSC)</li>
<li>Frank Schleck (CSC)</li>
</ol>
<p>Here&#8217;s hoping!</p>
<p>Anyway, what else has been happening.  I&#8217;m pushing to get the site released and ready for a design competition.  The site will be released in the last week of August, unless I decide to release it earlier.  </p>
<p>My Beginning PHP book has been&#8230; delayed I guess.  I&#8217;ve been working on it a bit, then leaving it, coming back, re-writing parts of it.  Hopefuly it&#8217;ll be worth it when I release it.</p>
<p> <img src='http://www.theblahman.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theblahman.net/blog/2008/07/july-july-july/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bleugh&#8230;. I need BBCode!</title>
		<link>http://www.theblahman.net/blog/2008/07/bleugh-i-need-bbcode/</link>
		<comments>http://www.theblahman.net/blog/2008/07/bleugh-i-need-bbcode/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 22:00:25 +0000</pubDate>
		<dc:creator>theblahman</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[To Do]]></category>

		<category><![CDATA[BBCode]]></category>

		<category><![CDATA[Bleugh]]></category>

		<guid isPermaLink="false">http://www.theblahman.net/blog/?p=17</guid>
		<description><![CDATA[Well, yesterday I sat down to do the first part of my Beginning PHP tutorials when I discovered that the code tag is just rubbish, not to mention the fact that there doesn&#8217;t seem to be the htmlspecialchars &#8220;effect&#8221; on Wordpress posts so my chevrons didn&#8217;t become &#60; and &#62; respectively.  
&#8220;Bleugh&#8221; I said [...]]]></description>
			<content:encoded><![CDATA[<p>Well, yesterday I sat down to do the first part of my Beginning PHP tutorials when I discovered that the code tag is just rubbish, not to mention the fact that there doesn&#8217;t seem to be the htmlspecialchars &#8220;effect&#8221; on Wordpress posts so my chevrons didn&#8217;t become &lt; and &gt; respectively.<span id="more-17"></span>  </p>
<p>&#8220;Bleugh&#8221; I said to myself.  &#8220;Why doesn&#8217;t Wordpress have a neat&#8217;o code parser like phpBB3?&#8221;  I said to my self after releasing the almighty bleugh.  So, that got me thinking, do I have what it takes to embed the phpBB3 code parser into Wordpress?  </p>
<p>It&#8217;s certainly worth a try, I&#8217;ll write up a tutorial when I&#8217;ve got it figured out.  If anyone happens to know of any good code parsers for Wordpress, would you mind posting them.  The Wordpress search engine is rather shonkey so all my searchs return thousands of results.</p>
<p>&#8220;Bleugh!&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theblahman.net/blog/2008/07/bleugh-i-need-bbcode/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Beginning PHP - The Prologue</title>
		<link>http://www.theblahman.net/blog/2008/07/beginning-php-the-prologue/</link>
		<comments>http://www.theblahman.net/blog/2008/07/beginning-php-the-prologue/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 07:41:01 +0000</pubDate>
		<dc:creator>theblahman</dc:creator>
		
		<category><![CDATA[HowTo]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Beginning]]></category>

		<category><![CDATA[Prologue]]></category>

		<guid isPermaLink="false">http://www.theblahman.net/blog/?p=15</guid>
		<description><![CDATA[Over the last few days I&#8217;ve been writing a guide on beginning PHP.  The guide should be finished within a few days and then released through a series of blog posts and possibly in PDF format as well.
The guide is quite in depth and should help people who are very new to programming in [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last few days I&#8217;ve been writing a guide on beginning PHP.  The guide should be finished within a few days and then released through a series of blog posts and possibly in PDF format as well.<span id="more-15"></span></p>
<p>The guide is quite in depth and should help people who are very new to programming in general.  The guide will contain many code samples and examples on how to do the basic functions in PHP.  With any luck this time next week the whole guide will be released.</p>
<p>See you then <img src='http://www.theblahman.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theblahman.net/blog/2008/07/beginning-php-the-prologue/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.817 seconds -->
