<?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>Some Brisbane Guy &#187; Super Interesting</title>
	<atom:link href="http://kentwell.net/glenn/category/super_interesting/feed/" rel="self" type="application/rss+xml" />
	<link>http://kentwell.net/glenn</link>
	<description>Or, 101 Ways to Improve Your Life. And that's ironclad!</description>
	<lastBuildDate>Thu, 15 Oct 2009 13:08:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Best Business Cards Ever</title>
		<link>http://kentwell.net/glenn/2009/04/best-business-cards-ever/</link>
		<comments>http://kentwell.net/glenn/2009/04/best-business-cards-ever/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 16:04:09 +0000</pubDate>
		<dc:creator>the same clown</dc:creator>
				<category><![CDATA[Super Interesting]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[business card]]></category>
		<category><![CDATA[comedy]]></category>
		<category><![CDATA[funny]]></category>

		<guid isPermaLink="false">http://kentwell.net/glenn/?p=329</guid>
		<description><![CDATA[Check out Steve Martin&#8217;s business card:

This guy&#8217;s pretty convinced about his own business card too &#8211; it took him 25 years to design it! Love the quote: &#8220;I build crowds &#8211; guaranteed!  What do you do guaranteed?&#8221;  Hahaha. 
Edit: Oh I want to choose more quotes but there&#8217;s too many!  &#8220;It doesn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Check out <a href="http://www.imdb.com/name/nm0000188/">Steve Martin</a>&#8217;s business card:<br />
<img src="http://neatorama.cachefly.net/images/2009-04/steve-martin-business-card.jpg" alt="Steve Martin's business card" /></p>
<p>This guy&#8217;s pretty convinced about his own business card too &#8211; it took him 25 years to design it! Love the quote: &#8220;I build crowds &#8211; guaranteed!  What do you do guaranteed?&#8221;  Hahaha. </p>
<p><strong>Edit:</strong> Oh I want to choose more quotes but there&#8217;s too many!  &#8220;It doesn&#8217;t fit in a rolodex because it doesn&#8217;t <em>belong</em> in a rolodex.&#8221;</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/4YBxeDN4tbk&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/4YBxeDN4tbk&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>The business card of <a href="http://www.dullest.com/blog/the-best-business-card-ever/">W. W. Green of &#8220;Enterprises Un Ltd.&#8221;</a> also deserves a mention, it&#8217;s pretty creative.</p>
]]></content:encoded>
			<wfw:commentRss>http://kentwell.net/glenn/2009/04/best-business-cards-ever/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>External USB Hard Disk Performance</title>
		<link>http://kentwell.net/glenn/2009/04/external-usb-hard-disk-performance/</link>
		<comments>http://kentwell.net/glenn/2009/04/external-usb-hard-disk-performance/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 17:40:44 +0000</pubDate>
		<dc:creator>the same clown</dc:creator>
				<category><![CDATA[Super Interesting]]></category>

		<guid isPermaLink="false">http://kentwell.net/glenn/?p=313</guid>
		<description><![CDATA[I&#8217;ve got a 320GB 7200RPM drive in an external USB housing that I use for extra storage and backup with my 15&#8243; Macbook Pro. I also use Parallels a fair bit because I do ASP and ASP.NET web development, so I was wondering if it&#8217;d be faster to run the Parallels VM off the external [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got a 320GB 7200RPM drive in an external USB housing that I use for extra storage and backup with my 15&#8243; Macbook Pro. I also use Parallels a fair bit because I do ASP and ASP.NET web development, so I was wondering if it&#8217;d be faster to run the Parallels VM off the external hard disk, so that the internal one could be reserved for OS X duties including virtual memory paging.</p>
<p>I read a blog post that <a href="http://blog.1530technologies.com/2006/12/parallels_perfo.html">advises not to use an external USB hard disk to host your Parallels VM</a>, but it&#8217;s mainly theory based on bus speeds and whatnot.  In theory, there is no difference between theory and practice. But, in practice, there is. </p>
<p>So I thought I&#8217;d write a C program to write a fairly large file to both the local hard disk and the USB disk, and time them to see which one is faster.  Here are the results:</p>
<p>USB drive (Seagate 3.5&#8243; 320GB 7200rpm with 8MB cache):</p>
<blockquote><p>/Volumes/EVERYTHING_/writeperf.txt<br />
real    0m10.278s<br />
user    0m0.396s<br />
sys     0m0.386s</p></blockquote>
<p>Internal drive (Fujitsu 2.5&#8243; 120GB 5400rpm with 8MB cache):</p>
<blockquote><p>/Users/glennkentwell/Documents/Code/C/writeperf.txt<br />
real    0m2.480s<br />
user    0m0.233s<br />
sys     0m0.414s</p></blockquote>
<p>As you can see, a huge difference in the real time taken to write the file. There&#8217;s not much difference in the amount of CPU time (0.18 seconds) which is not surprising, as most of the time would be spent waiting for the data to transmit across the USB cable, and the SATA bus is very fast.  I should really have run this multiple times and taken the average, but I can&#8217;t be bothered so instead I&#8217;ve just run it a bunch of times and taken a result that looks typical to me <img src='http://kentwell.net/glenn/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>This is hardly an exhaustive test &#8212; I didn&#8217;t even try reading from the disk or doing random access, because I just wanted a rough idea how big the differences are.  Nevertheless, here is my code and the <code>bash</code> script I wrote to run this </p>
<p>C code: (at <a href="http://pastie.org/451538">pastie.org</a><a>)<br />
<script src='http://pastie.org/451538.js'></script></p>
<p>To compile:<br />
<code>gcc writeperf.c -o writeperf</code></p>
<p>To run (you&#8217;ll need to change the paths to suit your filesystem, obviously):<br />
<code> while true; do time ./writeperf /Volumes/EVERYTHING_/writeperf.txt; time ./writeperf ~/Documents/Code/C/writeperf.txt ; done</code></p>
<p>I take no responsibility for anything you damage with this code <img src='http://kentwell.net/glenn/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </a></p>
]]></content:encoded>
			<wfw:commentRss>http://kentwell.net/glenn/2009/04/external-usb-hard-disk-performance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Last Web Appplication You Will Ever Need?</title>
		<link>http://kentwell.net/glenn/2008/06/the-last-web-appplication-you-will-ever-need/</link>
		<comments>http://kentwell.net/glenn/2008/06/the-last-web-appplication-you-will-ever-need/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 15:28:32 +0000</pubDate>
		<dc:creator>the same clown</dc:creator>
				<category><![CDATA[Super Interesting]]></category>

		<guid isPermaLink="false">http://kentwell.net/glenn/295</guid>
		<description><![CDATA[OK I admit that the title of this post is slightly hyperbolic, but I&#8217;ve just installed and started using PmWiki to replace my well-worn, dog-eared copy of ASPWiki that I have loved so well since about 2003, I think.  And, I&#8217;ve gotta say that I love it!  Out of the box it&#8217;s simple [...]]]></description>
			<content:encoded><![CDATA[<p>OK I admit that the title of this post is <i>slightly</i> hyperbolic, but I&#8217;ve just installed and started using <a href="http://pmwiki.com/wiki">PmWiki</a> to replace my well-worn, dog-eared copy of <a href="http://c2.com/cgi/wiki?AspWiki">ASPWiki</a> that I have loved so well since about 2003, I think.  And, I&#8217;ve gotta say that I love it!  Out of the box it&#8217;s simple and easy to use, easy to setup, doesn&#8217;t require a database (PmWiki uses flat files for storage, which I think makes sense for big slabs of text content), but it&#8217;s flexible and extensible and there&#8217;s a great ecosystem around it with a metric assload of cutely named &#8220;Cookbook Recipes&#8221; instead of the over-used &#8220;extensions&#8221;, &#8220;add-ons&#8221; or &#8220;plug-ins&#8221;.</p>
<p><img src="/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=2566&#038;g2_serialNumber=1" align="left" alt="PmWiki screenshot" /></p>
<p>I chose PmWiki because I was looking for a PHP-based (for <a href="http://www.mediatemple.net/">web-hosting reasons</a>) wiki that&#8217;s small and simple, and then found out that it&#8217;s also really extensible and easy to customise to your liking, which of course I&#8217;ve done as part of my usual procrastination routine &#8212; see my snazzy theme in the attached screenshot.  I also very much like and agree with its philosophy:</p>
<ol>
<li>Favor writers over readers</li>
<li>Don&#8217;t try to replace HTML</li>
<li>Avoid gratuitous features (or &#8220;creeping featurism&#8221;)</li>
<li>Support collaborative maintenance of public web pages</li>
<li>Be easy to install, configure, and maintain</li>
</ol>
<p>And just have a look at <a href="http://pmwiki.com/wiki/Cookbook/Cookbook">what PmWiki can do</a>! With the help of the many cookbook recipes you can do all this <a href="http://www.pmwiki.org/wiki/PmWiki/PmWikiFeatures">and more</a>:</p>
<ul>
<li><a class='wikilink' href='http://pmwiki.com/wiki/Cookbook/Cookbook#CMS'>Content Management System Add-Ons  (CMS, blogs, forums)</a></li>
<li><a class='wikilink' href='http://pmwiki.com/wiki/Cookbook/Cookbook#FormTools'>Web Forms and MySQL queries and reports</a></li>
<li><a class='wikilink' href='http://pmwiki.com/wiki/Cookbook/Cookbook#Insert'>File Uploads</a></li>
<li><a class='wikilink' href='http://pmwiki.com/wiki/Cookbook/Cookbook#Media'>Multi Media content</a></li>
<li><a class='wikilink' href='http://pmwiki.com/wiki/Cookbook/Cookbook#Searching'>Page Lists / Searching</a></li>
<li><a class='wikilink' href='http://pmwiki.com/wiki/Cookbook/Cookbook#PIM'>Personal Information Management (PIM)</a></li>
<li><a class='wikilink' href='http://pmwiki.com/wiki/Cookbook/Cookbook#RSSTools'>RSS Feeds</a>
</li>
</ul>
<p>Plus there are a bunch of <a href="http://www.pmwiki.org/wiki/Cookbook/Skins">skins</a> you can use to make your wiki more amenable to your tastes.  I also liked the security features, because I use mine like a personal notepad so I don&#8217;t want other people being able to scribble all over it, or even to be able to read it, really.  So my security needs are pretty simple, but you can go <a href="http://www.pmwiki.org/wiki/Cookbook/Security">paranoid/berserk</a> if you need to.</p>
<p>Oh, and you can try out PmWiki on your own machine without a full-on web server if you want to by downloading the <a href="http://www.pmwiki.org/wiki/Cookbook/Standalone">Standalone recipe</a> which you just need to unzip a directory into your PmWiki directory tree, double-click a .BAT file and type http://localhost/!  Easy peasy. You can run on other operating systems with just a PHP script, also provided on the <a href="http://www.pmwiki.org/wiki/Cookbook/Standalone">Standalone recipe page</a>. Running locally makes it super easy and quick to customise your PmWiki because you don&#8217;t have to upload your changes to a server, or wait for page refreshes to download.  Also, you don&#8217;t have to worry about messing up your main &#8220;production&#8221; installation if you have one, you can mess around locally as much as you want to.</p>
<p>Which brings me to my next point, which was that I wanted to do two things:</p>
<ol>
<li>Import my data from ye olde ASPWiki</li>
<li>Experiment with a custom skin that would look decent if you used PmWiki as a way to manage a &#8220;normal&#8221; website, i.e. use it as a content management system.</li>
</ol>
<p>I&#8217;m mainly a C# developer, so I logically decided that I&#8217;d write a tool to import my old data in Python. I&#8217;ve written the odd Python script before and this didn&#8217;t seem like such a big job &#8212; some file I/O and some search/replace stuff.  It didn&#8217;t turn out to be too difficult but it did take a bit longer than I expected as I learned more about the language; or more specifically, how the expat XML parser works.  I&#8217;m pretty happy with how it works, I ended up getting my 300+ pages imported just fine.</p>
<p><script src='http://pastie.org/451548.js'></script></p>
<p>My second mission, to create a skin that would work if using PmWiki for a normal content-based website, is at least a partial success because I&#8217;m happy enough with my skin to use it on my wiki &#8212; at least for now.  My skin is named <a href="http://kentwell.net/glenn/wp-content/uploads/2008/06/pmgk.zip">PmGk</a>, not too imaginatively. <img src='http://kentwell.net/glenn/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So if you&#8217;re looking for a Wiki that can do everything, or even just something, check out PmWiki, it could save your life!</p>
]]></content:encoded>
			<wfw:commentRss>http://kentwell.net/glenn/2008/06/the-last-web-appplication-you-will-ever-need/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s The Worst That Could Happen?</title>
		<link>http://kentwell.net/glenn/2008/06/whats-the-worst-that-could-happen/</link>
		<comments>http://kentwell.net/glenn/2008/06/whats-the-worst-that-could-happen/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 12:27:54 +0000</pubDate>
		<dc:creator>the same clown</dc:creator>
				<category><![CDATA[Super Interesting]]></category>

		<guid isPermaLink="false">http://kentwell.net/glenn/291</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/bDsIFspVzfI&#038;hl=en"></param><embed src="http://www.youtube.com/v/bDsIFspVzfI&#038;hl=en" type="application/x-shockwave-flash" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://kentwell.net/glenn/2008/06/whats-the-worst-that-could-happen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>omg Krispy Kreme is coming to Brisbane!</title>
		<link>http://kentwell.net/glenn/2008/03/omg-krispy-kreme-is-coming-to-brisbane/</link>
		<comments>http://kentwell.net/glenn/2008/03/omg-krispy-kreme-is-coming-to-brisbane/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 03:35:06 +0000</pubDate>
		<dc:creator>the same clown</dc:creator>
				<category><![CDATA[Super Interesting]]></category>

		<guid isPermaLink="false">http://kentwell.net/glenn/287</guid>
		<description><![CDATA[Wow.

It looks like my dreams are finally coming true; Krispy Kreme is opening in Brisbane!  They were going gangbusters in Queen Street Mall today at lunchtime, giving away 500 dozen doughnuts and they had a giant Krispy Kreme sandcastle &#8212; I don&#8217;t know why they had that but it was awesome.
And they had a [...]]]></description>
			<content:encoded><![CDATA[<p>Wow.</p>
<p><img src="http://photos-c.ak.facebook.com/photos-ak-sctm/v213/35/24/718449195/n718449195_651798_6798.jpg" alt="Krispy Kreme launch in Brisbane" /></p>
<p>It looks like my dreams are finally coming true; Krispy Kreme is opening in Brisbane!  They were going gangbusters in Queen Street Mall today at lunchtime, giving away 500 dozen doughnuts and they had a giant Krispy Kreme sandcastle &#8212; I don&#8217;t know why they had that but it was awesome.</p>
<p>And they had a van and promo chicks and ex footy players (<a href="http://www.tigers.org.au/Football_club/legends/alllegends/sirro.html">Paul Sironen</a>) and balloons and what not.</p>
<p>I snapped some pics on my phone (<a href="http://www.facebook.com/album.php?aid=29930&#038;id=718449195">see em on Facebook</a>):<br />
<img src="http://photos-a.ak.facebook.com/photos-ak-sctm/v213/35/24/718449195/n718449195_651800_7481.jpg" alt="krispy kreme launch" /><br />
<br />
<img src="http://photos-d.ak.facebook.com/photos-ak-sctm/v213/35/24/718449195/n718449195_651803_8676.jpg" alt="krispy kreme launch " /><br />
<br />
<img src="http://photos-c.ak.facebook.com/photos-ak-sctm/v213/35/24/718449195/n718449195_651802_8210.jpg" alt="krispy kreme launch" /></p>
]]></content:encoded>
			<wfw:commentRss>http://kentwell.net/glenn/2008/03/omg-krispy-kreme-is-coming-to-brisbane/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Camp Quality esCarpade 2007</title>
		<link>http://kentwell.net/glenn/2007/11/camp-quality-escarpade-2007/</link>
		<comments>http://kentwell.net/glenn/2007/11/camp-quality-escarpade-2007/#comments</comments>
		<pubDate>Sun, 04 Nov 2007 06:26:50 +0000</pubDate>
		<dc:creator>the same clown</dc:creator>
				<category><![CDATA[Super Interesting]]></category>

		<guid isPermaLink="false">http://kentwell.net/glenn/285</guid>
		<description><![CDATA[My Dad and I went with some friends on the 2007 Camp Quality esCarpade rally.  We&#8217;re still in Tasmania as I write this but we&#8217;re heading back on the plane tonight &#8212; thank the Lord we don&#8217;t have to drive all the way back to Queensland.

The 2007 esCarpade started in Canberra and Dad drove [...]]]></description>
			<content:encoded><![CDATA[<p>My Dad and I went with some friends on the <a href="http://www.campquality.org.au/help/fundraising.cfm?section=cqrally">2007 Camp Quality esCarpade</a> rally.  We&#8217;re still in Tasmania as I write this but we&#8217;re heading back on the plane tonight &#8212; thank the Lord we don&#8217;t have to drive all the way back to Queensland.</p>
<p><img src="http://farm3.static.flickr.com/2334/1807751781_d9480ded14.jpg?v=0" alt="2007 Camp Quality esCarpade cars" /></p>
<p>The 2007 esCarpade started in Canberra and Dad drove down from Brisbane with Ray and Tracie (they&#8217;re from Gympie and supplied the car) in our HZ Holden Kingswood rally car &#8220;The Red Baron&#8221; with its 202 Holden motor (3.3 litre), Commodore 4-speed gearbox with sticky linkages, flashing orange lights for dirt roads, knobbly dirt tyres and big steel boxes on top for luggage which you need because the boot fills with dust when you&#8217;re bashing down gravel roads.</p>
<p><img src="http://farm3.static.flickr.com/2200/1808592890_351635773f.jpg?v=0" alt="The Red Baron - our HZ Holden esCarpade car" /></p>
<p>Everything was going great until before the rally had started when on Thursday arvo, 150km out of Canberra the old six cylinder started spewing oil all over the place and making some unhappy noises. They limped into sunny Canberra as gently as they could, where the esCarpade organisers gave them the number of a top bloke named <a href="http://flickr.com/photos/applesdolly/1807792785/">Charlie</a> of <a href="http://www.google.com/search?hl=en&#038;q=hughes+mechanical+canberra">Hughes Mechanical</a>, who were also the support team for the <a href="http://www.ours.com.au/content/?page=home_ourescarpade">&#8220;Ours&#8221; esCarpade team</a>.  This guy was awesome and the lads worked their asses off until late in the night to get a new motor into the old beast and have it running again for scrutineering the next morning!</p>
<p>So the team managed to enter the rally with a new motor and I was airlifted in Friday night so that I could be there for the start of the rally on Saturday morning.</p>
<p><img src="http://farm3.static.flickr.com/2369/1807754163_0dc0ab7956.jpg?v=0" alt="myself, Ray and Tracie with our esCarpade car" /></p>
<p>We headed off with Tracie at the wheel and the old Kingy seemed to be running sweet as a nut until we noticed some banging noises underneath the back end, and it started wagging its tail like a dog over any kind of corrugations.  Tracie held on through some hairy moments as the car waggled around on the gravel and we started to think something could have been wrong.  We stopped for lunch and had a quick look but everything seemed fine, and then it was my turn to drive. </p>
<p>We were pretty convinced something was pretty messed up under the back of the car as it tried to swap ends any time the road got bumpy and it was scaring the crap out of all of us, and embarassing us too as pretty much every other car in the rally flew past us and we were eating their dust.  So we stopped and jacked up the car and we didn&#8217;t even have to take of a wheel to notice that the passenger side shock absorber was just hanging around and had snapped at the top where it mounts to the chassis.  That explained a few things&#8230;</p>
<p><img src="http://farm3.static.flickr.com/2251/1807748721_132838cb65.jpg?v=0" alt="our broken shock absorber!" /></p>
<p>So once again the car was limping to Canberra after every car parts shop in Yass was closed.  Repco in Canberra weren&#8217;t keen to sell us a pair of shocks over the phone by credit card and they were going to close before we got there, but some desperation, harassment and cajoling eventually convinced Brian to take our credit card over the phone and leave our package of salvation out the back behind a rubbish bin.  Then it was Charlie to the rescue again, he put the car on his hoist and had the shocks changed in literally ten minutes and we were driving on with smiles on our dials.</p>
<p>Heaps and heaps more stuff happened on the trip with plenty of cars having mechanical dramas, navigational problems and driving indiscretions, but it was heaps and heaps of fun and in total all the cars raised over $917,000, which was nearly two hundred thousand more than 2006.  A top effort.</p>
<p>So now the plan is to build up a car of our own, get some sponsorship and go again next year.  Should be awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://kentwell.net/glenn/2007/11/camp-quality-escarpade-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hey That&#8217;s Todally Swede</title>
		<link>http://kentwell.net/glenn/2007/02/hey-thats-todally-swede/</link>
		<comments>http://kentwell.net/glenn/2007/02/hey-thats-todally-swede/#comments</comments>
		<pubDate>Sat, 03 Feb 2007 16:05:57 +0000</pubDate>
		<dc:creator>the same clown</dc:creator>
				<category><![CDATA[blog by email]]></category>
		<category><![CDATA[funny]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[
I came across this Swedish guy&#8217;s blog. I&#8217;m mentioning this for three reasons:

I love the site&#8217;s layout; and he links to a few cool things:
Roundabout Dogs
Stupid Cats (mainly for Bowman but if you like it then good for you.  I love the condescending note the phrase &#8220;good for you&#8221; has)
He had this quote: &#8220;Norway [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://archive.corren.se/archive/2006/11/15/90003.jpg"><img alt="roundabout dog" border="0" height="238" width="351" src="http://archive.corren.se/_internal/cimg!0/lqvbcsm61qulms" /></a></p>
<p>I came across <a href="http://waffle.wootest.net/">this Swedish guy</a>&#8217;s blog. I&#8217;m mentioning this for three reasons:</p>
<ol>
<li>I love the site&#8217;s layout; and he links to a few cool things:</li>
<li><a href="http://en.wikipedia.org/wiki/Roundabout_dog">Roundabout Dogs</a></li>
<li><a href="http://www.icanhascheezburger.com/">Stupid Cats</a> (mainly for <a href="http://christianbowman.com">Bowman</a> but if you like it then good for you.  I love the condescending note the phrase &#8220;good for you&#8221; has)</li>
<li>He had this quote: &#8220;Norway outlaws the iTunes Store. Itï¿½s apparent that Apple will have to Sweden the deal.&#8221;</li>
</ol>
<p>Plus there was a link to a page that linked to a <a href="http://www.itconversations.com/shows/detail571.html">talk by Adam Bosworth</a> that goes into ajax, databases, Google, information organisation and more nerdy cool stuff that you would like if you were as nerdy as me.  Adam Bosworth is a mySQL guy who now works for Google by the way, and the talk is from April 2005 but it&#8217;s still a feast of info.</p>
]]></content:encoded>
			<wfw:commentRss>http://kentwell.net/glenn/2007/02/hey-thats-todally-swede/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fixing a Blurry Philips 107P Monitor</title>
		<link>http://kentwell.net/glenn/2007/01/fixing-a-blurry-philips-107p-monitor/</link>
		<comments>http://kentwell.net/glenn/2007/01/fixing-a-blurry-philips-107p-monitor/#comments</comments>
		<pubDate>Tue, 16 Jan 2007 17:13:00 +0000</pubDate>
		<dc:creator>the same clown</dc:creator>
				<category><![CDATA[Super Interesting]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[help]]></category>

		<guid isPermaLink="false">http://kentwell.net/glenn/211</guid>
		<description><![CDATA[My shiny, expensive (for a 17&#8243;) TFT is being a moron and going bright for about a second before turning off its backlight so I can&#8217;t see a thing.  I think it&#8217;s under warranty&#8230;I hope it&#8217;s under warranty.
Anyway you don&#8217;t care about that, you care about finding out what to do when your Philips [...]]]></description>
			<content:encoded><![CDATA[<p>My shiny, expensive (for a 17&#8243;) TFT is being a moron and going bright for about a second before turning off its backlight so I can&#8217;t see a thing.  I think it&#8217;s under warranty&#8230;I hope it&#8217;s under warranty.</p>
<p>Anyway you don&#8217;t care about that, you care about finding out what to do when your Philips 17&#8243; 107P monitor picture goes fuzzy, don&#8217;t you?  This would probably apply to other monitors as well, and anyway you should <strong>definitely</strong> read this<br />
FAQ called &#8220;<a href="http://forums.pcworld.co.nz/archive/index.php/t-50238.html">How do I adjust the focus of my monitor?</a>,&#8221; which I used and found inspiring and helpful. Yeah I said inspiring, I wasn&#8217;t going to try fixing the screen myself because I nearly killed myself messing about in the insides of a monitor once before.</p>
<p>Anyway, you don&#8217;t care about me nearly dying either, you want to know how to fix your blurry Philips 107P screen, don&#8217;t you?  It&#8217;s really easy, you just need a philips head screwdriver.</p>
<p>So what you need to do is take off the plastic cover of ye olde Philips, by removing the screws marked in the pic below:<br />
  <img src="http://kentwell.net/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=1261&amp;g2_serialNumber=2" width="150" height="113" class="giThumbnail" alt=which screws to undo to remove the cover from a Philips 107P Brillance monitor to adjust the focus when the screen is blurry"/></p>
<p>That pic is kind of unnecessary, basically just keep taking screws out until the plastic cover comes loose. If you take out more than 6, you&#8217;ve taken out too many, you fool.</p>
<p>Now all you have to do is use your trusty screwdriver to twiddle the internal focus knobs through the holes in the aluminium shielding, as indicated in the pic below.  </p>
<p>  <img src="http://kentwell.net/gallery/main.php?g2_view=core.DownloadItem&amp;g2_itemId=1264&amp;g2_serialNumber=2" width="150" height="113" class="giThumbnail" alt="focus control knobs to adjust Philips 107P screen when the monitor picture is blurry to fix the monitor "/></p>
<p>I actually took off the aluminium shielding, but you don&#8217;t actually need to, I just had no idea what I was doing, and the FAQ linked above said that you may need to take it off, so I did.  Now that I&#8217;m shining a light to show you the way, you won&#8217;t need to go through the pain that I endured.  Good luck to you, old chap.</p>
<p>So basically the story is that you need to have the monitor turned on and plugged in to your computer, so you can stick your screwdriver in and twiddle the focus knobs.  The top one seems to be the main one, but the middle knob seemed to me to be adjusting the edges of the screen a bit better.  But I can&#8217;t say for sure what they do, so just twiddle until it looks right.</p>
<p>The bottom knob adjusts brightness or something, you will probably want to leave that one alone.</p>
<p>Good luck adjusting your fuzzy, blurry Philips screen.  Don&#8217;t electrocute yourself, that would be moronic because you need to be living to be able to enjoy a sharp monitor.  Dying is for quitters.</p>
]]></content:encoded>
			<wfw:commentRss>http://kentwell.net/glenn/2007/01/fixing-a-blurry-philips-107p-monitor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oh my Lord &#8212; Awesome Microsoft Paint Artwork</title>
		<link>http://kentwell.net/glenn/2006/12/oh-my-lord-awesome-microsoft-paint-artwork/</link>
		<comments>http://kentwell.net/glenn/2006/12/oh-my-lord-awesome-microsoft-paint-artwork/#comments</comments>
		<pubDate>Thu, 07 Dec 2006 12:14:18 +0000</pubDate>
		<dc:creator>the same clown</dc:creator>
				<category><![CDATA[Super Interesting]]></category>

		<guid isPermaLink="false">http://kentwell.net/glenn/201</guid>
		<description><![CDATA[Check out this video of a dude drawing a car in MS Paint.  His skill and attention to detail are insane!

I think he&#8217;d even put Maddox to shame, and Maddox knows how to handle MS Paint.
]]></description>
			<content:encoded><![CDATA[<p>Check out this video of a dude drawing a car in MS Paint.  His skill and attention to detail are insane!</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/fdaWsTWDpCc"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/fdaWsTWDpCc" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<p>I think he&#8217;d even put <a href="http://maddox.xmission.com/">Maddox</a> to shame, and Maddox knows how to handle MS Paint.</p>
]]></content:encoded>
			<wfw:commentRss>http://kentwell.net/glenn/2006/12/oh-my-lord-awesome-microsoft-paint-artwork/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Work Christmas Party Photos</title>
		<link>http://kentwell.net/glenn/2006/12/work-christmas-party-photos/</link>
		<comments>http://kentwell.net/glenn/2006/12/work-christmas-party-photos/#comments</comments>
		<pubDate>Wed, 06 Dec 2006 10:09:12 +0000</pubDate>
		<dc:creator>the same clown</dc:creator>
				<category><![CDATA[blog by email]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Our IT Department&#8217;s Christmas Party was at Friday&#8217;s nightclub in
Brisbane.  It&#8217;s all fun and games until somebody loses their
wallet/phone/dignity.












]]></description>
			<content:encoded><![CDATA[<p>Our IT Department&#8217;s Christmas Party was at Friday&#8217;s nightclub in<br />
Brisbane.  It&#8217;s all fun and games until somebody loses their<br />
wallet/phone/dignity.</p>
<p><!--Mime Type of File is image/jpeg --><a href="http://kentwell.net/glenn/wp-photos/20061206-041007-1.jpg"><img src="http://kentwell.net/glenn/wp-photos/thumb.20061206-041007-1.jpg" alt="DSC00050.JPG" style="" class="wp-mailimage" /></a><br />
<!--Mime Type of File is image/jpeg --><a href="http://kentwell.net/glenn/wp-photos/20061206-041011-2.jpg"><img src="http://kentwell.net/glenn/wp-photos/thumb.20061206-041011-2.jpg" alt="DSC00051.JPG" style="" class="wp-mailimage" /></a><br />
<!--Mime Type of File is image/jpeg --><a href="http://kentwell.net/glenn/wp-photos/20061206-041011-3.jpg"><img src="http://kentwell.net/glenn/wp-photos/thumb.20061206-041011-3.jpg" alt="DSC00052.JPG" style="" class="wp-mailimage" /></a><br />
<!--Mime Type of File is image/jpeg --><a href="http://kentwell.net/glenn/wp-photos/20061206-041012-4.jpg"><img src="http://kentwell.net/glenn/wp-photos/thumb.20061206-041012-4.jpg" alt="DSC00053.JPG" style="" class="wp-mailimage" /></a><br />
<!--Mime Type of File is image/jpeg --><a href="http://kentwell.net/glenn/wp-photos/20061206-041012-5.jpg"><img src="http://kentwell.net/glenn/wp-photos/thumb.20061206-041012-5.jpg" alt="DSC00054.JPG" style="" class="wp-mailimage" /></a><br />
<!--Mime Type of File is image/jpeg --><a href="http://kentwell.net/glenn/wp-photos/20061206-041012-6.jpg"><img src="http://kentwell.net/glenn/wp-photos/thumb.20061206-041012-6.jpg" alt="DSC00055.JPG" style="" class="wp-mailimage" /></a><br />
<!--Mime Type of File is image/jpeg --><a href="http://kentwell.net/glenn/wp-photos/20061206-041013-7.jpg"><img src="http://kentwell.net/glenn/wp-photos/thumb.20061206-041013-7.jpg" alt="DSC00056.JPG" style="" class="wp-mailimage" /></a><br />
<!--Mime Type of File is image/jpeg --><a href="http://kentwell.net/glenn/wp-photos/20061206-041013-8.jpg"><img src="http://kentwell.net/glenn/wp-photos/thumb.20061206-041013-8.jpg" alt="DSC00057.JPG" style="" class="wp-mailimage" /></a><br />
<!--Mime Type of File is image/jpeg --><a href="http://kentwell.net/glenn/wp-photos/20061206-041013-9.jpg"><img src="http://kentwell.net/glenn/wp-photos/thumb.20061206-041013-9.jpg" alt="DSC00059.JPG" style="" class="wp-mailimage" /></a><br />
<!--Mime Type of File is image/jpeg --><a href="http://kentwell.net/glenn/wp-photos/20061206-041014-10.jpg"><img src="http://kentwell.net/glenn/wp-photos/thumb.20061206-041014-10.jpg" alt="DSC00058.JPG" style="" class="wp-mailimage" /></a><br />
<!--Mime Type of File is image/jpeg --><a href="http://kentwell.net/glenn/wp-photos/20061206-041014-11.jpg"><img src="http://kentwell.net/glenn/wp-photos/thumb.20061206-041014-11.jpg" alt="DSC00060.JPG" style="" class="wp-mailimage" /></a><br />
<!--Mime Type of File is image/jpeg --><a href="http://kentwell.net/glenn/wp-photos/20061206-041014-12.jpg"><img src="http://kentwell.net/glenn/wp-photos/thumb.20061206-041014-12.jpg" alt="DSC00061.JPG" style="" class="wp-mailimage" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://kentwell.net/glenn/2006/12/work-christmas-party-photos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
