<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>thinkMoult &#187; lol</title>
	<atom:link href="http://thinkmoult.com/tag/lol/feed/" rel="self" type="application/rss+xml" />
	<link>http://thinkmoult.com</link>
	<description>Seriously who ever reads this description.</description>
	<lastBuildDate>Sun, 08 Apr 2012 03:22:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>A little math probablility problem.</title>
		<link>http://thinkmoult.com/2009/07/07/a-little-math-probablility-problem/</link>
		<comments>http://thinkmoult.com/2009/07/07/a-little-math-probablility-problem/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 14:28:13 +0000</pubDate>
		<dc:creator>Dion Moult</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bored]]></category>
		<category><![CDATA[lol]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[nrich]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://thinkmoult.com/?p=739</guid>
		<description><![CDATA[I was originally planning tomorrow to post the new Perspective Magazine for you to ogle at (distribution on Friday!) but I shall delay that and you shall be rewarded for waiting with a PDF you can download of the magazine. Ooh. Instead tonight I had some free time (because tomorrow I shall be skiving school [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>I was originally planning tomorrow to post the<a href="http://thinkmoult.com/2009/06/21/perspective-in-progress/"> new Perspective Magazine</a> for you to ogle at (distribution on Friday!) but I shall delay that and you shall be rewarded for waiting with a PDF you can download of the magazine. Ooh.</p>
<p>Instead tonight I had some free time (because tomorrow I shall be <span style="text-decoration: line-through;">skiving school</span> spending time productively at home) So I decided to look at an NRICH problem. Yes, that&#8217;s right. I was so bored I decided to do math. Edit: Apparently I didn&#8217;t notice the star rating system so it seems as though I picked an easy one.</p>
<p><a href="http://nrich.maths.org/public/viewer.php?obj_id=6550">Click to see problem: Succession in Randomia</a></p>
<p>Let&#8217;s consider a probability tree:</p>
<p style="text-align: center;"><a href="http://thinkmoult.com/wp-content/uploads/2009/07/Diagram2.png"><img class="size-full wp-image-741 aligncenter" title="Diagram2" src="http://thinkmoult.com/wp-content/uploads/2009/07/Diagram2.png" border="0" alt="Diagram2" width="356" height="181" /></a></p>
<p>&#8230; OK. The first thing we notice is that it looks prettier. Let&#8217;s see the series for B now: 1/4 + 1/16 + 1/64 + &#8230; . This is identical to T. We can do the same for L and say we have 2/8 + 2/32 + 2/128 &#8230; which is exactly the same as B and T. Plugging it into a/1-r (r being 1/4) we get 1/3 for all three. Hence we can say that in fact it is a completely unbiased way of choosing a successor.</p>
<p>My answer to that question is therefore: &#8220;<strong>Yeah they have an equal chance</strong>&#8221;</p>
<p>Well, I wasn&#8217;t going to stop here. Why don&#8217;t I simulate it? Here is the coding that simulates the situation (the cheapest brute force technique to tackle the problem):</p>
<p>If you don&#8217;t know programming, go take a read through the code anyway and see if you can get a grasp of what&#8217;s going on :)</p>
<p><code>&lt;?php<br />
// The number of times each king as won.<br />
$bingo = 0;<br />
$toto = 0;<br />
$lotto = 0;</p>
<p>// How many times we are going to do the crowning ceremony<br />
$ceremonies = 10000;</p>
<p>// Loop through these instructions to carry out the crowning ceremony.<br />
for ($i = 1; $i < $ceremonies+1; $i++)<br />
{<br />
    $win = FALSE; # Nobody has become king yet.<br />
    $oddeven = 1; # Because the first throw is odd. Assume 1 = odd, 0 = even.<br />
    $firsttoss = TRUE; # We are tossing for the first time.</p>
<p>    // This variable is used later to determine which variable $x or $y is<br />
    // reassigned a value and which keeps the previous toss value.<br />
    $a = 0;</p>
<p>    // Keep on tossing the coins until somebody wins the kingdom.<br />
    while ($win == FALSE)<br />
    {<br />
        // Here we only flip one coin, this will alternate between $x and $y.<br />
        // The one ($x or $y) that isn't assigned a new value will retain the<br />
        // previous toss value so we can find out whether or not we have got<br />
        // two HH or TT in a row.<br />
        // Assume H = 1, T = 2<br />
        if ($a == 0) {<br />
            $x = rand(1,2);<br />
            $a = $a + 1;<br />
        } elseif ($a > 0) {<br />
            $y = rand(1,2);<br />
            $a = 0;<br />
        }</p>
<p>        if ($firsttoss == TRUE) {<br />
            // Nobody can win on the first toss.<br />
            $firsttoss = FALSE;<br />
        } else {<br />
            // If it is HH and ODD...<br />
            if ($x == 1 &#038;&#038; $y == 1 &#038;&#038; $oddeven == 1) {<br />
                // Lotto will become King.<br />
                $lotto = $lotto + 1;</p>
<p>                // Somebody has won the Kingdom.<br />
                $win = TRUE;<br />
            }</p>
<p>            // If it is TT and ODD...<br />
            if ($x == 2 &#038;&#038; $y == 2 &#038;&#038; $oddeven == 1) {<br />
                // Lotto will become King.<br />
                $lotto = $lotto + 1;</p>
<p>                // Somebody has won the Kingdom.<br />
                $win = TRUE;<br />
            }</p>
<p>            // If it is HH and EVEN...<br />
            if ($x == 1 &#038;&#038; $y == 1 &#038;&#038; $oddeven == 0) {<br />
                // Bingo will become King.<br />
                $bingo = $bingo + 1;</p>
<p>                // Somebody has won the Kingdom.<br />
                $win = TRUE;<br />
            }</p>
<p>            // If it is TT and EVEN...<br />
            if ($x == 2 &#038;&#038; $y == 2 &#038;&#038; $oddeven == 0) {<br />
                // Toto will become King.<br />
                $toto = $toto + 1;</p>
<p>                // Somebody has won the Kingdom.<br />
                $win = TRUE;<br />
            }<br />
        }</p>
<p>        // ... If nobody has won anything ...<br />
        if ($win != TRUE) {<br />
            // We flip again, so Odd->Even or Even->Odd.<br />
            if ($oddeven == 0) {<br />
                $oddeven = 1;<br />
            } else {<br />
                $oddeven = 0;<br />
            }<br />
        }<br />
    }<br />
}</p>
<p>// Tell the computer to print out what results we have.<br />
echo 'Bingo: '. $bingo .'<br />';<br />
echo 'Toto: '. $toto .'<br />';<br />
echo 'Lotto: '. $lotto .'<br />';<br />
?&gt;</code></p>
<p>I ran it and here is an example result I get. Out of 10,000 ceremonies, this is the number of times each king has won:</p>
<p><strong>Bingo: 3322<br />
Toto: 3340<br />
Lotto: 3338</strong></p>
<p>Pretty close, eh?</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://thinkmoult.com/2009/07/07/a-little-math-probablility-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Surviving the Week</title>
		<link>http://thinkmoult.com/2009/02/20/surviving-the-week/</link>
		<comments>http://thinkmoult.com/2009/02/20/surviving-the-week/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 12:53:07 +0000</pubDate>
		<dc:creator>Dion Moult</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[lol]]></category>
		<category><![CDATA[survival]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://thinkmoult.com/?p=472</guid>
		<description><![CDATA[Well, I took a break on the last scheduled post because that Perspective release was considered a &#8220;big&#8221; thing. Mock exams (to mock us, obviously) are coming up in about a weeks time, and I am disgusted with my current state of revision &#8211; or lack of it. Why I am still typing this blog [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p><a href="http://thinkmoult.com/wp-content/uploads/2009/02/fat_geek.jpg"><img class="alignright size-full wp-image-473" style="margin: 10px;" title="fat_geek" src="http://thinkmoult.com/wp-content/uploads/2009/02/fat_geek.jpg" alt="fat_geek" width="360" height="241" /></a>Well, I took a break on the last scheduled post because that Perspective release was considered a &#8220;big&#8221; thing. Mock exams (to mock us, obviously) are coming up in about a weeks time, and I am disgusted with my current state of revision &#8211; or lack of it. Why I am still typing this blog post I don&#8217;t know, but I think it&#8217;s great to share a bit about what&#8217;s going on (or whatever I deem suitable for online viewing &#8211; which isn&#8217;t much).</p>
<p>Today is penguin day. That&#8217;s because it&#8217;s a Friday. The story behind this was during my work experience, where apparently Fridays were when people would come late to work, and bum around most of the day &#8211; hence bringing along the slang term of &#8220;waddling&#8221;. This then slowly evolved into the weekly celebration of Penguin day. I&#8217;ve taken this into my own schedule, meaning Fridays are the days when I am more slack than usual. This usually leads to either a 8:30PM curfew or a 2:30AM curfew, depending on what I indulge myself in.</p>
<p>The past week I&#8217;ve been home alone. Aside from the shortened periods of sleep time and slightly less bother on privacy (OK &#8211; let&#8217;s stray away from the TMI swamps), some of the more interesting revelations on &#8220;how to live like a lazy bum&#8221; were reallised.</p>
<p>For example, only use a fork. If it&#8217;s soup, just tilt the plate/bowl/saucepan back and slurp it up. A spoon isn&#8217;t required. A knife? That&#8217;s why we have teeth, you know. To carnivorously rip apart our food.</p>
<p>Just eat straight from the saucepan you cook in. This saves you having to wash a plate, and the absolute requirement of you having to wash the pan before your next meal serves as an indirect form of motivation to do the &#8220;dishes&#8221;. If you&#8217;re having toast, that&#8217;s even easier, you don&#8217;t need any cutlery nor dishes.</p>
<p>Trash? You don&#8217;t need a trash bag. Just dump it in a common area (you&#8217;ll create hardly any trash anyway &#8211; just the regular packaging) and every morning before you go out to school &#8211; because you&#8217;re going out anyway, throw it in the outside bin. If you purchase take away food from outside, eat it whilst walking home. By the time you&#8217;ve reached home, you would&#8217;ve already been able to dispose of the<br />
garbage.</p>
<p style="text-align: left">Cleaning up your room/bed/any sort of house cleaning can be neglected for a couple days. If you don&#8217;t bother to sleep on your bed, you don&#8217;t need to clean it. If you don&#8217;t bother to turn on the lights, draw the curtains, open the windows or even turn on the aircon, these are less little minorities you have to bother about.</p>
<p style="text-align: left">Dirty laundry can also be minimized if you don&#8217;t bother to change your clothes or bother to wear anyt- ok. Danger zone.</p>
<p style="text-align: left">Alright &#8211; that was enough of for a &#8220;personal life&#8221; post. I promise the next post won&#8217;t be random and will actually be related to technology &#8211; and really interesting. I also apologize for the image if it has scarred any of you.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://thinkmoult.com/2009/02/20/surviving-the-week/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Poetry Anthology Competition Presentation</title>
		<link>http://thinkmoult.com/2008/11/22/poetry-anthology-competition-presentation/</link>
		<comments>http://thinkmoult.com/2008/11/22/poetry-anthology-competition-presentation/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 05:07:17 +0000</pubDate>
		<dc:creator>Dion Moult</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[anthology]]></category>
		<category><![CDATA[blender]]></category>
		<category><![CDATA[competition]]></category>
		<category><![CDATA[lol]]></category>
		<category><![CDATA[poetry]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[rickroll]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://thinkmoult.com/?p=290</guid>
		<description><![CDATA[I&#8217;m taking a bit of a break from my computer, Gentoo, KDE, etc related articles yet again to talk a bit about the vast array of creative and multimedia related creations I produce once in a while. Seeing as you guys must be bored out of your minds from the thumbnails I&#8217;ve released of the [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m taking a bit of a break from my computer, Gentoo, KDE, etc related articles yet again to talk a bit about the vast array of creative and multimedia related creations I produce once in a while. Seeing as you guys must be bored out of your minds from the thumbnails I&#8217;ve released of the magazine I&#8217;ve been working on, Perspective (see <a href="http://thinkmoult.com/2008/10/13/perspective-previews/">Issue 1</a>, and the <a href="http://thinkmoult.com/2008/11/16/perspective-nov-2008-distributed/">more recent Issue 2</a>), I&#8217;ve decided to release online a fun presentation I had to do.</p>
<blockquote><p>The teachers at my school have learned that I know animation, so they&#8217;ve taken to shoving every presentation they need at me. This one, being a presentation on a poetry competition (seriously, all I can say is &#8220;this is the deadline, these are the themes, get working now&#8221;) has sparked off a rebellious nerve in my body, causing some unwarranted video of flying penguins to find its way into the choreography, as well as an opportunity to rickroll my whole school!</p></blockquote>
<p>Anyways, here is the video:</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=2089590&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="300" src="http://vimeo.com/moogaloop.swf?clip_id=2089590&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object><br />
<a href="http://vimeo.com/2089590">Poetry Anthology Competition</a> from <a href="http://vimeo.com/user872989">Dion Moult</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>Tools used were Blender and Macromedia Flash. Flash was used for the 2D animation, then exported into Blender. Blender was used for the 3D animation, compositing, and the final video sequencing. A tad bit of Audacity was used as well for sound equalizing and syncing, but that didn&#8217;t take up a huge role. Total time taken to produce was approximately 10 hours (including rendering time). Oh, and the stand-up poet clip at the end was compulsory to include, and not part of my doing at all.</p>
<p>And yes, I love the fact that I got to rickroll the entire school.</p>
<p>Other credits go to Florentyna Leow, who gave me the quotes and got the videos of penguins and Rick Astley for me.</p>
<p>Oh, and <a href="http://vimeo.com/2089590/">here&#8217;s the link</a> to the Vimeo webpage if you&#8217;ve got something against me embedding the video in my blog post. The Vimeo page has a link to download the original 221MB mpg file.</p>
<p>Promise a back-to-techy stuff article soon.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://thinkmoult.com/2008/11/22/poetry-anthology-competition-presentation/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Now with &#8230; 2.6.25-gentoo-r9!</title>
		<link>http://thinkmoult.com/2008/11/18/now-with-2625-gentoo-r9/</link>
		<comments>http://thinkmoult.com/2008/11/18/now-with-2625-gentoo-r9/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 08:40:38 +0000</pubDate>
		<dc:creator>Dion Moult</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[alsa]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[intel]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[lol]]></category>
		<category><![CDATA[sound]]></category>

		<guid isPermaLink="false">http://thinkmoult.com/?p=282</guid>
		<description><![CDATA[Being somewhat of a techy-related blog, I guess that should warrant a post on my recent battle with the Kernel gentoo-sources 2.6.25-gentoo-r9. The version I was running before was r7, which was sadly two revisions out of date. :( Even worse before that was I was using 2.6.24-r4. Which was a whole version out of [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Being somewhat of a techy-related blog, I guess that should warrant a post on my recent battle with the Kernel gentoo-sources 2.6.25-gentoo-r9. The version I was running before was r7, which was sadly two revisions out of date. :( Even worse before that was I was using 2.6.<strong>24</strong>-r4. Which was a whole version out of date. To end with a climax, before that I was using 2.6.<strong>19</strong>-r5, which was FIVE versions out of date. This probablys shows I&#8217;m getting better at time management, or I&#8217;m getting more uncomfortable with the notion of &#8220;<em>if it ain&#8217;t broke, don&#8217;t fix it</em>&#8220;.</p>
<p>Using Gentoo, one is expected to be rather capable of compiling and configuring a linux kernel. Side effects include 1) <em>a Gentoo user is therefore able to optimise a system for his/her hardware,</em> and 2) <em>the Gentoo Linux Distribution becomes one of the geekiest available</em>. (trumped only by LFS). So there I was, poking around my list of packages when I noticed <em>bah! I&#8217;m two revisions out of date</em>. I woosh off in all glory to my /usr/src/linux, make menuconfig, zoom around enabling drivers and removing unnecessary crud (seriously, I thought reiserfs was dead? Even worse, it assumes I want OSS instead of ALSA?). Some minutes later, I save my configuration, quit, and compile make &amp;&amp; make modules_install. Baah-dum-bah-bee. Flawless compile. Copy the bzImage to my /boot, (whoah, I&#8217;ve got a lot of old kernel builds there &#8211; I should remove them), name it something intelligent (like kernel-2.6.25-gentoo-r9), add a new entry into my grub.conf to boot to r9 as well as r7, then type in the magic word: &#8220;reboot&#8221;.</p>
<p>Oh, wait! &#8211; you say, where is the problem? No problem! (or so I thought) No kernel panics, no nothing fancy, no forgetting to add filesystem support &#8230; so I punch up startx, ratpoison, KDE loads, start surfing the web, chatting on Kopete, grooving along to my &#8230; wait, <em>what? NO MUSIC?</em> Panic. I check my mpc. It&#8217;s playing. I check my mpd, it&#8217;s on. Check alsamixer and whooooop-what? No alsamixer? Not good. Oh wait I said, I remember I removed it from runlevel to speed up boot-time. So I /etc/init.d/alsasound start. and then catastrophe strikes! No drivers detected?</p>
<p>Rush back to my kernel menuconfig, Device Drivers -&gt; Sound -&gt; ALSA (check OSS is disabled) -&gt; PCI Devices -&gt; hmm&#8230; Yes, I do have  Intel/SiS/nVidia/AMD/ALi AC97 Controller enabled. Time to double check if that&#8217;s the right one. Read the doc on it, and yep &#8211; it&#8217;s snd-intel8x0 for sure. Perhaps it&#8217;s a module problem? Modprobe snd-intel8x0 gives me FATAL: NO MODULES FOUND. Oh no!</p>
<p><em>&#8212; Cut: I thought I could turn a very geeky issue into a dramatic story but apparently I was wrong &#8212;</em></p>
<p>Ok. So I ended up having to unmask alsa-driver and alsa-headers, then dump ALSA_CARDS=&#8221;intel8x0&#8243; into my etc/make.conf, then emerge alsa-driver. How silly, in my opinion, that I should require a <em>non-supported</em> package <em>after</em> a kernel upgrade. I&#8217;ve sent the alsa-bugs guys an email asking them what&#8217;s going on, and hopefully I&#8217;ll get an answer soon about why the in-kernel driver no longer likes my computer.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://thinkmoult.com/2008/11/18/now-with-2625-gentoo-r9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A baby named Linux</title>
		<link>http://thinkmoult.com/2008/10/17/a-baby-named-linux/</link>
		<comments>http://thinkmoult.com/2008/10/17/a-baby-named-linux/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 09:12:11 +0000</pubDate>
		<dc:creator>Dion Moult</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[baby]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[lol]]></category>
		<category><![CDATA[name]]></category>

		<guid isPermaLink="false">http://thinkmoult.com/?p=202</guid>
		<description><![CDATA[I&#8217;m sorry. I might like Linux but I can see that pencil thin line (yes, that means it&#8217;s erasable) that differentiates (argh! Calculus!) between appreciation and fanaticism. I&#8217;ve done my share of blatant Linux propaganda (with a fair few converts) but I&#8217;ve dimmed down a bit now. If people want me to help with their [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><img class="alignright" title="Baby named Linux" src="http://www.linux.com/var/uploads/Image/articles/149992.jpg" alt="" width="350" height="263" />I&#8217;m sorry. I might like Linux but I can see that pencil thin line (yes, that means it&#8217;s erasable) that differentiates (argh! Calculus!) between appreciation and fanaticism. I&#8217;ve done my share of blatant Linux propaganda (with a fair few converts) but I&#8217;ve dimmed down a bit now. If people want me to help with their computer woes, the first thing I&#8217;ll suggest is to switch to Linux, but otherwise, I&#8217;ve generally stopped blasting &#8220;Thou are ignorant&#8221; speeches to random passers-by.</p>
<p style="text-align: left;">Excellent example of <em>ultimate Linux fanatic</em> (fanatic in this context is used in the negative sense of the word) goes to Christian Nielson (and his girlfriend). I&#8217;m sorry. This is almost as crazy as <a href="http://www.legalzoom.com/legal-articles/Most-Outrageous-Name-Changes-.html">the guy who changed his name to Optimus Prime (and various others)</a>. By itself, the word Linux is a pretty good name &#8211; in fact, that&#8217;s mainly the reason Linux did better than BSD: the name sounded cooler. However, I think we should think again before naming our kids after products. Think about their future and whether you&#8217;d appreciate it if we named you &#8220;Lolcat&#8221;.</p>
<h2 style="text-align: left;"><a href="http://www.linux.com/feature/149992">Click to read the article.</a></h2>
<p style="text-align: left;">Epic example of how the world as we know it is plain crazy. (Read the comments to the post too, they&#8217;re just as insightful)</p>
<h2 style="text-align: center;"><img class="aligncenter" title="XKCD" src="http://imgs.xkcd.com/comics/babies.png" alt="" width="325" height="381" /></h2>
<p style="text-align: left;">OK, that&#8217;s it for today&#8217;s post. Signing off:<em> iDion iMoult</em>.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://thinkmoult.com/2008/10/17/a-baby-named-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cause of the open-source lag.</title>
		<link>http://thinkmoult.com/2008/10/05/cause-of-the-open-source-lag/</link>
		<comments>http://thinkmoult.com/2008/10/05/cause-of-the-open-source-lag/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 18:11:02 +0000</pubDate>
		<dc:creator>Dion Moult</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[lol]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[richard stallman]]></category>

		<guid isPermaLink="false">http://thinkmoult.com/?p=176</guid>
		<description><![CDATA[Quite accidentally, I&#8217;ve probably discovered the very thing the turns people away from open source (or, the free movement). That very thing is actually caused by the oh-so-famous Richard Stallman, who decided to take the liberty to sing the &#8220;free software song&#8221;. Listen to it. If you didn&#8217;t feel like repenting for your sins or [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p><a href="http://thinkmoult.com/wp-content/uploads/2008/10/rms-20070401.jpeg"><img class="alignright size-medium wp-image-179" title="rms-20070401" src="http://thinkmoult.com/wp-content/uploads/2008/10/rms-20070401-270x300.jpg" alt="" width="270" height="300" /></a></p>
<p>Quite accidentally, I&#8217;ve probably discovered the very thing the turns people away from open source (or, the free movement). That very thing is actually caused by the oh-so-famous <a href="http://en.wikipedia.org/wiki/Richard_Stallman">Richard Stallman</a>, who decided to take the liberty to sing the &#8220;free software song&#8221;.</p>
<p><strong><a href="http://www.gnu.org/music/free-software-song.au">Listen to it</a>.</strong></p>
<p>If you didn&#8217;t feel like repenting for your sins or strangling yourself, or if your eyes brighten (reason left for interpretation) when you see the photo to the right &#8230;</p>
<p>&#8230; well, I am concerned about the state of the world as we know it.</p>
<p>Seriously, if you want to advertise something, don&#8217;t record something that makes William Hung look good, especially if you&#8217;re seen as a pioneer in that subject. I&#8217;ll even go so far to compare it to Microsoft&#8217;s recent ads featuring Bill Gates waggling various parts of his anatomy (including, but not limited to, his backside). Thank goodness that song was shoved to a corner on the gnu website.</p>
<p>Note: I understand the differences between open-source and free software, as well as Gnu, Unix and Linux. Nothing here is intended as a personal insult (sorry, but to be blunt perhaps yeah, I really felt like choking when I listened to that), and anything taken personally is regretted.</p>
<p>Oh, and for those who read my article on the <a href="http://thinkmoult.com/2008/10/01/linux-open-source-theory/">practicality of the open source theory</a>, apparently the newly predicted year of Linux domination is 2018 &#8211; that&#8217;s about 7% market share per year.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://thinkmoult.com/2008/10/05/cause-of-the-open-source-lag/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://www.gnu.org/music/free-software-song.au" length="865531" type="audio/basic" />
		</item>
		<item>
		<title>Warning: you must be stupid.</title>
		<link>http://thinkmoult.com/2008/09/16/warning-you-must-be-stupid/</link>
		<comments>http://thinkmoult.com/2008/09/16/warning-you-must-be-stupid/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 09:54:53 +0000</pubDate>
		<dc:creator>Dion Moult</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[lol]]></category>

		<guid isPermaLink="false">http://thinkmoult.com/?p=152</guid>
		<description><![CDATA[Useful information stuff: Most of the 350-018 and 70-284 professionals who are interested in 650-393 need to start preparing for 642-446 as well as 642-503 right away. I&#8217;m sorry but for all the fake phishing and whatnot websites in the world this is officially the worst I have seen for this year. http://compedmelodi.net/ I&#8217;m npot [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p><span style="color: #c0c0c0;"><em>Useful information stuff:</em><br />
Most of the <a href="http://www.testking-questions.com/exam/350-018.htm">350-018</a> and <a href="http://www.testking-questions.com/exam/70-284.htm">70-284</a> professionals who are interested in <a href="http://www.testking-questions.com/exam/650-393.htm">650-393</a> need to start preparing for <a href="http://www.testking-questions.com/exam/642-446.htm">642-446</a> as well as <a href="http://www.testking-questions.com/exam/642-503.htm">642-503</a> right away.</span></p>
<p>I&#8217;m sorry but for all the fake phishing and whatnot websites in the world this is officially the worst I have seen for this year.</p>
<p>http://compedmelodi.net/</p>
<p>I&#8217;m npot even goindg to tel you nogt to fal for itt.</p>
<p>(I&#8217;m just putting some stuff you might/or might not be interested in before the release of my latest project &#8211; don&#8217;t worry: it&#8217;s worth the wait)</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://thinkmoult.com/2008/09/16/warning-you-must-be-stupid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Real Life: A Review by GameSpot</title>
		<link>http://thinkmoult.com/2008/09/14/real-life-a-review-by-gamespot/</link>
		<comments>http://thinkmoult.com/2008/09/14/real-life-a-review-by-gamespot/#comments</comments>
		<pubDate>Sun, 14 Sep 2008 06:50:43 +0000</pubDate>
		<dc:creator>Dion Moult</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[gamespot]]></category>
		<category><![CDATA[lol]]></category>
		<category><![CDATA[real life]]></category>

		<guid isPermaLink="false">http://thinkmoult.com/?p=150</guid>
		<description><![CDATA[Useful information stuff: Doing 640-816 and 70-647 prepares one for 70-271 as well as 70-293 and PMI-001, as well as saves time, by exempting one from 70-294. I don&#8217;t usually condone game reviews but this one certainly caught my eye. GameSpot Review: Real Life (9.6/10) P.S. Sorry about the lack of updates &#8211; I&#8217;m working [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p><span style="color: #c0c0c0;"><em>Useful information stuff:</em><br />
Doing <a href="http://www.testking-questions.com/exam/640-816.htm">640-816</a> and <a href="http://www.testking-questions.com/exam/70-647.htm">70-647</a> prepares one for <a href="http://www.testking-questions.com/exam/70-271.htm">70-271</a> as well as <a href="http://www.testking-questions.com/exam/70-293.htm">70-293</a> and <a href="http://www.testking-questions.com/exam/PMI-001.htm">PMI-001</a>, as well as saves time, by exempting one from <a href="http://www.testking-questions.com/exam/70-294.htm">70-294</a>.</span></p>
<p>I don&#8217;t usually condone game reviews but this one certainly caught my eye.</p>
<h1><a href="http://www.gamespot.com/gamespot/features/all/gamespotting/071103minusworld/1.html">GameSpot Review: Real Life (9.6/10)</a></h1>
<p>P.S. Sorry about the lack of updates &#8211; I&#8217;m working on something big which should be released very soon.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://thinkmoult.com/2008/09/14/real-life-a-review-by-gamespot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boxcat in a Catbox</title>
		<link>http://thinkmoult.com/2008/09/01/boxcat-in-a-catbox/</link>
		<comments>http://thinkmoult.com/2008/09/01/boxcat-in-a-catbox/#comments</comments>
		<pubDate>Sun, 31 Aug 2008 14:20:08 +0000</pubDate>
		<dc:creator>Dion Moult</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[boxcat]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[lol]]></category>

		<guid isPermaLink="false">http://thinkmoult.com/?p=137</guid>
		<description><![CDATA[Useful information stuff: You cannot become an SY0-101 or N10-003 professional until or unless you clear 642-812 as well as 70-431 and 350-030 with flying colors. An extra 220-602 would not hurt either. With the ability to now use my fingers (yeah, I have 96 fingers) to count the hours before my holiday ends, I&#8217;ve [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p><span style="color: #c0c0c0;"><em>Useful information stuff:</em><br />
You cannot become an <a href="http://www.testking-questions.com/exam/SY0-101.htm">SY0-101</a> or <a href="http://www.testking-questions.com/exam/N10-003.htm">N10-003</a> professional until or unless you clear <a href="http://www.testking-questions.com/exam/642-812.htm">642-812</a> as well as <a href="http://www.testking-questions.com/exam/70-431.htm">70-431</a> and <a href="http://www.testking-questions.com/exam/350-030.htm">350-030</a> with flying colors. An extra <a href="http://www.testking-questions.com/exam/220-602.htm">220-602</a> would not hurt either.</span></p>
<p>With the ability to now use my fingers (yeah, I have 96 fingers) to count the hours before my holiday ends, I&#8217;ve decided to do something useful so that people would actually say, &#8220;yes, my good sir, <em>that</em> is an accomplishment.&#8221; So, my good sir, what is an accomplishment? (I would reply) and they would post a comment (hint).</p>
<p>In unrelated news, I&#8217;ve noticed that once I post <a href="http://thinkmoult.com/2008/08/22/watch-the-time/">something that doesn&#8217;t show you one of my creations</a>, you don&#8217;t even bother to leave a comment. That&#8217;s right, you ungrateful ******** (starts with b, ends with s, plural). In any sense, I&#8217;ve learnt (actually, learnt isn&#8217;t a word, the correct usage is <em>learned</em> &#8211; but I don&#8217;t go to English class anymore, do I?) that I should spoon feed you more crazy stuff of mine.</p>
<p><strong>Boxcat!</strong> Oh, Boxcat, the wonderful cat friend of Catface, star from <a href="http://www.weebls-stuff.com/catface/">weebls-stuff&#8217;s catface series</a>. So, in a small tribute to boxcat, I have <em>built</em> Boxcat. Well, actually, here&#8217;s what happened.</p>
<p><strong>Problem: </strong>I have a 10 year old computer that randomly crashes (well, Windows, what do you know), and the only way to fix it is to whack it repeatedly (not joking).</p>
<p><strong>Solution: </strong>take it apart, find out what is causing the loose connection or whatever, and put it in a box.</p>
<p>Ok, Image fun fun time now (in no particular order):</p>

<a href='http://thinkmoult.com/2008/09/01/boxcat-in-a-catbox/dsc00144/' title='dsc00144'><img width="150" height="150" src="http://thinkmoult.com/wp-content/uploads/2008/09/dsc00144-150x150.jpg" class="attachment-thumbnail" alt="dsc00144" title="dsc00144" /></a>
<a href='http://thinkmoult.com/2008/09/01/boxcat-in-a-catbox/dsc00146/' title='dsc00146'><img width="150" height="150" src="http://thinkmoult.com/wp-content/uploads/2008/09/dsc00146-150x150.jpg" class="attachment-thumbnail" alt="dsc00146" title="dsc00146" /></a>
<a href='http://thinkmoult.com/2008/09/01/boxcat-in-a-catbox/dsc00149/' title='dsc00149'><img width="150" height="150" src="http://thinkmoult.com/wp-content/uploads/2008/09/dsc00149-150x150.jpg" class="attachment-thumbnail" alt="dsc00149" title="dsc00149" /></a>
<a href='http://thinkmoult.com/2008/09/01/boxcat-in-a-catbox/dsc00150/' title='dsc00150'><img width="150" height="150" src="http://thinkmoult.com/wp-content/uploads/2008/09/dsc00150-150x150.jpg" class="attachment-thumbnail" alt="dsc00150" title="dsc00150" /></a>
<a href='http://thinkmoult.com/2008/09/01/boxcat-in-a-catbox/dsc00152/' title='dsc00152'><img width="150" height="150" src="http://thinkmoult.com/wp-content/uploads/2008/09/dsc00152-150x150.jpg" class="attachment-thumbnail" alt="dsc00152" title="dsc00152" /></a>
<a href='http://thinkmoult.com/2008/09/01/boxcat-in-a-catbox/dsc00153/' title='dsc00153'><img width="150" height="150" src="http://thinkmoult.com/wp-content/uploads/2008/09/dsc00153-150x150.jpg" class="attachment-thumbnail" alt="dsc00153" title="dsc00153" /></a>
<a href='http://thinkmoult.com/2008/09/01/boxcat-in-a-catbox/dsc00155/' title='dsc00155'><img width="150" height="150" src="http://thinkmoult.com/wp-content/uploads/2008/09/dsc00155-150x150.jpg" class="attachment-thumbnail" alt="dsc00155" title="dsc00155" /></a>
<a href='http://thinkmoult.com/2008/09/01/boxcat-in-a-catbox/dsc00156/' title='dsc00156'><img width="150" height="150" src="http://thinkmoult.com/wp-content/uploads/2008/09/dsc00156-150x150.jpg" class="attachment-thumbnail" alt="dsc00156" title="dsc00156" /></a>
<a href='http://thinkmoult.com/2008/09/01/boxcat-in-a-catbox/dsc00158/' title='dsc00158'><img width="150" height="150" src="http://thinkmoult.com/wp-content/uploads/2008/09/dsc00158-150x150.jpg" class="attachment-thumbnail" alt="dsc00158" title="dsc00158" /></a>

<p>So, the final product even had a tail (trailing power cord) and some eyes (LED), and a fashionably marker-pen drawn mush. Oh, I also found that a simulated whacking does fix it. (and yes, I did find the loose connection). Also, in the making of Boxcat, the original power switch was broken, so now to turn it on I have to simulate &#8220;pressing the switch&#8221; by touching two exposed wires together with precise timing. Awesome, is it not?</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://thinkmoult.com/2008/09/01/boxcat-in-a-catbox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Watch the Time</title>
		<link>http://thinkmoult.com/2008/08/22/watch-the-time/</link>
		<comments>http://thinkmoult.com/2008/08/22/watch-the-time/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 10:48:56 +0000</pubDate>
		<dc:creator>Dion Moult</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[lol]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[watch]]></category>

		<guid isPermaLink="false">http://thinkmoult.com/?p=94</guid>
		<description><![CDATA[&#8230;or rather, only if you can understand that contraption on your wrist. Or on other parts of your body. I&#8217;ve been having my holiday, hence the complete lack of discipline on adding posts here. However, being in Australia (after visiting Manchester, Paris and Amsterdam), I&#8217;m obliged to write something to keep you guys occupied whilst [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="TokyoFlash Futuristic Watch" src="http://www.tokyoflash.com/pics/OBR002_m.jpg" alt="" width="230" height="300" />&#8230;or rather, only if you can understand that contraption on your wrist. Or on other parts of your body.</p>
<p>I&#8217;ve been having my holiday, hence the complete lack of discipline on adding posts here. However, being in Australia (after visiting Manchester, Paris and Amsterdam), I&#8217;m obliged to write something to keep you guys occupied whilst I enjoy <strong>not doing anything</strong>. Of course, when I&#8217;m back I will chain myself to creative slavery and produce such whoo-ed stuff you&#8217;d probably hit that refresh button the whole day.</p>
<p>Seems as though some Japanese company has been taking the initiative to show that not only is Japan the leading country in providing toilets that have more knobs that provide a list of features longer than my &#8230; well, a lot of features, Japans is <em>also</em> the leading country in providing Watches that look as though <a href="http://thinkgeek.com">ThinkGeek</a> should be shamed at their amateurish geekware.</p>
<p>Not only do these watches tell the time, some help train your math skills, your resilience to oscillating images, your ability to easily wrap a large cloth around the arm, and even your ability to read binary. Not saying that the watches are completely just for fun &#8230; I&#8217;d gladly wear (some of) these if I had them (for free).</p>
<p>Well, don&#8217;t just listen to me, it&#8217;s time (no pun intended) for you to watch (seriously) it <a href="http://www.tokyoflash.com/">yourself</a>.</p>
<p>Which is your favourite watch?</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://thinkmoult.com/2008/08/22/watch-the-time/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

