<?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>Superposition Kitty</title>
	<atom:link href="http://superpositionkitty.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://superpositionkitty.com</link>
	<description></description>
	<lastBuildDate>Mon, 08 Mar 2010 18:10:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Cicada</title>
		<link>http://superpositionkitty.com/2010/03/cicada/</link>
		<comments>http://superpositionkitty.com/2010/03/cicada/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 18:06:51 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Cicada]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[cufon]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=2324</guid>
		<description><![CDATA[Cicada (link coming &#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/02/cicada_title.jpg" alt="Cicada" /></p>
<p>Cicada (link coming shortly) is our first site of 2010, commissioned by a friend of mine for his new business. The brief was to provide a simple and clean website in order to allow prospective clients to contact him and to conform to all current European standards for businesses. It should also be compliant with IE6+, Firefox, Chrome, and Opera.</p>
<p>The website truly does seem simple at first look, but there’s a lot going on behind the scenes in terms of <a href="http://en.wikipedia.org/wiki/JavaScript">JavaScript</a> and design choices. The big one being <a href="http://cufon.shoqolate.com/generate/">cufon</a>, used to serve <a href="http://new.myfonts.com/fonts/adobe/helvetica-neue/">Helvetica Neue</a> — in Light and Ultra Light variants — to the viewers. Using cufon is as easy as uploading the typefaces to their provided generator (make sure that the licensing allows for them to be embedded, you should also lock the file to your domain) and then linking the generated JavaScript file in the head of your <a href="http://en.wikipedia.org/wiki/HTML">HTML</a>:</p>
<p><span id="more-2324"></span>
<pre>
&lt;script type="text/javascript" src="../js/cufon-yui.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="../js/HelveticaNeue_300-HelveticaNeue_400.font.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript"&gt;
	Cufon.replace('h1, h2, h3, p');
&lt;/script&gt;
</pre>
<p>Here I’ve chosen to have cufon replace all <code>h1</code>, <code>h2</code>, <code>h3</code>, and <code>p</code> elements. It’s not recommended to use cufon to replace body text like I’ve done here unless it’s <a href="http://bkwld.com/blog/2009/06/cufon-speed-test/">less than 1,000 characters</a>.</p>
<p>Next up is a little bit of <a href="http://jquery.com/">jQuery</a> to switch states between the main page and the contact page (seen below)  — when the viewer clicks on the “get in touch” link — by hiding and unhiding two <code>&lt;div&gt;</code>‘s.</p>
<pre>
$(function(){
$('#email_us').click(function(){
	$('#about').toggle();
	$('#contact').toggle();
});
});
</pre>
<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/02/cicada_contact.jpg" alt="Cicada Contact" /></p>
<p>Note that this all degrades neatly if the viewer doesn’t have JavaScript enabled. First by simply choosing Helvetica or Arial from the viewers machine if it can’t serve them the cufon version of Helvetica Neue, and secondly by showing them an email address they can use instead of the contact form with <code>&lt;noscript&gt;&lt;a href="mailto:us@cicada.eu"&gt;us@cicada.eu&lt;/a&gt;&lt;/noscript&gt;</code>.</p>
<p>Also to note is that all text and images are solid white (<code>#FFF</code>) with varying degrees of opacity to give them some transparency over the blue gradient background. To get this working in all browsers (and their ancestors) required quite a few lines of <a href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets">CSS</a> (the order is very important):</p>
<pre>
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
filter:alpha(opacity=80);
-khtml-opacity:.80;
-moz-opacity:.80;
opacity:.80;
</pre>
<p>Another thing to note with the transparency is that Internet Explorer (versions 6 and 7) handle transparent <a href="http://en.wikipedia.org/wiki/Portable_Network_Graphics">PNG</a>’s terribly. So I’ve had to use a Microsoft designed catch-all to serve IE a non-transparent PNG instead:</p>
<pre>
&lt;!--[if !IE]&gt;&lt;!--&gt;
	&lt;img src="../images/white_logo.png" /&gt;
&lt;!--&lt;![endif]--&gt;
&lt;!--[if IE]&gt;
	&lt;img src="../images/logo_ie.png" /&gt;
&lt;![endif]--&gt;
</pre>
<p>This covers the majority of the little pieces of code I’ve used in developing this website. I’ll update this post with a link to the site when it goes live later this month. </p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2010/03/cicada/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Superbrothers: Sword &amp; Swocery EP</title>
		<link>http://superpositionkitty.com/2010/03/superbrothers-sword-swocery-ep/</link>
		<comments>http://superpositionkitty.com/2010/03/superbrothers-sword-swocery-ep/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 16:02:24 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Cool Things]]></category>
		<category><![CDATA[Capy]]></category>
		<category><![CDATA[Jim Guthrie]]></category>
		<category><![CDATA[Superbrothers]]></category>
		<category><![CDATA[Sword & Sworcery]]></category>
		<category><![CDATA[Toronto]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=2254</guid>
		<description><![CDATA[Superbrothers: Sword &#38; &#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/02/sands.jpg" alt="Sword &#038; Swocery" /></p>
<p><a href="http://www.swordandsworcery.com/">Superbrothers: Sword &amp; Swocery EP</a> is home to the collaborative work of <a href="http://superbrothers.ca/">Superbrothers</a>, <a href="http://jimguthrie.org/">Jim Guthrie</a>, and <a href="http://www.capybaragames.com/">Capy</a>. They’re working on a game together and I’ve gotta say I’m pretty interested in what it will be like. To explain to you just why I’m interested I’m going to have to break it down.</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">Superbrothers</span><br />
The first I heard about Superbrothers was when art and design blogs flipped their shit for their videos, and rightly so. Embedded below is my favourite of these: Dot Matrix Revolution.</p>
<p><object width="461" height="306"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=1715202&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=1715202&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="461" height="306"></embed></object></p>
<p><span id="more-2254"></span>People have described their style in many ways: “gorgeous”, “beautiful”, “8-bit”, “pixelated”, and “lame” But personally I think Jim Guthrie summed it up best with “eyegasm inducing”, and may I just add “sinister”. Their first video — <a href="http://www.vimeo.com/1662439">The Children Of the Clone</a> — in which “a single executive recruits an army of clones to attack, behead and ‘incorporate’ an old money industrialist into their consumptive system” is more outwardly sinister, but I was struck by Dot Matrix Revolution. The awkward dancing of the two Software Engineers, the steady encroachment of the technology before it explodes with the advent of the internet, the colours, and the soundtrack by Jim Guthrie doesn’t help matters. Which brings us to the next section.</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">Jim Guthrie</span><br />
Jim Guthrie — a <a href="http://en.wikipedia.org/wiki/Juno_Award">Juno Award</a> nominee and collaborator of <a href="http://www.thehiddencameras.com/">The Hidden Cameras</a>, <a href="http://en.wikipedia.org/wiki/Arcade_Fire">Arcade Fire</a>, <a hef="http://en.wikipedia.org/wiki/Islands_(band)">Islands</a> and more — is another talented Canadian. Originally making a name for himself through composing his songs on a <a href="http://en.wikipedia.org/wiki/PlayStation">PlayStation</a>, his haunting and sparse yet pretty arrangements are sure to add to the game. He’s doing some shows at the end of the month, so make sure you check him out (something that I — unfortunately — can’t do, being 3325 miles away from Toronto).</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">Capy</span><br />
Credited on the Superbrothers website under “engineering and miracles” Capy also happen to be the creators of my favourite game that I’ve never bought (I’ll get around to it one day I promise): <a href="http://crittercrunch.com/">Critter Crunch</a>. Aptly described by <a href="http://www.boingboing.net/2009/10/21/like-ghibli-barfing.html">Brandon Boyer</a> with “like <a href="http://en.wikipedia.org/wiki/Studio_Ghibli">Ghibli</a> barfing rainbows” it also happens to be addictively fun. Also recently they have produced <a href="http://mightandmagic.uk.ubi.com/clashofheroes/">Might And Magic: Clash Of Heroes</a>, a game that has received solidly great reviews.</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">The Game</span><br />
Which brings us to Sword &amp; Sworcery itself. The graphics are by Superbrothers, the sound by Jim Guthrie and the engineering by Capy. I know next to nothing other than some lucky members of Toronto’s <a href="http://handeyesociety.com/">Hand Eye Society</a> got a 10 minute sneak-peek of the game, coming soon to iPhone and iPod Touch. Having managed to get a peek of that development footage (apparently the game was less than 25% complete) myself, I can honestly say I’m looking forward to it. The game is apparently broken up into two parts, Sword: a “musical combat type thing”, and Swocery: a “streamlined approach to adventure and exploration”.</p>
<p>To find out where they go from here you can subscribe to their <a href="http://www.swordandsworcery.com/rss/">rss feed</a>, <a href="http://www.superbrothers.ca/wtf.html">Teletex</a> or <a href="http://twitter.com/the1console">Twitter</a>. Make sure to keep a close eye on them in the coming months as this game starts to come together.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2010/03/superbrothers-sword-swocery-ep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>White On Black</title>
		<link>http://superpositionkitty.com/2010/03/white-on-black/</link>
		<comments>http://superpositionkitty.com/2010/03/white-on-black/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 14:15:34 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[1KB Grid]]></category>
		<category><![CDATA[960.gs]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Grid System]]></category>
		<category><![CDATA[White And Black]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=2344</guid>
		<description><![CDATA[Yes, the Superposition Kitty &#8230;]]></description>
			<content:encoded><![CDATA[<p>Yes, the <a href="http://superpositionkitty.com/">Superposition Kitty</a> website has been turned on its head. Black is White! White is Black! And … that’s about it. A code cleanup was long due, and while I was at it I changed a few things around. Most importantly, I cleaned up the <a href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets">CSS</a>, stripping it of a third of it’s weight in the process and hopefully speeding up load times.</p>
<p>Unfortunately, a few of the tutorial posts are now slightly outdated. I will be updating them in the coming weeks to comply with the new theme and changes in code.</p>
<p>I’d like to thank <a href="http://www.1kbgrid.com/">1KB CSS Grid</a> for the base grid used in the new code. I’d messed around with various grids — such as <a href="http://960.gs/">960.gs</a> — before, but found them almost universally bloated in the effort to provide for every eventuality. 1KB Grid is tiny and neat and much more elegant than the system I had come up with previously. The grid now looks something like this:</p>
<p><span id="more-2344"></span>
<pre>
.grid_1 { width:222px; }

.grid_2 { width:462px; }

.grid_3 { width:702px; }

.grid_4 { width:942px; }

.column {
margin:0 9px;
overflow:hidden;
float:left;
display:inline;
}

.row {
width:960px;
margin:0 auto;
overflow:hidden;
}

.row .row {
margin:0 -9px;
width:auto;
display:inline-block;
}
</pre>
<p>And the corresponding HTML is simply:</p>
<pre>
&lt;div class="row"&gt;
	&lt;div class="column grid_2"&gt;
	&lt;/div&gt;
	&lt;div class="column grid_1"&gt;
	&lt;/div&gt;
	&lt;div class="column grid_1"&gt;
	&lt;/div&gt;
&lt;/div&gt;
</pre>
<p>This sets up the nicely formatted 3 columns that you are seeing here, and provides a clean base to continue to compose to a horizontal baseline. It’s also simple to nest the columns within each-other as seen <a href="http://www.usabilitypost.com/2009/06/19/the-1kb-css-grid-part-3/">here</a>.</p>
<p>WIth this new system I should be able to change up any part of the design with a minimum of fuss (and code) whenever needed.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2010/03/white-on-black/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cheap Retensionable Screenprinting Frames</title>
		<link>http://superpositionkitty.com/2010/02/diy-cheap-retensionable-screenprinting-frames/</link>
		<comments>http://superpositionkitty.com/2010/02/diy-cheap-retensionable-screenprinting-frames/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 13:21:47 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Cool Things]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[Frames]]></category>
		<category><![CDATA[Mesh]]></category>
		<category><![CDATA[Retensionable]]></category>
		<category><![CDATA[Screen-Printing]]></category>
		<category><![CDATA[Screenprinting]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=2314</guid>
		<description><![CDATA[I have to admit &#8230;]]></description>
			<content:encoded><![CDATA[<p>I have to admit that this is one I’ve been sitting on a while, I should’ve gotten it out there much sooner so everybody could share in the joys of über cheap re-tensionable screenprinting frames. A caveat here though, they’re cheap for a reason: to get them to lay flat you may have to modify your platten and registration can be a bit iffy. However, I’ve found that once properly tensioned they’ll keep for months, and because the only thing holding the mesh to the frame is glue, if you rip it while reclaiming the screen (as I have done too many times) it’s easy enough to tension up some new mesh. </p>
<p>First off, tools. The only tools I really need are a <a href="http://en.wikipedia.org/wiki/Adjustable_spanner">shifting spanner</a>, a <a href="http://en.wikipedia.org/wiki/Hacksaw">hacksaw</a> (please make sure you get a metal and not wood saw), and a <a href="http://en.wikipedia.org/wiki/C-clamp">c clamp</a>. If you don’t have those then don’t worry, you’re going to need to make a trip to the shop for some 15mm copper piping (usually found in 3 or 4 meter lengths) and 90° compression bends. Back from the hardware store yet? Mouse-over the images below for the process.</p>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/4389837464/"><img src="http://farm3.static.flickr.com/2704/4389837464_8bb7462895_o.jpg" width="460" alt="Copper Piping" /><br />
<span class="desc">Copper piping, cut to length. I find that 300mm and 400mm a side works best for A4 prints. Note that I’ve sanded them slightly to allow the mesh better purchase .</span><br />
</a></div>
<p><span id="more-2314"></span>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/4389837522/"><img src="http://farm3.static.flickr.com/2796/4389837522_52a9547ed7_o.jpg" width="460" alt="Compression Bends" /><br />
<span class="desc">Compression bends, the secret ingredient in this recipe. They allow your frame to be tensioned and re-tensioned at will.</span><br />
</a></div>
<div class="imgteaser"><a href="<a href="http://www.flickr.com/photos/29778044@N02/4389070157/"><img src="http://farm3.static.flickr.com/2756/4389070157_11aea8e0c3_o.jpg" width="460" alt="Frame" /><br />
<span class="desc">One completed frame. Hand-tighten the nuts on the compression bends to keep it solid for the next steps.</span><br />
</a></div>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/4389837656/><img src="http://farm5.static.flickr.com/4061/4389837656_15acb73d12_o.jpg" width="460" alt="Mesh" /><br />
<span class="desc">Drape the mesh over your frame so you can cut it to fit. I’m using quite a high mesh count here.</span><br />
</a></div>
<div class="imgteaser"><a href="<a href="http://www.flickr.com/photos/29778044@N02/4389837718/"><img src="http://farm5.static.flickr.com/4049/4389837718_c391d1e98e_o.jpg" width="460" alt="Glue" /><br />
<span class="desc">All purpose glue, will hold the mesh at any tension you wish yet allow for easy removal.</span><br />
</a></div>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/4389837800/><img src="http://farm3.static.flickr.com/2749/4389837800_a06b0e1451_o.jpg" width="460" alt="Glued" /><br />
<span class="desc">One side done. I find it best to work two fingers from the middle to the outside to achieve an even tension.</span><br />
</a></div>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/4389837882/><img src="http://farm5.static.flickr.com/4053/4389837882_805de566f1_o.jpg" width="460" alt="All Sides" /><br />
<span class="desc">All sides complete. Make sure to let it dry for 15 — 20 minutes before trimming and tensioning. If you wish you can add another layer of glue over the top of the mesh.</span><br />
</a></div>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/4389070479/"><img src="http://farm3.static.flickr.com/2686/4389070479_7d8333fa79_o.jpg" width="460" alt="Trimmed" /><br />
<span class="desc">Trim the mesh to fit.</span><br />
</a></div>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/4389070533/"><img src="http://farm5.static.flickr.com/4040/4389070533_8d96d76f52_o.jpg" width="460" alt="Complete" /><br />
<span class="desc">Tighten the frame until it looks like this. If you were doing this properly you’d have a tool to measure the tension, but if that was the case you wouldn’t be reading this tutorial would you … just tighten it up as much as you can.</span><br />
</a></div>
<p>And there you go. Results may vary depending on your tools and/or patience, but I’ve been using frames like this for years with no issues. Hopefully you find them as useful as I have.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2010/02/diy-cheap-retensionable-screenprinting-frames/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>God Of War III: Playable Demo</title>
		<link>http://superpositionkitty.com/2010/02/god-of-war-iii-playable-demo/</link>
		<comments>http://superpositionkitty.com/2010/02/god-of-war-iii-playable-demo/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 00:20:06 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[Demo]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[God Of War III]]></category>
		<category><![CDATA[Kratos]]></category>
		<category><![CDATA[Playstation]]></category>
		<category><![CDATA[PSN]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=2308</guid>
		<description><![CDATA[God Of War: &#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/02/godofwariii.jpg" alt="God Of War III"/></p>
<p><a href="http://www.godofwar.com/">God Of War</a>: The Third is now (as of about 20 minutes ago) available as a playable demo on the <a href="http://uk.playstation.com/psn/">PSN</a>. Currently sitting at 14% of a 2671 MB file here. Hopefully we will finally find out what Kratos is so angry about.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2010/02/god-of-war-iii-playable-demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing: The SPK Reading Journal</title>
		<link>http://superpositionkitty.com/2010/02/introducing-the-spk-reading-journal/</link>
		<comments>http://superpositionkitty.com/2010/02/introducing-the-spk-reading-journal/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 19:23:40 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=2278</guid>
		<description><![CDATA[I think we all &#8230;]]></description>
			<content:encoded><![CDATA[<p>I think we all know by now just how much <a href="http://superpositionkitty.com/books/">I</a> <a href="http://superpositionkitty.com/books/links-pictures-of-books/">like</a> <a href="http://www.flickr.com/photos/29778044@N02/3746511406/">books</a>.  It’s a lot.  So it’s probably a pretty safe assumption to imagine that I also read.  A lot.  The two would seem to go together.</p>
<p>Whether I am ordering books from <a href="http://www.amazon.co.uk">Amazon</a> (home to everything you could ever want)  which <a href="http://superpositionkitty.com/wp-content/uploads/2010/02/DSCF0238.jpg"> I don’t have space for or</a> I’m haunting the <a href=" http://www.dundeecity.gov.uk/library/lochee">local</a> and <a href="http://www.dundeecity.gov.uk/library/central">central branches</a> of the Dundee Library (home to what I think is the best teenage reading section on earth and possessor of some real hidden gems), looking for something new.</p>
<p>This voracity of consumption can often pose a problem when combined with my short attention span and lack of memory for anything that happened more than a week ago. A lot of the time when I try to remember what book it was I read a month ago and what it was like I just plain old can’t, which can make reviewing or recommending them to anyone quite difficult.</p>
<p>With that in mind I’ve prodded Ryan into rigging me a simple <a href="http://superpositionkitty.com/books/reading-journal/">reading journal</a> (to be found in the <a href="http://superpositionkitty.com/2010/01/wordpress-headers-and-superposition-kitty/#more-1942">wonderful header menu</a> under ‘books’) where I can record when I remember to (which will hopefully be often) the books I’ve recently ploughed my way through.  This would seem to both sets of my problems — remembering and ‘reviewing’ (if that’s what you can call what I say about any of them) — at once.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2010/02/introducing-the-spk-reading-journal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Segmental</title>
		<link>http://superpositionkitty.com/2010/02/segmental/</link>
		<comments>http://superpositionkitty.com/2010/02/segmental/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 18:15:43 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Display]]></category>
		<category><![CDATA[Segment]]></category>
		<category><![CDATA[Segmental]]></category>
		<category><![CDATA[Typeface]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=2274</guid>
		<description><![CDATA[Segmental is a &#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/02/segmental_small.gif" alt="Segmental" /></p>
<p>Segmental is a 16 segment display font from Superposition Kitty to you. It’s free for personal use, so please contact us if you would like to use it in a professional project. It should be available to download from <a href="http://www.dafont.com/">dafont</a> shortly.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2010/02/segmental/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Taking A Walk In Dundee</title>
		<link>http://superpositionkitty.com/2010/02/taking-a-walk-in-dundee/</link>
		<comments>http://superpositionkitty.com/2010/02/taking-a-walk-in-dundee/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 16:13:09 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Photos]]></category>
		<category><![CDATA[David Cameron]]></category>
		<category><![CDATA[Dundee]]></category>
		<category><![CDATA[Library]]></category>
		<category><![CDATA[Perth Road]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=2246</guid>
		<description><![CDATA[This happened only &#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/29778044@N02/4350539429/" title="Dave by superpositionkitty, on Flickr"><img src="http://farm5.static.flickr.com/4015/4350539429_35e7a1f298_o.jpg" width="460" height="304"  alt="Dave" /></a></p>
<p>This happened only days after the poster went up on the <a href="http://maps.google.co.uk/maps?q=perth+road+dundee&#038;ie=UTF8&#038;hq=&#038;hnear=Perth+Rd,+Dundee,+Angus+DD2,+United+Kingdom&#038;gl=uk&#038;ei=dE51S4u-GY_u0wTpmqmQCQ&#038;ved=0CAoQ8gEwAA&#038;t=h&#038;z=14">Perth Rd</a>. I haven’t gone back to see if it’s been changed, but I wouldn’t be surprised if it kept on happening. I apologise to everybody visiting this blog for David Cameron’s staring face, but it may help to know that you can now <a href="http://www.andybarefoot.com/politics/cameron.php">make your own</a> poster. </p>
<p>Some more photos of Dundee, it’s library, it’s skyline of architectural clashes, and Jen below.</p>
<p><span id="more-2246"></span><a href="http://www.flickr.com/photos/29778044@N02/4358975921/" title="Cityscape by superpositionkitty, on Flickr"><img src="http://farm3.static.flickr.com/2770/4358975921_b543c449b2_o.jpg" width="460"  alt="Cityscape" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/4358975933/" title="Library by superpositionkitty, on Flickr"><img src="http://farm5.static.flickr.com/4041/4358975933_0d1daea3b2_o.jpg" height="330" alt="Library"  style="margin-right: 19px;" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/4358975937/" title="Escalator  by superpositionkitty, on Flickr"><img src="http://farm5.static.flickr.com/4062/4358975937_5997afa256_o.jpg"  height="330" alt="Escalator " /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/4358975925/" title="Jen by superpositionkitty, on Flickr"><img src="http://farm3.static.flickr.com/2749/4358975925_648dec1d39_o.jpg" width="460"  alt="Jen" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2010/02/taking-a-walk-in-dundee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Automated Response Responder</title>
		<link>http://superpositionkitty.com/2010/02/the-automated-response-responder/</link>
		<comments>http://superpositionkitty.com/2010/02/the-automated-response-responder/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 22:52:17 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Art Project]]></category>
		<category><![CDATA[Automated Response]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Procmail]]></category>
		<category><![CDATA[Responder]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=2205</guid>
		<description><![CDATA[I’m sick of getting &#8230;]]></description>
			<content:encoded><![CDATA[<p>I’m sick of getting automated responses, I just don’t see the point. I don’t need an email telling me what I just did 2 minutes ago. Yes, I know, I was there too. So to that end I’ve invented the Automated Response Responder. That’ll teach the bastards.</p>
<p>First off, a few cautions: This is a bad idea, people don’t like it when you respond to their automated responses, if they even notice at all. However, this was — for me — more of an art project in the vein of Caleb Larson’s <a href="http://www.atooltodeceiveandslaughter.com/">A Tool To Deceive And Slaughter</a> (A sculpture that continually lists itself on <a href="http://www.ebay.co.uk/">eBay</a>) than any real programming exercise. And now, on to the project itself.</p>
<p>You’re going to need <a href="http://www.procmail.org/">Procmail</a> for this.  Procmail can be used to create mail-servers, mailing lists, sort your incoming mail into separate folders/files, preprocess your mail, start any programs upon mail arrival or selectively forward certain incoming mail automatically to someone. Today we’ll be focusing on some variation of that last one. Now, you’re going to need to install and set-up Procmail yourself (have I mentioned yet that it’s a command line tool?), I recommend <a href="http://www.ii.com/">Nancy McGough</a>’s excellent <a href="http://www.ii.com/internet/robots/procmail/qs/">Procmail Quick Start</a>. Once you’ve gotten that done you can get to my Procmail ‘recipe’.</p>
<pre>
:0
	check1 = "automated e-mail"
	check2 = "automated email"
	check3 = "automated notice"
	check4 = "automated message"

	*$ ! ^$MYXLOOP
	* B ?? check1|check2|check3|check4
	| (echo "From: you@domain.com" ;
		$FORMAIL -r -A"Precedence: junk"
		-A"X-Loop: you@domain.com" ;
		echo "This is an automated response
		in reply to your automated response.\n
		Please do not respond to this
		automated response.\n
		Thank you.\n"
	) | $SENDMAIL
</pre>
<p>Obviously, the first thing you’re going to want to do here is to replace <code>you@domain.com</code> with your actual email address (on <em>both</em> occasions). </p>
<p>The actual code is quite simple. As you can see above, I have set up checks for the most common wordings in the body of automated emails I have received, you can add, remove, or change as you wish. The next part — <code>*$ ! ^$MYXLOOP</code> — makes sure we’re not setting up an infinite loop here. The line after — <code>* B ?? check1|check2|check3|check4</code> — simply cycles through the strings provided above and if <em>any</em> of them match sends the message:</p>
<blockquote><p>
This is an automated response in reply to your automated response.<br />
Please do not respond to this automated response.<br />
Thank you.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2010/02/the-automated-response-responder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Artists Of Today (And Yesterday)</title>
		<link>http://superpositionkitty.com/2010/02/more-artists-of-today-and-yesterday/</link>
		<comments>http://superpositionkitty.com/2010/02/more-artists-of-today-and-yesterday/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 16:23:47 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Artists]]></category>
		<category><![CDATA[Bo Wang]]></category>
		<category><![CDATA[Eiichi Scart]]></category>
		<category><![CDATA[Ihei Kimura]]></category>
		<category><![CDATA[Julia Galdo]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=2189</guid>
		<description><![CDATA[It’s about time I &#8230;]]></description>
			<content:encoded><![CDATA[<p>It’s about time I posted a followup to the <a href="http://superpositionkitty.com/2009/10/artists-of-today-and-yesterday/">first of this series</a> about artists, photographers, and creative people that I have discovered while browsing various sites and forums. Today I’m concentrating on photographers that I have discovered / rediscovered over the past few months.</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">Bo Wang</span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/02/bowang.jpg" alt="Bo Wang"/></p>
<p><a href="http://www.bo-wang.net/bio.html">Bo Wang</a> is a Chinese photographer currently based in New York. With a BS and MS in Physics from <a href="http://www.tsinghua.edu.cn/eng/index.jsp">Tsinghau University</a> he is now studying photography, video and related media at <a href="http://www.schoolofvisualarts.edu/index.jsp">School Of Visual Arts, New York</a>.</p>
<p>He currently has a show — <a href="http://www.caacarts.org/dp/?q=/node/15&#038;id=142">Heteroscapes</a> —  at <a href="http://www.caacarts.org/dp/">Gallery 456</a> (ending 5th of February), I feel that his artist’s statement describes his photography best:</p>
<blockquote><p>
HETEROSCAPES is a portrait of China’s contemporary urban spaces and landscapes in a period of intensified transition. Throughout the past 20 years of an economic boom, this transition has shifted the social power structure and subverted once common values, dramatically altering the functions and even the concreteness of landscapes and urban structures.
</p></blockquote>
<p>Bo Wang is relatively new to the photography world, but I feel he will be one to watch in the coming years.</p>
<p><span id="more-2189"></span><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">Ihei Kimura</span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/02/iheikimura1.jpg" alt="Ihei Kimura" /></p>
<p><a href="http://en.wikipedia.org/wiki/Ihei_Kimura">Ihei Kimura</a> (1901 — 1974) was “one of the most celebrated Japanese photographers of the twentieth century”. Born in Tokyo, he opened his own photographic studio in 1924 and soon became well-known for the informal photographs he took with his Leica. </p>
<p>A chairman for <a href="http://en.wikipedia.org/wiki/Japan_Professional_Photographers_Society">Japan Professional Photographers Society</a>, famous for his documentary spirit and photos of Japan and Europe, he still remains popular in Japan, with dozens of books published since his death and the <a href="http://en.wikipedia.org/wiki/Kimura_Ihei_Award">Kimura Ihei Award</a> — for new photographers — set up in his honour.</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">Julia Galdo</span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/02/juliagaldo.jpg" alt="Julia Galdo" /></p>
<p><a href="http://www.juliagaldo.com/">Julia Galdo</a> is an American photographer and a frequent collaborator with <a href="http://www.codycloud.com/">Cody Cloud</a>. Her dreamy fashion photography on <a href="http://www.behance.net/juliagaldo">Behance</a> immediately caught my attention and made me want to find out more about her, I especially love her day-to-day work on <a href="http://www.flickr.com/photos/juliagaldo">Flickr</a>.</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">Eiichi Scart</span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/02/eichiscart.jpg" alt="Eiichi Scart" /></p>
<p><a href="http://www.flickr.com/photos/scart/">Eiichi Scart</a> is a man whom I haven’t been able to find much about. Born in Japan, he has an <a href="http://www.flickr.com/people/scart/">amazing collection of cameras</a> and the ability to use them all well.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2010/02/more-artists-of-today-and-yesterday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Desktop</title>
		<link>http://superpositionkitty.com/2010/01/my-desktop/</link>
		<comments>http://superpositionkitty.com/2010/01/my-desktop/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 17:36:57 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Bryan Lee O'Malley]]></category>
		<category><![CDATA[Date]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[GeekTool]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Scipts]]></category>
		<category><![CDATA[scott pilgrim]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[Weather]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=2032</guid>
		<description><![CDATA[I recently realised &#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/29778044@N02/4295821518/" title="Desktop by superpositionkitty, on Flickr"><img src="http://farm5.static.flickr.com/4052/4295821518_1ca9a85c5c.jpg" width="460" height="268" alt="Desktop" /></a></p>
<p>I recently realised that I haven’t gone into any detail about my work environment. For today, I thought I’d start with my desktop. First things first, the wallpaper is from a <a href="http://twitpic.com/yz5gc">picture</a> posted up on Twitter recently by <a href="http://twitter.com/RADIOMARU">Bryan Lee O’Malley</a> — the author of the wonderful <a href="http://www.scottpilgrim.com/">Scott Pilgrim</a> series, soon to be a movie by the talented <a href="http://twitter.com/edgarwright">Edgar Wright</a> (director of <a href="http://www.imdb.com/title/tt0187664/">Spaced</a> / <a href="http://www.imdb.com/title/tt0365748/">Shaun Of The Dead</a>).</p>
<p>But recently I’ve been getting comments about the “crazy text in the top left corner” of any screen-shots I show people, so I thought I’d post up a bit of a tutorial for the application that makes this all possible — <a href="http://www.versiontracker.com/dyn/moreinfo/macosx/17621">GeekTool</a>. What it does is run scripts and commands that you would use in <a href="http://en.wikipedia.org/wiki/Apple_Terminal">Terminal</a> and display the output on your desktop. </p>
<p>GeekTool is quite simple to use. For now we will just be messing with ‘Image’ Geeklets, just drag one into position on your desktop and you will see the ‘Properties’ window. There are three important things here: Command, Refresh, and Style. Command is where you will enter the scripts below, Refresh is how often you want the output to refresh (I find 10s works well for most cases), and the button below Style — ‘Click here to set font &amp; color.’ — opens up the default Font style window of OS X (which you should already be accustomed to). </p>
<p>The various scripts I’ve gathered together below have been collected from tutorials all over the web, I hope you find them as useful as I did.</p>
<p><span id="more-2032"></span><span class="smallcaps"><strong>Date</strong></span><br />
We’ll start from the left and move our way across to the right. First up we have the date, to display this we use <code>date +%d</code>. Similarly, the month and day are generated using <code>date +%b | tr ‘[a-z]’ ‘[A-Z]’</code> and <code>date +%a | tr ‘[a-z]’ ‘[A-Z]’</code> respectively. </p>
<p><span class="smallcaps"><strong>Dividers</strong></span><br />
The dividers are very simple, just <code>echo '|'</code>.</p>
<p><span class="smallcaps"><strong>Time</strong></span><br />
The time is achieved in much the same was as the date was: <code>date +%R</code>. If you’re not comfortable with 24 hour time then you will want to use <code>date +%I:%M</code>.</p>
<p><span class="smallcaps"><strong>Weather</strong></span><br />
The weather was a tricky one. I went through various scripts using both <a href="http://en.wikipedia.org/wiki/Lynx_%28web_browser%29">Lynx</a> and <a href="http://en.wikipedia.org/wiki/CURL">cURL</a>, <a href="http://weather.yahoo.com/">Yahoo Weather</a> and <a href="http://www.wunderground.com/">Weather Underground</a>. The one that I found that worked best was:</p>
<pre>
curl --silent "http://xml.weather.yahoo.com/forecastrss?p=YOURCITYID&#038;u=c" | grep -E '(Current Conditions:|[A-Z]&lt;BR)' | sed -e 's/Current Conditions://' -e 's/&lt;br \/&gt;//' -e 's/&lt;b&gt;//' -e 's/&lt;\/b&gt;//' -e 's/&lt;BR \/&gt;//' -e 's/[A-Z a-z]*, //' -e 's/\(.*\) F/\1 °F/' -e 's/\(.*\) C/\1 °C/' | sed 's/ //' | tail -n1
</pre>
<p>The problem with using Yahoo Weather is that it’s recently been changed to use a different set of parameters, and although both new and old will work for American cities the same does not seem to be true for the rest of the world. Luckily <a href="http://en.wikipedia.org/wiki/AOL">AOL</a> uses the same naming conventions. So if you visit <a href="http://weather.aol.com/forecast/todays/europe/united-kingdom/scotland/dundee/id/ukxx0045">AOL Weather</a>, and find your city, you can get the ID from the end of the URL. In my case it was ‘UKXX0045’. You will then need to use that to replace <code>YOURCITYID</code> in the code above. </p>
<p><span class="smallcaps"><strong>Music</strong></span><br />
This is the bar with the Kanji (because I was listening to <a href="http://www.yurayurateikoku.com/">Yura Yura Teikoku</a> at the time) that is underneath the rest of the information. This doesn’t use GeekTool at all, but rather <a href="http://bowtieapp.com/">Bowtie</a>. Bowtie is supposed to sync with your <a href="http://www.last.fm/">Last.fm</a> page, flash <a href="http://growl.info/">Growl</a> notifications on new songs, allow custom key combinations to control music, and look pretty on your desktop (using an HTML and JavaScript theming system). In truth it does all of these things quite poorly, and I’ve often found it will simply stop syncing with no warning, but it is still only in Beta.</p>
<p>Hopefully you found these scripts of some use. If you’re looking for more then I would recommend you <a href="http://www.google.co.uk/#hl=en&#038;source=hp&#038;q=geektool+scripts">Google</a> “geektool scripts”, or visit this <a href="http://forums.macrumors.com/showthread.php?t=628023&#038;page=1">over 70 page thread</a> on MacRumors.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2010/01/my-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Months Of Movies</title>
		<link>http://superpositionkitty.com/2010/01/3-months-of-movies/</link>
		<comments>http://superpositionkitty.com/2010/01/3-months-of-movies/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 01:30:11 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Cool Things]]></category>
		<category><![CDATA[Ai No Mukidashi]]></category>
		<category><![CDATA[Funky Forest]]></category>
		<category><![CDATA[Haloween II]]></category>
		<category><![CDATA[Ink]]></category>
		<category><![CDATA[Love Exposure]]></category>
		<category><![CDATA[moon]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[Nadja]]></category>
		<category><![CDATA[Pandorum]]></category>
		<category><![CDATA[Pontypool]]></category>
		<category><![CDATA[Ponyo]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Train]]></category>
		<category><![CDATA[Whip It]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=2017</guid>
		<description><![CDATA[Movies.  I’ve watched a &#8230;]]></description>
			<content:encoded><![CDATA[<p>Movies.  I’ve watched a lot of them lately.  Here are some words about some of them.</p>
<p><span class="smallcaps"><a href="http://www.imdb.com/title/tt0876563/">Ponyo On The Cliff By The Sea</a></span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/01/ponyo.jpg" alt="Ponyo"/><br />
<a href="http://www.youtube.com/watch?v=MXI7x6ExPuc">Trailer</a></p>
<p>This is <a href="http://www.imdb.com/name/nm0594503/">Hayao Miazaki</a> so it’s obviously <a href="http://en.wikipedia.org/wiki/Studio_Ghibli">Studio Ghibli</a> so you can’t escape how good it’s going to be.  Beautiful, fully realised yet simple and easy to watch this re-weaving of Hans Anderson’s <a href="http://en.wikipedia.org/wiki/The_little_mermaid">Little Mermaid</a> is one of the best things I’ve ever looked at.<br />
Luckily for the UK it’s hitting cinemas soon, although personally I’d ditch the Cate Blanchett headed dub and hold out for a subtitled screening if you don’t want to catch the Disneyfication effect of Noah Cyrus and trying to hard to talk to kids.  Either however, is better than not seeing it though. Especially if you have some kids to take with you.  They’ll love it just as much, if not more than you.</p>
<p><span id="more-2017"></span><span class="smallcaps"><a href="http://www.imdb.com/title/tt1128075/">Ai No Mukidashi</a></span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/01/love_exposure.jpg" alt="Love Exposure"/></p>
<p>This movie is quite literally an epic.  I know, I know.  That’s a word thrown about far too often in relation to cinema and usually actually means ‘had a large budget’ or ‘directed by a <a href="http://www.imdb.com/name/nm0000184/">fat ham</a> who <a href=http://www.imdb.com/name/nm0000116/">made a popular movie once</a>'.  But at an initially off-putting 4 hours long this offering from beat poet director and mentalist <a href="http://en.wikipedia.org/wiki/Sion_Sono">Sion Sono</a>, Love Exposure, to give the film it's English title, is engrossing, charming and amusing and well worth the evening it'll take you to get through it.  Honestly you may not think you want to watch a 237 minute treatise on the nature of relationships featuring up skirt photography, panties and one young man's quest for love against a back ground of religious confusion and shady cult activities but you really, really do.  </p>
<p><span class="smallcaps"><a href="http://www.imdb.com/title/tt0451829/">Funky Forest: The First Contact</a></span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/01/funky_forest.jpg" alt="Funky Forest"/><br />
<a href="http://www.youtube.com/watch?v=AWq0MBQ2lwU">Trailer</a></p>
<p>This is another longing Japanese offering but bare with me.  It's worth it.</p>
<p>Told as a series of interconnected vignettes this movie is bafflingly cool, endlessly confusing and utterly hilarious.  I can't say much more about it that would make sense save the words 'dance numbers' and 'aliens' and if this makes it sound a little 'OMG I AM SO WACKY AND LIKE RANDOM LOL PURPLE MONKEY CHEESE' then that's the fault of my bad reviewing, not the movie.  Check it out.</p>
<p><span class="smallcaps"><a href="http://www.imdb.com/title/tt0110620/">Nadja</a></span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/01/nadja.jpg" alt="Nadja"/><br />
<a href="http://www.youtube.com/watch?v=gZr6N_ABr8s">Trailer</a></p>
<p>A post modern as fuck black comedy, this is perhaps one of the few things you'll ever see to feature Vampires that's actually enjoyable and meritorious.  It may have been made in 1994 but it kicks the tits off True Blood and laughs devilishly in the face of the Twilight Saga.  </p>
<p><span class="smallcaps"><a href="http://www.imdb.com/title/tt1015474/">Train</a></span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/01/train.jpg" alt="train"/><br />
<a href="http://www.youtube.com/watch?v=Ej8jaARbYkk">Trailer</a></p>
<p>A terrible vehicle for Thora Birch.</p>
<p>The only reason that this movie appears is because I've been saving that pun for months.</p>
<p><span class="smallcaps"><a href="http://www.imdb.com/title/tt1226681/">Pontypool</a></span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/01/pontypool.jpg" alt="Pontypool"/><br />
<a href="http://www.youtube.com/watch?v=RsGPsbAd7Dc">Trailer</a></p>
<p>If you've ever had the feeling that a director accidentally managed to film entirely the wrong movie while another far more interesting story was taking place elsewhere on set, somewhere behind the catering tent or just around a set corner then this is the movie for you.  Funnier than death, insightful, intelligent and compellingly original this Canadian horror is an example of what movies could be if the people who made them didn't suck.  Slickly presented for a horror and perfectly written Pontypool is a gem of a movie that seems to understand the principles of it's genre almost perfectly.</p>
<p><span class="smallcaps"><a href="http://www.imdb.com/title/tt1182345/">Moon</a></span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/01/moon.jpg" alt="Moon"/><br />
<a href="http://www.youtube.com/watch?v=twuScTcDP_Q">Trailer</a></p>
<p>The English speaking highlight of my cinematic year, Moon was hard to track down despite it being a mostly UK made movie.  It received no general release in any cinema under 40+ miles from my home and languished, mostly ignored, for months until Jonathon Ross had the decency to mention it briefly in his 2009 movie review of the year, if not the courage to advertise it more than this years terrible block busters.</p>
<p>I didn't see Moon till November, which was aggravating.</p>
<p>It was however, well worth the wait.  Commandingly directed and visualised, brilliantly designed and written and featuring the tiny cast of Kevin Spacey as a maintenance droid who communicates in smilies and Same Rockwell as his moon bound charge, this film blows everything else out of the water.  Directed by David Bowie's son - Duncan Jones - Moon is like 2001 but good as opposed to being deliberately obtuse and pompous in places.</p>
<p>Utterly Beautiful.</p>
<p><span class="smallcaps"><a href="http://www.imdb.com/title/tt1071804/">Ink</a></span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/01/ink.jpg" alt="Ink"/><br />
<a href="http://www.youtube.com/watch?v=ZBGeErufQdY">Trailer</a></p>
<p>Production, writing, direction, editing, soundtrack composition and costumes designing: these are some of the things performed by Jamin and Kiowa Winans that made Ink happen.  Though it's flawed and a little sentimental at times with some ropey acting here and there you can't help but admire the efforts of two people working very hard to bring what was obviously their baby into the world.  Something of their dedication and sheer pluck will always leak through and leave you with a good feeling towards their movie which makes it worth seeing, highlighting as it does the ability for independent film companies to secure a well deserved release for their products.  New voices are mostly always good.  Unless they're terrible.  Then they should go away.</p>
<p>This is not the case for the people behind Ink. It may sometimes over reach itself, or perhaps just it's budget, but it's still a charming, visually daring piece of work and well worth the time you might spend having a look at it.</p>
<p><span class="smallcaps"><a href="http://www.imdb.com/title/tt1188729/">Pandorum</a></span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/01/pandorum.jpg" alt="Pandorum"/><br />
<a href="http://www.youtube.com/watch?v=yMEhkTxs3_E">Trailer</a></p>
<p>Starring Dennis Quaid and an MMA cage fighter this movie could have gone super wrong, super quickly but luckily for me, as I actually paid to watch it at a cinema, it didn't.  Well paced, not entirely predictable and good looking Pandorum is a nice addition to the Space Survival Horror role call like Event Horizon and Alien - and we could always do with more like those.</p>
<p><span class="smallcaps"><a href="http://www.imdb.com/title/tt1172233/">Whip It</a></span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/01/whip_it.jpg" alt="Whip It"/><br />
<a href="http://www.youtube.com/watch?v=RQGPdXnb2Gg">Trailer</a></p>
<p>This is a movie I tried to ignore.  Hard.  I mean, it's about Roller Derby.  Not that Roller Derby isn't kick ass.  It's just a very hip sport right now which is bound to mean that some asshole will want to ruin it by making a shitty movie all about it.  That's how Hollywood works after all.</p>
<p>But thank God for director Drew Barrymore and writer Shauna Cross who managed to do the almost impossible and produce an actual pro-female movie without ruining Roller Derby in the process. </p>
<p>Whip It is genuinely funny and handled with a lightness and subtlety often missing from the rom-com-chick-flick genre which usually leave you feel bruised and sore after they're done kicking you in the shins with the steel toe capped boots of feminine conformity.  This is a movie I would take my teenage niece to - if I had one - and insist she took notes on.</p>
<p>Starring <a href="http://en.wikipedia.org/wiki/Ellen_paige">Ellen Paige</a>, <a href="http://en.wikipedia.org/wiki/Juliette_Lewis">Juliette Lewis</a>, <a href="http://www.youtube.com/watch?v=iiiWopK9Ex8">Beef Supreme</a> and featuring a show stealing performance by Barrymore as the amazingly named 'Smashly Simpson', Whip It is the sort of life affirming coming of age movie that's easy to stomach and fantastic to watch.</p>
<p><span class="smallcaps"><a href=http://www.imdb.com/title/tt1311067/">Halloween II</a></span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/01/halloween_ii.jpg" alt="HalloweenII"/><br />
<a href="http://www.youtube.com/watch?v=cHslouUNi00">Trailer</a></p>
<p>The second of Rob Zombie’s remakes may not be liked by everyone, just like his <a href="http://www.imdb.com/title/tt0373883/">first attempt</a>.  But if you feel that way you are dumb.  Powerful, raw, and sexy-interesting Mr Zombie brings reality, an unflinching commitment to violence and his <a href="http://www.sherimoonzombie.org/">super hot wife</a> to a boring stilted franchise and if you don’t like it then hard cheese to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2010/01/3-months-of-movies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adventure Time</title>
		<link>http://superpositionkitty.com/2010/01/adventure-time/</link>
		<comments>http://superpositionkitty.com/2010/01/adventure-time/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 23:52:44 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[Adventure Time]]></category>
		<category><![CDATA[Cartoons]]></category>
		<category><![CDATA[Ghostshrimp]]></category>
		<category><![CDATA[John DiMaggio]]></category>
		<category><![CDATA[Mark Hamill]]></category>
		<category><![CDATA[Pen Ward]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1996</guid>
		<description><![CDATA[It’s possible that &#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/84568447@N00/4170052769/in/set-72157616038185579"><img src="http://farm3.static.flickr.com/2747/4170052769_e83730a531.jpg" alt="Adventure Time" height="268px" width="460px" /></a></p>
<p>It’s possible that you haven’t seen <a href="http://www.youtube.com/watch?v=LNVYWJOEy9A">Adventure Time</a> before. Possible, but with over 2 million views in 3 years, not very likely. It aired once — at midnight — on <a href="http://www.nick.com/">Nickelodeon</a>, before going on to win awards and become the internet sensation that it is. Picked up by the <a href="http://www.cartoonnetwork.com/">Cartoon Network</a> at the end of 2008, it’s finally drawing near to the date the first episode airs — March 10th 2010. </p>
<p>Adventure Time is the creation of <a href="http://www.buenothebear.com/">Pendelton Ward</a>. His personal website seems to be down currently, but he also happens to have a <a href="http://twitter.com/Buenothebear">twitter</a> on which he posts many delightful drawings. Other than that, I’m afraid I haven’t been able to find out that much about him. </p>
<p>However, the voice actors are much easier to track down. Starring <a href="http://www.imdb.com/name/nm0906945/">Hynden Walch</a>, <a href="http://us.vdc.imdb.com/name/nm1660179/">Jeremy Shada</a>, and <a href="http://us.vdc.imdb.com/name/nm0224007/">John DiMaggio</a> (best known as Bender from Futurama) — with guest appearances from talents such as <a href="http://www.imdb.com/name/nm0000434/">Mark Hamill</a> — it’s definitely off to a good start.</p>
<p><a href="http://www.frederator.com/">Fredator Studios</a> are the producers of the series (as well as of the animated short) and they have a terrific <a href="http://frederatorblogs.com/adventure_time/">blog</a> on which they post up artwork, storyboards, backgrounds, character designs, and much more. Well worth keeping an eye on over the coming months as things start coming together.</p>
<p>But perhaps my favourite thing about the new Adventure Time is the gorgeous <a href="http://www.flickr.com/photos/84568447@N00/sets/72157616038185579/">sets</a> (261 in total) as seen above. Designed by <a href="http://www.ghostshrimp.net/">Ghostshrimp</a> and <a href="http://santinomaldito.blogspot.com/">Santino Lascano</a>, the high resolution versions are already in heavy rotation as my desktop wallpaper.</p>
<p>In short: keep an eye out for it, it’s going to be popular.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2010/01/adventure-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dud Photos of 2009</title>
		<link>http://superpositionkitty.com/2010/01/dud-photos-of-2009/</link>
		<comments>http://superpositionkitty.com/2010/01/dud-photos-of-2009/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 23:46:57 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Photos]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[Duds]]></category>
		<category><![CDATA[Dundee]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=2001</guid>
		<description><![CDATA[In 2009 I took &#8230;]]></description>
			<content:encoded><![CDATA[<p>In 2009 I took a fair few photos, something like 3,000 of them according to my <a href="http://www.adobe.com/products/photoshoplightroom/">Lightroom</a> library (and that doesn’t include the 4 or 5 roles of film I have sitting on my <a href="http://www.project-audio.com/main.php?prod=rpm13&#038;cat=turntables&#038;lang=en">turntable</a> yet to be developed). Most of those photos (around 2,500 I’d say) were shit, and they will never see the light of day. A few of them — despite various problems — were still rather interesting. It turns out that when the majority of your shots are taken with a <a href="http://www.mir.com.my/rb/photography/hardwares/classics/emfgfg20/eserieslenses/htmls/283550mm.htm#50mm">manual focus lens</a> from the late ’70’s you’re going to get a lot of out of focus, over/under-exposed, or just completely missed shots</p>
<p>So I present to you my dud photos of 2009, a little white-balance here and some levels there, but they’re pretty much as they came straight out of the camera:</p>
<p><a href="http://www.flickr.com/photos/29778044@N02/4277151582/" title="Building by superpositionkitty, on Flickr"><img src="http://farm3.static.flickr.com/2723/4277151582_79258d0056_o.jpg" width="460" alt="Building" /></a></p>
<p><span id="more-2001"></span><a href="http://www.flickr.com/photos/29778044@N02/4277151098/" title="Man's Back by superpositionkitty, on Flickr"><img src="http://farm3.static.flickr.com/2787/4277151098_d6e01396dc_o.jpg" width="460" alt="Man's Back" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/4277151656/" title="Blurry by superpositionkitty, on Flickr"><img src="http://farm3.static.flickr.com/2739/4277151656_960240354c_o.jpg" width="460" alt="Blurry" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/4276406497/" title="Man And Dog by superpositionkitty, on Flickr"><img src="http://farm3.static.flickr.com/2796/4276406497_c16bc23738_o.jpg" width="460" alt="Man And Dog" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/4277151168/" title="Bird On Pole by superpositionkitty, on Flickr"><img src="http://farm5.static.flickr.com/4053/4277151168_b988f5e116_o.jpg" width="460" alt="Bird On Pole" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/4276405963/" title="Peephole by superpositionkitty, on Flickr"><img src="http://farm5.static.flickr.com/4035/4276405963_e4e979468e_o.jpg" width="460" alt="Peephole" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/4277150772/" title="Flower by superpositionkitty, on Flickr"><img src="http://farm3.static.flickr.com/2759/4277150772_9a3ab21231_o.jpg" width="460" alt="Flower" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/4277150912/" title="Tesco by superpositionkitty, on Flickr"><img src="http://farm3.static.flickr.com/2783/4277150912_1574473b18_o.jpg" width="460" alt="Tesco" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/4277150458/" title="Blue Flower by superpositionkitty, on Flickr"><img src="http://farm3.static.flickr.com/2781/4277150458_bdd10ef93c_o.jpg" width="460" alt="Blue Flower" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/4277151724/" title="Snow by superpositionkitty, on Flickr"><img src="http://farm5.static.flickr.com/4072/4277151724_c55759e2ca_o.jpg" width="460" alt="Snow" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/4276406403/" title="Tree by superpositionkitty, on Flickr"><img src="http://farm5.static.flickr.com/4051/4276406403_b968faa9b4_o.jpg" width="460" alt="Tree" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/4277150672/" title="Mostly Sky by superpositionkitty, on Flickr"><img src="http://farm3.static.flickr.com/2557/4277150672_89170fce2c_o.jpg" width="460" alt="Mostly Sky" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/4277151262/" title="Fog by superpositionkitty, on Flickr"><img src="http://farm5.static.flickr.com/4047/4277151262_c174074c4b_o.jpg" width="460" alt="Fog" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2010/01/dud-photos-of-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updates</title>
		<link>http://superpositionkitty.com/2010/01/updates/</link>
		<comments>http://superpositionkitty.com/2010/01/updates/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 23:27:50 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[Death]]></category>
		<category><![CDATA[Drunks]]></category>
		<category><![CDATA[Jeremy Kyle]]></category>
		<category><![CDATA[Real World]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1998</guid>
		<description><![CDATA[There has been a &#8230;]]></description>
			<content:encoded><![CDATA[<p>There has been a definite fall off in the updates at SPK lately.  Not much has been going on on the front page and virtually nothing has happened on any of the others.  Things have <a href="http://en.wikipedia.org/wiki/Large_hadron_collider">ground to a halt</a>.</p>
<p>But in the <a href="http://superpositionkitty.com/books/">real world</a> things have been busy — or at least as busy as we’d ever like them to be.  Over the last three months spanning the end of 2009 and the beginning of 2010 a lot of things have conspired to happen all at once, categorically ruining all fun, ever.  Things like new jobs with erratic and often unexpected work hours, the dreaded festive season, appointments with the immigration department and the weeks of paper work connected with them, actual paying graphic design work, double flu which may or may not have been swine related but sucked either way, persistent coughing, self doubt, lack of confidence and the search for some kind of unifying theory which explains the reason for ‘stuff.</p>
<p>There have been deaths.  Several of them.</p>
<p>It’s just been that kind of three months — the kind where motivation is at an all time low and which in an unprofessional like myself are the sort of time when you withdraw the gang plank and float adrift liked a crotchety pirate in a sea of ‘leave me alone’ and ‘is there any <a href="http://en.wikipedia.org/wiki/Jeremy_Kyle">Jeremy Kyle</a> on TV?’</p>
<p>But all things must pass — it’s one of those essential governing principles of life necessary to moving forward.  </p>
<p>And that’s what the next few posts will be all about — passing on the things we didn’t have the time or motivation to tell you about.  It’s all about vomiting up the past three months onto your lap, wiping our mouths and mumbling sorry before pushing ourselves up into a stumble across the room like an unknown drunk at a party.</p>
<p><a href="http://www.youtube.com/watch?v=4P-nZZkQqTc">Classy</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2010/01/updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress, Headers, And Superposition Kitty</title>
		<link>http://superpositionkitty.com/2010/01/wordpress-headers-and-superposition-kitty/</link>
		<comments>http://superpositionkitty.com/2010/01/wordpress-headers-and-superposition-kitty/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 13:40:37 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Headers]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Lists]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1942</guid>
		<description><![CDATA[We’ve had a few &#8230;]]></description>
			<content:encoded><![CDATA[<p>We’ve had a few requests for articles on the site lately, and more and more of them are asking about the design of the site itself. So for today I thought I would detail how I designed the header for <a href="http://superpositionkitty.com/">Superposition Kitty</a>. An initial warning: I have no idea how many browsers this works in (as my usual testing procedure of using <a href="http://browsershots.org/">Browser Shots</a> is no help for hover states), however it <em>should</em> work for all the major browsers, even IE6. Secondly: This code — or more specifically, nesting a <code>&lt;div&gt;</code> between <code>&lt;ul&gt;</code> and <code>&lt;li&gt;</code> elements — is not XHMTL valid. </p>
<p>I spent a lot of time worrying about the second part until I realised the validity of my code had absolutely no effect on how the site is displayed to visitors. This doesn’t mean you should just throw validation out the window — at the very least it is a great way to discover hidden errors in your code, or why something isn’t displaying as you think it should — but I just don’t believe it is as important as I once did.</p>
<p>Headers in <a href="http://wordpress.org/">WordPress</a> are a relatively simple affair. If you want to brush up on the basics then I would recommend checking out the excellent WordPress Codex article on <a href="http://codex.wordpress.org/Designing_Headers">designing headers</a>. The header for Superposition Kitty is based on <a href="http://htmldog.com/articles/suckerfish/dropdowns/">Son Of Suckerfish Dropdowns</a>, which is in turn based on the groundbreaking <a href="http://www.alistapart.com/">A List Apart</a> article: <a href="http://www.alistapart.com/articles/dropdowns/">Suckerfish Dropdowns</a>. Reading through both of those articles (which I heavily recommend) will give you a good grounding in how to style lists as a horizontal (or even vertical) menu. </p>
<p><span id="more-1942"></span>First up we have the HTML code, which will traditionally go directly after the <code>&lt;body&gt;</code> tag in the <code>header.php</code> file in your WordPress directory:</p>
<pre>
&lt;div id="head"&gt;
&lt;div id="navigation"&gt;
	&lt;ul&gt;
		&lt;li&gt;&lt;a href="#"&gt;#&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;#&lt;/a&gt;
			&lt;ul&gt;
			&lt;div class="center"&gt;
				&lt;li&gt;&lt;a href="#"&gt;#&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href="#"&gt;#&lt;/a&gt;&lt;/li&gt;
			&lt;/div&gt;
			&lt;/ul&gt;
		&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
&lt;/div&gt;
&lt;/div&gt;
</pre>
<p>This creates the basis for a simple two-tiered menu of three items (the second of which will have two child items). The <code>&lt;div class="center"&gt;</code> is the tag mentioned at the beginning of this article that will break validation. However, it is necessary to center the list items with the rest of the site while still allowing the background to take up 100% width. This should become more obvious with the CSS:</p>
<pre>
#head {
width:100%;
background:#222;
height:36px;
}

#navigation, #navigation ul, .center {
margin:0px auto;
width:960px;
}

#navigation ul li {
float:left;
margin:0px 12px 0px 6px;
padding:18px 3px 0px 3px;
font-size:15px;
line-height:18px;
font-weight:bold;
text-transform:uppercase;
}

#navigation ul li a {
color:#FDFDFD;
}

#navigation ul li:hover, #navigation ul li:active {
background:#34B0F8;
color:#222;
}

#navigation li ul {
position:absolute;
left:-9999px;
}

#navigation li:hover ul {
left:0px;
width:100%;
padding-top:2px;
background:#34B0F8;
}

#navigation li ul li {
padding:0px;
margin:0px 9px;
}

#navigation li ul li a:active, #navigation li ul li a:hover, #navigation ul li a:active, #navigation ul li a:hover {
color:#222;
}
</pre>
<p>This should be relatively self-explanatory if you read the articles linked above. We’re simply styling a list as a menu, and when the mouse is hovered over an item with a child element that element is unhidden. The only problem we have here is that Internet Explorer won’t properly recognise the <code>:hover</code> class on any element other than <code>&lt;a&gt;</code>, so we’re going to need to borrow some JavaScript from the <a href="http://htmldog.com/articles/suckerfish/dropdowns/">Son Of Suckerfish Dropdowns</a> article: </p>
<pre>

sfHover = function() {
var sfEls = document.getElementById("navigation").getElementsByTagName("LI");
for (var i=0; i&lt;sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className+=" sfhover";
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
</pre>
<p>What this does is look for <code>&lt;li&gt;</code> elements in <code>navigation</code> and then apply <code>:sfhover</code> to them when moused-over, and remove it when moused-out. So we’ll have to add the following to our CSS file for it to have a class to apply:</p>
<pre>
#navigation li:sfhover ul {
left:0px;
width:100%;
padding-top:2px;
background:#34B0F8;
}
</pre>
<p>Put all this together and you should have something that looks rather similar to our <a href="#head">menu</a>.  Feel free to post any comments, suggestions or questions below.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2010/01/wordpress-headers-and-superposition-kitty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linode vs. Media Temple</title>
		<link>http://superpositionkitty.com/2009/12/linode-vs-media-temple/</link>
		<comments>http://superpositionkitty.com/2009/12/linode-vs-media-temple/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 17:47:41 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[Linode]]></category>
		<category><![CDATA[Media Temple]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[VS.]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1830</guid>
		<description><![CDATA[Lately I’ve noticed we’ve &#8230;]]></description>
			<content:encoded><![CDATA[<p>Lately I’ve noticed we’ve been getting a lot of hits on my article <a href="http://superpositionkitty.com/2009/10/goodbye-media-temple-hello-linode/">Goodbye Media Temple, Hello Linode</a>, with search terms such as ‘mediatemple vs linode’. So I thought it would be best to transcribe my thoughts in a little more detail below. I would also like to preface this article with the statement that I was a customer of Media Temple’s for almost 3 years, and have been with Linode for 2 months now.</p>
<p>For the table below I have compared Media Temple’s ‘<a href="http://mediatemple.net/webhosting/dv/">base</a>’ dedicated virtual server to it’s nearest Linode competitor the ‘<a href="http://www.linode.com/">Linode 720</a>′.</p>
<table id="striped_tables">
<thead>
<td>Metric</td>
<td>Media Temple</td>
<td>Linode</td>
</thead>
<tbody>
<tr class="odd">
<td class="strong">RAM</td>
<td>512MB</td>
<td>720MB</td>
</tr>
<tr class="even">
<td class="strong">Storage</td>
<td>20GB</td>
<td>32GB</td>
</tr>
<tr class="odd">
<td class="strong">Transfer</td>
<td>1TB</td>
<td>400GB</td>
</tr>
<tr class="even">
<td class="strong">Price</td>
<td>$50/mo</td>
<td>$39.95/mo</td>
</tr>
</tbody>
</table>
<p> <br />
Linode comes out way in front in everything other than ‘Network Transfer’, however I have found that for the few small sites that we host we rarely use more than even 50GB a month. Obviously, depending on what you host you may need more than the 400GB per month that this level of Linode offers, but I would be wary of hosting anything pushing that much traffic on a server with only 512MB of RAM (in Media Temple’s case). It’s also worth noting that Linode offers additional transfer at the rate of $0.10 per 1GB if need be. Media Temple does not offer such a service, and will charge you $0.50 for each 1GB you are over your limit.</p>
<p><span id="more-1830"></span>In the table below we have the various levels of support offered by both companies.</p>
<table id="striped_tables">
<thead>
<td>Support</td>
<td>Media Temple</td>
<td>Linode</td>
</thead>
<tbody>
<tr class="odd">
<td class="strong">24 Hour Phone-line</td>
<td>✔</td>
<td class="strong">X</td>
</tr>
<tr class="even">
<td class="strong">Email</td>
<td>✔</td>
<td>✔</td>
</tr>
<tr class="odd">
<td class="strong">Wiki</td>
<td>✔</td>
<td>✔</td>
</tr>
<tr class="even">
<td class="strong">Library</td>
<td class="strong">X</td>
<td>✔</td>
</tr>
<tr class="odd">
<td class="strong">IRC</td>
<td class="strong">X</td>
<td>✔</td>
</tr>
<tr class="even">
<td class="strong">Forums</td>
<td class="strong">X</td>
<td>✔</td>
</tr>
<tr class="odd">
<td class="strong">International Staff</td>
<td>✔</td>
<td>✔</td>
</tr>
<tr class="even">
<td class="strong">Twitter</td>
<td>✔</td>
<td>✔</td>
</tr>
</tbody>
</table>
<p><br/>Most of my communication with Media Temple was through their email support, responses usually took anywhere from 2 to 24 hours and were varyingly helpful. With Linode I have found their <a href="http://www.linode.com/irc/">IRC</a> channel to be a terrific help in setting up, fine-tuning and securing my server, not to mention any random Unix, Windows, Mac (or even BeOS) questions you may have that have nothing to do with your server. Populated by dedicated staff members and other helpful individuals, I have found it invaluable.</p>
<p>I should also note that the <a href="http://library.linode.com/">Linode Library</a> is still being populated with articles and that details may occasionally seem sparse, but it is something that is improving almost daily.</p>
<p>Finally, we have some additional details that I thought were important to compare.</p>
<table id="striped_tables">
<thead>
<td>Other</td>
<td>Media Temple</td>
<td>Linode</td>
</thead>
<tbody>
<tr class="odd">
<td class="strong">Addons</td>
<td>✔</td>
<td>✔</td>
</tr>
<tr class="even">
<td class="strong">Choice of Datacenter</td>
<td class="strong">X</td>
<td>✔</td>
</tr>
<tr class="odd">
<td class="strong">Choice of OS</td>
<td class="strong">X</td>
<td>✔</td>
</tr>
<tr class="even">
<td class="strong">Backups</td>
<td>$20/mo</td>
<td>Β</td>
</tr>
<tr class="odd">
<td class="strong">Pro rata Billing</td>
<td class="strong">X</td>
<td>✔</td>
</tr>
<tr class="even">
<td class="strong">Easy Scalability</td>
<td>✔</td>
<td>✔</td>
</tr>
</tbody>
</table>
<p><br/>Note that the Beta under ‘Backups’ for Linode is to signify that their backup service is currently in Beta, there is no word yet on when it will be out of Beta or what the price would be when this happens. Also shown above is my favourite feature of Linode: Pro rata billing. I have <a href="http://superpositionkitty.com/2009/11/baltic-hackers/">mentioned previously</a> what a big help this was to me. I have also found that many people find Linode’s pro rata billing (ie. only pay for what you use) to be extremely helpful in testing various set-ups before they move them onto their live server.</p>
<p>Not mentioned above is Linode’s <a href="http://www.linode.com/faq.cfm#do-you-provide-console-access">LISH</a> console, which I have found pretty useful when I’ve done something stupid, such as locked myself out or messed up my network settings.</p>
<p>Overall it comes down quite favourably in Linode’s corner, which is pretty much why when I started to experience issues with the service provided by Media Temple they were my first choice. If you are still not sure about choosing Linode, then maybe give <a href="http://journal.uggedal.com/vps-performance-comparison">this</a> a read: where they beat the best that the other VPS providers have to offer.</p>
<p>If you’re thinking of using Linode after reading this article then please sign up using <a href="http://www.linode.com/?r=f451bd3d2ce7aba3e84e577aea932f38a45ac4ea">this link</a> and Linode will give me a small discount on my hosting. </p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/12/linode-vs-media-temple/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baltic Hackers</title>
		<link>http://superpositionkitty.com/2009/11/baltic-hackers/</link>
		<comments>http://superpositionkitty.com/2009/11/baltic-hackers/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 10:42:44 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[Baltics]]></category>
		<category><![CDATA[fail2ban]]></category>
		<category><![CDATA[Hackers]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1802</guid>
		<description><![CDATA[For some reason, some &#8230;]]></description>
			<content:encoded><![CDATA[<p>For some reason, some how, the virtual private server that this site is hosted on was compromised by <a href="http://en.wikipedia.org/wiki/Baltic_region">Baltic</a> hackers last weekend. I am not sure what it is they wanted, maybe <a href="http://superpositionkitty.com/2009/06/trent-reznor-rage-quits-twitter/">Trent Reznor</a> or <a href="http://superpositionkitty.com/2009/07/bad-books-twilight-is-terrible/">Stephanie Mayer</a> have some irate technological fans out in Eastern Europe.</p>
<p>WARNING: Semi-technical talk ahead.</p>
<p>Either somebody took offense at something we have written or they were just really, really bored, because at 16:00 on Friday of last week our server started sending out massive amounts of data over <a href="http://en.wikipedia.org/wiki/User_Datagram_Protocol">UDP</a>. I received an automated notice from <a href="http://www.linode.com/">Linode</a> a few hours later telling me that my server had averaged 6.16MB/s over the last two hours. That one spike there managed to use up 5% of our monthly bandwidth. The network usage continued at random intervals for only brief periods of time, making it quite difficult to catch with <a href="http://en.wikipedia.org/wiki/Tcpdump">tcpdump</a>, and neither <a href="http://en.wikipedia.org/wiki/Ntop">ntop</a> or <a href="http://en.wikipedia.org/wiki/Iftop">iftop</a> noticed anything amiss. </p>
<p>Keeping an eye on Linode’s conveniently provided network graphs I was finally able to capture the tail end of another massive output with tcpdump only to reveal absolutely nothing. None of the (very helpful) Linode staff were able to tell me just what was going on, but after a few hours came to the conclusion that it was likely somebody had compromised my server and was probably using it to perform <a href="http://en.wikipedia.org/wiki/Denial-of-service_attack">DDoS</a> attacks. Solution: delete and rebuild.</p>
<p>This could’ve been painful if I was still with <a href="http://mediatemple.net/">Media Temple</a>, but Linode offer <a href="http://en.wikipedia.org/wiki/Pro_rata">pro-rata</a> billing (meaning that I only have to pay for what I use). I immediately opened up a new server and got to work transferring my backups. Then it was time to secure it, and better than I had done last time. I am now using <a href="http://en.wikipedia.org/wiki/Iptables">iptables</a> to block all ports other than <a href="http://en.wikipedia.org/wiki/Www">www</a>, <a href="http://en.wikipedia.org/wiki/HTTP_Secure">https</a> and <a href="http://en.wikipedia.org/wiki/Secure_Shell">ssh</a>. I have also set up <a href="http://www.ece.uci.edu/~chou/ssh-key.html">SSH public/private keys</a>, disabled root login, moved ssh ports, removed <a href="http://en.wikipedia.org/wiki/Vsftpd">vsftpd</a> and installed <a href="http://www.fail2ban.org/wiki/index.php/Main_Page">fail2ban</a>. </p>
<p>I could now close up my old account. Total cost to me: $0.63 in server charges and half my weekend. Hopefully I won’t have to deal with this again, but it taught me to make sure I always have up-to-date backups and to keep on top of security. And not to piss off Eastern European hackers.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/11/baltic-hackers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Spec Work &amp; Design Competitions</title>
		<link>http://superpositionkitty.com/2009/11/on-spec-work-design-competitions/</link>
		<comments>http://superpositionkitty.com/2009/11/on-spec-work-design-competitions/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 16:43:12 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[Clients]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Spec Work]]></category>
		<category><![CDATA[Synergy]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1746</guid>
		<description><![CDATA[Spec work is killing &#8230;]]></description>
			<content:encoded><![CDATA[<p>Spec work is killing the design industry.</p>
<p>Spec — short for ‘speculative’ — work is applying the ‘try before you buy’ principles of selling cars to the design industry (hopefully you can see already what a bad idea this is). In short, it is any work in which a fair fee has not been agreed upon up front. This should seem obvious enough to most professional designers out there; personally, I don’t take on any projects these days unless there is a signed contract and — if a flat fee rather than on hourly fee is chosen — between 30% to 50% of the fee up front. </p>
<p>Anybody that has been ripped off by a client that decided not to pay at the end of a project, or decided that the fee is too large and they will pay the amount they feel is ‘fair’, knows how stupid it is to take on spec work. But there is another form of spec work: the design ‘competition’. Design competitions have been around for decades, but the popularity of the web has brought us many websites hosting these competitions — and some of them even promise a reasonable fee. </p>
<p>We’ll ignore for now the hundreds of websites and forums that are populated with “<em>best design for a logo that contains a picture of my cat and the words ‘synergy’, ‘paradigm shift’ and ‘cross-platform’ will be <a href="https://www.paypal.com">PayPal</a>’d £20</em>″. While these design pleas are universally terrible, I have been told that the main entrants for these are 16 year-old’s that have just <a href="http://thepiratebay.org/">pirated</a> a copy of <a href="http://www.adobe.com/products/photoshop/compare/">Adobe Photoshop</a> and are looking for weed money, not exactly my audience here.</p>
<p><span id="more-1746"></span><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/catcard.jpg" alt="How not to design a business card." /></p>
<p>The new breed of design competitions is represented by many quite recently launched websites (which I have deigned not to provide links for) that appear to offer a reasonable fee. They act as intermediaries between the client and hundreds of designers. The client puts up the brief and the amount they are willing to pay, and the designers clamber over each-other in an effort to win the £300 or however much is being offered. While — if you only spend a few hours on your design before you submit it — this may look like quite the deal, this is definitely not true. Depending on the quality of your work, your chance of actually getting paid is only <code>1:number_of_designers_entered</code>, while the client is getting <code>hours_worked x number_of_designers_entered</code> worth of design. How does that not look like a terrible deal for anybody that entered, and a brilliant deal for the client? </p>
<p>It’s easy enough to stop all this, just say <a href="http://www.no-spec.com/">no to spec work</a>. When the clients realise that the logo designed by the 16 year-old with a pirated copy of Photoshop isn’t holding up, they’ll have to come to you. </p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/11/on-spec-work-design-competitions/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Artists Of Today (And Yesterday)</title>
		<link>http://superpositionkitty.com/2009/10/artists-of-today-and-yesterday/</link>
		<comments>http://superpositionkitty.com/2009/10/artists-of-today-and-yesterday/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 16:09:41 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Artists]]></category>
		<category><![CDATA[Bang Bang Studio]]></category>
		<category><![CDATA[John Bauer]]></category>
		<category><![CDATA[Stas Orlov]]></category>
		<category><![CDATA[Takato Yamamoto]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1672</guid>
		<description><![CDATA[We stumble over so &#8230;]]></description>
			<content:encoded><![CDATA[<p>We stumble over so many brilliant artists while traversing the internet that it would be a travesty not to feature as many as we can here. So I introduce you to a new series of posts: <a href="http://superpositionkitty.com/category/artists/">Artists Of Today (And Yesterday)</a>.</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">Stas Orlov</span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/01/stasorlov.jpg" alt="Stas Orlov"/></p>
<p>Stas Orlov — also known as <a href="http://indi-efx.livejournal.com/">Indi</a> and <a href="http://unomoralez.livejournal.com/">Uno</a> — lives in Moscow, Russia. A member of <a href="http://www.bangbangstudio.ru/">Bang Bang Studio</a>, he produces beautiful detailed pieces that look almost as if they’ve been drawn in <a href="http://en.wikipedia.org/wiki/Paint_%28software%29">MS Paint</a>. His work is largely surreal, dealing with themes from <a href="http://ljplus.ru/img4/u/n/unomoralez/RedHat_with-Frank.gif">childen’s stories</a>, to <a href="http://ljplus.ru/img4/u/n/unomoralez/KingDISCO.gif">pop culture</a>, to religion, and so on.</p>
<p>Unfortunately this profile is tragically short as there isn’t much information on him to be found, and certainly not in English. But, make sure to check out his aforementioned blogs on LiveJournal, or his <a href="http://www.bangbangstudio.ru/portfolio/stasorlov/">Profile</a> on Bang Bang Studio, to get an idea of just how prolific he is.</p>
<p><span id="more-1672"></span><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">Takato Yamamoto</span><br />
<img src="http://superpositionkitty.com/uploads/2010/01/takatoyamamoto.jpg" alt="Takato Yamamoto"/></p>
<p>Takato Yamamoto is a Japanese Illustrator. Born in the Akita prefecture of Japan, he graduated from the <a href="http://www.zokei.ac.jp/">Tokyo Zokei University</a> in the 1980’s and mostly drew illustrations for commercial advertising. He then became interested in <a href="http://en.wikipedia.org/wiki/Ukiyo-e">Ukiyo-e</a>, which he refined further into his “<a href="http://www.mondobizzarro.net/gallery/artists/takatoyamamoto.php">Heisei Esthiticism</a>” style.</p>
<p>His work mainly deals with eroticism, bondage, and surrealism, and more examples can be seen <a href="http://images.google.com/images?oe=UTF-8&amp;sourceid=navclient&amp;gfns=1&amp;q=takato%20yamamoto&amp;um=1&amp;ie=UTF-8&amp;sa=N&amp;hl=en&amp;tab=wi">here</a>.</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">John Bauer</span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/01/johnbauer.jpg" alt="John Bauer"/></p>
<p><a href="http://www.bpib.com/illustrat/bauer.htm">John Bauer</a> was born 1882, in Sweden. At the age of 16 he began to study art, and at just 18 he had discovered his love of surreal/fantasy work. His most famous work is <a href="http://en.wikipedia.org/wiki/Bland_tomtar_och_troll">Bland Tomtar Och Troll</a> (Among Gnomes and Trolls), a Swedish fairy tails and folklore annual, the first issues of which (1907 — 1910 and 1912 — 1915) were illustrated by him. </p>
<p>Bauer’s career was cut unfortunately short when he died at the age of just 35, when he, his wife, and their three children drowned in <a href="http://en.wikipedia.org/wiki/File:Lake_V%C3%A4ttern.png">Lake Vattern</a>. To see his hauntingly surreal illustrations and paintings in person visit the <a href="http://www.johnbauersmuseum.nu/diverse/english.html">John Bauer Museum</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/10/artists-of-today-and-yesterday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing Hosting Providers Part 2.</title>
		<link>http://superpositionkitty.com/2009/10/changing-hosting-providers-part-2/</link>
		<comments>http://superpositionkitty.com/2009/10/changing-hosting-providers-part-2/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 11:26:17 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[Linode]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VPS]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1668</guid>
		<description><![CDATA[<em>A.K.A. Getting Apache, MySQL,</em> &#8230;]]></description>
			<content:encoded><![CDATA[<p><em>A.K.A. Getting <a href="http://en.wikipedia.org/wiki/Apache_HTTP_Server">Apache</a>, <a href="http://en.wikipedia.org/wiki/MySQL">MySQL</a>, <a href="http://en.wikipedia.org/wiki/PHP">PHP</a> and <a href="http://en.wikipedia.org/wiki/Ruby_on_Rails">Ruby on Rails</a> to play nice under <a href="http://www.ubuntu.com/">Ubuntu</a>.</em></p>
<p>Now we get to set up our new <a href="http://www.linode.com/">Linode</a> VPS. The first thing you’ll want to do is <a href="http://library.linode.com/linode-manager/configuring-dns-with-the-linode-manager">configure your DNS</a>. Make sure that you delete the MX record and replace it with the records from Google Apps as discussed in <a href="http://superpositionkitty.com/2009/10/changing-hosting-providers-part-1/">part one</a>. Note that you do not need to wait for the name servers to propagate before editing your DNS records, in fact it is probably better to set up your DNS <em>first</em> so that downtime is minimised. You’ll then need to <a href="http://library.linode.com/linode-manager/deploying-a-linux-distribution">deploy</a> a linux distribution. As mentioned in the preface; I chose <a href="http://www.ubuntu.com/">Ubuntu</a> 9.04.</p>
<p>Now this is where the need to use the Linode dashboard ends. The following can be used with any VPS provider. You can follow either the Linode <a href="http://library.linode.com/lamp-guides/ubuntu-9.04-jaunty/">Setting Up A LAMP Server On Ubuntu</a> article, or alternatively Slicehost’s <a href="http://articles.slicehost.com/2008/4/25/ubuntu-hardy-setup-page-1">Ubuntu Hardy Setup</a> article to get your VPS up and running. Note that the Slicehost article focuses more on security and that you will need to read the rest of the articles in their series to set up Apache, MySQL, and PHP.</p>
<p><span id="more-1668"></span>With everything set up, you can copy all the data you have backed up on your personal computer to your new VPS. I found it easiest to just <a href="http://www-pnp.physics.ox.ac.uk/~west/intro_manual/node95.html">scp</a> to my server and upload an entire website to it’s <code>public_html</code> directory on my server. You’ll also want to copy the output of your databases to your server. Make sure to actually <em>create</em> the database on your new server and then grant your user permissions on it. You can then migrate the data from your <code>output.sql</code> file to your new database.</p>
<p>You may now find (as I did) that you server isn’t serving PHP files properly. A simple fix is to create an <code>.htaccess</code> file (if one doe not already exist) in the <code>public_html</code> directory for your domain and add:</p>
<pre>
DirectoryIndex index.html index.php index.php5
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
</pre>
<p>Make sure that if <code>.htaccess</code> already exists then you add it to the top of the file.</p>
<p>Now — if you’re like me — you probably don’t like editing all those .CSS and .HTML files through a terminal, so we’re going to set up FTP so we can edit using our application of choice (personally, I use <a href="http://www.panic.com/coda/">Coda</a>).  Following <a href="https://help.ubuntu.com/9.04/serverguide/C/ftp-server.html">this article</a> will get everything up and running, but you’re still going to need to create accounts. I find it best to set up an account for each individual domain, which is as easy as:</p>
<pre>
sudo useradd -d /srv/www/domainname/public_html -m username
sudo passwd username
</pre>
<p>Obviously, change <code>domainname</code> to the actual domain, and <code>username</code> to the name of the user you want to create. Using these credentials we can now ftp to our domain, but we don’t have any permissions to upload or edit files. This is easily fixed with:</p>
<pre>
chown -R username /srv/www/domainname/public_html
</pre>
<p>The final (and hardest, for me) step is to get Ruby on Rails working. What I didn’t realise was that installing <a href="http://www.modrails.com/">Phusion Passenger</a> meant that <code>mod-php</code> was uninstalled. Thus rendering my WordPress installation useless. I found <a href="http://trac.biostr.washington.edu/trac/wiki/RubyOnRailsApacheModRails?format=txt">this helpful guide</a> that recommend using <a href="http://www.fastcgi.com/drupal/">FastCGI</a> instead, but FastCGI gave me out of memory errors no matter what the limit in <code>php.ini</code> was set to. So the only alternative left was to install <a href="http://mongrel.rubyforge.org/">Mongrel</a>, this was easy enough using another <a href="http://articles.slicehost.com/2008/5/9/ubuntu-hardy-mongrel-and-mongrel-clusters">guide</a>.</p>
<p>Now hopefully everything has gone as well for you as it did for me. If not, then go back through the guides I linked and read the comments section to see if anybody has had the same problem as you, otherwise post a comment below.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/10/changing-hosting-providers-part-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Changing Hosting Providers Part 1.</title>
		<link>http://superpositionkitty.com/2009/10/changing-hosting-providers-part-1/</link>
		<comments>http://superpositionkitty.com/2009/10/changing-hosting-providers-part-1/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 09:56:31 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[MX]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[VPS]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1660</guid>
		<description><![CDATA[<em>A.K.A. Backing up all</em> &#8230;]]></description>
			<content:encoded><![CDATA[<p><em>A.K.A. Backing up all of your data, setting up email, and configuring <a href="http://en.wikipedia.org/wiki/Domain_Name_System">DNS</a>.</em></p>
<p>Seeing as my <a href="http://mediatemple.net/">Media Temple</a> install still wasn’t responding, the first thing I had to do was login to <a href="http://www.parallels.com/uk/products/plesk/">Plesk</a> and see what services I could shut down to get on with the move. Turned out there actually wasn’t any, so I took the decision to shut down <a href="http://en.wikipedia.org/wiki/Apache_HTTP_Server">Apache</a> for a few hours while I tried to get email sorted. </p>
<p>Hours were spent researching the best way to migrate the seven email addresses between servers, until a friend recommended <a href="http://www.google.com/apps/intl/en/group/index.html">Google Apps</a>. The standard edition (free) gives you a calendar, docs, sites, and — most importantly — email. 7GB of data per user, with 50 users allowed per domain. There was also the added bonus that I would be moving reasonably intensive resources (<a href="http://en.wikipedia.org/wiki/E-mail_spam">spam</a> filtering and such) off the server, and that if my server ever went down again email would not be effected. The only downside to Google Apps is that you can’t have multiple domains on the same account (unless you want all the email to go to the same address), so it required setting up 3 different accounts to manage all my email addresses. Setting up an account is relatively painless, involving creating a document in the root of your domain to prove your ownership.</p>
<p><span id="more-1660"></span>The first thing to do was to upload all my emails. This required booting up <a href="http://www.parallels.com/uk/products/desktop/">Parallels Desktop</a> into <a href="http://en.wikipedia.org/wiki/Windows_XP">XP</a>, as the Google Apps <a href="http://mail.google.com/mail/help/email_uploader.html">email uploader</a> is Windows only. It was simple enough to create a new <a href="http://en.wikipedia.org/wiki/Post_Office_Protocol">POP</a> (important, as you need the email available on your machine) account for each user in <a href="http://www.mozillamessaging.com/en-US/thunderbird/">Thunderbird</a> and then upload them to the relevant Google Apps account. The only other important step is to modify the <a href="http://en.wikipedia.org/wiki/MX_record">MX record</a>s for your domain, your hosting provider should provide some way in which to do this. You’ll want to delete your old MX record, and add the following:</p>
<pre>
1     ASPMX.L.GOOGLE.COM.
5     ALT1.ASPMX.L.GOOGLE.COM.
5     ALT2.ASPMX.L.GOOGLE.COM.
10    ASPMX2.GOOGLEMAIL.COM.
10    ASPMX3.GOOGLEMAIL.COM.
</pre>
<p>Give it a few hours to propagate and you’re good to go. The last thing to do is change the setting in your email client to reflect the fact that your email is now coming through via Google.</p>
<p>I could now go back into Plesk and turn my mail server off, and Apache back on. As I already had an <a href="http://en.wikipedia.org/wiki/File_Transfer_Protocol">FTP</a> account set up for each domain, it was easy enough to FTP into them all and backup entire websites to my laptop. The only tricky part remaining was MySQL, and I didn’t know my admin account or password. Luckily <code>cat /root/.mysql_history|more</code> gave me the details I was looking for, and I could get to backing up my <a href="http://wordpress.org/">WordPress</a> databases. Once again, a single line of code was all I needed:</p>
<pre>
mysqldump --opt --user=username --password=password  dbname &gt; output.sql
</pre>
<p>Where <code>username</code> was my username, <code>password</code> my password, <code>dbname</code> the name of the database I wished to back up, and <code>output.sql</code> the file created from the process. Once that was done I could copy <code>output.sql</code> to my laptop. Up next; getting Apache, MySQL, PHP, and Ruby on Rails to place nice on my new server.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/10/changing-hosting-providers-part-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Goodbye Media Temple, Hello Linode</title>
		<link>http://superpositionkitty.com/2009/10/goodbye-media-temple-hello-linode/</link>
		<comments>http://superpositionkitty.com/2009/10/goodbye-media-temple-hello-linode/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 08:42:36 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Linode]]></category>
		<category><![CDATA[Media Temple]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[VPS]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1652</guid>
		<description><![CDATA[If you checked the &#8230;]]></description>
			<content:encoded><![CDATA[<p>If you checked the site at any time last week then there was a 20% chance that it was down. Somehow, over the last few months, we had begun to hit the resource limit at <a href="http://mediatemple.net/">MediaTemple</a>. No real traffic changes, no server changes, just a slow decline in the stability and speed of our <a href="http://en.wikipedia.org/wiki/Virtual_private_server">VPS</a>. Opening a ticket with Media Temple revealed that because we had been with them for longer than 2 years, we were on a quite outdated version, and were offered a free upgrade to the current version. However, because we had such an old version of their <a href="http://mediatemple.net/webhosting/dv/">DV</a> server — we could not use their automatic upgrade tools and would have to open a <em>new</em> server with them (at a minimum of $50 a month) to migrate. As this happened halfway through our yearly billing cycle (paid upfront) I decided to wait it out.</p>
<p>It all came to a head last week when the site went down completely. Frantic requests to Media Temple (over a period of 24 hours) ended in a response of “If issues persists, we can only suggest either adding addtional RAM or upgrading your server. We’ve determined the root cause and have helped you optimize your server as a courtesy.”</p>
<p>When the support staff still can’t tell you why you server is performing so badly with no changes, and deem it a courtesy to keep it running, you know it’s time to move on. So goodbye Media Temple, and hello <a href="http://www.linode.com/">Linode</a>! I signed up to the base plan — less than half the price I was paying at Media Temple — and got to migrating all my data. There will be a post coming up about all the pitfalls involved in moving from one hosting company to another, as well as tips and tricks to set up your fresh server.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/10/goodbye-media-temple-hello-linode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Speed Girl</title>
		<link>http://superpositionkitty.com/2009/10/the-speed-girl/</link>
		<comments>http://superpositionkitty.com/2009/10/the-speed-girl/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 09:44:07 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Guest Articles]]></category>
		<category><![CDATA[1919]]></category>
		<category><![CDATA[Everywoman's]]></category>
		<category><![CDATA[Feminism]]></category>
		<category><![CDATA[Motor Cycling]]></category>
		<category><![CDATA[motorbikes]]></category>
		<category><![CDATA[The Speed Girl]]></category>
		<category><![CDATA[WW1]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1635</guid>
		<description><![CDATA[<em>Reprinted from October</em> &#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/29778044@N02/4004525798/" title="The Speed Girl by superpositionkitty, on Flickr"><img src="http://farm3.static.flickr.com/2431/4004525798_dbd4a924da_o.jpg" width="460" height="322" alt="The Speed Girl" /></a><br />
<em>Reprinted from October 25 1919’s <strong>Everywoman’s</strong></em></p>
<p>Who knows the joy of the open road on a perfect autumn afternoon?</p>
<p>Picture the King’s Highway rolling smoothly down over the moor into the little valley where an old-fashioned riverside inn is half concealed by an opalescent mist! The purling brown waters of the stream make rippling music under the moss-grown arches of the grey stone bridge. And then the great road winds on up the hill opposite until its brown streak is lost amidst the distant trees.</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">The Real Joy.</span><br />
The silk-clad girl lolling on the cushions of a big limousine may see these things. But she does not really feel them, she does not drink in their full beauty. It is her sister on the motor-bike who learns the true spell of the countryside, who gets the intoxication of speed and colour and movement — the joy of the open road. </p>
<p>Motor cycling as a sport for girls has come to stay. The modern girl is not content to sit perched up on a pillion or embedded in the close confinement of a sidecar. She is out to have a bike of her own, and to ride it herself. Nothing less is going to satisfy her.</p>
<p><span id="more-1635"></span><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">The Training.</span><br />
In the strain and stress of the war all these ideas have been changed. Motor cycling demands a costume fashioned more or less on masculine lines. The war finally abolished the prejudice against girls wearing some kind of rational dress. The lady motor cyclist despatch riders attached to the British Army commanded universal admiration. They were subjected to rigid military discipline, and their life was a very hard one. Out early and late, often in driving rain or bitter cold, entrusted with urgent messages of the utmost importance, and responsible for the cleaning and maintenance of their own machines, these intrepid girls put up an achievement which their country will never forget, and which, incidentally, has washed away the last trace of prejudice against motor cycling as a healthy pastime for women.</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">Advice.</span><br />
Here are a few suggestions for the beginner: Special machines are built for ladies, but the best advice is to get a man’s machine of a suitable type and to wear a costume fashioned on the same model as those of the war-time despatch riders. Girls who have had experience in munition factories or as land workers ought not to have much difficulty in settling the details of their attire.</p>
<p>The problem, of course, is to choose a rig-out that will be perfectly neat and workmanlike on the road, and which will at the same time all the fair rider to present an appearance not devoid of feminine charm when enjoying a cup of tea at some wayside hostelry.</p>
<p>Short rides, say, fifteen or twenty miles in fine dry weather do not present any special difficulties. But the girl motor cyclist who is out to do her sixty or hundred miles at all seasons will be well advised to make careful preparations. Warm underclothing should be worn, and the neck should on no account be open. For footgear easy-fitting waterproof leather boots — and above these puttees, or better still, leather leggings, if funds will run to them. Probably the wisest plan of all for the lady-rider is to wear a suit of grey, or fawn-coloured overall of some rainproof material. These can be purchased at quite reasonable prices, afford a complete protection, and can be slipped off in a few seconds at the journey’s end or during a meal <em>en route</em>. Serviceable leather gloves are an absolute essential, and for headgear it would be difficult to beat one modelled on the lines of those worn by the lady motor cyclists of the R.A.F.</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">The Choice Of Machine.</span><br />
In the choice of machines the would-be girl rider had better be guided by the advice of her men friends. A medium-powered machine, somewhere in the neighbourhood of a 3-h.p., should be selected, and preferably with a two-stroke engine, as these are easier to start and cause much less vibration. </p>
<p>A machine for a lady’s use should have a clean running engine. Oil is all very well in its way, and so is dust, but when you get them in quantities, and mixed, they are apt to be a sore trial to the flesh. </p>
<p>Here is a simple explanation of a petrol engine for the benefit of the absolute novice.</p>
<p>The motive power is caused by the explosion of a mixture of petrol gas and air in a closed cylinder, thereby forcing down a piston which communicates its power through suitable gearing to the back wheel. The explosion drives the piston down. As the piston comes up a valve is opened and the burnt gases are forced out the through the exhaust pipe. As the piston comes down again another valve is opened and it sucks in a new lot of explosive mixture. THis is compressed on the succeeding up stroke. The moment it gets to the top it is fired by and electric spark, there is a new explosion, and the whole operation of four strokes as described above stars again.</p>
<p>Obviously, the two prime essentials are to have the explosive mixture ready to be sucked into the cylinder and the electric spark to set fire to it at the right moment. The latter is accomplished automatically by the magneto, a clever device consisting of a coil of wire spinning between two magnets. Modern magnetos are very reliable and require no attention except an occasional oiling.</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">Less Risk.</span><br />
Girl riders should adopt sidecar rather than solo machines. There is less danger or skidding, and it is best to have a friend with you, both for company’s sake and to lend a hand in case of a puncture or other breakdown.</p>
<p>Here are a few don’ts to finish up with:-</p>
<ol style=" list-style-type: decimal; list-style-position: inside;">
<li>Don’t ride a motor bike unless both brakes are acting perfectly.</li>
<li>Don’t forget to see that the petrol and oil tanks are full before starting.</li>
<li>Don’t stop unless you can possibly help it when descending a hill.</li>
<li>Don’t ride fast round corners or try to show off by doing clever “stunts”.</li>
<li>Don’t try to economise by riding damaged or worn tyres. Nothing is more likely to land you in heavy expenses.</li>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/10/the-speed-girl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>From The Newsdesk</title>
		<link>http://superpositionkitty.com/2009/10/from-the-newsdesk/</link>
		<comments>http://superpositionkitty.com/2009/10/from-the-newsdesk/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 16:35:09 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[Death]]></category>
		<category><![CDATA[Patrick Swazye]]></category>
		<category><![CDATA[Phone Text Message]]></category>
		<category><![CDATA[Road House]]></category>
		<category><![CDATA[Sentience]]></category>
		<category><![CDATA[SMS]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1571</guid>
		<description><![CDATA[<em>Global Panic as Swayze</em> &#8230;]]></description>
			<content:encoded><![CDATA[<p><em>Global Panic as Swayze Text Joke Acquires Sentience</em></p>
<p>STOCK MARKETS reflected the world’s growing uncertainty last night, as it was revealed by top military officials that a joke about the death of Patrick Swayze, sent by text message, has acquired sentience.</p>
<p>Around 7pm, analysts at a listening post in Edwards air force base, north east California, detected a change on the oscillation of high-frequency waves, thought to carry mobile phone SMS messages.</p>
<p>Despite the full effects of the sudden change in wavelength remaining unknown, Edwards’ staff are convinced that one constantly circulated message may have caused the world-wide network, in the words of one staffer, to go “totally Road House.”</p>
<p>The cause of the joke’s acquired savoir faire is unknown, although a newly published report from the UK’s main source of press releases  noted that, despite several newsworthy global cataclysms having taken place since Swayze’s death, there has been a remarkable absence of new, funny material.</p>
<p><span id="more-1571"></span>Neil Purves, of the Council for Associate Mortgage Lenders, said, “I usually get a few messages every week with a joke about what’s just  happened in the news.”</p>
<p>“I would have expected that some sort of gag about Sumatra or Samoa would have been forwarded by now, but it’s been a few days – it looks as if the guy who makes up the jokes has gone on holiday.”</p>
<p>Asked if he had noticed any change to his mobile phone’s activity since the Swayze joke first exhibited intelligence, Mr Purves added “I think it sent a bunch of blank texts to one of my friends last night. It wouldn’t stop, no matter how many times I switched the thing on and off.”</p>
<p>As the probability of a text-virus became greater, the Japanese stock market saw an unprecedented decline in its value this morning.</p>
<p>The Nikkei 225 index was forced to close down 20 points at 114.5, having witnessed widespread technical problems, which many feared were due to the Swayze joke. Many traders dubbed the outbreak “text influenza.” </p>
<p><em>by Hanstock Hauser</em></p>
<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/swazye.gif" alt="Holy shit Patrick Swazye"></p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/10/from-the-newsdesk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Miss Li</title>
		<link>http://superpositionkitty.com/2009/10/miss-li/</link>
		<comments>http://superpositionkitty.com/2009/10/miss-li/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 16:04:10 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Miss Li]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1566</guid>
		<description><![CDATA[It seems like Apple &#8230;]]></description>
			<content:encoded><![CDATA[<p>It seems like <a href="http://www.apple.com/uk/">Apple</a> have done it again.</p>
<p>I would say I was getting a little sick of them launching the careers of every decent zeitgeist artist of the moment but I’m not.  And this is not because I like Apple.  I own none of their products and never have done.  I am still terrifically prejudiced against the Ipod and prefer to buy <a href="http://uk.europe.creative.com/products/product.asp?category=213&#038;subcategory=214&#038;product=16424">Creative MP3 players</a>.  I think those white head phones make you look like a twat and I am still, to my great disadvantage, using a dell.</p>
<p>But the thing with Apple is that you can’t fault their business model nor their marketing which are both unmistakably well put together, often flawless and responsible for the career boosting exposure given to artists like <a href="http://www.youtube.com/watch?v=8qP79rRzzh4">Feist</a>, <a href="http://www.youtube.com/watch?v=KKQUZPqDZb0">CSS</a>, (regrettably) <a href="http://www.youtube.com/watch?v=_vMWwX15a9w">The Ting Tings</a>, a whole host of <a href="http://en.wikipedia.org/wiki/IPod_advertising#Music_featured_in_televised_advertisements">others</a> and now to my great delight <a href="http://www.youtube.com/watch?v=LshLnHpyxII">Miss Li</a>.</p>
<p>Real name Linda Carlsson, <a href="http://www.missli.se/Press/tabid/61/Default.aspx">Miss Li</a> is a Swedish singing sensation with an established catalogue of 4 <a href="http://www.missli.se/Store/tabid/63/Default.aspx">albums</a> already behind her and a voice like a drunken angel.  Playful, bawdy and roguishly innocent her music is a joy to listen to.</p>
<p>If you like cabaret sound mixed with a little jazz and a side helping of big band then you’ll like this.</p>
<p>If you don’t I’m very sorry.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/10/miss-li/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing Pixl: A Pixel Font</title>
		<link>http://superpositionkitty.com/2009/10/introducing-pixl-a-pixel-font/</link>
		<comments>http://superpositionkitty.com/2009/10/introducing-pixl-a-pixel-font/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 14:50:06 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[Bitmap]]></category>
		<category><![CDATA[Font]]></category>
		<category><![CDATA[Pixel Font]]></category>
		<category><![CDATA[Pixl]]></category>
		<category><![CDATA[Type Design]]></category>
		<category><![CDATA[Typeface]]></category>
		<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1563</guid>
		<description><![CDATA[Pixl is a &#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://superpositionkitty.com/products-page/type/pixl/"><img src="http://farm4.static.flickr.com/3419/3971283155_7bc6b4842a_o.gif"  style="border:none;" alt="Pixl" /></a></p>
<p><a href="http://superpositionkitty.com/products-page/type/pixl/">Pixl</a> is a new pixel typeface. Best displayed at 6pt (or multiples thereof for larger sizes) it is only 5 pixels high. With an <a href="http://en.wikipedia.org/wiki/X-height">x-height</a> of 4 pixels, an <a href="http://en.wikipedia.org/wiki/Ascender_%28typography%29">ascender</a> of only 1 pixel, and a <a href="http://en.wikipedia.org/wiki/Descender">descender</a> of also 1 pixel it is one of the smallest pixel type family’s around. And it’s available (and cheap) in our shop <a href="http://superpositionkitty.com/products-page/type/pixl/">right now</a>!</p>
<p><span id="more-1563"></span>You may notice similarities to <a href="http://www.kare.com/">Susan Kare</a>’s ‘<a href="http://www.kare.com/portfolio/12_fonts.html">Five Dots</a>’ or <a href="http://kottke.org/">Jason Kottke</a>’s ‘<a href="http://kottke.org/plus/type/silkscreen/">Silkscreen</a>’ because — truth be told — there’s only a limited number of ways that you can arrange pixels in a 5 pixel high box, but Pixl differs in that it has both uppercase and lowercase, full symbol support (as much as can be arranged to be recognisable at this small size), and many variants.</p>
<p>First up we have ‘Pixl’ itself. Available in Regular/Medium, Italic, Bold and Bold Italic it is as versatile as a pixel font has ever been. Next is ‘Pixl Mono’, in which various characters have been lengthened (or shortened) so that they all fit in a 5x5 square, perfect for displaying code at a small size. Finally we have ‘Pixl Serif’: a variation of Pixl — but only available in Regular and Bold — it has grown slightly in width (and style) thanks to the addition of serifs. </p>
<p>As another advantage of Pixl, it is also licensed to be fully embeddable. This means you can finally take advantage of <a href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets">CSS</a> 3’s @font-face embedding. To learn just how to do that, <a href="http://blog.themeforest.net/tutorials/css-font-face-and-15-free-fonts-you-can-use-today/">visit here</a>.</p>
<p>You can purchase any (or all) of these fonts in TrueType format, and at a much lower fee than any Type Foundry would charge you (if indeed you could find such a diverse and complete family) by <a href="http://superpositionkitty.com/products-page/type/pixl/">heading to our shop</a> and making your selection. If you have any issues with the shopping process then please contact us using any of the means noted to the right of this post and we’ll be happy to help.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/10/introducing-pixl-a-pixel-font/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Etiquette: Being Un-friended</title>
		<link>http://superpositionkitty.com/2009/09/internet-etiquette-being-un-friended/</link>
		<comments>http://superpositionkitty.com/2009/09/internet-etiquette-being-un-friended/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 19:57:41 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[Drama]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Friends]]></category>
		<category><![CDATA[Unfriend]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1494</guid>
		<description><![CDATA[The internet is a &#8230;]]></description>
			<content:encoded><![CDATA[<p>The internet is a lonely place — never before in human history have so many people come together to act so childishly to each other.  As it exponentially increases in size so does it’s capacity for histrionics and snap decisions allowing millions of people the ability to act out en masse.</p>
<p>Previously, in days gone by, we were forced as a species to rely on slower less whimsical mediums of communication like the telegram or spending time together and sharing our experiences through a filter of privacy and hindsight.  </p>
<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/telegram_small.jpg" alt="Telegram" /></p>
<p>But no longer is this the case.  The days of direct contact and communication have been replace by the subjective transience of <a href="http://www.facebook.com">social networking</a> leaving us at sea in an ever expanding perfect storm of craptacular proportions.</p>
<p><span id="more-1494"></span>This calls for a personal evolution of sorts — a re-learning of adapted social norms to adjust to a society built on an <a href="http://tvtropes.org/pmwiki/pmwiki.php/Main/GottaCatchThemAll">Ash Ketchum</a> style of friendship.  If one seeks to succeed at the business of friendship one must learn to traverse the swelling peaks and sharps descents of internet relationships and learn to circumnavigate the murky pools of modern fraternity.  But how does one, being unsure of these new <a href="http://www.slideshare.net/bipin/paradigm-created">paradigms</a>, go about this task?</p>
<p>Today I plan to guide you over one the most unsettling and discouraging hurdles of internet life — the phenomena of being <a href="http://www.urbandictionary.com/define.php?term=unfriend">unfriended</a>. </p>
<p>Ghastly as it may seem some of your terrific internet friends may not like you.  Secretly they may seethe behind the scenes — the very sight of your wall comments or pictorial updates sending them into paroxysms of grief and anger.  With every status update or quiz posted to your news feed their resentment, ever simmering, grows larger and soon they can no longer bear to acknowledge your existence.</p>
<p>This is when unfriending happens, although you may not notice right away.  There will be no announcement unless the unfriender is particularly courteous or spiteful as they are simply required to click a button and then languish safely in their passive aggression, shielded by the indirectness of telecommunications.  Effectively your friendship has ended but as yet you remain uninformed.</p>
<p>For how long this is the case depends entirely on yourself.  Do you routinely check Facebook?  Do you know exactly and just how many friends you have?  Does your value as a member of the human race rely on the number of contacts leaving positive comments on the multiple pictures of yourself covering your profile page?  If the answer to these questions is yes then you will know sooner rather than later when a change in the ecosystem of your online buddies occurs.</p>
<p>If not, it may take some time until the information of your stunning social failure filters down to you.  The process could take months.  Or even years.</p>
<p>None the less, however long this process takes you will at some point be faced with the terrible grief of your situation.  You have become the unfriend and must now conform to an expected and time honoured tradition of falling out on the internet the steps of which I now endeavour to map out for you.</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">Step 1 — The Bait and Hook</span></p>
<p>You must immediately, upon discovering you have been unfriended draw attention to yourself and your plight.  This is done so that the rest of your friends are well prepared and can begin to circle the wagons for the coming events.  Sides will be taken.  Lines will be drawn and crossed.  This is the internet.</p>
<p>At this stage you should be seen to exercise decorum and class, only ever hinting indirectly at your sadness and turmoil.  This can be done in several ways.</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">The Passive Aggressive</span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/01/passive_aggresive.gif" alt="Passive Agressive" /></p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">The Pity Party</span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/01/pity_party.gif" alt="Pity Party" /></p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">The Woe Is Me</span><br />
<img src="http://superpositionkitty.com/wp-content/uploads/2010/01/woe_is_me.gif" alt="Woe Is Me" /></p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">Step 2 — The Misdirection</span></p>
<p>When directly questioned about what your status update is referring to do not commence with reciprocal directness.  Evade all attempts made to open you up, maintain the allusion of having taken to the moral high ground and deflect all inquiries.  Try lines like “It doesn’t matter — don’t want to talk it here”, “LOL You know me — my life is like a soap opera or summit”, or “Can’t say — don’t want to start drama because that wouldn’t be nice.”</p>
<p>Answering questions like this will prompt your remaining friends to contact you privately over <a href="http://en.wikipedia.org/wiki/Personal_message">pm</a>’s or services such as <a href="http://dashboard.aim.com/aim">AIM</a> or <a href="http://download.live.com/?sku=messenger">MSN Messenger</a> to inquire as to the nature of your misfortune.  This will make you feel better and set up step 3.</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">Step 3 — Bolstering Your Troops</span></p>
<p>Once you’ve begun contact with the people <a href="http://www.urbandictionary.com/define.php?term=real">real</a> enough to show how much they care by asking you about your Facebook <a href="http://www.urbandictionary.com/define.php?term=Virtual%20Drama&#038;defid=3803134">drama</a> proceed to explain everything to them.  Be sure to detail your heartbreak and internal torture at being so ungraciously treated while maintaining a degree of external coolness and dignity.  </p>
<p>You’re upset but you don’t want to come across as a <a href="http://www.urbandictionary.com/define.php?term=Cry%20Baby">whingetard</a> lest the very friends you seek to comfort you decide to unfriend you too.  Internet friendships take no prisoners as detailed in step 4.</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">Step 4 — The Slow Creep Of Subjective Revenge</span></p>
<p>Over time you’ll want to build a growing resentment for the person who saw fit to banish you from their sphere of influence within the hearts of your other friends.  Craftily remind then over a period of weeks and months — whenever the topic is brought up — just how bad a friend the unfriender is.</p>
<p>Whatever small thing they say must become a testament to their unworthiness as a human being and any activity they engage in and document via the medium of the internet must be objectified into a pathetic reminder of their obvious desperation and loneliness.  </p>
<p>There is nothing that cannot be reconstituted as your own personal truth and presented anew to the world — the unfriender who was so arrogant as to assume their place above you has lived to regret their folly and will die alone and unloved whereas you will live forever in the bosom of your online circle of friends, cherished appreciated and better off.  Who needed them anyway?</p>
<p>This step should be easy to complete as there is nothing that brings internet acquaintances together and cements the bonds between them quite like mutual and abiding hatred.</p>
<p><span style="font-size:10px;text-transform:uppercase;font-weight:bold;">Step 5 — Recovery and Replenishment</span></p>
<p>Remaining friendships secured it’s time to move on.  But how does one go about this?  How exactly does a person begin to make up for the time and emotion spent on an even of this magnitude?  It may not seem easy but I assure you, there is a way.</p>
<p>Nothing says “I don’t care!  I’m over it!” like making new friends and circulating yourself and where better to carry out this process than publicly?  Social networking sites have millions of new users all waiting to become intimate and involved with your life so get adding! </p>
<p>Contact undervalued cousins, friends of friends, people you walked past in high school or who have cool hair or interesting beards.  The sky’s the limit so knock yourself out.</p>
<p>Start groups with broad and reaching themes that seek to define you as a person like ‘True Friendship’, ‘<a href="http://www.urbandictionary.com/define.php?term=bff">BFF</a>’s Forever!!!!’ or “Boycott The Unfriend Function” and invite everyone to join. </p>
<p>Hold regular events and have your new friends RSVP to them so that everyone can see the wonderful life you now lead.  Be sure your every picture demonstrates the fun and good times you have at these events and that every person you tag glows with the inner joy they feel at knowing you and being forever, your friend.</p>
<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/sohappy.jpg" alt="So Happy" /><br />
You are a survivor.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/09/internet-etiquette-being-un-friended/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Image Caption Rollovers For WordPress</title>
		<link>http://superpositionkitty.com/2009/09/css-image-caption-rollovers-for-wordpress/</link>
		<comments>http://superpositionkitty.com/2009/09/css-image-caption-rollovers-for-wordpress/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 13:49:30 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Image Rollover]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1485</guid>
		<description><![CDATA[Lately at Superposition Kitty &#8230;]]></description>
			<content:encoded><![CDATA[<p>Lately at Superposition Kitty we’ve been adopting more of a photo-blog feel to some of our posts. If you’re recently read <a href="http://superpositionkitty.com/2009/08/apple-crumble-the-retarded-way/">Apple Crumble The Retarded Way</a> then you would’ve noticed that text is displayed in a caption inside the image when you mouse over it. The original idea for this was taken from <a href="http://www.guardian.co.uk/">The Guardian</a> website, where if you hover over any images on the main page a caption will display giving you more information on the linked story.</p>
<p>I spent hours coming up with what I thought would be the most perfect solution to this (I didn’t want any of the extra <a href="http://en.wikipedia.org/wiki/JavaScript">JavaScript</a> effects that The Guardian used), but my approach turned out to be too narrow — working only in <a href="http://www.mozilla.com/en-US/firefox/firefox.html">Firefox</a>. So I turned to my good old friend <a href="http://www.google.com/webhp?hl=en">Google</a>, and started searching. I eventually came up with this <a href="http://www.sohtanaka.com/web-design/css-on-hover-image-captions/">CSS On-Hover Image Captions</a> tutorial by <a href="http://www.sohtanaka.com/">Soh Tanaka</a>. Being pure <a href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets">CSS</a> and working in all browsers (including Internet Explorer 6 and 7) it seemed to be exactly what I wanted. You can view a page demonstrating how his version works <a href="http://www.sohtanaka.com/web-design/examples/image-hover/">here</a>, and I recommend that you read through his post first to get a greater idea of how these little CSS tricks achieve such an effect. Read on past the demo image below to see how you can get this up and running on your blog.</p>
<div class="imgteaser">
<a href="#"><br />
<img src="http://farm3.static.flickr.com/2510/3832914557_839ed68981_o.jpg" width="460px"  alt="Bike Handlebar" /><br />
<span class="desc">Here we have a bike. Lookit dat bike.</span><br />
</a>
</div>
<p><span id="more-1485"></span>The very first thing we’re going to do is create a CSS file. I try and contain most of my CSS files in their own folder, and have thus created a file named <code>hover.css</code> in <code>/wp-content/themes/mytheme/css/</code>, which will then be filled with my customised version of Soh Tanaka’s code as below:</p>
<pre>
.imgteaser {
padding: 0px;
margin: 0px;
margin-bottom: 18px;
overflow: hidden;
float: left;
position: relative;
}

.imgteaser a {
text-decoration: none;
margin-top: -18px;
float: left;
}
.imgteaser a:hover {
cursor: pointer;
}

.imgteaser a img {
float: left;
margin-bottom: 0px;
border: 1px solid #FDFDFD;
}

.imgteaser a:hover .desc {
display: block;
font-size: 12px;
line-height: 18px;
font-weight: normal;
color: #FDFDFD;
position: absolute;
bottom: 1px;
left: 1px;
padding: 0px 3px 0px 3px;
margin: 0;
width: 454px;
background: #000;
filter:alpha(opacity=80);
opacity:.80;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.imgteaser a .desc {	display: none; }
.imgteaser a:hover .more { visibility: hidden;}
</pre>
<p>If you want more information on what each bit of CSS does, then once again I’d recommend reading the <a href="http://www.sohtanaka.com/web-design/css-on-hover-image-captions/">original post</a>. This file then has to be linked in the header of your WordPress theme, so make sure to put the code below between the <code>&lt;head&gt;</code> and <code>&lt;/head&gt;</code> tags (changing as necessary):</p>
<pre>
&lt;link rel="stylesheet" href="http://yourwebsite.com/wp-content/themes/yourtheme/css/hover.css" type="text/css" media="screen" /&gt;
</pre>
<p>It really is as simple as that! Now whenever we want to display one of these beautifully captioned images we can just modify the code below when writing a new post (make sure that you are writing in HTML Mode and not Visual Mode):</p>
<pre>
&lt;div class="imgteaser"&gt;
&lt;a href="#"&gt;
&lt;img src="IMAGE LINK" /&gt;
&lt;span class="desc"&gt;TEXT&lt;/span&gt;
&lt;/a&gt;
&lt;/div&gt;
</pre>
<p>To see an example of this in action, simply scroll back up to the <a href="#menu">top</a> and move your mouse over the picture of the bike. </p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/09/css-image-caption-rollovers-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Muse Commit Plagiarism In Space (Again)</title>
		<link>http://superpositionkitty.com/2009/09/muse-commit-plagiarism-in-space-again/</link>
		<comments>http://superpositionkitty.com/2009/09/muse-commit-plagiarism-in-space-again/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 14:55:09 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[Matt Bellamy]]></category>
		<category><![CDATA[Muse]]></category>
		<category><![CDATA[Plagarism]]></category>
		<category><![CDATA[space]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1464</guid>
		<description><![CDATA[First listen to this. &#8230;]]></description>
			<content:encoded><![CDATA[<p>First listen to <a href="http://www.youtube.com/watch?v=LF2x5IKxmAQ">this</a>.</p>
<p>Now listen to <a href="http://www.youtube.com/watch?v=aH3Q_CZy968">this</a>.</p>
<p>Now listen to:
<ul class="flat">
<li><a href="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/lq6sv6reho.mp3">Muse — Uprising</a></li>
</ul>
<p>WE KNOW WHAT YOU’RE UP TO BELLAMY</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/09/muse-commit-plagiarism-in-space-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/lq6sv6reho.mp3" length="10854798" type="audio/mpeg" />
		</item>
		<item>
		<title>Girl Music featuring Polly Scattergood</title>
		<link>http://superpositionkitty.com/2009/09/girl_music_featuring_polly_scattergood/</link>
		<comments>http://superpositionkitty.com/2009/09/girl_music_featuring_polly_scattergood/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 14:49:49 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[girls]]></category>
		<category><![CDATA[La Roux]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[peggy sue]]></category>
		<category><![CDATA[Polly Scattergood]]></category>
		<category><![CDATA[Rocky And Balls]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1456</guid>
		<description><![CDATA[We like girl &#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/pollyscattergood.jpg" alt="Polly Scattergood" /></p>
<p>We like girl music. Let us tell you about some.</p>
<p><a href="http://www.myspace.com/hannahrockcliffe">Hannah Rockcliffe</a> and <a href="http://www.myspace.com/sophiemadeleine">Sophie Madeleine Ball</a>, or <a href="http://www.facebook.com/group.php?gid=50388216708">Rocky and Balls</a> are a super cute comedy music duo who’ve previously been featured on the likes of <a href="http://boingboing.net/">Boing Boing</a>, <a href="http://ukulelehunt.com/">Ukulele Hunt</a> and <a href="http://bearduary.com/">Bearduary</a>.  They’re as interesting and eclectic as that blog roll suggests.</p>
<p>With songs like <a href="http://www.youtube.com/user/RockyandBalls#play/uploads/3/4vVdWHADKto">I Heart You Online</a> and <a href="http://www.youtube.com/user/RockyandBalls#play/uploads/0/_G93EsbY_HE">Gaysong</a> they’re well worth a listen and hopefully just getting started.</p>
<p>In a similar vein <a href="http://peggywho.com/">Peggy Sue</a> are a Brighton band comprised of Rosa Rex, Katy Klaw and a man named Olly who plays the drums who we found quite by accident some months ago.  Their <a href="http://www.youtube.com/watch?v=TPPYAQWVNU4">anti-soul/anti-folk</a> sound has remained a staple of our car music since then and we highly recommend them.  A sample of their music is available <a href="http://www.myspace.com/peggywho">here</a> as are instructions on how to download their latest EP.</p>
<p><span id="more-1456"></span>Hooray!  There’s a new <a href="http://www.youtube.com/watch?v=y7IGE58IPgo">La Roux video</a>.  This time it’s the turn of “I’m Not Your Toy” for the single treatment and it’s very enjoyable.  Of course I would say that since I think I’m in love with <a href="http://en.wikipedia.org/wiki/La_Roux#Elly_Jackson">Elly Jackson</a>.</p>
<p>And finally, but most importantly, <a href="http://pollyscattergood.clanfree.net/polly.html">Polly Scattergood</a>!  <a href="http://en.wikipedia.org/wiki/Brit_School">Brit School</a> graduate and ethereal ingenue that she is her <a href="http://www.bbc.co.uk/music/reviews/xgcz">debut album</a> sounds like a nervous break down at an afternoon picnic and therefore it’s no surprise that a parallel has been frequently drawn between her and Lewis Carrol’s <a href="http://en.wikipedia.org/wiki/Alice_%28Alice%27s_Adventures_in_Wonderland%29">Alice</a>.  </p>
<p>Of course that seems to happen almost every time a young woman writes an experimental or interesting song but with her blond hair, obstinate pixie face and blue blue eyes you can’t help but notice a certain <a href="http://www.last.fm/music/Polly+Scattergood/+images">similarity</a>.</p>
<p>If you’ll direct your attention <a href="http://www.youtube.com/watch?v=bzwS8bXAhtk">here</a> you’ll be able to watch the video for her single “Please Don’t Touch” — a catchy, poppy but individual number that completely disarmed me by the first chorus.</p>
<p>You’re not going to be the first person to point out that she sounds like <a href="http://www.youtube.com/watch?v=Hv0azq9GF_g">Kate</a> <a href="http://www.youtube.com/watch?v=ot3cVY1JESQ">Bush</a>.  <a href="http://en.wikipedia.org/wiki/Rob_Da_Bank">Rob Da Bank</a> already got to that comparison on November 10th of 2008 and ruined it for the rest of us.  It’s lucky then that the rest of the album is stuffed full with moments where you’ll find yourself trying to place the musical influence behind her songs and piecing together the landscape of her brain.</p>
<p>Not for everyone (according to certain reviewers — personally I’d recommend it to anyone ever) Polly Scattergood will take you on a weird and sometimes unsettling journey through a space often uncharted by members of the female pop scene.  There’s more than a hint of genuine sexuality, instability and darkness that will often leave you wondering what exactly it was you just heard and why you don’t hear it more often.  Honest, vulnerable and yet somehow strong if this album doesn’t remind you a little of acts like <a href="http://en.wikipedia.org/wiki/Bjork">Björk</a>, <a href="http://en.wikipedia.org/wiki/Tori_Amos">Tori Amos</a> or <a href="http://en.wikipedia.org/wiki/Bat_for_lashes">Bat For Lashes</a> you’ve probably never listened to them.</p>
<p>And if you decide, like I’m sure some of you will, that that is not a good thing then you are wrong.</p>
<p>Polly Scattergood is a gem of a performer and her album is a breath of fresh air in an already stagnating female led music scene.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/09/girl_music_featuring_polly_scattergood/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snow Leopard Round-Up</title>
		<link>http://superpositionkitty.com/2009/09/snow-leopard-round-up/</link>
		<comments>http://superpositionkitty.com/2009/09/snow-leopard-round-up/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 14:36:02 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[10.6]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Snow Leopard]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1442</guid>
		<description><![CDATA[Mac OS X Snow &#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apple.com/macosx/">Mac OS X Snow Leopard</a> was released by <a href="http://www.apple.com/">Apple</a> on August 28, 2009. Famous for being announced as having “<a href="http://www.macworld.com/article/133949/2008/06/snowleopard.html">no new features</a>”, that’s not entirely the case. This seventh major version of Mac OS X was designed to improve performance and efficiency, reduce memory usage, and increase <a href="http://en.wikipedia.org/wiki/Hard_disk_drive">HDD</a> space. As Snow Leopard is also the first Mac operating system since <a href="http://en.wikipedia.org/wiki/System_7">System 7</a> to not support <a href="http://en.wikipedia.org/wiki/PowerPC">PPC</a> architecture, there is understandably a lot of questions about compatibility, requirements, speed, and other changes to be answered.</p>
<p>First up we have a Snow Leopard <a href="http://snowleopard.wikidot.com/">compatablity list</a>, very useful for anybody that has not yet upgraded. Make sure to search through for all your important applications, but be aware that there are still many not on the list. About the only application/plugin that I use with any regularity that is still not working in Snow Leopard would be the <a href="http://harnly.net/software/letterbox/">Letterbox</a> plugin for <a href="http://www.apple.com/macosx/what-is-macosx/mail-ical-address-book.html">Mail</a> that rearranges the window into three vertical columns to take advantage of widescreen monitors, but an update should be available shortly.</p>
<p>If you’re wanting some quick reviews of Snow Leopard, then <a href="http://www.wired.com/">Wired</a> has a bunch. Starting with <a href="http://www.wired.com/gadgetlab/2009/08/6-things-snow-leopard/">6 Things You Need To Know About Snow Leopard</a>, <a href="http://www.wired.com/gadgetlab/2009/08/faster-bigger-longer-how-snow-leopard-will-improve-your-hardware/">How Snow Leopard Will Improve Your Hardware</a>, and a <a href="http://www.wired.com/reviews/product/pr_osx_snowleopard">review</a>. They also have a reasonably detailed <a href="http://howto.wired.com/wiki/Upgrade_to_Snow_Leopard">upgrade guide</a>. And if you’re wondering just what is missing in Snow Leopard, then <a href="http://waffle.wootest.net/2009/09/05/removed-snow-leopard/">this link</a> is for you.</p>
<p>However, the cream of the crop of Snow Leopard reviews would have to be this <a href="http://arstechnica.com/apple/reviews/2009/08/mac-os-x-10-6.ars">23 page review</a> by <a href="http://arstechnica.com/authors/john-siracusa/">John Siracusa</a> of <a href="http://arstechnica.com/">Ars Technica</a>. Make sure to set aside the couple of hours that you will need to read through it all, and if you’re at all interested in the core technology and changes beneath the skin then don’t skip through the middle. For the even more technically orientated amongst you, we have an <a href="http://developer.apple.com/">Apple Developer Center</a> article detailing <a href="http://developer.apple.com/mac/library/releasenotes/MacOSX/WhatsNewInOSX/Articles/MacOSX10_6.html">What’s New in 10.6</a> for developers.</p>
<p>I’ve been using Snow Leopard for what is coming up on a couple of weeks now, and find it blazingly fast when compared to 10.5, even on my 32bit <a href="http://www.apple.com/macbookpro/">MacBook Pro</a>. Overall, it’s well worth the <a href="http://store.apple.com/uk/product/MAC_OS_X_SNGL?mco=MTAwMTI3NzA">£25 upgrade price</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/09/snow-leopard-round-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin Round-Up</title>
		<link>http://superpositionkitty.com/2009/08/wordpress-plugin-round-up/</link>
		<comments>http://superpositionkitty.com/2009/08/wordpress-plugin-round-up/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 14:24:34 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Advanced Excerpt]]></category>
		<category><![CDATA[Akismet]]></category>
		<category><![CDATA[FlickrRSS]]></category>
		<category><![CDATA[fmTuner]]></category>
		<category><![CDATA[Google XML Sitemaps]]></category>
		<category><![CDATA[Limit Login Attempts]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Random Posts]]></category>
		<category><![CDATA[Recent Posts]]></category>
		<category><![CDATA[Sideblog]]></category>
		<category><![CDATA[Similar Posts]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP-Typography]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1391</guid>
		<description><![CDATA[Every so often I &#8230;]]></description>
			<content:encoded><![CDATA[<p>Every so often I get questions about what plugins I’m using on the site, and the sheer number they get in response seems to shock most so I’ve decided to document them all below. I believe that the best plugins should be invisible, thus the majority of these plugins add some kind of back-end functionality that I feel is missing from the <a href="http://wordpress.org/">WordPress</a> core.</p>
<p><a href="http://sparepencil.com/code/advanced-excerpt/" style="font-size:10px;text-transform:uppercase;">Advanced Excerpt</a><br />
Advanced Excerpt adds several improvements over WP’s default excerpt. It will trim to a supplied character or word length and has the ability to keep <a href="http://en.wikipedia.org/wiki/HTML">HTML</a> markup. You can see it in use just to the right of this post under ‘Latest Posts’, I’ve set the excerpt length to four words, the HTML markup for <code>&lt;em&gt;</code> to be kept, and the ellipses to be <code>&amp;hellip;</code>. All-in-all, very easy to install and use, and it provides some much needed functionality.</p>
<p><a href="http://akismet.com/" style="font-size:10px;text-transform:uppercase;">Akismet</a><br />
Akismet is a very well known (and well used) plugin. Simply install it, enter your <a href="http://en.wordpress.com/api-keys/">WordPress API</a> key, and you’ll likely never have to worry about comment spam on your blog again. At the time of writing Akismet has caught 1,276 spam comments on this blog with a 100.00% accuracy rate. Occasionally you will have to delete a few of the comments that it catches when it’s not completely sure that they’re spam (at the moment I’ve been deleting quite a few Russian comments), but for the most part it will do its job behind the scenes.</p>
<p><a href="http://eightface.com/wordpress/flickrrss/" style="font-size:10px;text-transform:uppercase;">flickrRSS</a><br />
FlickrRSS can be seen working in the very right column. It is a simple plugin that pulls photos from your <a href="http://www.flickr.com/">Flickr</a> photostream and displays them on your blog, just enter your Flickr User ID and the number and size of the photos you want to display. An added bonus is the ability to <a href="http://en.wikipedia.org/wiki/Cache">cache</a> the thumbnails it creates of each photo.</p>
<p><span id="more-1391"></span><a href="http://www.command-tab.com/2008/09/06/fmtuner-a-lastfm-plugin-for-wordpress/" style="font-size:10px;text-transform:uppercase;">fmTuner</a><br />
Next up we have fmTuner, which retrieves song information from your <a href="http://www.last.fm/">Last.fm</a> profile and publishes them to your WordPress theme. In much the same way as FlickrRSS, you only have to enter your username and options to display. For those wondering, the display format I’m using to show the tracks to the very right of this post is <code>&lt;li class="lastfm-item"&gt;&lt;a href="[::url::]"&gt;[::artist::] - [::title::]&lt;/a&gt;&lt;/li&gt;</code></p>
<p><a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" style="font-size:10px;text-transform:uppercase;">Google XML Sitemaps</a><br />
Google XML Sitemaps generates an <a href="http://en.wikipedia.org/wiki/Site_map">XML sitemap</a> of your blog for use by <a href="http://www.google.com/webhp?hl=en">Google</a>, <a href="http://www.bing.com/">Bing</a>, <a href="http://uk.ask.com/?o=312&#038;l=dir">Ask.com</a> and <a href="http://uk.yahoo.com/?p=us">Yahoo</a> (Yahoo requires an Application ID). You can see the sitemap created by the plugin for SuperpositionKitty.com <a href="http://superpositionkitty.com/sitemap.xml">here</a>.</p>
<p><a href="http://devel.kostdoktorn.se/limit-login-attempts/" style="font-size:10px;text-transform:uppercase;">Limit Login Attempts</a><br />
Limit Login Attempts does just what it says on the tin: it gives the admin the ability to limit the login attempts, by locking out the user after a certain number of tries. As only Jen and I use the admin panel I have set it up quite harshly, with a 24 lockout after 4 retries, as well as taking advantage of the plugins ability to email the admin upon lockout. </p>
<p><a href="http://techblissonline.com/platinum-seo-pack/" style="font-size:10px;text-transform:uppercase;">Platinum SEO Pack</a><br />
Platinum SEO pack is apparently the “ultimate WordPress SEO solution”, and I have to admit that it does a pretty good job of it. The ability to optimise titles, generate <a href="http://en.wikipedia.org/wiki/Meta_element">META</a> tags, override META descriptions, settings for index or noindex, for follow or no follow, and much more make it almost indispensable. For more information on just what each setting does see <a href="http://techblissonline.com/wordpress-seo-plugin-smart-options-benefits/">this page</a>.</p>
<p><a href="http://techblissonline.com/platinum-seo-pack/" style="font-size:10px;text-transform:uppercase;">Random Posts, Recent Comments, Similar Posts</a><br />
These three plugins are grouped together as they all make use of the <a href="http://rmarsh.com/plugins/post-plugin-library/">Post Plugin Library</a> by <a href="http://rmarsh.com/">Rob Marsh</a>. Recent Comments and Similar Posts can both be seen in action to the right of this post. Random Posts will be seen by anybody who manages to get a <a href="http://en.wikipedia.org/wiki/HTTP_404">404</a> page, which you can see <a href="http://superpositionkitty.com/404/">here</a>.</p>
<p><a href="http://katesgasis.com/2005/10/24/sideblog/" style="font-size:10px;text-transform:uppercase;">Sideblog</a><br />
Sideblog is probably one of the most important plugins on this site as it drives the <a href="http://superpositionkitty.com/category/vignettes/">Vignettes</a> that you see to the right of the main page. Relatively easy to set up, all I have to do to publish a mini post is select the ‘Vignette’ category and the plugin will publish it to the sidebar while at the same time removing that post from the main feed. The code to do this is as easy as <code>&lt;div class="vignette"&gt;%content%&lt;/div&gt;</code>.</p>
<p><a href="http://rick.jinlabs.com/code/twitter" style="font-size:10px;text-transform:uppercase;">Twitter For Wordpress</a><br />
Twitter for WordPress simply displays your latest tweet(s) wherever you wish on your blog. There is no GUI set-up for this plugin, as it is all done in your theme template. The single line of code that I use to display our latest tweet at the bottom right of the main page is <code>&lt;?php twitter_messages('spkitty', 1, true, false, '$lt;img src="/twitter_small.gif" alt="rss" width="18px" height="10px" /$gt;', true, true, false); ?&gt;</code>. This displays the latest tweet from <a href="http://twitter.com/spkitty">our feed</a>, with no timestamp, with my little bird icon as a link to the tweet, and URLs and users both as click-able links.</p>
<p><a href="http://kingdesk.com/projects/php-typography/" style="font-size:10px;text-transform:uppercase;">wp-Typography</a><br />
WP-Typography is one for all the type nerds out there. It adds hyphenation, spacing control, intelligent character replacement, and CSS hooks, all of which greatly improve the look and feel of your blog. At the moment I have the hyphenation, character replacement, and widow prevention turned on.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/08/wordpress-plugin-round-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple Crumble The Retarded Way</title>
		<link>http://superpositionkitty.com/2009/08/apple-crumble-the-retarded-way/</link>
		<comments>http://superpositionkitty.com/2009/08/apple-crumble-the-retarded-way/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 13:37:36 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Recipes]]></category>
		<category><![CDATA[Apple Crumble Recipe]]></category>
		<category><![CDATA[Birthday Cake]]></category>
		<category><![CDATA[Delicious Food]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1397</guid>
		<description><![CDATA[This Friday was Ryan’s &#8230;]]></description>
			<content:encoded><![CDATA[<p>This Friday was Ryan’s birthday and as such there had to be cake. </p>
<p>This wasn’t a problem as a) cake is easy and b) cake is fun.</p>
<p>Here is how we did it (hold your mouse over the pictures below for MAGIC).</p>
<p>Firstly we took <a href="http://www.guardian.co.uk/lifeandstyle/2008/oct/18/crumble-cobbler-recipes">this</a> recipe by <a href="http://en.wikipedia.org/wiki/Hugh_fearnley_whittingstall">Mr Fearnley-Whittingstall</a> and then more or less ignored it.</p>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/3874469020/" title=""><br />
<img src="http://farm4.static.flickr.com/3477/3874469020_0d75345945_o.jpg" width="460" alt="" /><br />
<span class="desc">Now according to Hugh you will need 180g of plain flour. Which is more or less what’s in this bowl only we replaced some of the flour with oats because we had some.  Also because we could.</span><br />
</a></div>
<p><span id="more-1397"></span>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/3874525630/" title=""><img src="http://farm3.static.flickr.com/2547/3874525630_3c2dc74ce3_o.jpg" width="460" alt="" /><br />
<span class="desc">Next you need 120g chilled butter which you’ll want to cut into cubes.  This is a lot of butter.  When we got to this part of the recipe I was like “120g of butter?  Really?  I am looking at it and that seems like an excess of butter…”.  But that’s what you need.  Seriously.</span><br />
</a></div>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/3873682449/" title=""><img src="http://farm3.static.flickr.com/2480/3873682449_2743e07ab6_o.jpg" width="460" alt="" /><br />
<span class="desc">Now you’re going to need to wash your hands (this is important because otherwise you will make an unhygenic cake which is not fun).  Once you’ve done that dry them off, pick up some of your butter and add it to your flour.  Then get rubbing it together.  Continue to do this until all your butter is in the flour and the whole thing looks like bread crumbs.  It will take a while but it will make you buff.  Super buff.</span><br />
</a></div>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/3873682389/" title=""><img src="http://farm3.static.flickr.com/2675/3873682389_c0326dcd4a_o.jpg" width="460" alt="" /><br />
<span class="desc">Now you need 80g of sugar.  Hugh says caster sugar but we didn’t have any.  Either that or I couldn’t see any because our kitchen cupboards are too high up for me to use properly.  Anyway Demerara sugar is nicer so that’s what we used.  Throw the sugar of your choice into your bowl of flour and butter and mix well to complete your crumble mix.  Cover it and stow it in the fridge while you deal with the apples.  Once you’ve done this turn on your oven and pre-heat that motherfucker to 180C/350F/gas mark 4.  We chose 180C because metric RULES.</span><br />
</a></div>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/3874469108/" title=""><img src="http://farm3.static.flickr.com/2443/3874469108_2e8f4ba0b2_o.jpg" width="460" alt="" /><br />
<span class="desc">You’re going to need a kilo or so of apples.  Like the butter this seems excessive.  We chose Gala, Golden Delicious and some little home grown apples kindly donated by my mother.  Hugh says Bramley apples.  I don’t even know what Bramley apples are.</span><br />
</a></div>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/3874469350/" title=""><img src="http://farm3.static.flickr.com/2535/3874469350_5220601e46_o.jpg" width="460" alt="" /><br />
<span class="desc">Get peeling</span><br />
</a></div>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/3873682601/" title=""><img src="http://farm3.static.flickr.com/2445/3873682601_e08c32da3c_o.jpg" width="460" alt="" /><br />
<span class="desc">Use the peeler to core all your apples.  By this point your hands will be sticky and you will hate apples.  But don’t stop because next you want to cut up all the apples into chunks of whatever size you feel like and throw them into *another* bowl.</span><br />
</a></div>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/3873835523/" title=""><img src="http://farm4.static.flickr.com/3517/3873835523_644c1361a3_o.jpg" width="460" alt="" /><br />
<span class="desc">Add about a table spoon (or two or three) of lemon juice to your apples and then quickly follow it with two table spoons of water.  This helps to cook your apples which is a good thing.</span><br />
</a></div>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/3873682761/" title=""><img src="http://farm3.static.flickr.com/2615/3873682761_7b752b576d_o.jpg" width="460" alt="" /><br />
<span class="desc">Ginger.  This was not in the original recipe — I just had some.  If you also have some chop it up and throw it in with your apples.</span><br />
</a></div>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/3874469738/" title=""><img src="http://farm3.static.flickr.com/2451/3874469738_9b6a4c2dfb_o.jpg" width="460" alt="" /><br />
<span class="desc">The next step is adding another 80 grams of sugar and some fresh raspberries and some cinnamon to your apple, lemon juice and ginger mix and then sticking your hands in there.  This will actually feel more sticky than when they were covered in apple but they will taste delicious.  Make sure everything is nicely covered in sugar etc and tip into an ovenproof dish big enough to hold everything.  At this point I wasn’t sure we had one of those.</span><br />
</a></div>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/3873682953/" title=""><img src="http://farm3.static.flickr.com/2519/3873682953_ab7173f6e0_o.jpg" width="460" alt="" /><br />
<span class="desc">Remove your crumble mix from the fridge and cover your fruit with it.  Try to do it evenly because otherwise your cumble will be lopsided and this would suck.  Sprinkle on some nutmeg and further sugar for good luck.  After you’re done with this put it in the oven and go order some pizza from a local take away.  You made crumble — you don’t also need to make dinner.</span><br />
</a></div>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/3874469916/" title=""><img src="http://farm3.static.flickr.com/2582/3874469916_b85d108cca_o.jpg" width="460" alt="" /><br />
<span class="desc">After you’ve ordered your pizza, eaten a few slices and a good 40 minutes have passed check on your crumble.  If it looks golden on top it’s done.  Remove it from the oven.  With oven gloves because it will be hot.</span><br />
</a></div>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/3874470114/" title=""><img src="http://farm4.static.flickr.com/3526/3874470114_551cbf1f85_o.jpg" width="460" alt="" /><br />
<span class="desc">Serve into vivdly patterned bowls and ladle on cream.  Our cream had more sugar, vanilla essence and maple syrup whisked into it because I can’t leave well enough alone.  It was delicious though.  The next step is to shovel the crumble into your mouth.</span><br />
</a></div>
<div class="imgteaser"><a href="http://www.flickr.com/photos/29778044@N02/3873683349/" title=""><img src="http://farm3.static.flickr.com/2473/3873683349_956be48e31_o.jpg" width="460" alt="" /><br />
<span class="desc">Beer.</span><br />
</a></div>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/08/apple-crumble-the-retarded-way/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Worst Book I Ever Read</title>
		<link>http://superpositionkitty.com/2009/08/the-worst-book-i-ever-read/</link>
		<comments>http://superpositionkitty.com/2009/08/the-worst-book-i-ever-read/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 13:41:12 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Bad Books]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1362</guid>
		<description><![CDATA[The worst book I &#8230;]]></description>
			<content:encoded><![CDATA[<p>The worst book I ever read was Ritual by <a href="http://www.grahammasterton.co.uk/">Graham Masterton</a>.  I was told to read it by a boyfriend when I was 17 and was therefore impressionable, so that when he said it was the best book ever I ignored the tacky picture on the front of it and thought “why not?”.</p>
<p>I was also probably worried that if i didn’t read it he wouldn’t like me anymore and being a dumb teenager didn’t realise that anyone who doesn’t like you just because you don’t like a book is probably a twat.</p>
<p>So I sat down to read Ritual.</p>
<p>To this day I sincerely wish I hadn’t. </p>
<p>There are many things wrong it.  Many, many things which have stuck with me these last 8 years and which do not bare repeating even for the purposes of this review.  I wouldn’t say it had permanently scarred me because being honest, it wasn’t really interesting enough to do that, but it definitely left an impression.</p>
<p><span id="more-1362"></span>Firstly let’s start off by saying the premise of this book is that a cannibal cult ambitiously decides it’s going to bring about the second coming of <a href="http://en.wikipedia.org/wiki/Christ">Christ</a> by eating the hell out of each other.  </p>
<p>Into this gaping black hole of plot falls Charlie McLean a major dickbag and restaurant critic who much later in the story has to eat his own finger and his son Martin who hates Charlie almost as much as I do.</p>
<p>Charlie finds out about an exclusive dining club and boorishly tries to gain entry to it.  Obviously the exclusive dining club is a local division of the aforementioned cannibal cult, or Celestines as they call themselves, which manages to kidnap Martin.  This is mostly because like I said, Charlie is a massive dickbag.  </p>
<p>The rest of the book is a very long stupid story involving more cannibalism than anyone really cares about, Charlie trying to get his son back despite the fact that his son hates him, a killer dwarf assassin who isn’t actually a dwarf but is instead a man who has eaten his own feet, shins, hands and forearms but somehow still manages to wield a machete and disembowel numerous people in an artistic show of pluck and determination in the face of disability, what I seem to remember as the unironic use of the phrase ‘fiery wimple’ and a cameo appearance from <a href="http://en.wikipedia.org/wiki/Baron_Samedi">Baron Samedi</a>.</p>
<p>It’s all very bad.  In fact it’s bad so it should come with a health warning: CAREFUL THIS BOOK IS SO TERRIBLE IT WILL MAKE YOU VOMIT UP YOUR SPLEEN.  Unfortunately the closest it comes to describing it’s own awfulness is this excerpt from the second last chapter:</p>
<blockquote><p>
Charlie turned around. He saw M. Musette, thigh-deep in regurgitated tissue, still endlessly vomiting one thousand times one thousand. He saw Mme Musette, with her wimple alight, rigid with hysteria and fear.
</p></blockquote>
<p>And so it’s my job to tell you that really, honestly, Ritual by Graham Masterton is the worst book ever composed on earth if not the entire galaxy.</p>
<p>Stay away from it.  For the love of God.</p>
<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/ritual.jpg" alt="RItual by Graham Masterton" /></p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/08/the-worst-book-i-ever-read/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monthly Round-Up July</title>
		<link>http://superpositionkitty.com/2009/08/monthly-round-up-july/</link>
		<comments>http://superpositionkitty.com/2009/08/monthly-round-up-july/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 10:52:57 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Monthly Round-Up]]></category>
		<category><![CDATA[Hiroshima]]></category>
		<category><![CDATA[Interface]]></category>
		<category><![CDATA[japan]]></category>
		<category><![CDATA[Ramen]]></category>
		<category><![CDATA[Robots]]></category>
		<category><![CDATA[The Big Pictures]]></category>
		<category><![CDATA[Toshio Saeki]]></category>
		<category><![CDATA[Xerox Star 8010]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1256</guid>
		<description><![CDATA[For some reason, this &#8230;]]></description>
			<content:encoded><![CDATA[<p>For some reason, this months round-up features a variety of Japanese content, starting with some brilliant (yet devastating) <a href="http://www.boston.com/bigpicture/2009/08/hiroshima_64_years_ago.html">photos of Hiroshima</a> from <a href="http://en.wikipedia.org/wiki/Atomic_bombings_of_Hiroshima_and_Nagasaki">64 years ago</a> thanks to <a href="http://boston.com/bigpicture/">The Big Picture</a>. We haven’t mentioned The Big Picture on Superposition Kitty before, but it’s a definite favourite in my <a href="http://en.wikipedia.org/wiki/Web_feed">feeds</a>. Run by <a href="http://www.boston.com/bigpicture/about.html">Alan Taylor</a>, a web developer who previously worked for <a href="http://www.amazon.com/">Amazon</a>, it’s a photo blog updated thrice weekly with some of the best, most beautiful, and highest quality images of what’s been going on each week.</p>
<p>Next up is the artwork of <a href="http://translate.google.com/translate?hl=en&#038;sl=ja&#038;u=http://toshiosaeki.com/&#038;ei=hjSASrq0FJnKjAefz8DwAQ&#038;sa=X&#038;oi=translate&#038;resnum=6&#038;ct=result&#038;prev=/search%3Fq%3DToshio%2BSaeki%26hl%3Den%26safe%3Doff">Toshio Saeki</a>, the 63 year old godfather of Japanese erotica. You can find a rather large collection of his work <a href="http://spaceghetto.st/sgd/?q=node/782">here</a> and <a href="http://spaceghetto.st/sgd/?q=node/1187">here</a> (very not work safe). He studied art at school, and after graduating pursued a career in graphic design. At the age of 24 he left his hometown of Osaka and traveled to Tokyo where, using the money he saved up, he rented a tiny apartment and began working as an illustrator and erotic artist. Famous for his images which revolve around both sex and death, Saeki says that he is not a violent person but that he just loves to entertain and shock people.</p>
<p>Only in Japan would a restaurant kitchen be run by <a href="http://rtv.rtrlondon.co.uk/2009-08-03/173e7071.html">robots</a>. You can watch them do their thing (serving up delicious bowls of <a href="http://en.wikipedia.org/wiki/Ramen">Ramen</a>) on <a href="http://www.youtube.com/watch?v=5sVOSlUn7e0">YouTube</a>. Apparently the benefits of using the robots in such an environment is that they can perfectly time boiling the noodles, and are capable of precise movements in adding toppings, so that the temperature and taste is consistent from bowl to bowl. They also spin plates and carry out mock duals in the downtime!</p>
<p>Moving away from the Japanese theme, we have some terrific interactive design in the form of these <a href="http://www.digibarn.com/collections/screenshots/xerox-star-8010/index.html">screenshots</a> of the <a href="http://en.wikipedia.org/wiki/Xerox_Star">Xerox Star 8010</a> interface. Introduced in 1981, it was the first commercial personal computer to implement a graphical user interface. Not to mention the mouse, Ethernet networking, file servers, print servers and e-mail! Screenshots of the interface such as <a href="http://www.digibarn.com/collections/screenshots/xerox-star-8010/xerox-star-8010-15.jpg">this one</a> and <a href="http://www.digibarn.com/collections/screenshots/xerox-star-8010/xerox-star-8010-13.jpg">this one</a> show the level of detail required in designing a cohesive feel for the system. You can read about (and see) the progression the interface took <a href="http://www.digibarn.com/collections/software/xerox-star/xerox-world-according-to-norm.html">here<a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/08/monthly-round-up-july/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bad Books: Twilight Is Terrible</title>
		<link>http://superpositionkitty.com/2009/07/bad-books-twilight-is-terrible/</link>
		<comments>http://superpositionkitty.com/2009/07/bad-books-twilight-is-terrible/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 12:53:08 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Bad Books]]></category>
		<category><![CDATA[Awful]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[Breaking Dawn]]></category>
		<category><![CDATA[New Moon]]></category>
		<category><![CDATA[Sparkly Faggot Vampires]]></category>
		<category><![CDATA[Stephanie Meyer]]></category>
		<category><![CDATA[The Exact Opposite Of Literature]]></category>
		<category><![CDATA[Twilight]]></category>
		<category><![CDATA[VAMPIRES]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1199</guid>
		<description><![CDATA[So just before we &#8230;]]></description>
			<content:encoded><![CDATA[<p>So just before we left for London we pointed you towards <a href="http://superpositionkitty.com/books/">books</a> — a new feature we’re trying to get off the ground.  So far it’s pretty sparse with only the <a href="http://superpositionkitty.com/books/links-pictures-of-books/">links and pictures</a> section set up but hopefully that will begin to change with the introduction of <a href="http://superpositionkitty.com/category/bad-books">bad books</a> our one stop shop for information and reviews of the books you should try to avoid.</p>
<p>Today it’s <a href="http://en.wikipedia.org/wiki/Twilight_series">The Twilight Series</a> — a literary saga so terrible it’s inspired horrors like <a href="http://www.geekologie.com/2009/07/sure_why_not_twihard_tattoo_ga.php">this</a> or <a href="http://www.cinematical.com/photos/bellas-womb/">this</a> and can only be explained rationally <a href="http://stoney321.livejournal.com/317176.html">like this</a>. </p>
<p>Long, insipid and written by a lunatic the Twilight Saga beckons you forward into it’s nest made of spit and torn up books so get real comfy, settle down and prepare to be amazed.</p>
<p>(Major props go to Alex at <a href="http://www.talesofaneoluddite.net/">Rowdy Media</a> for the links and brain damage they caused us.)</p>
<p><span id="more-1199"></span>836 pages.  That’s how long <a href="http://www.stepheniemeyer.com/index.html">Stephanie Meyer</a>’s <a href="http://en.wikipedia.org/wiki/Breaking_dawn">Breaking Dawn</a> is.  </p>
<p>It wasn’t like that in the beginning.  </p>
<p>Her first story <a href="http://en.wikipedia.org/wiki/Twilight_%28novel%29">Twilight</a> was by comparison tiny at only around 250 pages.  Her second, <a href="http://en.wikipedia.org/wiki/New_Moon_%28novel%29">New Moon</a> was around 20 or so pages longer and almost as tolerable due it’s brevity.  Her third, <a href="http://en.wikipedia.org/wiki/Eclipse_%28novel%29">Eclipse</a> was 368 pages in length– a number I believe to be pushing it when you have very little to actually say.</p>
<p>But Breaking Dawn, her magnum opus as it were, is 836 pages long and it is with great dread and horrible foresight that I consider reading the first words of it.</p>
<p>All told and then regrettably combined that’s around 1700 hundred pages of teenage masturbatory vampire fantasy written by a woman who seems to hate teenagers more than anything else on the planet.  1700 pages penned by a woman possessed by the horrid urge to continue to write despite the fact that she ran out of plot at around the 100 page mark and continued to substitute it for self insert fan service and name dropping.  </p>
<p>These are 1700 pages written solely for Stephanie Meyer to read, and re-dream the dream that led to the penning of the Twilight saga.  A dream of vampires and Washington so personal that it reads like a livejournal entry.</p>
<p>Her main character, the insipid dish water brown Bella Swan is supposedly selfless beyond all other historical figures.  Ever.  On the planet.  </p>
<p>And that she is.</p>
<p>She is actually so devoid of a self as to be utterly characterless.  Of course this explains perfectly why her super natural boyfriend’s talent of reading the minds of every person in the world ever whether they like it or not doesn’t work on her — there is no mind there to read. </p>
<p>This is of course despite the constant allusions to her intelligence or feminism or advanced maturity.  Mind you these things are only ever pointed out directly, in some fine examples of telling not showing, in order to tell you how the humans she’s forced to spend time with are stupid, small minded and just ‘don’t get her’.  She simply wanders around all day, every day being narrated in the first person so that every page (of which, I would like to remind you, there are around 1700) is an endless list of things which “I did” or “I saw” — the things which Bella and by extension, Meyer observes to be true.  </p>
<p>But Bella is a 17 year old girl dreamt up by a 40 year old woman trapped in the mindset of a 14 year old girl who has only recently learned what adjectives are and yet doesn’t quite understand them.  </p>
<p>In this world of home spun hormone infused folk tale the perceptions of Stephanie Meyer are those of god.  A creepy, Mormon and permanently pre-menstrual God who peers down out of the hole in the sky moralising her difficult teenage years into a nightmare of pubescent fantasy.</p>
<p>Edward, Bella’s 100 year old tragic golden eyed hero is a marble Adonis — in the authors own words the exact replica of Michelangelo’s David — who’s nasty tendency to sneak unbidden into the rooms of teenage girls to watch them sleep is endearing instead of threatening and obsessive.  He’s a GOOD VAMPIRE after all and only feeds on Deer and Mountain Lions and it’s not like his attraction to her is initially based on his magical VAMPIRE sense of smell which makes his every waking moment a constant battle not to literally eat her.  And I mean every waking moment because that is precisely what they spend together it being much healthier to constantly stare torrid sexual danger and annihilation in the face than it is to occasionally walk away and take some time out for biscuits.</p>
<p>Every decision Edward makes is solidly backed up by the psychic powers of his adopted sister.  Together these two super human jokers co-operate to bring Bella into their family using methods oddly reminiscent of some sort of messianic cult.  The age difference between the two (that of roughly 83 years but who’s counting anyway) is written off due Bella’s immense maturity which is apparently the product of being made to protect and otherwise look after her child like selfish mother.  She is the real adult of the story, being in possession of the sort of old souls enthusiastically talked about by the kind of people who routinely take time out to view the girls swim wear section of the <a href="http://www.littlewoods.com/">LittleWoods</a> catalogue.</p>
<p>In Meyer’s fictional world of Forks Washington it is clearly acceptable for things like this to happen.  Restraining orders are a thing of legend and childish experimentation reaps no consequences that cannot be completely ignored due to the omniscience of VAMPIRES.  </p>
<p>VAMPIRES are fantastic.  VAMPIRES fear nothing.  Especially not consequences, concerned fathers or statutory rape laws.  The only thing they could possibly fear is other VAMPIRES.  </p>
<p>And around these universal maxims grows our story which will encompass obsessive jealous Native American werewolves, equally obsessive and vengeful EVIL VAMPIRES and multiple crimes against grammar.</p>
<p>Not that there’s anything wrong with escapism.  (Which is what Meyer is writing about here.)  Not that there’s anything wrong at all with a bit of fantasy.  (Although in this case it might be necessary to replace a bit with ‘a fucking ton’.)  And what was I doing reading a collection of books (supposedly) written for teenagers anyway?</p>
<p>To be honest I don’t really know.  It started with a YouTube video of the by now famous <a href="http://www.youtube.com/watch?v=sRLIIkhlgcg">baseball scene</a> from the movie adaptation of Twilight.  It featured sparkly photoshopped 20 somethings pretending to be teenagers, like most movies for the teen demographic.  It was horrific and yet fascinating at the same time.  So obviously when the movie appeared on general release I had to see what exactly was going on with these ‘sparkly faggot vampires’ and so I watched it.  </p>
<p>And then after I’d watched it I somehow decided that reading the books would be a good idea.  I will never know where ideas like this come from — whether it’s wholly formed out of the ether or from inside the part of my own brain that fucking hates me and wants me to suffer.  Regardless those ideas are always terrible, as I have discovered before and was about to discovered again around two pages into what I would like to call ‘my horrible journey of discovery’.</p>
<p>It’s not that I hate Stephanie Meyer — even though there is a lot to hate.  I’ve never met her so it would follow that hating her wouldn’t be entirely rational.  I have frankly no idea what she must be like as a person apart from the vision of her I have managed to pull together from her writing.  </p>
<p>If anyone reading this is familiar with <a href="http://en.wikipedia.org/wiki/Virginia_Woolf">Virigina Woolf</a>’s ‘A Room of One’s Own’ then you are probably equally familiar with her supposition that any novel writing that results in the reader forming a picture of the author in their mind is technically bad.  Shakespeare, in Woolf’s opinion is the perfect example of a writer who avoids this trap — there is very little which can be taken from his work of himself and therefore the man remains a mystery, which is the goal of writing good fiction.</p>
<p>Not so for Miss Meyer who’s cardigan shrouded, round shouldered presence was so recognisable in her <a href="http://www.youtube.com/watch?v=_QLeQO7E16Y">cameo appearance</a> as ‘silly cow eating burger in dinner while looking massively fucking smug and out of place’ in the movie adaptation of Twilight that it was impossible to miss her.  She’s just that type of woman.</p>
<p>The type of woman who, at the end of the day, wrote a book that behind all the pretend feminism, dramatic self indulgence and self interested self sacrifice was really about was what it would be like to be married to a VAMPIRE and the magical responsibility-less teen pregnancy that such a union would result in.  It’s pure pulp fantasy trash. </p>
<p>She’s not a hateful cow.  She’s not a horrible human being.  She’s just a lady who wrote a stupid series of books for teenagers, which, at the heart of it is why I dislike her and her 1700 pages of retardo VAMPIRE smut.  At the very center of it I have climbed on to my high horse, not because of her bad writing, but because I’m annoyed at her dis-service to teenagers in general.</p>
<p>Your teenage years are the safest place and time for you to do stupid things.  They’re specifically the time in which a young adult is supposed to make retarded mistakes and in doing so learn from them.  Bad friendships, dangerous relationships with intense older dudes your parents disapprove of, sexual experimentation, flirtation with alcohol and the wrong type of people.  You’re supposed to do all this when you’re a teenager and it’s ok to be stupid — that’s the behaviour expected from you.  </p>
<p>Any sort of young adult fiction aimed at teenagers is going to reflect that.  But it’s also hopefully going to try to educate the idiot kids reading it and steer them away from making stupid decisions they can’t undo while encouraging them to understand more about themselves and the world around them.  Writing for young adults is a serious job with big responsibilities.  Peddling a bit of fantasy is great but you have to back it up with a feeling that at the end of the day you don’t jealously begrudge young people their youth, beauty and possibilities the way that Meyer does.</p>
<p>She single mindedly sets Bella on top of a pedestal of incontrovertible logic — at her mature 17 years of age she knows it all far better than any adult or in this case super human 800 year old adult.</p>
<p>Bella knows everything.  Bella is bulletproof and nothing, ever can go wrong.  She just has to keep on believing that her relationship with a giant controlling creeper is right for her and no-one can tell her any different even if they’re older and more experienced.</p>
<p>She knows she wants to become a VAMPIRE instead of going to college.  She knows she wants to lose her virginity before becoming a VAMPIRE even if this means going against her bloody minded principles and getting married at the age of 18 to a possessive, broody twat bag whose 18th century chivalry wont stand for sex before marriage or compromises.  Later, after her marriage of VAMPIRE convenience she then knows she wants to give birth to her very own half idiot half VAMPIRE baby, which until it’s delivered by fang cesarean amuses itself by eating her alive from the inside out.  </p>
<p>Bella Swan, the literary incarnation of Stephanie Meyer, is a bloody minded, pig headed, arrogant teenage girl.  There is nothing in her story that couldn’t be fixed with some self esteem building exercises like horse riding and a good lecture about contraception.  It would be that simple to turn this horror story around.</p>
<p>Throughout her 1700 page journey of selfishness she whines, moans and name drops expensive yet terrible cars for no real reason.  There’s no point to any of it save reading about a bit of gothic glamour and dreaming about how great life would be if a suave well read older man whisked you off to Europe and filled you with babies so that you didn’t have to turn up for your shift at your summer job at Tesco.</p>
<p>Of course there’s nothing wrong with that.</p>
<p>As long as you don’t pretend to impressionable teenage girls (and in some cases fully fledged adult retards) that it’s anything other than it is.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/07/bad-books-twilight-is-terrible/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Andrew W.K. Part(y) II</title>
		<link>http://superpositionkitty.com/2009/07/andrew-w-k-party-ii/</link>
		<comments>http://superpositionkitty.com/2009/07/andrew-w-k-party-ii/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 14:21:59 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[andrew w.k.]]></category>
		<category><![CDATA[Partying]]></category>
		<category><![CDATA[Pary]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1193</guid>
		<description><![CDATA[We’ve written about Andrew &#8230;]]></description>
			<content:encoded><![CDATA[<p>We’ve written about <a href="http://www.andrewwk.com/">Andrew W.K.</a> <a href="http://superpositionkitty.com/2009/03/andrew-wk/">before</a>. We felt that it was a reasonably accurate account of the things that were awesome about the man, but there are so many things that we missed out on or have happened since, that we’ve had to rectify it with this post in front of you. </p>
<p>The very first thing we should mention is that Andrew W.K. has a <a href="http://twitter.com/AndrewWK">Twitter</a>. Go on, follow him. Yes, now. Yeah, I’ll wait while you <a href="https://twitter.com/signup">create an account</a>. Of course there was no reason to have one before, who the hell would you follow? Well, now there is a reason. You too, can wake up to your Twitter application of choice, and see <em>this</em>:</p>
<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/pipeparty.jpg" alt="PIPE PARTY" /></p>
<p><span id="more-1193"></span>Who know that Twitter could bring you such ethereal experiences? Of course, there are many more things that you are missing out on. A video of Andrew <a href="http://www.youtube.com/watch?v=9NWFbCJv29o">making breakfast and feasting on pancakes</a>, a <a href="http://twitter.com/AndrewWK/status/2749570550">Twitter petition</a> (which from now on shall be known as a twitition … FUCK, it <a href="http://twitition.com/">already exists</a>) to get Andrew on <a href="http://ellen.warnerbros.com/">The Ellen Degeneres Show</a>, and of course my favourite:</p>
<p><object width="460" height="372"><param name="movie" value="http://www.youtube.com/v/k6H6n_onZI0&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/k6H6n_onZI0&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="372"></embed></object></p>
<p>I will leave you with this.</p>
<blockquote><p>
It’s very important to note that no where on this album is the word alcohol or drugs ever mentioned, and there’s never any instruction as to what to do to have a party. Having a party is as much eating a piece of cake as it is dancing as it is drinking as it is sitting in your room listening to music. It’s whatever you want it to be. That’s the most important thing to know here. No one is going to say, “You’re a wimp. You’re doing it wrong. A real hard partier does this.”</p>
<p>We do what we want when we want to do it, and I’ll get totally drunk and wasted one night, but maybe the next night I don’t want to. That’s hard for some people to understand, but I just do what I want, and I just want people to do the same. The most important thing to me is that they know that they don’t have to do anything to be perceived as cool by us. As long as they’re having fun, they can do whatever they want.</p>
<p>A lot of people who like this band are straight edge. I never thought in a million years that someone who is straight edge would love this music. I’m not straight edge and no one in this band is straight edge, but there are tons of people who are who love this band. And I ask them, “Please don’t get me wrong here. I’m honored that you like this band, but explain to me why.” And they tell me, “Because we know it’s not about drinking, it’s about having fun.” And that’s the whole point. If you want to drink to have fun, then that’s great, but if you don’t, then that’s fine too.<br />
<cite><a href="http://uk.music.ign.com/articles/375/375110p3.html">Andrew W.K. on partying</a></cite>
</p></blockquote>
<p><br/><br />
It’s about having fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/07/andrew-w-k-party-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shock and Horror As Girl (25) Is Polite</title>
		<link>http://superpositionkitty.com/2009/07/shock-and-horror-as-girl-25-is-polite/</link>
		<comments>http://superpositionkitty.com/2009/07/shock-and-horror-as-girl-25-is-polite/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 16:47:22 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[The Plinth]]></category>
		<category><![CDATA[4th Plinth]]></category>
		<category><![CDATA[One And Other]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1173</guid>
		<description><![CDATA[If you saw &#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/shockandhorror.jpg" alt="Shock And Horror" /></p>
<p>If you saw <a href="http://www.oneandother.co.uk/participants/thebooklover">my appearance</a> on the <a href="http://www.london.gov.uk/fourthplinth/">4th plinth</a> on Thursday of last week then you’ll know that I didn’t exactly stick to my plans.  If you didn’t see it — and I am pretty sure that you didn’t — then here’s what happened.</p>
<p>Originally I’d planned to wear a hand stitched bag over my head and read a book as a pastiche on <a href="http://www.magritte.com/">Rene Magritte</a>’s <a href="http://www.allposters.co.uk/gallery.asp?startat=/getposter.asp&#038;APNum=389176&#038;CID=CC9E6AEE68C9456A98F59111B74FE654&#038;PPID=1&#038;search=26341&#038;f=c&#038;FindID=26341&#038;P=3&#038;PP=8&#038;sortby=PD&#038;cname=Rene+Magritte&#038;SearchID=">The Lovers</a>.  I’d decided to do this because it’s boring to sit in one place for an hour and I had no idea what to expect so I was going to do what I usually do in that situation and take a book.  I like books.  The sack was my mother’s inspiration and took me 3 hours to sew together during which time I repeatedly stabbed myself in the hand with pins.  The whole idea was to promote the concept that if you don’t read more you may well die stupid and alone which I think is a fair point.</p>
<p>However this is not what happened and here is how it didn’t happen:</p>
<p><span id="more-1173"></span>For starters by the time I was being wheeled onto the plinth by a team of art students in a forklift I had been awake for roughly 23 hours, 12 of which had been spent on a bus driven by a <a href="http://www.megabus.com/landing.php">lunatic</a>.  Another 5 were spent sitting huddled in a corner of Trafalgar Square watching mice run up the steps of <a href="http://www.nationalgallery.org.uk/">The National Gallery</a> and a drunk Russian guy being beaten up by teenagers so both Ryan and myself were at this point what you would call ‘fucking knackered’.</p>
<p>Previous to this we’d been sitting in a portacabin for roughly 90 minutes.  Although really it was two portacabins stacked on top of each other to which I’d been told to report to to be interviewed and sign a lot of forms handing over my likeness, time and soul to the <a href="http://www.skyarts.co.uk/">SkyArts Channel</a> who now own me.  Obviously the fact that this was necessary wasn’t mentioned in any of the communications I’d had with the <a href="http://www.oneandother.co.uk/about">One and Other</a> people beforehand but 23 hours and 478 miles into something probably isn’t the appropriate time for moral objections.  For future reference I will try to remember that everything requires paper work of some kind and object before it’s too late.</p>
<p>Of course the signing of documents was part of an interview process where a girl who looked about as tired as I did asked me some questions and took some photographs of me.  Anyone who knows me knows I dislike both of these things — answering questions about myself or being photographed — but it had been me who’d volunteered to make a spectacle of myself in the first place.  In those circumstances I will quite affably talk crap about my life and pretend I am comfortable with cameras.  Besides — the people manning the portacabin were super lovely despite the fact that night shift sucks and they were sharing an enclosed space with two people who had been traveling for several hours and smelled terrible.</p>
<p>It was the cabin full of art students (whose names I have all forgotten because I am a terrible person) who pointed out just how Klan-esque my hand stitched head bag looked.  Of course it had already occurred to me but there’s something about a middle class person’s facial expression when faced with something they find potentially distasteful that always encourages me to drop the subject or change my plans especially if I am too tired to bother arguing.  </p>
<p>Like I keep saying on all my job application forms ‘I am highly flexible and adaptable to change’ so the bag was out from this point onwards.</p>
<p>Still in was the giant book cover with ‘Read More or Die Stupid’ printed across the front of it and my copy of <a href="http://en.wikipedia.org/wiki/Seeing_(novel)">Seeing</a> by <a href="http://en.wikipedia.org/wiki/Jos%C3%A9_Saramago">Jose Saramago</a> (which in hindsight was probably the wrong choice — it’s a brilliant book and all but perhaps something a little bit … easier to read might have been better).  These things would still be in for around 15 minutes into my shift after which time I gave up which may seem cowardly and lacking in conviction but let me explain what happened.</p>
<p>I think before I got up there that I didn’t really understand what was going on with <a href="http://en.wikipedia.org/wiki/Antony_Gormley">Antony Gormley</a> and his Plinth because it can be pretty hard to visualise the point of a piece of art without having had some direct experience of it.  Whether or not I got the point of it had even been a question asked in the earlier interview which I had hemmed and hawed through because I was a) exhausted and b) hadn’t really gotten what exactly was going on clear in my head.  I had not had a clear answer.</p>
<p>Of course I could quite easily spin off some of the opinions other people had had about it — <a href="http://en.wikipedia.org/wiki/Charlie_Brooker">Charlie Brooker</a> for instance calling it <a href="http://www.guardian.co.uk/culture/2009/jul/11/screenburn-antony-gormley">Big Brother: The Tate Modern Edition</a> — and say whether or not I disagreed with them but really I was having some problems grasping the point of the trees because of the entire bloody vista of the forest.</p>
<p>But what happened to clue me in was I got up there and I realised something very important — watching someone read a book is pretty boring.  Of course I didn’t realise this on my own.  Rather I had an audience of hecklers and onlookers who ever so gently prodded me towards re-valuating my idea of what the hell I was doing 8 meters off the ground in central London at 4am on Thursday morning.  I was being public art.</p>
<p>Now I’m not an art historian.  </p>
<p>I have never been to an art college apart from to look around <a href="http://djcad.dundee.ac.uk/">Duncan of Jordanstone</a>’s very well stocked supply shop.  </p>
<p>You could maybe loosely categorise me as a critic in that sometimes I don’t like a particular bit of art by someone and then voice my opinion on it.  </p>
<p>But really I know just about fuck all about art.  Which is why the following explanation is probably incorrect and largely incoherent but stick with me.  This is going to be like watching monkeys learn how to use tools.</p>
<p>As far as I could see it, from a lump of hewn rock bordered by some nicely caulked edging, the point of me being up there was largely to interest the public.  Because that’s what public art does.  </p>
<p>You turn up somewhere like Trafalgar Square and you look at the art payed for to impress upon people the world standing and personality of the town that it now lives in.  I was like one of the massive <a href="http://en.wikipedia.org/wiki/File:Lion_At_Nelson%27s_Column_-_Trafalgar_Square_-_London_-_240404.jpg">Lions</a> (which are hella cool by the way) or any of the myriad of other sculptures strewn about London — I was supposed to be something you travel to look at it, form an opinion of and then leave after hopefully spending some money on refreshments or other things in the local area.  </p>
<p>That’s what public art does — it improves and enriches the area it’s in.  That’s it’s job.  It is hopefully pretty and improves the economy of the surrounding area.</p>
<p>Of course I can’t claim to have been particularly good to look at or smell and I don’t think you could call me majestic or breath taking.  But I was, after my initial mistake of boring people to death, polite and hopefully engaging to the people who stayed to look at me.</p>
<p>(Of which one man in particular bares mentioning — we were too tired to think of asking for his name or contact details but he was charming, courteous, helpful and overall a good laugh.  We may not know your name Erotic Photography Dude, or EPD as we now call you, but we will remember we met you.  Rock on.)</p>
<p>All in all I’m glad we went to London despite the horror of both bus journeys and the throat infection I know have thanks to broken air conditioning on the return trip.  I’m glad I manned up, accepted the place and spent the money to get there. </p>
<p>It wasn’t exactly an amazing journey of discovery and I am pretty much done with talking about it after this article is finished — anyone who wants to know how it was can read about it here or make up their own version of events in which I battle aliens for the future of the planet and return home to Dundee a hero.  </p>
<p>We ate <a href="http://www.yosushi.com/">sushi</a> and were tired, grotty and grumpy.</p>
<p>It was fun and I did learn something from it.</p>
<p>I learned that Antony Gormley understands public art better than nearly everyone and I am grateful to him and all of the other One and Other staff for the experience.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/07/shock-and-horror-as-girl-25-is-polite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Photo Journey To London And Back</title>
		<link>http://superpositionkitty.com/2009/07/a-photo-journey-to-london-and-back/</link>
		<comments>http://superpositionkitty.com/2009/07/a-photo-journey-to-london-and-back/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 16:15:37 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Photos]]></category>
		<category><![CDATA[The Plinth]]></category>
		<category><![CDATA[4th Plinth]]></category>
		<category><![CDATA[Bus]]></category>
		<category><![CDATA[Journey]]></category>
		<category><![CDATA[london]]></category>
		<category><![CDATA[One And Other]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1164</guid>
		<description><![CDATA[Below we have a &#8230;]]></description>
			<content:encoded><![CDATA[<p>Below we have a small example of some of the things that we got up to in London. Note the various photos of food, because after 11 hours in the bus all you want to do is sleep and eat and the first wasn’t going to be available to us until after another 13 hour bus ride home 12 hours later.</p>
<p><a href="http://www.flickr.com/photos/29778044@N02/3745720653/"><img src="http://farm3.static.flickr.com/2530/3745720653_5cd509e8cf_o.jpg" alt="Sushi" width="460px" height="305px"/></a></p>
<p><span id="more-1164"></span><a href="http://www.flickr.com/photos/29778044@N02/3745719647/"><img src="http://farm3.static.flickr.com/2621/3745719647_5561b57eb9_o.jpg" alt="London Streets Night" width="460px"/></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/3746512306/"><img src="http://farm3.static.flickr.com/2503/3746512306_f8e890842d_o.jpg" alt="Chips &#038; Coffee" width="460px" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/3746512498/"><img src="http://farm4.static.flickr.com/3421/3746512498_34fd0150bf_o.jpg" alt="Tired Jen" width="460px" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/3746511902/"><img src="http://farm3.static.flickr.com/2640/3746511902_3a5fe2f165_o.jpg" alt="London Underground" width="460px" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/3746512118/"><img src="http://farm3.static.flickr.com/2436/3746512118_2d0da681cb_o.jpg" alt="Security Guard &#038; Skaters" width="460px" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/3745719867/"><img src="http://farm3.static.flickr.com/2457/3745719867_871423edfe_o.jpg" alt="Jen Forklift" width="460px" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/3746511406/"><img src="http://farm3.static.flickr.com/2590/3746511406_7c18011f44_o.jpg" alt="Jen Plinthing" width="460px" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/3745720063/"><img src="http://farm3.static.flickr.com/2578/3745720063_595e124ff6_o.jpg" alt="Jen Plinthing" width="460px" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/3745720389/"><img src="http://farm3.static.flickr.com/2526/3745720389_bdd58e8b40_o.jpg" alt="Boring Dude" width="460px" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/3746511244/"><img src="http://farm4.static.flickr.com/3499/3746511244_6b04df90c1_o.jpg" alt="Birthday Balloon" width="460px" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/3746512750/"><img src="http://farm4.static.flickr.com/3434/3746512750_80bfbaf31c_o.jpg" alt="Tree Rat" width="460px" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/07/a-photo-journey-to-london-and-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Well Soon MCA</title>
		<link>http://superpositionkitty.com/2009/07/get-well-soon-mca/</link>
		<comments>http://superpositionkitty.com/2009/07/get-well-soon-mca/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 20:37:12 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[beastie boys]]></category>
		<category><![CDATA[Cancer]]></category>
		<category><![CDATA[MCA]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1140</guid>
		<description><![CDATA[I’m off to &#8230;]]></description>
			<content:encoded><![CDATA[<p><object width="460" height="342"><param name="movie" value="http://www.youtube.com/v/u7CH3M7cECI&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/u7CH3M7cECI&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="342"></embed></object></p>
<p>I’m off to listen to <a href="http://www.last.fm/music/Beastie+Boys/Licensed+to+Ill">Licensed To Ill</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/07/get-well-soon-mca/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Trip In Bullet Points</title>
		<link>http://superpositionkitty.com/2009/07/the-trip-in-bullet-points/</link>
		<comments>http://superpositionkitty.com/2009/07/the-trip-in-bullet-points/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 20:59:48 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[The Plinth]]></category>
		<category><![CDATA[Bullet Points]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1129</guid>
		<description><![CDATA[Expect multiple updates &#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/londoncalling.gif" alt="Bullet Points"/></p>
<p>Expect multiple updates in the next week about our <em>exciting</em> trip. In the meantime, here’s a brief list of everything that happened.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/07/the-trip-in-bullet-points/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ok…So I Have A Confession To Make</title>
		<link>http://superpositionkitty.com/2009/07/ok-so-i-have-a-confession-to-make/</link>
		<comments>http://superpositionkitty.com/2009/07/ok-so-i-have-a-confession-to-make/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 22:20:37 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[Antony Gormley]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[One And Other]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1114</guid>
		<description><![CDATA[We’ve been quite busy &#8230;]]></description>
			<content:encoded><![CDATA[<p>We’ve been quite busy this week leading to a lack of updates.  We’re also set to be busy for the next 2 or 3 days so I’m afraid there wont be much going on here until next week.</p>
<p>But there is a reason for this.</p>
<p>Unfortunately the reason has a lot to do with <a href="http://www.oneandother.co.uk/participants/thebooklover">this</a>.</p>
<p>Yes.  That’s right.  I volunteered to stand on <a href="http://en.wikipedia.org/wiki/Antony_Gormley">Antony Gormley</a>’s <a href="http://en.wikipedia.org/wiki/Fourth_plinth#Fourth_plinth">Fourth Plinth</a> and accidentally got picked after someone else refused the 4am time slot.</p>
<p>So we’ll be setting off on an 11 hour bus journey at 9am tomorrow morning, arriving in London at around 8pm, staying there for another 12 hours, one of which will be spent sitting on the aforementioned plinth with a bag on my head reading a book, and then getting back on another bus which will take 11 and a half hours to get back to Dundee.</p>
<p>Here is a preview of my performance which is entitled The Book Lover or Read More Or Die Stupid which you can watch live (ha) at the One &amp; Other <a href="http://www.oneandother.co.uk/">website</a>:</p>
<p><span id="more-1114"></span><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/bag.jpg" alt="bag" style="margin-right: 160px;"/></p>
<p>Updates mostly comprising of photographs of bus journeys to be made when we get back.</p>
<p>Also check out <a href="http://superpositionkitty.com/books/">some books</a> which is a new feature we’re adding here.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/07/ok-so-i-have-a-confession-to-make/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Monthly Round-Up: June</title>
		<link>http://superpositionkitty.com/2009/07/monthly-round-up-june/</link>
		<comments>http://superpositionkitty.com/2009/07/monthly-round-up-june/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 21:56:30 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Monthly Round-Up]]></category>
		<category><![CDATA[La Roux]]></category>
		<category><![CDATA[Margaret Atwood]]></category>
		<category><![CDATA[Michael Jackson]]></category>
		<category><![CDATA[Perez HIlton]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1075</guid>
		<description><![CDATA[This months links round &#8230;]]></description>
			<content:encoded><![CDATA[<p>This months links round up has been delayed by Margaret Atwood’s <a href="http://www.amazon.co.uk/Blind-Assassin-Margaret-Atwood/dp/1860498809/ref=sr_1_1?ie=UTF8&#038;s=books&#038;qid=1246999083&#038;sr=8-1">The Blind Assassin</a> of which I still have roughly 30 pages left to read.  The only reason I am not reading it right now is because I’m expecting a phone call some time in the next hour and don’t want the end ruined by not being able to think about it properly.</p>
<p>I’ve also read <a href="http://www.amazon.co.uk/Handmaids-Tale-Contemporary-classics/dp/0099740915/ref=sr_1_1?ie=UTF8&#038;s=books&#038;qid=1246999243&#038;sr=1-1">The Handmaid’s Tale</a> and <a href="http://www.amazon.co.uk/Oryx-Crake-Margaret-Atwood/dp/1844080285/ref=sr_1_1?ie=UTF8&#038;s=books&#038;qid=1246999294&#038;sr=1-1">Oryx and Crake</a> this month.  The former was a good as I remembered it being when I first read it as a teenager.  The latter you would have had to pry from my cold dead hands to stop me from finishing it.</p>
<p>So June 2009s summation comes fueled by <a href="http://www.owtoad.com/">Margaret Atwood</a>.  Who is amazing.  You should all read her books right now.</p>
<p><span id="more-1075"></span>Other things that have taken up time in June have been <a href="http://www.laroux.co.uk/">La Roux</a>’s debut album which appeared around two weeks ago.  It’s obviously written by a 21 year old girl who’s been in a bad relationship for what seems like forever.  It’s more than likely common knowledge by now that there were floods and rivers of tears produced during its recording because music journalists <a href="http://www.theregoesthefear.com/2009/07/album-review-la-roux-la-roux.php">love</a> to <a href="http://finobla.baywords.com/2009/06/24/la-roux-la-roux-2009/">make</a> a <a href="http://www.clashmusic.com/reviews/la-roux-la-roux">point</a> of it (although I suppose I’m just as bad now).  In fact the only thing people like to comment on more is <a href="http://userserve-ak.last.fm/serve/_/24659155/La+Roux+laroux4.jpg">her hair cut or choice of clothes</a>, like musicians should all dress in clothes from <a href="http://www.topshop.com/webapp/wcs/stores/servlet/TopCategoriesDisplay?storeId=12556&#038;catalogId=19551">Topshop</a> and be wearing <a href="http://www.topshop.com/webapp/wcs/stores/servlet/CategoryDisplay?catalogId=19551&#038;storeId=12556&#038;categoryId=126989&#038;parent_category_rn=42351&#038;langId=-1&#038;top=Y">fruity mass produced unique hipster bo-ho head bands</a> just like that <a href="http://www.celebszz.com/57349-2/shirley-manson-01.jpg">Shirley Manson</a> chick or that <a href="http://www.waxx-music.com/photos/editorial/news/web/David-bowie-ziggy-stardust.jpg">David Bowie</a> dude.</p>
<p>But who cares about all that?  Her personal grooming is her own business and we’ll all be 21 once whether it’s now, earlier or later, and we will all do dumb stuff.  What really matters is that the album is a tight little work filled with hooky synth lines and clever lyrics that Elly Jackson really means.  What else do you want in your wonky synth pop?</p>
<p>Speaking of Elly Jackson and La Roux I also have to touch on other, sadder news — which is of course that her album was in fact batted from the number one spot here in the UK by the resurgent interest in the now dead and once again popular <a href="http://news.google.co.uk/news?hl=en&#038;safe=off&#038;ei=QbpTSpy5Fd3RjAfcn5mbCQ&#038;resnum=0&#038;q=michael+jackson&#038;um=1&#038;ie=UTF-8&#038;ei=Q7pTSozSDpPUjAe22omOCQ&#038;sa=X&#038;oi=news_group&#038;ct=title&#038;resnum=1">Michael Jackson</a>.  I may hold personal opinions of Mr Jackson which don’t seem to match up to those of other people but I felt the same way about my families memories of my grandfather when he died so perhaps this is what death does to people and their feelings.  I wont lie though, and tell you I was a fan of his music, because I was not.  I watched Moon Walker as a child and couldn’t possibly avoid seeing every video of his ever due to the omnipresent media machine that was his career but my most vivid memory of him is Jarvis Cocker’s <a href="http://www.youtube.com/watch?v=upbbz_Eyq4Q">interuption of Earth Song</a> during the 1996 Brit Awards.</p>
<p>I am sorry I can’t fake enjoyment as a tribute to him but I can play <a href="http://www.youtube.com/watch?v=orr63IHZJeA">Alien Ant Farm’s cover of Smooth Criminal</a> over and over.  I think it’s what he would have wanted.</p>
<p>And that was June. </p>
<p>(I could go on to mention <a href="http://superpositionkitty.com/wp-content/themes/blackandwhite/images/uploaded/twit.jpg">Perez Hilton</a>’s <a href="http://perezhilton.com/2009-06-22-my-statement">terrible</a> <a href="http://mashable.com/2009/06/25/perez-hilton-michael-jackson/">month</a> but I’d rather pass you onto Mat and Trey of Southpark who covered the issues nicely in an episode called <a href="http://www.southparkstudios.com/guide/1209/">Breast Cancer Show Ever</a>.  If you’re outside of America and can’t watch the episode I’m sure you can figure out another way to manage it.)</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/07/monthly-round-up-june/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Random Stylesheets in WordPress</title>
		<link>http://superpositionkitty.com/2009/06/random-stylesheets-in-wordpress/</link>
		<comments>http://superpositionkitty.com/2009/06/random-stylesheets-in-wordpress/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 11:57:28 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1034</guid>
		<description><![CDATA[You might have noticed &#8230;]]></description>
			<content:encoded><![CDATA[<p>You might have noticed lately that the colour-scheme of this site changes each time you click a link or reload a page (currently we have blue, pink, and green). This is something easily accomplished with just an extra 2 tiny <a href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets">CSS</a> files, and a little bit of <a href="http://en.wikipedia.org/wiki/PHP">PHP</a>. </p>
<p>If you’ve read my previous article — <a href="http://superpositionkitty.com/2009/06/wordpress-and-a-horizontal-baseline-pt-1/">WordPress And A Horizontal Baseline Pt.1</a> — you are already familiar with the CSS that forms the foundation of this site. What we’re going to do first is strip out anything to do with colour from the CSS and put it in it’s own separate file that we’re going to call <code>blue.css</code>.</p>
<pre>
a:active, a:hover, .commentlist a:hover, .commentlist a:active, .commentlist cite a:hover, .commentlist cite a:active, #recent-comments a:hover, #related-posts a:hover, .lastfm a:hover, #footer a:hover, #footer a:active, .commentlist pre a:hover, .commentlist pre a:active {color:#34B0F8;} 

#menu ul li a:hover, #menu ul li a:active {background:#34B0F8;}

.entry p a:hover img, .entry p a:active img {border:1px solid #34B0F8;}

a.feature:hover	{border-color:#34B0F8;}
</pre>
<p><span id="more-1034"></span>Then, after a little messing around with the colour tool in <a href="http://www.adobe.com/products/photoshop/compare/">Photoshop</a>, we know the hex code to edit in for <code>pink.css</code>.</p>
<pre>
a:active, a:hover, .commentlist a:hover, .commentlist a:active, .commentlist cite a:hover, .commentlist cite a:active, #recent-comments a:hover, #related-posts a:hover, .lastfm a:hover, #footer a:hover, #footer a:active, .commentlist pre a:hover, .commentlist pre a:active {color:#F834E3;}
#menu ul li a:hover, #menu ul li a:active {background:#F834E3;}

.entry p a:hover img, .entry p a:active img {border:1px solid #F834E3;}

a.feature:hover	{border-color:#F834E3;}
</pre>
<p>As well as <code>green.css</code>.</p>
<pre>
a:active, a:hover, .commentlist a:hover, .commentlist a:active, .commentlist cite a:hover, .commentlist cite a:active, #recent-comments a:hover, #related-posts a:hover, .lastfm a:hover, #footer a:hover, #footer a:active, .commentlist pre a:hover, .commentlist pre a:active {color:#46F834;}
#menu ul li a:hover, #menu ul li a:active {background:#46F834;}

.entry p a:hover img, .entry p a:active img {border:1px solid #46F834;}

a.feature:hover	{border-color:#46F834;}
</pre>
<p>The next part is to write the PHP, which is just a simple random function followed by an if-else statement. The code must go between the <code>&lt;head&gt;</code> and <code>&lt;/head&gt;</code> tags in your <code>header.php</code> file. It’s also a good idea to make sure that it is <em>after</em> you call your main CSS (<code>style.css</code>) file.</p>
<pre>
&lt;?php
$random = rand(1,3);
if ($random == 1) {
    echo "&lt;link rel='stylesheet' href='http://yourwebsite.com/wp-content/themes/yourtheme/css/pink.css' type='text/css' media='screen' /&gt;";
} elseif ($random == 2) {
    echo "&lt;link rel='stylesheet' href='http://yourwebsite.com/wp-content/themes/yourtheme/css/green.css' type='text/css' media='screen' /&gt;";
} else {
    echo "";
}
?&gt;
</pre>
<p>As the main CSS file already provides the styles for the colour blue, there is no need to call it again in our PHP function. Now every time that somebody visits the site there is a ⅔ chance that they will get a different colour! To add any more colours you will need to change the <code>3</code> in <code>$random = rand(1,3);</code> to a larger number, and add more <code>elseif</code> statements.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/06/random-stylesheets-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Echo Nest Remix API</title>
		<link>http://superpositionkitty.com/2009/06/the-echo-nest-remix-api/</link>
		<comments>http://superpositionkitty.com/2009/06/the-echo-nest-remix-api/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 16:47:55 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Echo Nest]]></category>
		<category><![CDATA[Manipulation]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[remix]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=1018</guid>
		<description><![CDATA[The aim of the &#8230;]]></description>
			<content:encoded><![CDATA[<p>The aim of the <a href="http://developer.echonest.com/">Echo Nest</a> <a href="http://code.google.com/p/echo-nest-remix/">Remix API</a> is to let you manipulate and remix music and video through code. Execute the few lines below:</p>
<pre>
import echonest.audio as audio
audio_file = audio.LocalAudioFile("input.mp3")
beats = audio_file.analysis.beats
beats.reverse()
audio.getpieces(audio_file, beats).encode("output.mp3")
</pre>
<p>And you have now reversed a song by ‘playing its beats forward from the end of the song’. The output of which would look a little something like <a href="http://static.echonest.com/NeverGonnaTellItBackwardsByBeat.mp3">this.mp3</a>.</p>
<p>First off, you’re going to need to grab an API key by <a href="http://developer.echonest.com/account/register/">registering an account</a>. If you’re using <a href="http://www.apple.com/macosx/">OS X</a> you can follow this <a href="http://code.google.com/p/echo-nest-remix/wiki/MacOSXInstallation">install process</a> (here’s <a href="http://code.google.com/p/echo-nest-remix/wiki/DebianLinuxInstallation">Linux</a> and <a href="http://code.google.com/p/echo-nest-remix/wiki/WindowsInstallation">Windows</a>). Make sure to run the example at the end of the installation process to confirm that everything works. </p>
<p>Congratulations! You can now mess around with beats and manipulate all  your mp3s and videos. Try out the rest of the examples to get an idea for just what the Echo Nest Remix API can do. To get an idea of just how powerful the (upcoming) video manipulation is, check out <a href="http://musicmachinery.com/2009/06/21/wheres-the-pow/">Where’s The Pow</a> by <a href="http://musicmachinery.com/about/">Paul Lamere</a> in which he remixes the <a href="http://www.blackeyedpeas.com/">Black Eyed Peas</a> — <a href="http://www.youtube.com/watch?v=9F444CELomo">Boom Boom Pow</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/06/the-echo-nest-remix-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://static.echonest.com/NeverGonnaTellItBackwardsByBeat.mp3" length="3514199" type="audio/mpeg" />
		</item>
		<item>
		<title>Hunch</title>
		<link>http://superpositionkitty.com/2009/06/hunch/</link>
		<comments>http://superpositionkitty.com/2009/06/hunch/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 19:02:00 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[Consciousness]]></category>
		<category><![CDATA[Hunch]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[Morons]]></category>
		<category><![CDATA[Stewart Lee]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=987</guid>
		<description><![CDATA[41st Best Stand up &#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stewartlee.co.uk/">41st Best Stand up Stewart Lee</a> suggested during his recent <a href="http://www.youtube.com/watch?v=IjQws4ZYxZA">BBC</a> <a href="http://www.youtube.com/watch?v=JLnxE5Miypk">program</a> that once upon a time in history a man who could lay claim to having read all the books in the world would be considered to be extremely intelligent.  This is fact that’s hard to dispute.  However, it’s equally hard to dispute the following point he put forth — that a man who could claim to have read all the books available today could be considered to be perhaps the stupidest man alive.</p>
<p>The idea I took from this is the perhaps controversial phrase “all of us are not as smart as one of us”.  </p>
<p>This is a common idea on the internet — that there more people there are on it, the worse it actually gets — and has been witnessed first hand through the mass movements of people from one social networking site to another.  <a href="http://www.myspace.com">Myspace</a> for instance, once the happy home of everyone everywhere was abandoned for <a href="http://www.bebo.com">bebo</a> at the point where it launched Lilly Allen’s career and every other ass with a guitar decided to network themselves to perfect strangers.  Bebo was abandoned for <a href="http://www.facebook.com">Facebook</a> when everyone we hated ended up there.  Facebook has been abandoned for <a href="http://www.twitter.com">Twitter</a> by idiots.</p>
<p>Basically as soon as everyone knows about a site and joins up to it it’s potential usefulness, fun and eventually credibility is destroyed.  For an example of this just look at Trent Reznor and Ashton Kutcher’s personal use of Twitter to trumpet nothing other than their own egos and how this might affect a persons decision to use it,</p>
<p>So where then does this leave <a href="http://www.hunch.com/">Hunch</a> the new site which offers you your very own web based decision making robot?</p>
<p><span id="more-987"></span>Launched from closed beta yesterday, Hunch is a site that <a href="http://www.hunch.com/scary-movies/">recommends you stuff</a> and helps you make up your mind about <a href="http://www.hunch.com/should-i-trade-in-my-cd-collection-for-vinyl/">really tricky questions</a>.  You can also recommend your own ideas to the various topics up for discussion to improve results for other people.  A recent blog post nicely sums up it’s ambition and ethos:</p>
<blockquote><p>
For those of you who are new, Hunch helps you make decisions, and gives you results it wouldn’t give other people, getting smarter over time as more people use it. We would like it very much if you would like it. We like it! So very much!
</p></blockquote>
<p>What a wonderful idea…</p>
<p>And I mean that without a trace of sarcasm.  I like ideas like this.  A lot.  The internet can be an irritating place filled with terrible blow hards who want nothing more than to tell you how good something is when it is clearly not.  It’s nice that there’s a place to go that aims to personally tailor the recommendations and help it’s gives you.</p>
<p>It’s nice that there’s a place like that <em>just now</em>.  Hunch <em>right now</em> carries the smell of the <a href="http://en.wikipedia.org/wiki/Early_adopter">early adopter</a>.  Of unspoiled virgin lawn tended by the caring beta testers.  It’s a lot of fun <em>right now</em> — as is being involved in anything from as close to the ground as possible.</p>
<p>It’s just that I can’t vouch for it in a week or a month and especially not in a year.  Not once it’s been found by the dreaded general public.</p>
<p>Hopefully the Hunch team are aware of how stupid we all are together.  Hopefully the mechanism by which the site tailors recommendations on a person to person basis is put together dynamically enough to withstand the incoming flux of general retardation amassed within the group consciousness of the internet. Hopefully Hunch doesn’t learn stupidity from us.</p>
<p>In this light my recommendation to you is to get over there <a href="http://www.hunch.com">right now</a> and give it a go before the morons find it.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/06/hunch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress And A Horizontal Baseline Pt.1</title>
		<link>http://superpositionkitty.com/2009/06/wordpress-and-a-horizontal-baseline-pt-1/</link>
		<comments>http://superpositionkitty.com/2009/06/wordpress-and-a-horizontal-baseline-pt-1/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 12:54:06 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Horizontal Baseline]]></category>
		<category><![CDATA[Horizontal Grid]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=971</guid>
		<description><![CDATA[It was this article &#8230;]]></description>
			<content:encoded><![CDATA[<p>It was <a href="http://www.alistapart.com/articles/settingtypeontheweb">this article</a> on <a href="http://www.alistapart.com/">A List Apart</a> that first got me started on the idea of using a horizontal grid on my latest <a href="http://wordpress.org/">WordPress</a> theme (the very one that you’re looking at right now). The best example of what aligning your type to a baseline grid means, can be seen <a href="http://www.alistapart.com/d/settingtypeontheweb/example_grid.html">here</a>. Note how all the text falls within the lines, no matter the sizing or images. It took quite a few months of work to try and get it to look the same in all browsers using the very minimum of CSS hacks, but is now 99% done (more in the next post on how IE6 and IE7 deal with text-boxes differently).</p>
<p>The very first part is setting up a <a href="http://www.google.com/search?ie=UTF-8&#038;oe=UTF-8&#038;sourceid=navclient&#038;gfns=1&#038;q=css+reset">CSS reset</a>. I’m using a reset that has been slightly customised from one I found a few years back. The more important changes were to do with how <code>&lt;table&gt;</code> is treated, as I found quite a few conflicts with <a href="http://www.instinct.co.nz/e-commerce/">WP-eCommerce</a> (more on how heavily I have had to hack up that piece of junk in another post).</p>
<p><span id="more-971"></span>
<pre>
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
margin:0;
padding:0;
border:0;
outline:0;
font-weight:inherit;
font-style:inherit;
font-size:100%;
font-family:inherit;
vertical-align:baseline;
}

:focus {
outline:0;
}

body {
background:white;
}

ol, ul {
list-style:none;
}

table {
border-collapse:separate;
border-spacing:0;
}

caption, th, td {
text-align:left;
font-weight:normal;
}

blockquote:before, blockquote:after, q:before, q:after {
content:"";
}

blockquote, q {
quotes:"""";
}
</pre>
<p>Make sure that you call your <code>reset.css</code> file <em>before</em> your <code>style.css</code> file in your header. The next part is to decide your <code>line-height</code> and <code>font-size</code>. For the best legibility I have gone with a line height of 18 pixels, and a standard font size of 12 pixels (you’ll find that this is a quite common sizing). This — as well as choosing <a href="http://en.wikipedia.org/wiki/Helvetica">Helvetica</a> for the typeface and a slightly off-white for the background and a dark grey for the text — leads us to the below:</p>
<pre>
html, body {
font-family:helvetica, arial, sans-serif;
font-size:12px;
line-height:18px;
font-weight:normal;
color:#444;
text-align:left;
background:#FDFDFD;
}

a, a:link, a:visited {
color:#222;
font-weight:bold;
text-decoration:none;
}

a:active, a:hover {
color:#34B0F8;
text-decoration:none;
} 

h1,h2,h3, h4 {
color:#222;
font-weight:bold;
line-height:18px;
}

h1 {
font-size:24px;
line-height:36px;
}

h2 {
font-size:18px;
}		

h3 {
font-size:12px;
margin-bottom:18px;
}

h4 {
font-size:11px;
}

p {
padding-bottom:18px;
}

br	{
line-height: 18px;
}

ul {
list-style-position:outside;
}

em {
font-style:italic;
}

strong {
font-weight:bold;
}
</pre>
<p>This is what will form the basis for our horizontal baseline. We will delve deeper into this in Part 2, which will cover how to deal with images, as well as the basic layout of the site. </p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/06/wordpress-and-a-horizontal-baseline-pt-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Slightly More Late Monthly Round Up</title>
		<link>http://superpositionkitty.com/2009/06/a-slightly-less-late-monthly-round-up/</link>
		<comments>http://superpositionkitty.com/2009/06/a-slightly-less-late-monthly-round-up/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 16:29:58 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Monthly Round-Up]]></category>
		<category><![CDATA[Beard­more Bros]]></category>
		<category><![CDATA[Full­metal Alchem­ist]]></category>
		<category><![CDATA[Justin Blyth]]></category>
		<category><![CDATA[Scott Pom­mier]]></category>
		<category><![CDATA[THEM THANGS]]></category>
		<category><![CDATA[Windosill]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=951</guid>
		<description><![CDATA[Welcome to Edition Two. &#8230;]]></description>
			<content:encoded><![CDATA[<p>Welcome to Edition Two. I haven’t done one of these in a while because I’m lazy, so I suppose I better get right into it.</p>
<p><a href="http://jblyth.com/blog.html">THEM THANGS</a> is the photo blog of <a href="http://jblyth.com/">Justin Blyth</a>. There are rarely any words, and definitely no explanations, so I’m going to have to make some assumptions here. THEM THANGS is a collection of cool photos/designs/pictures/lyrics/words that Justin has found in his travels throughout the internet, and there is certainly a lot of them (over 10 pages now). Make sure to wait for the long load times, and beware of the slightly NSFW content that lurks within.</p>
<p><a href="http://www.scottpommier.com/">Scott Pommier</a> takes cool pictures of cool things, there really isn’t much more to be said than that, but make sure to click on through to his <a href="http://www.featureshoot.com/2009/04/qa-scott-pommier-vancouver/">interview with feature shoot</a> and read about how he got started.</p>
<p>The <a href="http://www.beardmorebros.co.uk/">Beardmore Bros</a> are legends in automotive circles. Having worked for decades, and with an almost unhealthy obsession of <a href="http://www.beardmorebros.co.uk/website%20pages/johns_first_minor.htm">Morris</a> <a href="http://www.beardmorebros.co.uk/website%20pages/robins_custom_4door.htm">Minors</a>, they have created some of the coolest custom cars and <a href="http://en.wikipedia.org/wiki/Sleeper_%28car%29">sleepers</a> in the UK. Make sure to read about their <a href="http://www.beardmorebros.co.uk/website%20pages/new_project.htm">latest project</a>: A space framed, 2000cc 16v Fiat engined, 178mm widened, Morris Minor convertible that they use for hillclimbs and sprints.</p>
<p><a href="http://windosill.com/online/">Windosill</a> is a beautiful point-and-click adventure from <a href="http://vectorpark.com/">Vectorpark</a> — creators of a bunch of brilliantly simple downloadable games for the Mac and PC. You can play the first part of the game online <a href="http://windosill.com/online/">here</a> but will have to pay US$3.00 to play the remainder.</p>
<p>And lastly I’m going to introduce you to the way that I’ve been spending the last 3 days: reading <a href="http://en.wikipedia.org/wiki/Fullmetal_Alchemist">Fullmetal Alchemist</a>. A manga about two brothers who are trying to restore their bodies after an attempt to bring their mother back to life went very wrong. Full of terrific action, great comedy, and an enthralling plot, it will suck you in. I’m sure that if you search hard enough you’ll find a variety of ways to read it online.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/06/a-slightly-less-late-monthly-round-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Really Late Monthly Links Round Up</title>
		<link>http://superpositionkitty.com/2009/06/really-late-monthly-links-round-up/</link>
		<comments>http://superpositionkitty.com/2009/06/really-late-monthly-links-round-up/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 15:33:04 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Monthly Round-Up]]></category>
		<category><![CDATA[Anime]]></category>
		<category><![CDATA[Beserk]]></category>
		<category><![CDATA[Dragon Head]]></category>
		<category><![CDATA[Hotel]]></category>
		<category><![CDATA[Manga]]></category>
		<category><![CDATA[RVB]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=942</guid>
		<description><![CDATA[It doesn’t matter that &#8230;]]></description>
			<content:encoded><![CDATA[<p>It doesn’t matter that we’re halfway through June already — there’s still time to gather up all the stuff we’ve been looking at at SPK and throw together a post of to let the internet know about it. So to make up for our extreme lateness, we will be doing two editions, one from each of us.</p>
<p>For the most part the reason that this post is late has a lot to do with comics.  Specifically <a href="http://en.wikipedia.org/wiki/Seinen">Seinen Manga</a> which I can’t seem to get enough of right now.  Since there are so many of the things out there it’s proven difficult to stop</p>
<p>Luckily (or unluckily) for me, as I am not Japanese and sometimes find it hard to tell which title will be what I’m looking for, recommendation sites like <a href="http://www.animeplanet.com">Anime Planet</a> exist and their easy to use database system, though small right now, makes it very easy to pick out something new.</p>
<p>Just to get you started here are a few of the things it’s pointed me towards this month:</p>
<p><a href="http://www.anime-planet.com/manga/dragon-head">Dragon Head</a> is post-apocalyptic, dark and creepy but otherwise difficult to catergorise but definitely worth a look.</p>
<p><a href="http://www.anime-planet.com/manga/berserk">Berserk</a> requires a word of warning: there are just over 20 years of it to read so it could take a while to trawl through it.  It’s also a fairly brutal read focusing as it does on evisceration and sexual violence towards almost everything so if these things are not to your taste it may be best avoided.  However it is a brilliantly drawn, engrossing and stunning in it’s scale and imagination.  There are also a lot of drawings of horses.</p>
<p><a href="http://www.anime-planet.com/manga/hotel">Hotel</a>  is a short but beautiful one-shot comic.  If it doesn’t make you cry a little you are probably not human. </p>
<p>If you’re interested in any of these titles, or any manga at all and you’re looking for a place to try them out for yourself then you can head over to <a href="http://www.mangafox.com/">MangaFox</a> which is easily the best site of it’s kind I have found so far.</p>
<p><span id="more-942"></span>Movie wise <a href="http://www.imdb.com/title/tt0901487/">The Good, The Bad and The Weird</a> is released on DVD this month.  If you like anachronisms, trick riding, and Westerns set in 1940s Manchuria you will probably like this movie which stars Kunh-ho Song star of <a href="http://www.imdb.com/title/tt0468492/">The Host</a>, and Park Chan Wook’s <a href="http://www.imdb.com/title/tt0762073/">Thirst</a> (which recently premiered at Cannes).  It may not always make a lot of sense but it is visually stunning, entertaining and oddly hilarious.</p>
<p>Another movie of interest is <a href="http://www.youtube.com/watch?v=pIexG8179K8">Moon</a> which is on limited release in the USA right now and which will eventually arrive in the UK on the 17th of July.  Starring Kevin Spacey as GERTY, a whimsically creepy <a href="http://en.wikipedia.org/wiki/HAL_9000">HAL-esque</a> computer this could be like a watchable version of epic but frustrating <a href="http://www.imdb.com/title/tt0062622/">2001</a>.</p>
<p>Lastly a new series of the long running <a href="http://rvb.roosterteeth.com/home.php">Red vs Blue</a>  starts tonight at 9pm CST (that’s 3am for all you UK people).  I can’t say a lot of about a machinima series put together with Halo 3 because I neither own an XBox 360 or enjoy anything to do with Microsoft, but I can endorse Red Vs Blue as the only good thing to do with both of those things.  The previous five seasons and their companion mini series have been consistently hilarious and are even enjoyed by my mother which should go to prove that a prior knowledge of the <a href="http://en.wikipedia.org/wiki/Master_Chief_(Halo)">Master Chief</a> is not required to enjoy them.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/06/really-late-monthly-links-round-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trent Reznor Rage Quits Twitter</title>
		<link>http://superpositionkitty.com/2009/06/trent-reznor-rage-quits-twitter/</link>
		<comments>http://superpositionkitty.com/2009/06/trent-reznor-rage-quits-twitter/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 12:09:47 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[Rage Quit]]></category>
		<category><![CDATA[Trent Reznor]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=939</guid>
		<description><![CDATA[We all know my &#8230;]]></description>
			<content:encoded><![CDATA[<p>We all know my history with Twitter — I hate it.  Unrelentingly.  But I leave it alone, it leaves me alone and we’re quite happy ignoring each other.  Occasionally I use it to to shout at <a href="http://twitter.com/rance">this man</a> as he is an old acquaintance I don’t get much of a chance to talk to anymore.  On the whole I am aware of the <a href="http://superpositionkitty.com/2009/04/why-i-hate-twitter/">dangers of Twitter</a> and am happy to leave them the hell alone.</p>
<p>Not so for one Mr Trent Reznor, lead singer of Nine Inch Nails who has recently <a href="http://forum.nin.com/bb/read.php?9,731489">taken his huffy little ball and stomped all the way home</a>.  You see Trent Reznor does not understand the most important thing about the internet in that it is much like the abyss — when you stare at it, it is staring right on back.</p>
<p>Now I’m not a Trent Reznor aficionado.  Apart from knowing that he is pretty short (5 foot 7 and 1/2 according to <a href="http://answers.yahoo.com/question/index?qid=20081106180015AAdIngO">Yahoo answers</a>) and that a guy I knew once whored himself out to a fat chick for tickets to one of his shows I am pretty clueless as to general Reznor facts.  Which is why I have had to do some appropriate research before taking the time to write this article and what I deem appropriate is around 5 minutes scanning his <a href="http://en.wikipedia.org/wiki/Trent_reznor ">Wikipedia article</a> and checking out his now famous <a href="http://twitter.com/trent_reznor">Twitter</a>.</p>
<p><span id="more-939"></span>The first is a selection of facts and dubious accolades spanning his long career (25th best metal vocalist out of a poll of 100, an album released <em>on the internet</em>, placing 46th on a list of 100 people reinventing America, engaged to a real life lady) and the second is an illuminating insight into the mind of a man who takes criticism rather badly.  </p>
<p>Trent Reznor is, if you will, something of a baby man.  Regardless of the fact that his music career has been ongoing for longer than my own life on earth he seems to be awfully easily riled.  This could be due to a number of factors — like his height or the fact that he was last relevant <a href="http://en.wikipedia.org/wiki/The_Downward_Spiral">around 1994</a> no matter how desperately he tries to prove otherwise.  I don’t know.  I have never met the man and am eternally grateful for this fact.</p>
<p>What I do know however is that Trent Reznor needs to calm down.  It’s just the internet.  It can’t actually hurt you unless you let it.  You can always put people on ignore.  You don’t have to rage quit social networking — after-all a man who claims to want to connect with his fans in order to re-invent the way music is conceptualised and received might find social networking useful in the long run. </p>
<p>You do not have to post long rants on your personal forum detailing why the internet is ruled by idiots and that is why the people on it can’t have nice things, like your dream forum filled with cardiologists and magical wish ponies.  You do not have to link those posts on your Twitter for all the HATERS to read.  </p>
<p>You do not have to be a massive drama whore whose sign off reads:</p>
<blockquote><p>
With all of that said, I have business in the real world to attend to including wrapping up the live version of NIN, DOING some cool new shit and spending as much time as possible with the most amazing woman in the world.
</p></blockquote>
<p>Because on the internet there is already a man who does these things.  A man who when not eating all the food takes pictures of <a href="http://www.viewaskew.com/kevin/jen.jpg">Superman doing his wife</a>.</p>
<p>What I’m saying Trent is that you need to dial it back now before you pull a <a href="http://silentbobspeaks.com/">Kevin Smith</a>.</p>
<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/trentreznorstotallyrealgirfriend.jpg" height="430px" width="460px" alt="Trent Reznor and his totally real girlfriend" /><br />
Trent Reznor kissing his real life girlfriend which he totally has.  I wish I was as cool as him.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/06/trent-reznor-rage-quits-twitter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Film Camera Collection</title>
		<link>http://superpositionkitty.com/2009/06/film-camera-collection/</link>
		<comments>http://superpositionkitty.com/2009/06/film-camera-collection/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 13:34:36 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Cameras]]></category>
		<category><![CDATA[FED1f NKVD]]></category>
		<category><![CDATA[Nikomat FT2]]></category>
		<category><![CDATA[Polaroid SX-70]]></category>
		<category><![CDATA[yashica minister 700]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=904</guid>
		<description><![CDATA[A collection of &#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/cameras.jpg" height="592px" width="460px" alt="Cameras" /></p>
<p>A collection of things. Expect some articles in the coming months about the Yashica Minister 700, FED1f NKVD, Nikomat FT2, and Polaroid SX-70 in the same vein as the <a href="http://superpositionkitty.com/2009/03/olympus-chrome-six-iii-b/">Olympus Chrome Six</a>. The hammer, wrench, paper bag, and girls diary will not be getting articles however. </p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/06/film-camera-collection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nico Video Registration in English</title>
		<link>http://superpositionkitty.com/2009/06/nico-video-registration-in-english/</link>
		<comments>http://superpositionkitty.com/2009/06/nico-video-registration-in-english/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 16:19:20 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[Japanese]]></category>
		<category><![CDATA[Nico Nico Douga]]></category>
		<category><![CDATA[Nico Video]]></category>
		<category><![CDATA[Translation]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=859</guid>
		<description><![CDATA[Nico Nico Douga is &#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nicovideo.jp/">Nico Nico Douga</a> is the <a href="http://www.youtube.com/">YouTube</a> of Japan. I’d love to link you some of the brilliant videos they have over there, as well as the great interface and the way that the comments can fly across the video in relation to the point they are talking about, but you can’t see any of the videos on the site without registering. So today we’re going to walk you through the relatively simple registration process.</p>
<p><span id="more-859"></span><img src="http://superpositionkitty.com/wp-content/themes/blackandwhite/images/uploaded/articles/nico_entry_j.gif" alt="Nico Nico Douga" /></p>
<p>When you first visit the site you’re greeted with something very similar to the screen above. Clumsily translated (using a combination of <a href="http://babelfish.yahoo.com/">Babel Fish</a>, <a href="http://translate.google.com/translate_t?hl=en&#038;sl=ja&#038;tl=en#">Google Translate</a>, <a href="http://www.popjisyo.com/WebHint/Portal_e.aspx">POPjisyo</a>, and friends) it reads something like this (<em>make sure to click on the image below to see a readable version</em>):</p>
<p><a href="http://www.flickr.com/photos/29778044@N02/3588864877/sizes/o/"><img src="http://superpositionkitty.com/wp-content/themes/blackandwhite/images/uploaded/articles/nico_entry_eng.gif" alt="Nico Nico Douga English" /></a></p>
<p>You’re going to want to click on the pink link “<a href="https://secure.nicovideo.jp/secure/static/register/index.html">new account</a>”, where you will now be met with the below screen.</p>
<p><img src="http://superpositionkitty.com/wp-content/themes/blackandwhite/images/uploaded/articles/nico_account_type.gif" alt="Nico choose account type" /></p>
<p>Click on the grey box to choose to proceed with registering your “<a href="https://secure.nicovideo.jp/secure/register?transition=common">common account</a>”. We’ve conveniently (and once again, clumsily) translated the next screen for you. Once again, <em>make sure to click on the image below to see a readable version</em>.</p>
<p><a href="http://www.flickr.com/photos/29778044@N02/3588864689/sizes/o/"><img src="http://superpositionkitty.com/wp-content/themes/blackandwhite/images/uploaded/articles/nico_account_register_eng.gif" alt="Nico register account" /></a></p>
<p>A few things on this screen, firstly you can choose your “thumbnail” image by selecting the options from the drop-down box on the right of the image. Secondly, for “province”, scroll all the way to the bottom of the drop-down box and select “Other(overseas)”. </p>
<p>The next screen will confirm the information you have entered, as well as show the <a href="http://en.wikipedia.org/wiki/Terms_of_Service">TOS</a>. Scroll down a little and enter the text for the <a href="http://en.wikipedia.org/wiki/Captcha">CAPTCHA</a>. If the current text is unreadable, then click the button to the right of the text box to reload the CAPTCHA. Once you have entered the text click the button below the box to continue. The next page tells you that a link has been emailed to you that you must click within the next 24 hours to complete the registration.  So open up your email client and you should find an email from Nico Nico Douga (if not, then check your Spam box), the email will again confirm all of your information and ask for you to click on the link to complete your registration process. </p>
<p>You can now visit their <a href="http://www.nicovideo.jp/?p=beginner_top">beginners page</a> and watch the 3 delightfully weird tutorial videos. Or click through from there to the <a href="http://www.nicovideo.jp/">main page</a> and start watching. Just to get you started we have the initial page that we translated below:</p>
<p><a href="http://www.flickr.com/photos/29778044@N02/3588864877/sizes/o/"><img src="http://superpositionkitty.com/wp-content/themes/blackandwhite/images/uploaded/articles/nico_entry_eng.gif" alt="Nico Nico Douga English" /></a></p>
<p>All those links in the light blue boxes are tags that you can use to browse the various categories, so start clicking away!</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/06/nico-video-registration-in-english/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I love La Roux</title>
		<link>http://superpositionkitty.com/2009/05/i-love-la-roux/</link>
		<comments>http://superpositionkitty.com/2009/05/i-love-la-roux/#comments</comments>
		<pubDate>Thu, 28 May 2009 14:05:13 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[La Roux]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=833</guid>
		<description><![CDATA[Despite looking like &#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/laroux.jpg" alt="La Roux" /></p>
<p>Despite looking like a solo act <a href="http://www.laroux.co.uk/">La Roux</a> is actually a duo comprising of Elly Jackson and Ben Langmaid who, at the beginning of the the year were tipped to become one of the <a href="http://news.bbc.co.uk/1/hi/entertainment/7787555.stm">big names of 2009</a>.  </p>
<p>Sounding as fresh and engaging as they do it’s very hard not to like them.</p>
<p>Similarly it’s definitely difficult to not be thankful for them — after all we’re being inundated right now with a succession of female led electronica projects whose names begin with L and who mostly sound the same: </p>
<p><a href="http://www.youtube.com/watch?v=kUs9YzY7t-8">Little Boots</a> who’s been famous forever but now she’s been removed from her <a href="http://www.youtube.com/watch?v=Zcc8gE54Md8&#038;feature=channel_page">bedroom</a> seems awkward and re-hashed, <a href="http://www.youtube.com/watch?v=QN8HwUxFouM ">LadyHawke</a> who I genuinely like but for some reason just doesn’t do it for me and <a href="http://www.youtube.com/watch?v=riNX2eHLw5E">Lady GaGa</a>. The least said about Lady GaGa the better.</p>
<p>Classified as part of the Wonky Pop movement La Roux’s music is credible, androgynous,  80s influenced and mind-bendingly catchy working together addictive synth hooks, clear, piercing vocals and heart felt lyrics.  Add their videos — which are in turn <a href="http://www.youtube.com/watch?v=LMBNZ6mDSYk">80s camp</a>, <a href="http://www.youtube.com/watch?v=ELRD8ZMYmrA">deceptively simple</a>, and <a href="http://www.youtube.com/watch?v=NQdC7h609k8">visually stunning</a> — and you have a fantastic package that reeks of David Bowie, Annie Lennox and everything that was good about the 80s.</p>
<p>La Roux’s debut album is set for release on the 29th of June and promises to be something very special.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/05/i-love-la-roux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Juicer on OS X</title>
		<link>http://superpositionkitty.com/2009/05/using-juicer-on-os-x/</link>
		<comments>http://superpositionkitty.com/2009/05/using-juicer-on-os-x/#comments</comments>
		<pubDate>Tue, 26 May 2009 17:03:02 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Juicer]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=808</guid>
		<description><![CDATA[Juicer is a CSS &#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://github.com/cjohansen/juicer/tree/master">Juicer</a> is a <a href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets">CSS</a> and <a href="http://en.wikipedia.org/wiki/JavaScript">JavaScript</a> packaging tool developed by <a href="http://www.cjohansen.no/en">cjohansen</a>. I personally use Juicer to compress my multitude of nicely formatted CSS files into one neat minimized file for deployment. This minimizes the number of requests made to my servers and speeds up my websites. For more information on this visit <a href="http://www.cjohansen.no/en/ruby/juicer_a_css_and_javascript_packaging_tool">this page</a>.</p>
<p>First up, I’m going to assume that you’re already running <a href="http://www.apple.com/macosx/">Mac OS X 10.5 (Leopard)</a>. If not, you’re going to need to first follow this <a href="http://hivelogic.com/articles/view/ruby-rails-mongrel-mysql-osx">brilliant tutorial</a> on setting up <a href="http://rubyonrails.org/">Ruby on Rails</a> for both Mac OS X 10.4 (Tiger) and Mac OS X 10.3 (Panther). Even if you are running Mac OS X 10.5, I still recommend that you follow <a href="http://hivelogic.com/articles/view/ruby-rails-leopard">this tutorial</a> to roll your own Ruby on Rails installation (however, it is not a requirement). I also recommend that your system is fully updated ( -&gt; Software Update).</p>
<p>Now we’re going to go start Terminal and run the following command (Terminal is available from the Utilities sub-folder of your Applications directory): <code>sudo gem install bones juicer</code>. It will likely ask you for your password, which will have to enter to continue the installation. </p>
<p><span id="more-808"></span>Next up is to edit your <code>.profile</code> file so that the <code>juicer</code> commands will work. Your command promp should already show that you are in your user directory (<code>ComputerName:~ username$</code>), if not then navigate to it. If you do not know the basics of using Terminal then I recommend you visit <a href="http://www.ee.surrey.ac.uk/Teaching/Unix/unix1.html">this helpful tutorial</a> to get better acquainted. Now that you’re in your user directory you can execute the command <code>vi .profile</code>, and you should see something similar to this:</p>
<pre>
export PATH="/usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:$PATH"

##
# DELUXE-USR-LOCAL-BIN-INSERT
# (do not remove this comment)
##
echo $PATH | grep -q -s "/usr/local/bin"
if [ $? -eq 1 ] ; then
    PATH=$PATH:/usr/local/bin
    export PATH
fi
</pre>
<p>All we’re going to do is add our path to the end of the file. So press ‘i’ and use the arrow keys to navigate to the end of the file. Press ‘return’ a couple of times and then copy and paste the following code:</p>
<pre>
export PATH="$PATH:/var/lib/gems/1.8/bin"
</pre>
<p>Now press ‘escape’ and then enter <code>:wq</code>, and press ‘return’ to save and quit. We can now run the next two commands in Terminal to install <a href="http://www.julienlecomte.net/yuicompressor/">YUI Compressor</a> and <a href="http://www.jslint.com/">JSLint</a>.</p>
<pre>
juicer install yui_compressor
juicer install jslint
</pre>
<p>(Execute them one line at a time). Now we can get on with using Juicer itself, which is as simple as:</p>
<pre>
juicer merge first.css second.css
</pre>
<p>This will merge the two CSS files into one single file (<code>first.min.css</code>), which can then be copied onto your server and referenced instead of the multiple files that you had before. If you wish to see other examples of Juicer than make sure to check out <a href="http://www.cjohansen.no/en/ruby/juicer_a_css_and_javascript_packaging_tool">this page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/05/using-juicer-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guys Covering Songs By Girls</title>
		<link>http://superpositionkitty.com/2009/05/guys-covering-songs-by-girls/</link>
		<comments>http://superpositionkitty.com/2009/05/guys-covering-songs-by-girls/#comments</comments>
		<pubDate>Thu, 21 May 2009 14:59:15 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Covers]]></category>
		<category><![CDATA[bob dylan]]></category>
		<category><![CDATA[cake]]></category>
		<category><![CDATA[dizzee rascal]]></category>
		<category><![CDATA[house of the rising sun]]></category>
		<category><![CDATA[i kissed a girl]]></category>
		<category><![CDATA[i will survive]]></category>
		<category><![CDATA[jolene]]></category>
		<category><![CDATA[that's not my name]]></category>
		<category><![CDATA[time after time]]></category>
		<category><![CDATA[travis]]></category>
		<category><![CDATA[white stripes]]></category>
		<category><![CDATA[willie nelson]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=792</guid>
		<description><![CDATA[Here’s the second part &#8230;]]></description>
			<content:encoded><![CDATA[<p>Here’s the second part of our ‘<a href="http://superpositionkitty.com/category/covers/">Covers</a>’ special.  This time round it’s songs by women being covered by men, which is something I think is much harder to find that songs by men being covered by women.  That probably has something to do with the fact that the music industry in general is just as male dominated as any other industry out there, having been powered for years by a collection of people known as the <a href="http://www.guardian.co.uk/music/2004/mar/01/popandrock2">50 quid bloke</a>. </p>
<p>It may also have something to do with the fact that covering a female authored song may be seen to be something less than manly.  What self-respecting male artist would want to be seen or heard singing a song about feelings, shoes or ponies?  Traditionally doing this may have led other men to call you a gay or an effeminate nancy boy.</p>
<p>Joyously however it’s 2009 and things are changing with the growing influence of the <a href="http://www.guardian.co.uk/music/musicblog/2007/jul/20/50quidblokemakeswayfor893">£8.93 woman</a> and the <a href="http://www.guardian.co.uk/media/2006/may/15/digitalmedia.arts">MP3 lady</a>.  Like it or not the disposable income of women in developed countries is a sought after and fought over thing and has been since the <a href="http://melbourneblogger.blogspot.com/2009/04/selfridges-suffragettes-and-fashion.html">emergence of equal rights and women’s ability to earn their own money</a>. Women are increasingly the driving force behind the mass market and that means you better get used to the things they like.  </p>
<p>So essentially what I’m saying here is that the smart move right now, for any man in the music industry, is to start courting the ladies — and what better way to introduce yourself and your band of hairy, smelly male friends than by covering a well loved lady track.  Seriously.  You guys should think about it.  Just like the fine examples of manliness and talent on my covers list have.</p>
<p><span id="more-792"></span>
<ul class="flat">
<li><a href="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/boy-covers/najpdiw1wi.mp3">Bob Dylan — House Of The Rising Sun</a></li>
</ul>
<p>As a traditional folk ballad “House of the Rising Sun” was first recorded in 1933 and is probably the most covered song in the universe having been tried out by a variety of different artists such as <a href="http://www.last.fm/music/Leadbelly/_/In+New+Orleans+%28House+of+the+Rising+Sun%29">Leadbelly</a>, <a href="http://www.last.fm/music/The+Animals/_/House+of+the+Rising+Sun">The Animals</a>, <a href="http://www.last.fm/music/Jimi+Hendrix/_/House+of+the+Rising+Sun">Jimi Hendrix</a>, <a href="http://www.last.fm/music/Pink+Floyd/_/House+Of+The+Rising+Sun">Pink Floyd</a>, <a href="http://www.last.fm/music/Nina+Simone/_/House+of+the+Rising+Sun">Nina Simone</a>, <a href="http://www.last.fm/music/The+Rolling+Stones/_/House+of+the+Rising+Sun">The Rolling Stones</a>, <a href="http://www.last.fm/music/Dolly+Parton/_/The+House+of+the+Rising+Sun">Dolly Parton</a>, <a href="http://www.last.fm/music/Bachman-Turner+Overdrive/_/House+of+the+Rising+Sun">Bachman Turner Overdrive</a>, <a href="http://www.youtube.com/watch?v=TmpJMIE0m2A">Tori Amos</a>, <a href="http://www.goear.com/listen/f2a718f/House-of-the-rising-sun-Johnny-Cash">Johnny Cash</a>, <a href="http://www.last.fm/music/The+Supremes/_/The+House+of+The+Rising+Sun">The Supremes</a>, The Mamas and the Papas,  <a href="http://www.last.fm/music/Woody+Guthrie/_/House+of+the+Rising+Sun">Woodie Guthrie</a>, <a href="http://www.last.fm/music/Joan+Baez/_/House+of+the+Rising+Sun">Joan Baez</a>, <a href="http://www.last.fm/music/Cat+Power/_/House+of+the+Rising+Sun">Cat Power</a>, House of Pain, <a href="http://www.last.fm/music/The+White+Stripes/_/House+Of+The+Rising+Sun">The White Stripes</a>, <a href="http://www.youtube.com/watch?v=gdI_DU7D11g">Bon Jovi</a>  and even the dreaded <a href="http://www.last.fm/music/Muse/_/House+of+the+Rising+Sun">Muse</a> to name but a very few.  Originally told from the perspective of an unknown young woman somehow tied to an abusive, drunken gambler the song has been re-worked as often as it has been covered and there are several arguments as to it’s <a href="http://en.wikipedia.org/wiki/House_Of_The_Rising_Sun#The_real_house">original meaning and content</a>.  Of the several versions recorded by men Bob Dylan’s is one of the few to retain the original gender specifics and tone.</p>
<ul class="flat">
<li><a href="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/boy-covers/gx7j6qmgup.mp3">Dizzee Rascal — That’s Not My Name</a></li>
</ul>
<p>Originally written as <a href="http://en.wikipedia.org/wiki/Katie_White#Katie_White">Katie White’s</a> rant on her frustrations about the music industry, this cover was recorded as part of the <a href="http://www.bbc.co.uk/radio1/livelounge/">Radio One Live Lounge Sessions</a> presented by Joe Wiley.  Personally I hated the original for many reasons, not least of which has something to do with <a href="http://www.youtube.com/watch?v=jbD1GS3c_n0">this</a> but as it sometimes the joy of covers the Dizzee Rascal version adds a layer of dimension and attitude to an otherwise bland as fuck filler track.</p>
<ul class="flat">
<li><a href="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/boy-covers/106ffvt0zd.mp3">Willie Nelson — Time After Time</a></li>
</ul>
<p>Being responsible for the <a href="http://www.last.fm/music/Cyndi+Lauper/_/Girls+Just+Wanna+Have+Fun">National Woman’s Anthem of the 80’s</a> Cyndi Lauper is fairly well known.  Equally well known is <a href="http://willienelson.com/">Willie Nelson</a> —  the tax evading, pot smoking red headed stranger.  When the artists of such renown collide only good things can happen right?  Surprisingly, all sarcasm aside this is in fact that case as Nelson’s cover of Lauper’s “Time After Time” demonstrates.  Originally a hit for Cyndi in 1984 it collected a Grammy in the Song of the Year category and is beloved of the recently single the world over.  Similarly everyone everywhere loves Willie Nelson.  Fact.</p>
<ul class="flat">
<li><a href="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/boy-covers/35hnl3vo7z.mp3">Cake — I Will Survive</a></li>
</ul>
<p>Originally written by <a href="http://en.wikipedia.org/wiki/Freddie_Perren">a man</a> and recorded by <a href="http://en.wikipedia.org/wiki/Gloria_Gaynor">Gloria Gaynor</a> “I Will Survive” is a disco hit which has become the domain of women with tear streaked mascara on the karaoke circuit and drag performances which may or may not include <a href="http://www.youtube.com/watch?v=QcY-oPhnlrQ">Jason Donovan</a>.  Marked as an anthem of female empowerment it’s genuinely interesting to hear it covered by any men at all, never mind covered well as it is here. </p>
<ul class="flat">
<li><a href="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/boy-covers/sz5p6hmoa9.mp3">Travis — I Kissed a Girl</a></li>
</ul>
<p>Already know for their cover of “<a href="http://www.last.fm/music/Travis/_/Hit+Me+Baby+One+More+Time+(cover)">… Baby One More Time</a>” in 1999 Travis have apparently been searching all this time for another pop song worthy of their attentions.  Little did they know it would take 9 long years until the release of “<a href="http://www.last.fm/music/Katy+Perry/_/I+Kissed+a+Girl">I Kissed a Girl</a>” by the eternally self satisfied lip stick “lesbian” Katy Perry.  Switched in this instance to the perspective of a gay man experimenting with a woman for the first time the Travis cover at least seems to offer a listenable, slightly less insulting version of an offensive pop song about being a lady who kisses other ladies for male attention.</p>
<ul class="flat">
<li><a href="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/boy-covers/yyd0i7bgr2.mp3">The White Stripes — Jolene (Live Under Blackpool Lights)</a></li>
</ul>
<p>Originally written by Dolly Parton, Jolene supposedly takes its inspiration from her husbands interactions with a red headed bank teller and has, like “House of the Rising Sun”, been covered by a wide selection of musicians.  The only cover version that matters however is the one given here by The White Stripes.  Many of you would be forgiven for not noticing that it had on this occasion been sung by a man since <a href="http://www.cd101.com/upload/staff/images%5Cms_4160.jpg">Jack White</a> has been known to look and sound a lot like a woman (Which is probably why he grew that <a href="http://flywithbats.files.wordpress.com/2008/08/jwhite.jpg">beard</a>). Say what you like about Jack though, this is one of my favourite cover versions and I think it proves that no matter the gender of the person singing it a good song is still a good song.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/05/guys-covering-songs-by-girls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/boy-covers/yyd0i7bgr2.mp3" length="5429248" type="audio/mpeg" />
<enclosure url="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/boy-covers/sz5p6hmoa9.mp3" length="3091225" type="audio/mpeg" />
<enclosure url="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/boy-covers/35hnl3vo7z.mp3" length="8831825" type="audio/mpeg" />
<enclosure url="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/boy-covers/106ffvt0zd.mp3" length="12310431" type="audio/mpeg" />
<enclosure url="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/boy-covers/gx7j6qmgup.mp3" length="3202832" type="audio/mpeg" />
<enclosure url="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/boy-covers/najpdiw1wi.mp3" length="9869647" type="audio/mpeg" />
		</item>
		<item>
		<title>I Am A Teacher and Your Kids Are Stupid</title>
		<link>http://superpositionkitty.com/2009/05/guest-article-i-am-a-teacher-and-your-kids-are-stupid/</link>
		<comments>http://superpositionkitty.com/2009/05/guest-article-i-am-a-teacher-and-your-kids-are-stupid/#comments</comments>
		<pubDate>Mon, 18 May 2009 15:23:59 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Guest Articles]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[stupidity]]></category>
		<category><![CDATA[teaching]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=773</guid>
		<description><![CDATA[Guest Article by MisEducation &#8230;]]></description>
			<content:encoded><![CDATA[<p><strong>Guest Article by MisEducation</strong></p>
<p>Sometimes I despair at my job. You try your damndest to teach each class of kids that are plonked in front of you twice a week something useful about life or the world, talk until you’re blue in the face repeating the basics of the English language, only to be left with gems such as these.</p>
<p>“In the play, women are put on a pedal-stool by their boyfriends”</p>
<p>“I was green with ivy when I saw that she had a better dress than me”</p>
<p>“Bullying leads to low shelf of steam”</p>
<p>“In Macbeth, Malcolm is Prince of Cumbernauld”</p>
<p>When you add in the amounts of dire spelling and bad punctuation that grace the pages of the graffiti’d jotters every day, its hard not to start banging your head off the desk and muttering to yourself about verbs and nouns whilst rocking back and forward like some asylum-bound nutbag.</p>
<p><span id="more-773"></span>I’ve tried several times to work out if kids are getting more stupid (or <a href="http://en.allexperts.com/q/General-Writing-Grammar-680/Stupid-Stupider.htm">stupider</a> as they’d say..) and I can’t work it out. I remember clearly that when I was at school there were people who were ‘challenged’ (hooray for wishy washy teacher speak.…OK, so I mean they were fucking thick) but the lack of general knowledge that I see on a daily basis is shocking. </p>
<p>They have in depth knowledge of fast food outlets, who is seeing who in the <a href="http://uk.eonline.com/uberblo/index.jsp">superficial wonderland of Hollywood</a>, how many <a href="http://wiki.answers.com/Q/How_many_calories_in_a_glazed_doughnut"?>calories are in a doughnut</a> or who is <a hef="http://www.bbc.co.uk/radio1/chart/singles.shtml">number one in the charts</a>. However, they don’t know who the Prime Minister is, why the Holocaust happened (or in some cases that it happened at all and isn’t just a story that some guy made up), who the first man on the moon was, or more importantly, what marzipan is. One of my fourth years took a stab at it being a country in Europe, but the rest mostly just looked blank. </p>
<p>If you suggest that they perhaps pick up a book and read, you should duck quickly or you might get hit in the face with a Jane Austen novel as it flies across the room. OMG, reading is absolutely not something that any normal person wastes their time doing, FFS. Reading is for losers. Or <a href="http://www.urbandictionary.com/define.php?term=poof%2C">poofs</a>, who might as well be losers apparently.</p>
<p>Ask them about celebrities though, or where they can get Botox, or who won Big Brother for the last eight years running (or is it nine? Or does anyone care…?) and their eyes light up as they clamour to give you the gossip, fresh from the pages of <a href="http://www.heatworld.com/">Heat</a>. Now, don’t get me wrong…I like to read Heat sometimes and find the kind of car crash celebrity stories they tell fascinating from a sociological point of view. It’s hard to see why we care so much about some of these people. It seems that we love to hate them for their lifestyles, glamour and success even though we can’t look away and therefore feeding their fame. The pathos that we used to feel as a result of art, music or theatre in the past is now evoked by reading about the lives of people that we don’t know. The worry is that kids see these celebrities as their new idols. They want to be like <a href="http://www.heatworld.com/Profile/147/Katie+Price">Jordan</a>, <a href="http://www.heatworld.com/NewSearch.aspx?searchTerm=britney&#038;personid=4">Britney</a>  or <a href="http://www.heatworld.com/NewSearch.aspx?searchTerm=victoria%20beckham&#038;personid=5">Posh</a>, but not to be singers or models, just to be famous.</p>
<p>Of course I’m doing the hardworking and intelligent pupils down, but sometimes these seem like the minority. While there are some highly intelligent young people out there who are mature, engaged and curious about everything and who suck up knowledge like the proverbial sponge, I could probably count on one hand the number of pupils I have that are passionate about learning or about particular subjects or topics. It’s a sad situation. I worry that if things carry on this way then society will degenerate into a store for mindless, surgery enhanced twats who don’t know what a book is and are PROUD of that fact.</p>
<p>But who’s to blame? The media? Parents? Obviously the latter have a huge influence on things which is a pain in the rear end for teachers. To have a child disrupt your lesson and be punished for it, only to have the parent complain and overturn your professional ruling on the grounds that “little Jimmy would NEVER behave like that” is undermining and frustrating. A colleague of mine recently gave homework to a class nearing exams to aid revision, only to have five of her pupils’ parents write in to say that their little angel was not going to do it because it was “too easy”. Later, when she asked them to underline all of  the <a href="http://www.bbc.co.uk/skillswise/words/grammar/interestsentences/adverbs/quiz.shtml ">adverbs</a> in a piece of writing, they didn’t know what an adverb was because they had failed to do the homework. My solution? CCTV in classrooms. That way if any parent doesn’t believe that their child’s behaviour is what a credible, professional adult said it was, we can show them the tapes of Junior being a cheeky shite.</p>
<p>Maybe I’ve just had a bad day. I’m not saying that my job isn’t often good fun and rewarding, because it is. Teaching is a varied job where no two days are the same. And education is a changeable beast by nature. Of course we should move forward and do things to help young people as the world itself changes, but I can’t ignore the nagging feeling that our kids are getting more ignorant when it comes to things that are historically important. Same goes for anything current which is, as we speak, moulding our society and planet into something new. Climate change is when mum turns on the heating and credit crunch might as well be a new dollar-shaped cereal.</p>
<p>Who knows? Maybe the future is exams in the correct use of <a href="http://www.guardian.co.uk/books/2008/jul/05/saturdayreviewsfeatres.guardianreview">text speak</a>.</p>
<p>“txt the emoticons for Ngry, sad n cnfuzd”</p>
<p>:@, :( :$</p>
<p>CORRECT!</p>
<p>Or how to bag yourself a footballer and be famous (be blonde, have face like fizz, get tits done).</p>
<p>The textbooks would be celebrity weeklies and our teachers would be the likes of Paris Hilton and the aforementioned ex-Big Brother winners, here to give their hilarious and life affirming tales of how fucking awesome it is to be vapid and famous.</p>
<p>All I can say is I hope that this version of hell is all in my dystopic, jaded head.</p>
<p>And now I need a beer.…..;o)</p>
<p><em>MisEducation is a qualified, full-time High School English teacher working somewhere in Scotland.  She has, for obvious reasons, chosen to remain anonymous.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/05/guest-article-i-am-a-teacher-and-your-kids-are-stupid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Danger Mouse + Sparklehorse + David Lynch</title>
		<link>http://superpositionkitty.com/2009/05/danger-mouse-sparklehorse-david-lynch/</link>
		<comments>http://superpositionkitty.com/2009/05/danger-mouse-sparklehorse-david-lynch/#comments</comments>
		<pubDate>Mon, 18 May 2009 14:35:23 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[danger mouse]]></category>
		<category><![CDATA[dark night of the soul]]></category>
		<category><![CDATA[david lynch]]></category>
		<category><![CDATA[sparklehorse]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=762</guid>
		<description><![CDATA[Danger Mouse, Sparklehorse &#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/darknightofthesoul.jpg" alt="Dark Night of the Soul" /></p>
<p><a href="http://www.last.fm/music/DJ+Danger+Mouse">Danger Mouse</a>, <a href="http://www.last.fm/music/Sparklehorse">Sparklehorse</a> and <a href="http://www.imdb.com/name/nm0000186/">David Lynch</a> have put together an all-star team of musicians (including Julian Casablancas of <a href="http://www.last.fm/music/The+Strokes">The Strokes</a>, Gruff Ryhs of <a href="http://www.last.fm/music/Super+Furry+Animals">Super Furry Animals</a>, Frank Black of <a href="http://www.last.fm/music/Pixies">Pixies</a>, <a href="http://www.last.fm/music/Iggy+Pop">Iggy Pop</a>, and James Mercer of <a href="http://www.last.fm/music/The+Shins">The Shins</a>) and released a <span class="strike">beautiful record</span> blank CD-R accompanied by a book of photographs by David Lynch. </p>
<p>A spokesperson for Danger Mouse has said that “due to an ongoing dispute with EMI” the “100+ page book” book by David Lynch will no longer come with a CD containing the songs, but rather a blank CD-R labeled: “For legal reasons, enclosed CD-R contains no music. Use it as you will.”.</p>
<p>The songs themselves are freely available from <a href="http://www.npr.org/templates/story/story.php?storyId=104129585#tracks">NPR</a> (streaming only), and the book + CD-R can be bought from the <a href="http://www.dnots.com/index.html">Dark Night of the Soul</a> <a href="http://www.dnots-store.com/">store</a>. This is already one of my favourite albums of 2009, and the controversy of the release is a brilliant example of the issues raised in this article written by <a href="http://www.last.fm/music/Brian+Eno">Brian Eno</a> earlier this month.</p>
<blockquote><p>
The duplicability of recordings has had another unexpected effect. The pressure is on to develop content that isn’t easily copyable — so now everything other than the recorded music is becoming the valuable part of what artists sell. People who won’t pay £15 for a CD will pay £150 for the limited edition version with additional artwork, photos, booklet and DVDs. They often already own the music, downloaded — but now they want the art. That suggests to me the possibility of a refreshingly democratic art market: a new way for visual artists, designers, animators and film-makers to make a living.</p>
<p>So, as one business folds, several others open up.<br />
<cite><a href="http://www.prospect-magazine.co.uk/article_details.php?id=10784">A living art reborn</a>, Prospect Magazine, Brian Eno.</cite>
</p></blockquote>
<p><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/05/danger-mouse-sparklehorse-david-lynch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>White Adobe CS4 Icons OS X &amp; Windows</title>
		<link>http://superpositionkitty.com/2009/05/white-adobe-cs4-icons-os-x-windows/</link>
		<comments>http://superpositionkitty.com/2009/05/white-adobe-cs4-icons-os-x-windows/#comments</comments>
		<pubDate>Mon, 11 May 2009 15:26:44 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cs4]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[white]]></category>
		<category><![CDATA[white icons]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=731</guid>
		<description><![CDATA[Over the next &#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/29778044@N02/3521700617/"><img src="http://farm4.static.flickr.com/3314/3521700617_848baf2e8f_o.jpg" alt="white cs4 icons" /></a></p>
<p>Over the next few months I’ll be writing a variety of posts detailing the little tips &amp; tricks and hacks that I use everyday in OS X. Today I’m sharing the icons that I created for CS4. </p>
<p>I was sick of seeing all those colours down in my <a href="http://en.wikipedia.org/wiki/Mac_OS_X_Dock">Dock</a> and decided to do something about it. As the Adobe typeface <a href="http://typophile.com/node/30174">Gauge</a> used in the original icons is not available, I have vectorized the letters and images by hand for the best match. Note that the type and images in these icons are not 100% black, but are slightly transparent like the originals. Unfortunately the level of detail is quite hard to see in anything other than the 512x512 .png’s. </p>
<p>There are 23 icons available in total, most of them seen in the image above, to download the icons in .icns format (OS X) or .png format (Windows) then please use the links below.</p>
<h3 style="float: left;"><a href="http://superpositionkitty.com/downloads/ICNS.zip">White Adobe CS4 Icons (.icns)</a></h3>
<p><br/></p>
<h3 style="float: left;"><a href="http://superpositionkitty.com/downloads/PNG.zip">White Adobe CS4 Icons (.png)</a></h3>
<p><br/></p>
<p>I would appreciate that in linking to this icon set, you link to this page and not the direct download links. You are welcome to modify these in any way if make your version available for public use free of charge too. </p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/05/white-adobe-cs4-icons-os-x-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wall Of Arms</title>
		<link>http://superpositionkitty.com/2009/05/wall-of-arms/</link>
		<comments>http://superpositionkitty.com/2009/05/wall-of-arms/#comments</comments>
		<pubDate>Tue, 05 May 2009 19:39:01 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[maccabees]]></category>
		<category><![CDATA[the maccabees]]></category>
		<category><![CDATA[wall of arms]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=707</guid>
		<description><![CDATA[Being lucky enough &#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/wall-of-arms.jpg" alt="The Maccabees - Wall Of Arms" /></p>
<p>Being lucky enough to have caught <a href="http://www.themaccabees.co.uk">The Maccabees</a> at <a href="http://www.myspace.com/studio24edinburgh">Studio 24</a> this Monday I got to hear them perform some of the tracks from their <a href="http://www.themaccabees.co.uk/discog.php?id=3#album">new album</a>.  I may be biased given that they’re a particular favourite of mine but the gig was amazing, the band was energetic and note perfect and it was well worth the two hour drive there and back.</p>
<p>If you haven’t been lucky enough to catch the band live then hooray for you because Wall Of Arms is out today.</p>
<p>You should <a href="http://www.amazon.co.uk/Wall-Of-Arms/dp/B0026EU60W/ref=sr_1_4?ie=UTF8&#038;s=dmusic&#038;qid=1241551482&#038;sr=8-4 ">get</a> <a href="http://www.play.com/Music/MP3-Download-Album/4-/9643111/Wall-Of-Arms/Product.html">yourself</a> <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?id=313401988&#038;s=143444">a copy</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/05/wall-of-arms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Girls Covering Songs By Guys</title>
		<link>http://superpositionkitty.com/2009/04/girls-covering-songs-by-guys/</link>
		<comments>http://superpositionkitty.com/2009/04/girls-covering-songs-by-guys/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 18:44:17 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Covers]]></category>
		<category><![CDATA[annie lennox]]></category>
		<category><![CDATA[aretha franklin]]></category>
		<category><![CDATA[beastie boys]]></category>
		<category><![CDATA[cat power]]></category>
		<category><![CDATA[don't let it bring you down]]></category>
		<category><![CDATA[e.s.l.]]></category>
		<category><![CDATA[girls]]></category>
		<category><![CDATA[iggy pop]]></category>
		<category><![CDATA[neil young]]></category>
		<category><![CDATA[nirvana]]></category>
		<category><![CDATA[patti smith]]></category>
		<category><![CDATA[peaches]]></category>
		<category><![CDATA[rolling stones]]></category>
		<category><![CDATA[satisfaction]]></category>
		<category><![CDATA[search and destroy]]></category>
		<category><![CDATA[smells like teen spirit]]></category>
		<category><![CDATA[the band]]></category>
		<category><![CDATA[the weight]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=529</guid>
		<description><![CDATA[Welcome to our first &#8230;]]></description>
			<content:encoded><![CDATA[<p>Welcome to our first installment in our series on Cover Songs. In this issue we’ll be focusing on just a few girls that have covered songs by guys.</p>
<ul class="flat">
<li><a href="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/girl-covers/z81pb0b4bz.mp3">Peaches — Search &amp; Destroy</a></li>
</ul>
<p>I really don’t think there’s that many people you can say have as much on-stage presence and energy as <a href="http://www.last.fm/music/Iggy+Pop">Iggy Pop</a>, but <a href="http://www.last.fm/music/Peaches">Peaches</a> is definitely one name that comes to mind for me. Whats more, they’ve worked <a href="http://www.youtube.com/watch?v=ILjUe-znXE4">together</a> before. </p>
<p><a href="http://www.last.fm/music/The+Stooges/_/Search+and+Destroy">Search And Destroy</a> was originally performed by <a href="http://www.last.fm/music/The+Stooges">The Stooges</a>, and the title of the song is from an article Iggy Pop read in <a href="http://www.time.com/time/">Time Magazine</a> on the Vietnam War. The song can be credited with influencing decades of punk bands, and Peaches’ cover contains all the emotion of Iggy’s original release. Stripped down even further than the <a href="http://en.wikipedia.org/wiki/Bruce_Dickinson">Bruce Dickinson</a> 1997 re-release — to just a drum machine and a couple of layered Synth tracks — I love the simplicity of it, and feel it does great homage to one of my favourite Punk groups. </p>
<ul class="flat">
<li><a href="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/girl-covers/d2pvga27o5.mp3">Patti Smith — Smells Like Teen Spirit</a></li>
</ul>
<p><a href="http://www.last.fm/music/Patti+Smith">Patti Smith</a> has released so many beautiful albums, and has written some of my favourite songs — yet it was with her album of cover songs — <a href="http://www.last.fm/music/Patti+Smith/Twelve">Twelve</a> — that I realised the variety she is capable of. Although I’m concentrating on <a href="http://www.last.fm/music/Nirvana/_/Smells+Like+Teen+Spirit">Smells Like Teen Spirit</a> here, the album contains covers of artists from <a href="http://www.last.fm/music/Bob+Dylan">Bob Dylan</a> to <a href="http://www.last.fm/music/R.E.M.">R.E.M.</a> to <a href="http://www.last.fm/music/Tears+for+Fears">Tears For Fears</a>.</p>
<p>Almost universally, the initial listen of this song is met with an exclamation of “Wow, I never realised he was actually singing words!”. For the record, my favourite Nirvana album is <a href="http://www.last.fm/music/Nirvana/With+the+Lights+Out">With the Lights Out</a>: a vast collection of studio sessions, boombox recordings, and live performances that show depth and talent you wouldn’t imagine from listening to the studio albums, and I feel that Patti Smith captures this intensity almost perfectly. </p>
<p><span id="more-529"></span>
<ul class="flat">
<li><a href="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/girl-covers/hi665gk7xq.mp3">E.S.L. — Girls</a></li>
</ul>
<p><a href="http://www.last.fm/music/E.S.L.">E.S.L.</a> are a quartet of Canadian gypsies that make their living performing orchestral cover versions of artists such as <a href="http://www.last.fm/music/Neil+Young">Neil Young</a> and <a href="http://www.last.fm/music/The+Velvet+Underground">The Velvet Underground</a>. For this cover song, they’ve taken a brilliant <a href="">Beastie Boys</a> number from their first album: <a href="http://www.last.fm/music/Beastie+Boys/Licensed+to+Ill">License To Ill</a>. </p>
<p>On an album filled with such classics as <a href="http://www.last.fm/music/Beastie+Boys/Licensed+to+Ill/Paul+Revere">Paul Revere</a>, <a href="http://www.last.fm/music/Beastie+Boys/Licensed+to+Ill/Hold+It+Now%2C+Hit+It">Hold It Now, Hit It</a>, <a href="http://www.last.fm/music/Beastie+Boys/Licensed+to+Ill/Brass+Monkey">Brass Monkey</a>, <a href="http://www.last.fm/music/Beastie+Boys/_/No+Sleep+Till+Brooklyn">No Sleep Till Brooklyn</a> and of course <a href="http://www.last.fm/music/Beastie+Boys/_/Fight+for+Your+Right">(You Gotta) Fight For Your Right (To Party)</a>, <a href="http://www.last.fm/music/Beastie+Boys/Licensed+to+Ill/Girls">Girls</a> at first seems like an odd choice to cover. However, E.S.L. take a catchy song and turn it into a brilliant and funny little number. </p>
<ul class="flat">
<li><a href="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/girl-covers/bkt7s40e12.mp3">Cat Power — Satisfaction</a></li>
</ul>
<p><a href="">Cat Power</a> is well known for her cover songs. In fact, her album — <a href="http://www.last.fm/music/Cat+Power/The+Covers+Record">The Covers Record</a> — is entirely a collection of covers recorded at various sessions between 1998 and 1999, the very best of which I feel is her cover of <a href="http://www.last.fm/music/The+Rolling+Stones">The Rolling Stones</a>’ <a href="http://www.last.fm/music/The+Rolling+Stones/_/%28I+Can%27t+Get+No%29+Satisfaction">(I Can’t Get No) Satisfaction</a>. A song that was written by Keith Richards and Mick Jagger as a response to the rampant commercialism that they had seen in America. </p>
<p>Cat Power’s cover takes a song that was originally penned as a folk song, and strips it back to it’s roots. In fact, she goes so far as to remove the chorus from the song entirely — it’s so different in feel to the original that I had to give it a couple more listens before I could be sure that it was indeed a cover of The Rolling Stones’ song of the same name.</p>
<ul class="flat">
<li><a href="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/girl-covers/xy8lcoqkdf.mp3">Aretha Franklin — The Weight</a></li>
</ul>
<p><a href="http://www.last.fm/music/The+Band/_/The+Weight">The Weight</a> has to be one of the best-known songs by <a href="http://www.last.fm/music/The+Band">The Band</a>, best described as a critically acclaimed and extremely influential Canadian-American rock and roll group of the 1960’s and 1970’s. <a href="http://www.last.fm/music/Aretha+Franklin">Aretha Franklin</a> is probably best known to many these days for her role singing <a href="http://www.last.fm/music/The+Blues+Brothers/_/Think">Think</a> in the movie <a href="http://www.imdb.com/title/tt0080455/">Blues Brothers</a>.</p>
<p>The Weight is said by Robbie Robertson to be influenced by the movies of Spanish filmmaker <a href="http://www.imdb.com/name/nm0000320/">Luis Buñuel</a>:</p>
<blockquote><p>
In Buñuel there were these people trying to be good and it’s impossible to be good. In “The Weight” it was this very simple thing. Someone says, “Listen, would you do me this favour? When you get there will you say ‘hello’ to somebody or will you give somebody this or will you pick up one of these for me? Oh? You’re going to Nazareth, that’s where the Martin guitar factory is. Do me a favour when you’re there.” This is what it’s all about. So the guy goes and one thing leads to another and it’s like “Holy Shit, what’s this turned into? I’ve only come here to say ‘hello’ for somebody and I’ve got myself in this incredible predicament.” It was very Buñuelish to me at the time.
</p></blockquote>
<p>Aretha has one of the strongest voices I’ve ever heard in a female vocalist, and she uses it to her best in this striking cover, which has nearly as high a rotation in my play-lists as the original. </p>
<ul class="flat">
<li><a href="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/girl-covers/odyfzjmpob.mp3">Annie Lennox — Don’t Let It Bring You Down</a></li>
</ul>
<p><a href="http://www.last.fm/music/Annie+Lennox">Annie Lennox</a> has a beautiful voice, as heard on <a href="http://www.last.fm/music/Eurythmics/_/Sweet+Dreams+%28Are+Made+of+This%29">Sweet Dreams (Are Made of This)</a>, <a href="http://www.last.fm/music/Annie+Lennox/_/Walking+on+Broken+Glass">Walking on Broken Glass</a>, <a href="http://www.last.fm/music/Annie+Lennox/_/Why">Why</a>, and <a href="http://www.last.fm/music/Annie+Lennox/+charts">many more</a>.</p>
<p>The original was written by <a href="http://www.last.fm/music/Neil+Young">Neil Young</a>, and in describing it he says “Here is a new song, it’s guaranteed to bring you right down, it’s called ‘Don’t Let It Bring You Down’. It sorta starts off real slow and then fizzles out altogether.”</p>
<p>Annie Lennox’s cover may start off just as slow as the Neil Young original, but it’s much more grandiose in scope, with trademark Annie Synths and drum machines mixed with gorgeous backing vocals and a single piano. </p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/04/girls-covering-songs-by-guys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/girl-covers/odyfzjmpob.mp3" length="6575726" type="audio/mpeg" />
<enclosure url="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/girl-covers/xy8lcoqkdf.mp3" length="4420642" type="audio/mpeg" />
<enclosure url="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/girl-covers/bkt7s40e12.mp3" length="4042837" type="audio/mpeg" />
<enclosure url="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/girl-covers/hi665gk7xq.mp3" length="3310694" type="audio/mpeg" />
<enclosure url="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/girl-covers/d2pvga27o5.mp3" length="9010215" type="audio/mpeg" />
<enclosure url="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/girl-covers/z81pb0b4bz.mp3" length="5477253" type="audio/mpeg" />
		</item>
		<item>
		<title>SoundManager 2 &amp; WordPress</title>
		<link>http://superpositionkitty.com/2009/04/soundmanager-2-wordpress/</link>
		<comments>http://superpositionkitty.com/2009/04/soundmanager-2-wordpress/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 16:24:10 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[SoundManager 2]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=656</guid>
		<description><![CDATA[This is the first &#8230;]]></description>
			<content:encoded><![CDATA[<p>This is the first in what will be many posts explaining various bits of code that I’ve been working on for this — and other — websites.  This post will detail how to get <a href="http://www.schillmania.com/projects/soundmanager2/">SoundManager 2</a> working with <a href="http://wordpress.org/">WordPress</a> — and how you can have unobtrusive and stylish links to play MP3’s directly from your blog posts.</p>
<p>And just as an example, this is what we’re going to be working toward:</p>
<ul class="flat">
<li><a href="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/girl-covers/hi665gk7xq.mp3">E.S.L. — Girls</a></li>
</ul>
<p>(make sure to click on it a few times to see the various states)</p>
<p>First up, you’re going to want to download SoundManager 2 from the <a href="http://www.schillmania.com/projects/soundmanager2/doc/download/">website</a> (click on “Download SoundManager 2″). You’ll then need to unzip the folder that you’ve downloaded, and I would suggest renaming it to something like “soundmanager2” while you’re at it. Then go ahead and upload the entire folder to your base directory (I’m going to assume here that if you have WordPress up and running properly, then you’re familiar with the ins and outs of <a href="http://en.wikipedia.org/wiki/File_Transfer_Protocol">FTP</a>).</p>
<p>You can now navigate to <a href="http://yourwebsite.com/soundmanager2">http://yourwebsite.com/soundmanager2</a> (make sure to change “yourwebsite.com” to your actual domain!) and see if everything’s working. I’d also recommend checking <a href="http://yourwebsite.com/soundmanager2/doc/getstarted/index.html#troubleshooting">http://yourwebsite.com/soundmanager2/doc/getstarted/index.html#troubleshooting</a> to verify that you have no SM2 start-up problems. If you do have any problems with your install at this point with I’d recommend visiting the <a href="http://getsatisfaction.com/schillmania/products/schillmania_soundmanager_2/">discussion forums</a> for SoundManager 2.</p>
<p><span id="more-656"></span>I’ll assume that everything is running fine, so you can now see just what we’re going to be using for our unobtrusive MP3 playable links at <a href="http://yourwebsite.com/soundmanager2/demo/play-mp3-links/basic.html">http://yourwebsite.com/soundmanager2/demo/play-mp3-links/basic.html</a>. Try clicking around a little to get an idea of just how it all works. </p>
<p>Now we’re going to start moving some files around. Firstly though, I have various directories within my current theme folder to better organise all my code. These are <code>/js/</code>, <code>/css/</code>, <code>/images/</code>, <code>/mp3/</code> and <code>/mp3/</code>. Obviously everybody has different ways that they feel work better for them, so if you have your directory laid out a little differently to mine then put the files were you would prefer and update the latter links accordingly. </p>
<p>There are 4 files that we will be moving from the <code>/soundmanager2/</code> directory — so navigate there first. Then copy the two .swf files (“soundmanager2.swf” and “soundmanager2_flash9.swf”) from <code>/soundmanager2/swf/</code> to <code>/wp-content/themes/yourtheme/swf/</code> (make sure to replace “yourtheme” with your current theme name). We will then copy the javascript file from <code>/soundmanager2/demo/play-mp3-links/script/inlineplayer.js</code> to <code>/wp-content/themes/yourtheme/js/</code>, and also the css file from <code>/soundmanager2/demo/play-mp3-links/css/inlineplayer.css</code> to <code>/wp-content/themes/yourtheme/css/</code>.</p>
<p>You will then have to add the following code to your header in-between the <code>&lt;head&gt;</code> and <code>&lt;/head&gt;</code> tags:</p>
<pre>
&lt;link rel="stylesheet" href="http://yoursite.com/wp-content/themes/yourtheme/css/inlineplayer.css" type="text/css" media="screen" /&gt;

&lt;script type="text/javascript" src="http://yoursite.com/wp-content/themes/yourtheme/js/soundmanager2.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="http://yoursite.com/wp-content/themes/yourtheme/js/inlineplayer.js"&gt;&lt;/script&gt;
</pre>
<p>(note that the above code assumes that you have installed WordPress in the base directory of your website, if you have not done this then you will need to add the directory name for your WordPress installation before <code>/wp-content/</code>, also — remember to again change “yoursite” and “yourtheme” to the appropriate names).</p>
<p>The first file you need to modify is <code>/wp-content/themes/yourtheme/js/inlineplayer.js</code>. Scroll all the way to the bottom and you will see:</p>
<pre>
soundManager.url = '../../swf/'; // path to directory containing SM2 SWF
</pre>
<p>This needs to be changed to the absolute directory of your SWF file as below:</p>
<pre>
soundManager.url = 'http://yoursite.com/wp-content/themes/yourtheme/swf/'; // path to directory containing SM2 SWF
</pre>
<p>Next is to modify the css file <code>/wp-content/themes/yourtheme/css/inlineplayer.css</code>. Note that for the example below I’m giving the link a line-height of 18 pixels, this is to properly align the MP3 playable link to the horizontal baseline that is running throughout the website. Make sure that you <em>replace</em> the current code in the file with this:</p>
<pre>
ul.flat	{
	list-style-type:none;
	padding-left: 0px;
	font-size: 10px;
	text-transform: uppercase;
	color: #222;
	padding-bottom: 18px;	}

ul.flat li	{
	padding-bottom: 0px;	}

ul.flat	li	a	{
	display: inline-block;
	padding: 0px 0px 0px 0px;	}

ul.flat	a.sm2_link	{
	/* default state: "a playable link" */
	border-left: 9px solid #222;
	padding-left: 9px;
	padding-right: 9px;	}

ul.flat	a.sm2_link:hover	{
	/* default (inactive) hover state */
	border-left-color: #34B0F8;
	color: #222;	}

ul.flat a.sm2_playing	{
	/* "now playing" */
	border-left-color: #34B0F8;
	color: #34B0F8;
	text-decoration: none;	}

ul.flat a.sm2_playing:hover,
ul.flat a.sm2_paused:hover	{
	/* "clicking will now pause/resume" */
	border-left-color: #34B0F8;	}

ul.flat a.sm2_paused	{
	/* "paused state" */
	border-left-color: #CCC;
	text-decoration: none;	}
</pre>
<p>As the code is commented, it should all be pretty self-explanatory what class does what. Note that I’m using the “flat” styles here as a base, and not the “graphic” styles as I feel it suits the style of our website better. </p>
<p>And now we’re ready to add a playable mp3 link to any blog post we choose! Simply add the code below to a post — making sure to edit as necessary:</p>
<pre>
&lt;ul class="flat"&gt;
&lt;li&gt;&lt;a href="http://yoursite.com/wp-content/themes/yourtheme/mp3/songtitle.mp3"&gt;Artist - Title&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre>
<p>Now if you’ve done everything right, then you should have a playable link that looks much the same as the one I posted at the <a href="#head">beginning</a> of the article.</p>
<p>You can now turn off debugging mode by finding the following line near the bottom of <code>/wp-content/themes/yourtheme/js/inlineplayer.js</code>:</p>
<pre>
soundManager.debugMode = true; // disable or enable debug output
</pre>
<p>Make sure to replace this with <code>soundManager.debugMode = false;</code>.</p>
<p>Feel free to post any addendum’s or questions in the comments section below. </p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/04/soundmanager-2-wordpress/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
<enclosure url="http://superpositionkitty.com/wp-content/themes/blackandwhite/mp3/girl-covers/hi665gk7xq.mp3" length="3310694" type="audio/mpeg" />
		</item>
		<item>
		<title>Who Is Hwei Lin Lim?</title>
		<link>http://superpositionkitty.com/2009/04/who-is-hwei-lin-lim/</link>
		<comments>http://superpositionkitty.com/2009/04/who-is-hwei-lin-lim/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 02:01:51 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[Absent]]></category>
		<category><![CDATA[Hero]]></category>
		<category><![CDATA[Hwei Lin Lim]]></category>
		<category><![CDATA[Vefurrin]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=650</guid>
		<description><![CDATA[Hwei Lin Lim &#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/hweilinlim.jpg" alt="Hwei Lin Lim" /></p>
<p><a href="http://applearmy.com">Hwei Lin Lim</a> is an <a href="http://thestar.com.my/lifestyle/story.asp?file=/2008/1/27/lifebookshelf/20090049&#038;sec=lifebookshelf">award winning</a> comic book artist and <a href="http://chenchow.blogspot.com/2008/04/hwei-lin-won-2nd-prize-in-international.html">Systems Integration &amp; Technology consultant</a> from Malaysia.</p>
<p>So far her completed works include 2 short stories entitled <a href="http://e-morning.jp/mimc/story/vefurrin_e.html">Vefurrin</a> and <a href="http://www.webcomicsnation.com/tongari/absent/series.php">Absent</a>.  Both of which are beautifully drawn and engaging.</p>
<p>She is currently working on a project called Hero — a touchingly humorous story of a young man on a mysterious journey which is quite simply best <a href="http://invisiblecities.comicgenesis.com/story.html">discovered for yourself</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/04/who-is-hwei-lin-lim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>241543903</title>
		<link>http://superpositionkitty.com/2009/04/241543903/</link>
		<comments>http://superpositionkitty.com/2009/04/241543903/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 21:59:24 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Photos]]></category>
		<category><![CDATA[241543903]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=624</guid>
		<description><![CDATA[
241543903
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/29778044@N02/3466083649/"><img src="http://farm4.static.flickr.com/3570/3466083649_284a84d76b.jpg?v=0" title="241543903" alt="241543903" /></a></p>
<p><a href="http://www.flickr.com/search/?q=241543903&#038;m=text">241543903</a></p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/04/241543903/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monthly Links Round-Up: March</title>
		<link>http://superpositionkitty.com/2009/04/monthly-links-round-up-march/</link>
		<comments>http://superpositionkitty.com/2009/04/monthly-links-round-up-march/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 18:01:04 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[björk]]></category>
		<category><![CDATA[multicolor]]></category>
		<category><![CDATA[Ratatat]]></category>
		<category><![CDATA[Reuben Sutherland]]></category>
		<category><![CDATA[Röyksopp]]></category>
		<category><![CDATA[studio 4°C]]></category>
		<category><![CDATA[tatsuyuki tanaka]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=570</guid>
		<description><![CDATA[Welcome to the first &#8230;]]></description>
			<content:encoded><![CDATA[<p>Welcome to the first edition of our Monthly Links Round-Up. This is a place for links that we couldn’t just throw up in the <a href="http://superpositionkitty.com/category/vignettes/">side bar</a>, but didn’t quite make it into a post of their own.</p>
<p><a href="http://vimeo.com/1649940?pg=embed&#038;sec=">Björk x Ratatat</a> timelapse video. Shot on a <a href="http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&#038;fcategoryid=139&#038;modelid=11154">Canon Rebel XT</a> by Sai, you can see more of his videos <a href="http://vimeo.com/sai">here</a>, or check out his Flickr page <a href="http://www.flickr.com/people/mandalaysai/">here</a>.</p>
<p><a href="http://images.google.com/images?oe=UTF-8&#038;sourceid=navclient&#038;gfns=1&#038;q=tatsuyuki%20tanaka&#038;um=1&#038;ie=UTF-8&#038;sa=N&#038;hl=en&#038;tab=wi">Tatsuyuki Tanaka</a> is the creator of the well-known <a href="http://www.randomisgod.com/translate/Cannabis.html">Cannabis Works</a>. He currently works for <a href="http://www.studio4c.co.jp/english/">Studio 4°C</a> — which did three of the <a href="http://www.intothematrix.com/">Animatrix</a> shorts, a <a href="http://www.youtube.com/watch?v=1Xo4diUQ1uQ">Nike iD</a> spot, and the gorgeous movie <a href="http://www.sonypictures.com/homevideo/tekkonkinkreet/">Tekkon Kinkreet</a>. Tatsuyuki Tanaka — born in 1965 — has been working in the animation business since he was 18, with his first major role being a freelance key animator on <a href="http://en.wikipedia.org/wiki/Akira_%28film%29">Akira</a>.</p>
<p><a href="http://labs.ideeinc.com/multicolr">Multicolr</a> Search Lab takes the colours from over 10,000,000 <a href="http://www.flickr.com/explore/interesting/7days/">interesting</a> photos on <a href="http://www.flickr.com/">Flickr</a>. You can then choose up to 10 colours from their colour palate to search for images by colour. Searching using a selection of <a href="http://labs.ideeinc.com/multicolr#colors=f1bbab,ebafb0,f5cfa9;">skin tones</a> can be fun.</p>
<p><a href="http://royksopp.com/">Röyksopp</a>’s <a href="http://www.youtube.com/watch?v=KmcPeuf5aXo">Happy Up Here</a> is their first single off the new album: <a href="http://royksopp.com/music/junior">Junior</a>. It’s directed by <a href="http://www.joyriderfilms.com/reuben_sutherland.htm">Reuben Sutherland</a>, who has done work for Eurostar, Orange, and Sony. I especially recommend his <a href="http://www.youtube.com/watch?v=tNGoeuM6iOM">music video</a> for <a href="http://www.thephoenixfoundation.co.nz/">Phoenix Foundation</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/04/monthly-links-round-up-march/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paying Bills: Kage Nightclub Pt. 2</title>
		<link>http://superpositionkitty.com/2009/04/paying-bills-kage-nightclub-pt-2/</link>
		<comments>http://superpositionkitty.com/2009/04/paying-bills-kage-nightclub-pt-2/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 02:06:16 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Paying Bills]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[kage]]></category>
		<category><![CDATA[posters]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=539</guid>
		<description><![CDATA[The final posters &#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/29778044@N02/3420156956/"><img src="http://farm4.static.flickr.com/3538/3420156956_f3dd3ccfe4.jpg?v=0" alt="Kage Highway To Hell" height="304px"  style="margin-right: 26px;"/></a><a href="http://www.flickr.com/photos/29778044@N02/3419350119/"><img src="http://farm4.static.flickr.com/3390/3419350119_79f99b90bb.jpg?v=0" alt="Kage Bear Trap" height="304px" /></a></p>
<p>The final posters from the winter season for Kage.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/04/paying-bills-kage-nightclub-pt-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I Hate Twitter</title>
		<link>http://superpositionkitty.com/2009/04/why-i-hate-twitter/</link>
		<comments>http://superpositionkitty.com/2009/04/why-i-hate-twitter/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 19:49:08 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[hate]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wil wheaton]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=509</guid>
		<description><![CDATA[Or ‘Wil Wheaton eats &#8230;]]></description>
			<content:encoded><![CDATA[<p>Or ‘Wil Wheaton eats a grilled cheese sandwich’.</p>
<p>Don’t get me wrong I am all in favour of the communications revolution brought about by the internet.  Were it not for said communications revolution my life would be a lot a different.</p>
<p>I did, for instance, meet my partner and co-founder of SPK through the internet as well as many other people who I consider to be friends and acquaintances.  </p>
<p>I can, it’s true, find out what’s going on almost <a href="http://www.guardian.co.uk/">anywhere</a> <a href="http://www.bbc.co.uk/">on</a> <a href="http://www.nytimes.com/">the</a> <a href="http://www.reuters.com/">planet</a> in less time than it takes me to make a coffee and a piece of toast in the morning.</p>
<p>I have, with <a href="http://news.bbc.co.uk/1/hi/technology/7933565.stm">some restrictions</a>, access to any form of media I can get my grubby little hands on at the press of a button.</p>
<p>I think the internet and the level of inter connectivity between otherwise unrelated people is fucking awesome.</p>
<p>So definitely don’t get me wrong when I say that I hate <a href="http://twitter.com/">Twitter</a>.</p>
<p><span id="more-509"></span>I’m not some sort of anti-internet puritan.  I don’t think it’s corrupting our children and leading to the downfall of society.  I have no wish to see it regulated by governments and stomped all over by Lars Ulrich and the copyright police.</p>
<p>It’s just that I think some people are going a little too far and that they are doing so on Twitter and the other myriad social networking sites and applications available to everyone and their dog.</p>
<p>Months ago I deleted my <a href="http://www.myspace.com/">Myspace</a> profile.  And then shortly afterward I deleted my profile from <a href="http://www.bebo.com/">bebo</a>.  I just couldn’t take it anymore and it was time to get out.</p>
<p>Specifically what I couldn’t take anymore was the glitter text and obnoxious music that assaulted me every time I looked at someone else’s profile.  I couldn’t stand to see anymore badly taken nude photographs of people I knew.  It was becoming too difficult to ignore the needy, attention grabbing status messages that told me every little thing about every sodding break up or argument going on in the world outside my house.</p>
<p>It was too much information.  I really didn’t feel like I needed to know about these things.  In fact I felt that naked pictures, personal problems and shared community bitching were perhaps best kept private and far the hell away from me, the uninvolved third party.</p>
<p>Now.  It may be that I’m just middle aged and boring before my time.  It could be that I am prudish and oversensitive.  I may just be boring.</p>
<p>It could, and I do not deny this, be all of these things.</p>
<p>Maybe I just don’t <em>get</em> the internet anymore.</p>
<p>And so I retreated to <a href="http://www.facebook.com/">Facebook</a> where there was no glitter text and I kept the number of contacts on my friends page to under 20 — just the way I liked it.  Just the people I wanted to know about and the ability to filter out anything I didn’t care to read.</p>
<p>But then SuperpositionKitty went live and someone had to man the Twitter feed.  </p>
<p>It had sat, largely unused and lonely, at the bottom of the page for months and I, entirely foolishly, assumed that this was because Ryan was busy coding and designing and had no time to update it.  So like the good business partner and girlfriend I am I offered to take over Twitter duties and skipped off to install a client I could use to do this, eventually settling on the <a href="http://www.mozilla.com/en-US/firefox/firefox.html">Firefox</a> extension <a href="https://addons.mozilla.org/en-US/firefox/addon/5081">TwitterFox</a>.  After all social networking tools are perfect for spreading the news about a new website hungry for views. How could I refuse an opportunity to get in on what several news sites and blogs told me was the place to be in 2009?</p>
<p>For the first few days it stayed there in the corner of my browser, a tiny blue ‘t’ that could be easily ignored while I messed around trying to get the hang of Twittering.  I entered a few updates.  I had a look at some other people’s pages.  I halfheartedly filled in our profile and thought about adding some kind of picture for our avatar.</p>
<p>Essentially I stood a few steps back and poked at Twitter like a child at the sea side harassing a crab with a stick.  And to all intents and purposes the crab did not poke back.  Great!  I thought, time to dive right in!  The water in this rock pool looks amazing!</p>
<p>And so I did.  A week into my Twitter experiment I started to follow people.  Not many at first.  Only ten or eleven.  But that was enough to teach me that just because a crab doesn’t move for a while that doesn’t mean it wont pincer your ass the first time you’re not looking and then call in it’s many many friends to do the same thing.</p>
<p>Suffice to say the water was not amazing.  The water was in fact very far from amazing.  </p>
<p>TwitterFox has gone from a benign lower case letter to a soon to be uninstalled irritating blue box that popped up every fives minutes to inform me of as series of growing inanities. Twitter itself, as I found out over the course of one afternoon, was a place filled with the borderline hysterical who insisted that I knew everything that they were doing at every hour of the day.  It’s not so much a social networking tool as it is a platform to stand on and demand that everyone be your audience and personal Greek chorus.  “Validate the way I spend my time!” the Twitterer shrieks and the chorus rushes in to do just that.  It is as close to mass hysteria as I desire to get.  </p>
<p>Now again, don’t get me wrong.  There are some people out there who use twitter to <a href="http://twitter.com/jamesbuck">good effect</a>.  People who do things that are <a href="http://twitter.com/twitchhiker">interesting</a> and manage to tread the fine line between being <a href="http://www.guardian.co.uk/world/2009/apr/01/g20-london-summit-twitter">informative</a> and offering far too much personal information.  It’s just that their voices are lost amid the myriad wailing of the Twitter attention whore.</p>
<p>But how exactly do you go about sorting out the unbearable white noise for the genuine and useful content?  Why do people insist on polluting the air around them with the stinky cologne of desperation like the next door neighbour whose music permeates your home at 3am?  How is it possible to become so invasive in only 140 characters or less?</p>
<p>I suppose, in fairness, that it was naive of me to expect it to have been different than it was.  Like I stated earlier in this article I had already forsaken just about every other networking site because of abuse by people who really need you to know about their lives.  I should have known better than to think Twitter would be free of this problem.  But that’s the problem with hype — you may know that deep down something is a terrible idea but if people tell you over and over again how good it is a part of you really want to take a look.  Curiosity killed the cat and all that.</p>
<p>More fool me for falling for it again despite my reservations.  Hopefully this time I’ll learn and in future stay away from the next big thing.</p>
<p>So what have I learned from Twitter?</p>
<p>I’ve learned that it’s useful.  I’ve had to agree that it’s a fantastic innovation.  And yes it definitely helps all kinds of people from all across the globe keep in contact and up to date with world events.</p>
<p>I’ve also learned that maybe all of these things are not as fantastic as they may appear to be.  I now know that <a href="http://en.wikipedia.org/wiki/Wil_Wheaton">Wil Wheaton</a> enjoys grilled cheese sandwiches and that some dude who I have never heard of who Ryan added to our following category doesn’t sleep well at night and has a son who tries to stick forks into electrical outlets.  I now know I can find out exactly what people I will never meet are having for dinner 2 continents away.</p>
<p>I’ve learned, I think, that any tool can only perform as well as the person who uses it which has been my problem with the social networking phenomenon all along.  When something is available to everyone there is no way to ensure that everyone has something interesting to say and the only person responsible for the value of the messages is the individual hitting the send button.</p>
<p>The SPK Twitter will remain, mostly abandoned and forlorn at the the bottom of our site.  It is after all something that could come in handy from time to time.  Just don’t expect any great revelations about our choice of grilled sandwich or what I happen to be wearing on any given Tuesday.  I just don’t think that’s what it’s for.  </p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/04/why-i-hate-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Olympus Chrome Six III B</title>
		<link>http://superpositionkitty.com/2009/03/olympus-chrome-six-iii-b/</link>
		<comments>http://superpositionkitty.com/2009/03/olympus-chrome-six-iii-b/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 21:19:10 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Cameras]]></category>
		<category><![CDATA[film]]></category>
		<category><![CDATA[medium format]]></category>
		<category><![CDATA[olympus]]></category>
		<category><![CDATA[olypus chrome six]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=493</guid>
		<description><![CDATA[This is the first &#8230;]]></description>
			<content:encoded><![CDATA[<p>This is the first in what will — hopefully — be many posts about the cameras that I have been collecting over the years. Present count today is somewhere around 25 cameras, from the early 20th Century to only months old, both film and digital, <a href="http://en.wikipedia.org/wiki/Single-lens_reflex_camera">SLR</a>, <a href="http://en.wikipedia.org/wiki/Twin-lens_reflex_camera">TLR</a>, <a href="http://en.wikipedia.org/wiki/Rangefinder_camera">Rangefinders</a>, <a href="http://en.wikipedia.org/wiki/Folding_camera">Folders</a> and more.</p>
<p>The camera up today is the <em>Olympus Chrome Six III B</em>. It’s a <a href="http://en.wikipedia.org/wiki/Medium_format_(film)">Medium Format</a> <a href="http://en.wikipedia.org/wiki/Folding_camera">Folding</a> camera first introduced in 1948, the revision III (below) was introduced in May 1952. The biggest difference between the earlier II model was the introduction of a ‘film plane corrector’ to improve the precision of the film position. The ‘B’ denotes the fact that it has the faster 75mm ƒ2.8 lens, and not the ƒ3.5.</p>
<p><span id="more-493"></span><a href="http://www.flickr.com/photos/29778044@N02/3398778547/"><img src="http://superpositionkitty.com/wp-content/themes/blackandwhite/images/uploaded/articles/olympus_chrome_six.jpg" alt="Olympus Chrome Six III"></a></p>
<p>My Olympus Chrome Six was handed down to me from Jen’s Grandfather. Apparently it was used heavily at all sorts of occasions over the past half a century, but the condition is so near to perfect that you could barely tell. The most distinguishing feature of this particular Chrome Six is the text ‘<span class="smallcaps">MADE IN OCCUPIED JAPAN</span>’ that runs down the back latch of the camera. A reasonably common feature on many objects manufactured in Japan during the period between the end of <a href="http://en.wikipedia.org/wiki/World_War_II">WWII</a> and April 18, 1952.</p>
<p>Personally, my favourite part of this camera is the fast (in the <a href="http://en.wikipedia.org/wiki/Medium_format_(film)">Medium Format</a> world) ƒ2.8 lens. The field of view of the 75mm lens is roughly equivalent to 50mm on a <a href="http://en.wikipedia.org/wiki/35_mm_film">35mm</a> — or a <a href="http://en.wikipedia.org/wiki/Full-frame_digital_SLR">Full-frame digital</a> — camera, and at full aperture it has quite a narrow depth of field. The quality of the F.C. (coated on all elements) glass is excellent, and in fact the only negative with a camera such as this is the relatively slow 1–200 speed of the <a href="http://www.camerapedia.org/wiki/Copal">Copal</a> <a href="http://www.camerapedia.org/wiki/Leaf_shutter">shutter</a>. However, leaf shutters do have some advantages over <a href="http://www.camerapedia.org/wiki/Focal_plane_shutter">focal plane shutters</a> in that they can <a href="http://www.camerapedia.org/wiki/Flash_sync">flash sync</a> at any available shutter speed, and are generally quieter.</p>
<p>In short, this is a great camera if you’re looking to get started in the world of <a href="http://en.wikipedia.org/wiki/Medium_format_(film)">Medium Format film</a>. It’s cheap, very easy to use, has great optics, and is even thinner (albeit heavier) than most modern-day <a href="http://en.wikipedia.org/wiki/Digital_single-lens_reflex_camera">dSLRs</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/03/olympus-chrome-six-iii-b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Joker</title>
		<link>http://superpositionkitty.com/2009/03/the-joker/</link>
		<comments>http://superpositionkitty.com/2009/03/the-joker/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 02:29:40 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=475</guid>
		<description><![CDATA[The joker was for &#8230;]]></description>
			<content:encoded><![CDATA[<p>The joker was for so many years defined by his absence.  </p>
<p>At once loved and dearly in evidence and altogether not there he hung at the corners, eyes set grimly in his squarish head.</p>
<p>So long ago reduced to just the back of a neck on a bus in July.  </p>
<p>Once a burning, flickering inconstant in life.</p>
<p>Impersonal and cloying.  Forever threatening to cut the strings with blunt scissors.</p>
<p>Not even in dreams anymore.</p>
<p>A stunning prat fall and a stolen necklace.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/03/the-joker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Andrew W.K.</title>
		<link>http://superpositionkitty.com/2009/03/andrew-wk/</link>
		<comments>http://superpositionkitty.com/2009/03/andrew-wk/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 18:01:29 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Cool Things]]></category>
		<category><![CDATA[andrew w.k.]]></category>
		<category><![CDATA[party hard]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=448</guid>
		<description><![CDATA[The first time I &#8230;]]></description>
			<content:encoded><![CDATA[<p>The first time I heard about <a href="http://www.andrewwk.com/">Andrew W.K.</a> I was somewhere outside of Glenrothes on a stagecoach Citylink bus.  It was a Friday and I was 18.   I hadn’t as yet heard any of his music, although admittedly at that point I hadn’t heard much music at all, but from what I could gather from Kerrang magazine he was young, apparently musically gifted and THE NEXT BIG THING in metal.  At the time I was younger, musically inept and horribly eager to learn about anything my new group of “mosher” friends were interested in.  Years later this article would be the only thing that I had permanently filed away in my memory from my brief flirtation with heavy metal journalism, apart from a story I read on another bus journey about Slipknot being pelted with Mars Bars by the angry fans of another band during a gig.  </p>
<p>I always hated Slipknot and was obviously gratified other people felt the same way.</p>
<p>I wouldn’t actually hear his music until another Friday night a few weeks later.  This time I was slumped ungraciously in front of a friends television, perusing his music channels.  I had none of my own, living as I was between University halls of residence and a selection of sofas scattered around Dundee.  And it was here that I heard <a href="http://www.last.fm/music/Andrew+W.K./_/Party+Hard">Party Hard</a> for the first time.  It was, like the article in Kerrang, interesting in a way I couldn’t quite pin down.  There was something about the man and his music (apart from his seemingly never ending legs, unwashed jeans and wet straggly hair), that was fascinating and judging by the way that the song followed me around different club nights for months afterward and filled dancefloors every week it indicated that other people thought so too.  Party Hard was essentially a song that did what it said on the tin — insert CD, crank volume, rock out.  The followup song <a href="http://www.last.fm/music/Andrew+W.K./_/She+Is+Beautiful">She is Beautiful</a> and <a href="http://www.youtube.com/watch?v=0ZyhB1-Yb4U">the video</a> (which I still believe to be an accurate portrayal of a day in the life of Mr W.K.) was the same.  I couldn’t figure out why I liked him and I certainly couldn’t begin to understand why the hell I thought he was so cool.  </p>
<p><span id="more-448"></span>That knowledge would only come years later, after the hype had died down, and I had forsaken heavy metal and most of the friends who liked it.  I’d been adamant that it wasn’t just a phase but at the end of the day, truthfully most things are.  Apart from, as I was about to find out, Andrew W.K.</p>
<p>I can’t tell you quite how it happened.  I was 23 now and hiding out on the internet during my free time, of which I had a lot.  I hadn’t thought about him for a long time and I suppose I assumed he had dropped off the face of the planet or was at home making milkshakes and terrorising his neighbours after dark ever night.  But it was during this time that I began to hear about Andrew W.K. again.  Had I seen <a href="http://www.youtube.com/watch?v=ux6ubpajvQ8">this video</a>? Did I know he was guest speaking at a friends university?  That he had recorded an album of J-Pop cover songs?  That he was gold standard, hard core cool on the internet?</p>
<p>I had had no idea.  For all those years I had been doing my own thing, trundling along, not thinking about him, Andrew W.K. had been busy.  Very busy.  My ignorance was of course my own fault.  I’d remembered the article from Kerrang for years, but I hadn’t paid attention to it like I should have.  After all, it had told me quite simply — pay attention to this man because he is dynamic and interesting.  Keep your eyes open and your ears pinned back because he is going to surprise you.    I had made a mistake, <a href="http://pitchfork.com/reviews/albums/184-i-get-wet/">like a lot of people had</a>, about Andrew W.K.   And so it’s time to redress the balance.  I am 25 now and I can state wholeheartedly that I un-ironically love and enjoy Andrew W.K. and here are the reasons why:</p>
<blockquote><p>
On Friday, December 5th 2008, a die hard Andrew W.K. fan named Dominic Owen Mallary passed away after an accident while his band Last Lights performed at Boston University. Dominic had always said his dying wish was to have Andrew W.K. blasted at his wake. Catching wind of this, Andrew came to the wake, and played classical piano for the entire time after paying his respects.<br />
<cite><a href="http://en.wikipedia.org/wiki/Andrew_W.K.">Andrew W.K. on Wikipedia</a></cite>
</p></blockquote>
<p><br/></p>
<blockquote><p>
Your Friend, Andrew WK was a reality show on MTV2 starring musician Andrew W.K..</p>
<p>In the show, people write letters to the white denim-clad rocker, and he answers some on the air. Letters that will not be helped by an answer are overseen by Andrew himself; he does this by traveling to wherever the letter-writer is from, and staying at their house a few days, working out the problem.<br />
<cite><a href="http://en.wikipedia.org/wiki/Your_Friend,_Andrew_WK">Your Friend, Andrew W.K. on Wikipedia</a></cite>
</p></blockquote>
<p><br/></p>
<blockquote><p>
In 2005, Andrew announced that he would begin performing as a self-help, new age motivational speaker. He accepted invitations to speak at Yale University, New York University, The University of Wisconsin, Carnegie Mellon University, The Cooper Union, Western Missouri State University, and Northeastern University.<br />
<cite><a href="http://en.wikipedia.org/wiki/Andrew_W.K.">Andrew W.K. on Wikipedia</a></cite>
</p></blockquote>
<p><br/></p>
<blockquote><p>
During 2007, Andrew performed a series of unpredictable happenings as part of his “One Man Show” tour. Each event began with Andrew improvising on the piano alone on a stage before they frequently evolved into giant parties, with most of the audience dancing on stage with Andrew, themselves playing the piano and singing the lyrics.<br />
<cite><a href="http://en.wikipedia.org/wiki/Andrew_W.K.">Andrew W.K. on Wikipedia</a></cite>
</p></blockquote>
<p><br/></p>
<blockquote><p>
Premium Collection: The Japan Covers, known as One-Shot Game: Covers (一発勝負～カヴァーズ ‚Ippatsu Shōbu~Kavāzu?) in Japan, is a cover album by Andrew W.K.. The album consists of covers of Japanese pop songs that was released in Japan by Universal Music Group on November 26, 2008.</p>
<p>The songs were originally marketed as 30-second ringtones and repackaged in their complete versions as this 14-song album. Andrew W.K. is quoted as saying that this album is a “gift to the Japanese people, for all the incredible warmth and kindness they’ve given me over the years.”<br />
<cite><a href="http://en.wikipedia.org/wiki/The_Japan_Covers">The Japan Covers on Wikipedia</a></cite>
</p></blockquote>
<p><br/></p>
<blockquote><p>
On tour for The Wolf, Andrew was injured on stage and broke his foot. After the concert, he signed autographs from the ambulance. Not wanting to let his fans down, he performed the remainder of the tour in a wheelchair.<br />
<cite><a href="http://en.wikipedia.org/wiki/Andrew_W.K.">Andrew W.K. on Wikpedia</a></cite>
</p></blockquote>
<p><br/><br />
<object width="460" height="344"><param name="movie" value="http://www.youtube.com/v/7a9jhTNrMUo&#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/7a9jhTNrMUo&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="344"></embed></object></p>
<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/andrew_wk.jpg" alt="andrew w.k."/></p>
<p>This post brought to you by the society for Andrew W.K. Appreciation.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/03/andrew-wk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Path — A Short Horror Game</title>
		<link>http://superpositionkitty.com/2009/03/the-path-a-short-horror-game/</link>
		<comments>http://superpositionkitty.com/2009/03/the-path-a-short-horror-game/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 01:00:56 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[horror]]></category>
		<category><![CDATA[the path]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=344</guid>
		<description><![CDATA[The Path — &#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/the-path.jpg" alt="the path"/></p>
<p><a href="http://grandmothers-house.net/index.html">The Path</a> — A short horror game by <a href="http://tale-of-tales.com/">the group</a> that bought you <a href="http://tale-of-tales.com/TheEndlessForest/">The Endless Forest</a>, will be available to <a href="http://tale-of-tales.com/ThePath/">download</a> March 18th.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/03/the-path-a-short-horror-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why You Should Read Gunnerkrigg Court</title>
		<link>http://superpositionkitty.com/2009/03/why-you-should-read-gunnerkrigg-court/</link>
		<comments>http://superpositionkitty.com/2009/03/why-you-should-read-gunnerkrigg-court/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 18:33:48 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Cool Things]]></category>
		<category><![CDATA[comics]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[gunnerkrigg court]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=326</guid>
		<description><![CDATA[There are a lot &#8230;]]></description>
			<content:encoded><![CDATA[<p>There are a lot of comics on the internet.  They’re called webcomics and there are supposedly over 18,000 of them and they’ve been around for roughly the same time as the internet.  So you’ve probably read a few yourself and have now realised that unfortunately most of them are unbearably bad.  </p>
<p>That’s the the problem with the kind of self-publishing involved in the “webcomic scene” — there are no quality controls save for those of the artists and a lot of those artists are terrible. </p>
<p>So when someone mentions a ‘good’ webcomic to you and tells you to check it out you may be loathe to take the advice.  Which is a real shame because amongst the dross and white noise of the internet there are also some true gems out there.  Gems like <a href="http://www.gunnerkrigg.com/archive_page.php?comicID=1">Gunnerkrigg court</a>.</p>
<p><span id="more-326"></span>Written and drawn by <a href="http://www.gunnerkrigg.com/about.html">Tom Siddell</a>, the comic is the story of one Miss Antimony Carver and the mysteries which surround both her attendance of the eponymously named Gunnerkrigg court — an eerie and frequently otherworldly boarding school located somewhere in a country that could be the UK — and it’s dealings with the adjacent and equally shadowy Gillitie Wood.  It fuses science, magic and mythology and blurs the lines between them naturally and easily to tell a story of impressive span and ambition.</p>
<p>Started in April 2005 it now contains over 20 chapters throughout which Siddell (or Tea-san as he is known in various parts of the internet), has continually and consistently improved not only his artwork but his style and story telling ability which, as anyone who has ever read a web comic will know, is a rarity among the community in which he works. There’s a real sense of progression and growth and, unlike many similar web based comics, that the author knows exactly where he is going and how he is going to get there. But he doesn’t stop there either — central to my, and I believe many other peoples enjoyment of Gunnerkrigg Court are the personal relationships between the characters he has created, like the <a href="http://www.gunnerkrigg.com/archive_page.php?comicID=144">devotion between Antimony and her science genius BFF Kat</a> or the <a href="http://www.gunnerkrigg.com/archive_page.php?comicID=74">strange and sometimes threatening bond between quiet gentle Gamma and loud mouthed abrasive Zimmy</a>.  Each relationship is multi-layered and complex, and against the detailed, overbearing back drop of the Court and it’s mysteries they create a heartwarming sort of fuzzy core within in it — a core which draws you further and deeper into the story and into Siddell’s world.</p>
<p>There is something marvelous growing inside Gunnerkrigg Court — something sweet and magical and yet at the same time threatening and powerful — which deserves to be seen and enjoyed by everyone.  It’s the story and it’s the art and it’s the characters.  But mostly it’s Tom Siddell — a dedicated man who updates 3 times a week despite working a Monday to Friday, 9–5 job in the real world, who never begs for money and who does not bend to fan service to keep his readers.  There need to be more dudes like Tom Siddell and more comics like Gunnerkrigg Court but until there are we salute him and his work.</p>
<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/gunnerkrigg.gif" alt="Gunnerkrigg" /></p>
<p><a href="http://www.gunnerkrigg.com/book.html">Gunnerkrigg court : Orientation</a> — the full-colour 300 page book containing the first 14 chapters of Gunnerkrigg Court is available worldwide (nearly) <a href="http://www.gunnerkrigg.com/book.html">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/03/why-you-should-read-gunnerkrigg-court/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Noby Noby Boy</title>
		<link>http://superpositionkitty.com/2009/02/noby-noby-boy/</link>
		<comments>http://superpositionkitty.com/2009/02/noby-noby-boy/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 15:30:32 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[moon]]></category>
		<category><![CDATA[noby noby boy]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=321</guid>
		<description><![CDATA[Girl has reached &#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/the-moon.jpg" alt="the moon" /><br />
Girl has reached the moon, boy proceeds to eat everything on the moon. On the moon there are chickens and mushrooms and astronauts and robots and motorbikes. <a href="http://o--o.jp/">o–o</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/02/noby-noby-boy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Six Beautifully Simple Programs for OS X</title>
		<link>http://superpositionkitty.com/2009/02/six-beautifully-simple-programs-for-os-x/</link>
		<comments>http://superpositionkitty.com/2009/02/six-beautifully-simple-programs-for-os-x/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 15:53:25 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[niceplayer]]></category>
		<category><![CDATA[spotify]]></category>
		<category><![CDATA[the hit list]]></category>
		<category><![CDATA[transmission]]></category>
		<category><![CDATA[visor]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=293</guid>
		<description><![CDATA[Visor
Something so simple &#8230;]]></description>
			<content:encoded><![CDATA[<p><span class="smallcaps"><a href="http://code.google.com/p/blacktree-visor/">Visor</a></span></p>
<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/visor.png" alt="visor" width="90px" style="padding: 0px 18px 0px 0px; margin: 0px;" />Something so simple that I can’t live without it. As a web developer I do a lot of my work in the terminal, usually while I have other windows open. What Visor does is provide a system wide terminal window that you can access with a hot-key — if you’ve played any <a href="http://en.wikipedia.org/wiki/First-person_shooter">FPS</a>’s then it’s quite similar to the way you’d bring up the console (though instead of putting on godmother or no-clip, you’re ssh’ing into your server). Visor is brought to you by the <a href="http://www.blacktree.com/">group</a> that produced <a href="http://docs.blacktree.com/quicksilver/what_is_quicksilver">Quicksilver</a> — an application launcher/controller/so much more.</p>
<p><span class="smallcaps"><a href="http://www.getdropbox.com/">Dropbox</a></span></p>
<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/dropbox.png" alt="dropbox" width="90px" style="padding: 0px 18px 0px 0px; margin: 0px;" />This program is as simple as a little icon that sits in your menu-bar and a folder in your user account on your hard-drive. Copy your files into that folder and they’ll be uploaded to your account on <a href="http://www.getdropbox.com/">dropbox.com</a> (free accounts come with 2GB of storage). I find it invaluable for sending large files to clients; I’ll drop the .psd’s into my Dropbox folder and right-click to get the link to the file on the server. I can then paste this link into an email for my clients to download at the time of their choosing. It’s also possible to use Dropbox for rudimentary backups and version control with their system of <a href="http://www.getdropbox.com/tour#3">recovering deleted files</a>.</p>
<p><span id="more-293"></span><span class="smallcaps"><a href="http://www.potionfactory.com/blog/archives/hit-list">The Hit List</a></span></p>
<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/hitlist.png" alt="hitlist" width="90px" style="padding: 0px 18px 0px 0px; margin: 0px;" />I happen to have typed the draft of this post in The Hit List; <a href="http://www.potionfactory.com">Potion Factory</a>’s new task-management application, and — although in beta — already a much better alternative to <a href="http://culturedcode.com/things/">Things</a>. I much prefer the layout, the ability to add start and end dates and time estimates, the tagging functions, and the multitude of hot-keys available. It’s a great looking app, and I really recommend giving it a download and a try before they start charging for it in the coming months</p>
<p><span class="smallcaps"><a href="">NicePlayer</a></span></p>
<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/niceplayer.png" alt="niceplayer" width="90px" style="padding: 0px 18px 0px 0px; margin: 0px;" />NicePlayer is a simple alternative to <a href="http://www.apple.com/quicktime/download/">QuickTime</a>, <a href="http://www.videolan.org/vlc/">VLC</a>, <a href="http://mplayerosx.sourceforge.net/">MPlayer</a> and all the other movie players out there for OS X. It came out at a time when you had to pay for QuickTime to view movies in full-screen, but even though this has changed recently (and indeed QuickTime Pro will become obsolete in the coming months) I still much prefer the clean layout in NicePlayer. Couple NicePlayer with <a href="http://perian.org/">Perian</a> (a collection of open source QuickTime components ) and you can view almost any type of file. My favourite touches are using mouse gestures to zoom the view window and the ability to send the window to the background.</p>
<p><span class="smallcaps"><a href="http://www.spotify.com/en/products/overview/">Spotify</a></span></p>
<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/spotify.png" alt="spotify" width="90px" style="padding: 0px 18px 0px 0px; margin: 0px;" />Spotify is only recently out of private beta, but is already proving to be a promising replacement to iTunes and a hard-drive full of .mp3 files. Just type in an artist name or a song name or even genre and it will bring up a list of matches of full-length songs. The library is surprisingly diverse — though there’s still some glaring omissions — but the rights have been cleared for every song so it’s entirely legal. All the content is streamed via P2P, so if you’re on a fast enough connection there will be no waiting for the stream to buffer (<a href="http://funnyhub.com/content_images/5233_2617_real-player-buffering.jpg">RealPlayer</a> I’m looking at you …). You can even build up playlists by dragging and dropping songs. What’s the catch? Because it’s free it’s supported by ads (a <a href="http://www.spotify.com/en/products/premium/order/">premium</a> ad-less account costs £10 a month), in the form of fairly unobtrusive ads in the side-bar, but also audio adverts after every 5 or so songs — so you likely won’t be using this to DJ a set on a free account. Even so, it’s a great alternative to an iTunes library full of .mp3’s.</p>
<p><span class="smallcaps"><a href="http://www.transmissionbt.com/">Transmission</a></span></p>
<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/transmission.png" alt="transmission" width="90px" style="padding: 0px 18px 0px 0px; margin: 0px;" />As of the time of writing, <a href="http://mac.utorrent.com/">uTorrent on OS X</a> is still in public beta — and it’s buggy, has problems with speed limitations, crashes frequently and the interface is horrible. The only real torrent client available is Transmission. The pared-down interface, ability to watch folders for .torrent files, remote web interface, and the all-important bandwidth limiting preferences (albeit not as important now I am no longer in a <a href="http://en.wikipedia.org/wiki/Australia">barbaric country that caps my bandwidth every month</a>) make this a brilliant choice.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/02/six-beautifully-simple-programs-for-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Tom Kuntz Is Your Favourite Director</title>
		<link>http://superpositionkitty.com/2009/02/why-tom-kuntz-is-your-favourite-director/</link>
		<comments>http://superpositionkitty.com/2009/02/why-tom-kuntz-is-your-favourite-director/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 13:51:37 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[Advertising]]></category>
		<category><![CDATA[axe]]></category>
		<category><![CDATA[bumblebeez]]></category>
		<category><![CDATA[electric six]]></category>
		<category><![CDATA[mr t]]></category>
		<category><![CDATA[music videos]]></category>
		<category><![CDATA[natural confectionery company]]></category>
		<category><![CDATA[skittles]]></category>
		<category><![CDATA[tom kuntz]]></category>
		<category><![CDATA[trumpets]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=286</guid>
		<description><![CDATA[I watched quite a &#8230;]]></description>
			<content:encoded><![CDATA[<p>I watched quite a few movies back in 2008 — and a lot of them are now nominated for Oscars — from <em>The Dark Knight</em>, to <em>The Wrestler</em>, <em>Changling</em>, <em>Encounters at the End of the World</em> and so many more. However, all of these pale in comparison to the work of <a href="http://www.kuntzmanor.com/">Tom Kuntz</a> — and it’s a pity that he won’t be nominated for a single Directorial Oscar — because he works primarily in the field of abbreviated multimedia. That is; advertising and — more recently — music videos. </p>
<p>Now its quite rare that we actually enjoy any of these snippets of annoyance that interrupt our television viewing, but it’s even more of a pity that unless it’s somebody in the vein of <a href="http://www.imdb.com/name/nm0005069/">Spike Jonze</a> directing another <a href="http://www.youtube.com/watch?v=oob5uobmcy8">Gap</a> or <a href="http://www.youtube.com/watch?v=_Zvqf3sF0b4">Adidas</a> ad, we won’t know who was responsible for these microscopic masterpieces.</p>
<p><span id="more-286"></span><object width="460" height="344"><param name="movie" value="http://www.youtube.com/v/zXU9Ur9QznE&#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/zXU9Ur9QznE&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="344"></embed></object></p>
<p>It was when I saw this entirely conceptual — and completely un-advertising — advertisement last month that I decided it was time to put in the effort to find out who it is that comes up with these, and 99% of the time it boiled down to one name; Tom Kuntz — responsible for some of the best ads of 2007 and 2008 — and I’ve gathered a few of these below for your viewing pleasure.</p>
<p><object width="460" height="344"><param name="movie" value="http://www.youtube.com/v/nj1-ZZRajDU&#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/nj1-ZZRajDU&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="344"></embed></object></p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/Fojrw_vU0k8&#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/Fojrw_vU0k8&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="344"></embed></object></p>
<p><object width="460" height="344"><param name="movie" value="http://www.youtube.com/v/LG0zDltjL_o&#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/LG0zDltjL_o&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="344"></embed></object></p>
<p><object width="460" height="344"><param name="movie" value="http://www.youtube.com/v/6hqqKbpT07Y&#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/6hqqKbpT07Y&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="344"></embed></object></p>
<p><object width="460" height="344"><param name="movie" value="http://www.youtube.com/v/GEsqELX5e4o&#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/GEsqELX5e4o&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="344"></embed></object></p>
<p><object width="460" height="344"><param name="movie" value="http://www.youtube.com/v/WASn6PRG1Fc&#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/WASn6PRG1Fc&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="344"></embed></object></p>
<p><object width="460" height="295"><param name="movie" value="http://www.youtube.com/v/NySN_plfiNI&#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/NySN_plfiNI&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="295"></embed></object></p>
<p><object width="460" height="344"><param name="movie" value="http://www.youtube.com/v/eHrF_4sgyw8&#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/eHrF_4sgyw8&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="344"></embed></object></p>
<p>As mentioned above, he’s also been working on music videos for quite a few years now, my two favourite ones have to be his music videos for <a href="http://www.electricsix.com/">Electric Six</a>.</p>
<p><object width="460" height="344"><param name="movie" value="http://www.youtube.com/v/2a4gyJsY0mc&#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/2a4gyJsY0mc&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="344"></embed></object></p>
<p><object width="460" height="344"><param name="movie" value="http://www.youtube.com/v/q54LJ5RsqRw&#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/q54LJ5RsqRw&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="344"></embed></object></p>
<p>Then there’s his genius video for <a href="http://www.thebumblebeez.com/">The Bumblebeez</a>.</p>
<p><object width="460" height="344"><param name="movie" value="http://www.youtube.com/v/novN-7Qzt_o&#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/novN-7Qzt_o&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="344"></embed></object></p>
<p>Tom Kuntz has been working in the industry since 2002, and a backlog of his catalog of unusual advertisements can be found at: <a href="http://www.kuntzmanor.com/">kuntzmanor.com</a>. You should probably keep your eye out when you’re watching your favourite television show this evening, chances are that if you enjoy any of the ads — they’re directed by him.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/02/why-tom-kuntz-is-your-favourite-director/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You should listen to The Maccabees</title>
		<link>http://superpositionkitty.com/2009/02/you-should-probably-listen-to-the-maccabees/</link>
		<comments>http://superpositionkitty.com/2009/02/you-should-probably-listen-to-the-maccabees/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 22:36:20 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[News You Should Know]]></category>
		<category><![CDATA[maccabees]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[music videos]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=283</guid>
		<description><![CDATA[You may or may &#8230;]]></description>
			<content:encoded><![CDATA[<p>You may or may not have heard about <a href="http://www.myspace.com/themaccabees">The Maccabees</a>.  Whether you have or haven’t doesn’t change the fact that their second album <em>Wall of Arms</em> is set for release this year and that the first track previewed from it on UK radio earlier this month provides some advice that everyone should listen to.</p>
<p>Luckily for everyone it’s been followed up by it’s very own video</p>
<p><object width="460" height="288"><param name="movie" value="http://www.youtube.com/v/IhmKNBBp3OU&#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/IhmKNBBp3OU&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="460" height="288"></embed></object></p>
<p>No Kind Words is available for download on the bands <a href="http://www.themaccabees.co.uk/splash/">website</a> and the album is due out in April.  We can’t wait!</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/02/you-should-probably-listen-to-the-maccabees/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paying Bills: Kage Nightclub</title>
		<link>http://superpositionkitty.com/2009/01/paying-bills-kage-nightclub/</link>
		<comments>http://superpositionkitty.com/2009/01/paying-bills-kage-nightclub/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 16:08:58 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Paying Bills]]></category>
		<category><![CDATA[kage]]></category>
		<category><![CDATA[posters]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=233</guid>
		<description><![CDATA[



]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/29778044@N02/3038567708/"><img src="http://farm4.static.flickr.com/3120/3230957821_40e55da447_o.gif" alt="Kage All Nights" height="304px"  style="margin-right: 26px;"/></a><a href="http://www.flickr.com/photos/29778044@N02/3230957907/"><img src="http://farm4.static.flickr.com/3313/3230957907_5214a9fe78_o.gif" alt="Kage Anti-Valentines" height="304px" /></a></p>
<p><span id="more-233"></span><a href="http://www.flickr.com/photos/29778044@N02/3231808578/"><img src="http://farm4.static.flickr.com/3319/3231808578_a40d8dae6d_o.gif" alt="Kage Asylum" height="304px"  style="margin-right: 26px;"/></a><a href="http://www.flickr.com/photos/29778044@N02/3230958087/"><img src="http://farm4.static.flickr.com/3264/3230958087_4a575efc0d_o.gif" alt="Kage Bear Trap" height="304px" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/3230958217/"><img src="http://farm4.static.flickr.com/3381/3230958217_1e55bbe5df_o.gif" alt="Kage Entropy" height="304px"  style="margin-right: 26px;"/></a><a href="http://www.flickr.com/photos/29778044@N02/3230958353/"><img src="http://farm4.static.flickr.com/3443/3230958353_4d7d993751_o.gif" alt="Kage Renegades" height="304px" /></a></p>
<p><a href="http://www.flickr.com/photos/29778044@N02/3230958455/"><img src="http://farm4.static.flickr.com/3400/3230958455_119e97c127_o.gif" alt="Kage Transmission" height="304px"   style="margin-right: 250px;"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/01/paying-bills-kage-nightclub/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guest Article: The Microchip Is A Serious Thing</title>
		<link>http://superpositionkitty.com/2009/01/guest-article-the-microchip-is-a-serious-thing/</link>
		<comments>http://superpositionkitty.com/2009/01/guest-article-the-microchip-is-a-serious-thing/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 15:31:07 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Guest Articles]]></category>
		<category><![CDATA[guest article]]></category>
		<category><![CDATA[microchip]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=224</guid>
		<description><![CDATA[<em>At Super Position Kitty</em> &#8230;]]></description>
			<content:encoded><![CDATA[<p><em>At Super Position Kitty we intend to bring you the latest and most up to date news on an array of important and serious subjects in a forthright and understandable manner.  With this in mind we present to you now the first in a series of guest articles dealing with very serious subjects in a serious manner.</em></p>
<p><b>The Microchip</b> by Simone S.</p>
<p>They are small square things made of silicon?  I think this because in America they have a place called Sillicone Valley where computers are made.  (Interestingly fake boobs are also made of this stuff!)</p>
<p>The microchip meant that computers no longer had to be the size of a room because all the information is sorted on this tiny little square plastic thing.  ‘How exactly’ is an enigma when you think about it.  </p>
<p><span id="more-224"></span>Nowadays there are pictures and films and telephone lines and the internet all on this tiny little plastic box with a screen.  What really gets me is that you click buttons and type words and suddenly all these images and bits of information are displayed on the screen.  This is no electronic type writer — although that makes little sense either…</p>
<p>Basically bits of wire and plastic produce images and photographs with no tangible or realistic explanation.  This was explained to me once — that binary code (you know — numbers?) translate through the microchip into words and pictures.  Personally I don’t believe it myself.  I can use the internet and type essays but how it works is a mystery.  And why should I know?</p>
<p>When it comes to the crunch and you’re stuck up a hillside in the freezing rain and searching for food a microchip will not make a warm fire or shelter.  </p>
<p>As for as I’m concerned computers and technology are luxuries and no way essential to existence.  You can’t hug, fuck, eat or talk to a microchip.  But I admit — it could come in useful if you’re stuck in your house alone with no-one or nothing to hug, fuck, eat or talk to.  </p>
<p>A poor imitation of real life — sadly.</p>
<p><em>Note on the author:  Simone S. is a Londoner and MA honours Politics and Philosophy graduate who shares her home and life with a rescued Staffordshire Bull Terrier cross named Roxy somewhere in the heart of Dundee.  She knonws almost nothing about technology but she can operate her own stereo set up.  Just.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/01/guest-article-the-microchip-is-a-serious-thing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Things which may or may not be cool</title>
		<link>http://superpositionkitty.com/2009/01/things-which-may-or-may-not-be-cool/</link>
		<comments>http://superpositionkitty.com/2009/01/things-which-may-or-may-not-be-cool/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 12:31:27 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Cool Things]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[music videos]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=210</guid>
		<description><![CDATA[You know how it &#8230;]]></description>
			<content:encoded><![CDATA[<p>You know how it goes — you see something here or there, some form of entertainment media or curio item and for some reason you can’t seem to categorise what it is you’ve actually seen.  You watched the whole thing or picked it up and turned it round and stared at it but you just can’t figure out what exactly you’re supposed to make of it.</p>
<p>Something about it is terrible.  Stupid even.  Something about it is deffinitely off and you know that you just shouldn’t like it.  It would be ridiculously uncool to like it.</p>
<p>But then there’s something about this thing that is also indescribably awesome.  Time and time again, when you think no-one is looking you go back to it — this thing that lies somewhere on the border between fucking terrifying and unsettlingly terrific.</p>
<p>Here at SuperPosition Kitty we enjoy things like that and spend a good deal of time unironically liking many things that perhaps we shouldn’t.  But what’s life lived without a few dirty secrets?  So in this spirit we present to you the first in a series of lists and articles concerning ‘things which may or may not be cool’.</p>
<p>This time round it’s music.</p>
<p><span id="more-210"></span><object width="460" height="344" data="http://www.youtube.com/v/TmJ_hGOVebs&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/TmJ_hGOVebs&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /></object></p>
<p><strong>TATU — How Soon is Now?</strong> It’s easy to react to TATU what with their musical career being punctuated with various degrees of sapphic erotica and contrived controversy but that’s in the past.  The important thing is that they’re Russian and better at this song than Morrissey.</p>
<p><object width="460" height="344" data="http://www.youtube.com/v/dlDr4J5Q790&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/dlDr4J5Q790&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /></object></p>
<p><strong>Mint Royale and Lauren Laverne — Don’t Falter</strong>.  Pure and simple turn of the century sweetness with BBC Culture Show presenter Lauren Laverne.</p>
<p><object width="460" height="344" data="http://www.youtube.com/v/e8yx4k4tzqE&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/e8yx4k4tzqE&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /></object></p>
<p><strong>Lemon Jelly — Nice Weather for Ducks</strong>.  From the 2002 album ‘Lost Horizons’.  Very, very good.</p>
<p><object width="460" height="344" data="http://www.youtube.com/v/P2BG9kMxGAY&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/P2BG9kMxGAY&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /></object></p>
<p><strong>Liam Lynch The Museum Rap</strong>. You’ve probably heard of Liam Lynch.  He’s been around for a while.  Known as a man who once described himself as ‘a watered down idiot savant’ he owns one Finnigan Forcefield — a cat cloned from his original and beloved pet Frankie Forcefield.  Love him or hate him he’s pretty special.</p>
<p>http://uk.youtube.com/watch?v=fE975gHk0ks (embedding disabled)<br />
<strong>Alisha’s Attic — Push It All Aside</strong>.  Two sisters whose debut single has remained stuck in my head for the past 12 years sing a song about getting along and perform a synchronised dance routine to an equally catchy tune.</p>
<p><object width="460" height="344" data="http://www.youtube.com/v/C135SCD7gXY&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/C135SCD7gXY&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /></object></p>
<p><strong>1200 Techniques — Karma</strong>.  A prime example of Australian hip-hop : it may not be done well but it’s catchy!</p>
<p><object width="460" height="344" data="http://www.youtube.com/v/V1_oU8ewr2w&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/V1_oU8ewr2w&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /></object></p>
<p><strong>Hilltop Hoods — Dumb Enough</strong>.  It’s a swan.</p>
<p><object width="460" height="344" data="http://www.youtube.com/v/yPP8waT5ta8&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/yPP8waT5ta8&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /></object></p>
<p><strong>Kiiiiiii — 4 Little Joeys</strong>.  What can I say about two Japanese ladies playing toy instruments and singing a song about baby kangaroos?  Not much really, apart from that it’s quite good.</p>
<p>http://uk.youtube.com/watch?v=aQM_pDAfbIE (embedding disabled)<br />
<strong>Gwen Stefani — Hollaback Girl</strong>.  THIS SHIT IS BANANAS. B. A. N. A. N. A.  S.  It quite literally is.</p>
<p><object width="460" height="344" data="http://www.youtube.com/v/q-wGMlSuX_c&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/q-wGMlSuX_c&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /></object></p>
<p><strong>Lily Allen — The Fear</strong>.  Like a lot of artists who find instant success through a ground swell of adoration provided by MySpace Lily has had a hard time in terms of holding onto the zeitgeist of cool.  Which is a shame because her presence on the music scene makes pop a little more palatable.</p>
<p><object width="460" height="344" data="http://www.youtube.com/v/JgxltDbSDec&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/JgxltDbSDec&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /></object></p>
<p><strong>Hawksley Workman — Jealous Of Your Cigarette</strong>.  A man who sings guitar solos like Hawksley Workman regularly does should not be good at music but somehow he really is.</p>
<p><object width="460" height="344" data="http://www.youtube.com/v/JUbqOcMlD7I&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/JUbqOcMlD7I&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /></object></p>
<p><strong>Polysics — Electric Surfing Go Go</strong>.  A Japanese band notable for sounding like a SNES game falling down a flight of stairs during an air raid and having a super kawaii robot-dancing synth player.</p>
<p><object width="460" height="344" data="http://www.youtube.com/v/n1wnOUH2jk8&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/n1wnOUH2jk8&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /></object></p>
<p><strong>Bat for Lashes — What’s A Girl To Do?</strong> This video has BMX’s in it.</p>
<p><object width="460" height="344" data="http://www.youtube.com/v/gZMwkDTONpM&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/gZMwkDTONpM&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /></object></p>
<p><strong>Chicks on Speed — We Don’t Play Guitars</strong>.  This band apparently display their vaginas on over head projectors at the end of their gigs.  Art school bands are awesome.</p>
<p><object width="460" height="344" data="http://www.youtube.com/v/GP54xKQ9zac&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/GP54xKQ9zac&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /></object></p>
<p><strong>Ore Ska Band — Hana No Suka Dance</strong>.  A group of Japanese school girls who upon deciding to start a band realised that the instruments that they played only allowed it to be a ska band.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/01/things-which-may-or-may-not-be-cool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An open apology to Damon Albarn</title>
		<link>http://superpositionkitty.com/2009/01/facts-about-cool-an-open-apology-to-damon-albarn/</link>
		<comments>http://superpositionkitty.com/2009/01/facts-about-cool-an-open-apology-to-damon-albarn/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 17:19:24 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Cool Things]]></category>
		<category><![CDATA[Adidas]]></category>
		<category><![CDATA[blue and yellow]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[damon albarn]]></category>
		<category><![CDATA[facts]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=200</guid>
		<description><![CDATA[When I was a &#8230;]]></description>
			<content:encoded><![CDATA[<p>When I was a teenager I thought two things were cool — electric blue and yellow Adidas sweatshirts and Damon Albarn.  Of course since growing up is a process of trying on many different identities, much like trying on a series of distinctive hats, I dropped sports clothes and poor old Damon and picked up other singers and different clothes.  Time went on and I decided that new and different things were cool before throwing them off and moving on to the next thing and this continued on and on, shifting in and out of whatever I could get into.</p>
<p>But despite this — despite all of the things I have thought were cool or uncool I still don’t strictly know what cool is.  And that’s the problem with cool: there’s no way of putting your finger directly on it and pinning it solidly to the page.  Cool, by it’s nature is an indefinable mass of culturally distinct, age specific ideas, items or attitudes which are completely singular to the individual or group concerned and yet which are entirely relative to the attitudes, items or ideas of every other group or individual within a specific society and the world at large.</p>
<p>It is therefore a mess of social construct, zero sum game and perfect timing which is vital to individual identity and ability to function in society.  Rhetorically speaking to be cool is to be respected, liked and sought after as a person ‘who knows what is up’.  (To be uncool on the other hand holds connotations of shame and embarrassment and of being something less than desirable.)</p>
<p>It is important then to be cool.</p>
<p><span id="more-200"></span>However this again is this problem with the idea and practice of cool — to admit this vital importance is to become singularly uncool — to say that you are in any way concerned with being seen as a cool and adjusting anything about yourself (be it appearance, attitude or actions) for similar reasons is definitively ‘bogus’.  It is therefore obvious that no-one who <em>is</em> cool would ever say they <em>were</em> cool or perhaps even think of themselves as so. </p>
<p>It seems that to be cool a person must make almost no effort at all to be seen that way.  Proportionally the less you seem to care about cool the more cool people will think you are.</p>
<p>So what’s a guy or girl to do?</p>
<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/what-is-cool.gif" alt="what is cool?" /></p>
<p>It’s a confusing world out there with a functionally infinite number of people waiting to tell you whether your ideas, clothes and approach to life match up to their own feverishly held belief of what is cool.  If you are summarily found wanting in any category there are a similar number of suggestions on how to make yourself more cool — whether they be smoking filterless cigarettes, wearing shades and flipping off the cops or clambering into a pair of wine red skinny leg jeans and an argyle knit cardigan.  </p>
<p>With all these judgments and helpful suggestions flying about unchecked in the ether it is easy to stray far from the path of cool and wander into the domain of the lame.  It was this pressure to perform that caused me, at a young and impressionable age to cast off Damon Albarn and brightly colored leisure wear in favour of bands and singers who wore a lot more black and professed the ability to smash things angrily and sing about it as cool.  Whether or not this was the right choice is neither here not there — cool being relative to the individual it is up to you as the reader to decide which one of these things is worthy of more admiration.</p>
<p>It is not my point here to preach what is and isn’t cool.  For a start, as I stated at the beginning of this piece I have no idea what cool is so it would be difficult for me to take on the role of oracle and start predicting this or that new fashion craze or break through musical artist of 2009.  At the heart of it ‘cool’ itself takes on a new and separate meaning with every person who thinks about it and it is this that makes it such a difficult thing to define.  </p>
<p>As a social construct it informs and instructs us on how to act, think and be in a way that is congruous to the rest of our world.  It forms a universal yard stick against which we can measure all things and from there slot each new idea into the complex jigsaw of our own world view and is therefore a vital tool.</p>
<p>As a concept it continues to remain aloof and brooding as one would suspect it might.  It does not seem to care who or what might wish to define it — it simply exists whether or not you pay it any attention.  Possessed of a youthful and rebellious spirit cool does not give a shit what you think of it and it does not intend to change anything about itself simply because you think it should.  Cool does not care.</p>
<p>And this is perhaps the point that any consideration of cool should ultimately make:</p>
<p>Cool does not care and neither should you.</p>
<p>While cool may be important it is equally important not to take cool too seriously.</p>
<p>You can try out many ideas in your lifetime, all of them seemingly cool.  I, personally, have changed my mind a million times — if you will then please remember the series of hats. In changing them so often I have come to the conclusion that you must keep the ones you like the best no matter what any other person thinks or tells you.  </p>
<p>I still have my Damon Albarn hat and even a pair of blue and yellow Adidas sports shoes and I intend to keep them.</p>
<p><img src="http://superpositionkitty.com/wp-content/uploads/2010/01/adidas_shoe.jpg" alt="blue and yellow adidas sports shoes" /></p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2009/01/facts-about-cool-an-open-apology-to-damon-albarn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Supermarket</title>
		<link>http://superpositionkitty.com/2008/11/the-supermarket/</link>
		<comments>http://superpositionkitty.com/2008/11/the-supermarket/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 16:06:42 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Photos]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[supermarket]]></category>
		<category><![CDATA[yashica minister 700]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=157</guid>
		<description><![CDATA[Yashica Minister D &#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/29778044@N02/3038567708/"><img src="http://farm4.static.flickr.com/3282/3038567708_a983142f0d_o.jpg" alt="supermarket" width="460px" height="304px" /></a><br />
Yashica Minister D 700 (45mm ƒ1.7)</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2008/11/the-supermarket/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mission Statement</title>
		<link>http://superpositionkitty.com/2008/10/mission-statement/</link>
		<comments>http://superpositionkitty.com/2008/10/mission-statement/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 00:02:34 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mission statement]]></category>
		<category><![CDATA[superposition kitty]]></category>

		<guid isPermaLink="false">http://superpositionkitty.com/?p=107</guid>
		<description><![CDATA[Superposition Kitty are Ryan &#8230;]]></description>
			<content:encoded><![CDATA[<p>Superposition Kitty are Ryan <span class="amp">&amp;</span> Jen Smith (no relation)  — a graphic designer from 8 hours in the future and a self effacing stationary addict and university drop out who live and work together in Dundee, Scotland.  Shortly after meeting for the first time in September 2007 they drank several bottles of wine and decided to form an internet based t-shirt design company and set to work on a list of slogans and ideas that would, as they saw it, set the world alight.</p>
<p>The list was in part illegible, written in pink felt tip pen and has since disappeared in a house moving incident, which was probably for the best.</p>
<p>Just over a year and several site redesigns later Superposition Kitty aims to simply and unpretentiously present  the idea that good design and culture should be affordable, accessible and open to everyone everywhere.</p>
<p>At the heart of the site lies the ethos that good ideas no matter their purpose should be shared out, circulated and passed on to as many people as possible in a fun and informative way.</p>
<p>If we like it, it’s here and it’s very very awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://superpositionkitty.com/2008/10/mission-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
