<?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>life.timkingslynne</title>
	<atom:link href="http://life.timkingslynne.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://life.timkingslynne.com</link>
	<description>tkl &#124; blog</description>
	<lastBuildDate>Tue, 12 Oct 2010 19:53:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
		<item>
		<title>BFBC2 High-jinx!</title>
		<link>http://life.timkingslynne.com/?p=564</link>
		<comments>http://life.timkingslynne.com/?p=564#comments</comments>
		<pubDate>Tue, 12 Oct 2010 19:40:22 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Gaming]]></category>

		<guid isPermaLink="false">http://life.timkingslynne.com/?p=564</guid>
		<description><![CDATA[not my vid of course &#8211; i dont have any PS3 capturing tools &#8211; but this is a bunch of funny machinima gameplay from BFBC2]]></description>
			<content:encoded><![CDATA[<p>not my vid of course &#8211; i dont have any PS3 capturing tools &#8211; but this is a bunch of funny machinima gameplay from BFBC2</p>
<p><object width="480" height="385><param name="movie" value="http://www.youtube.com/v/uMwl3nJpHy8?fs=1&amp;hl=en_US&amp;color1=0x3a3a3a&amp;color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/uMwl3nJpHy8?fs=1&amp;hl=en_US&amp;color1=0x3a3a3a&amp;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/PXlmr1w4ybs?fs=1&amp;hl=en_US&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/PXlmr1w4ybs?fs=1&amp;hl=en_US&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/-kkP2gZH2fg?fs=1&amp;hl=en_US&amp;color1=0x3a3a3a&amp;color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/-kkP2gZH2fg?fs=1&amp;hl=en_US&amp;color1=0x3a3a3a&amp;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://life.timkingslynne.com/?feed=rss2&amp;p=564</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MEL Maya Scripts</title>
		<link>http://life.timkingslynne.com/?p=560</link>
		<comments>http://life.timkingslynne.com/?p=560#comments</comments>
		<pubDate>Tue, 05 Oct 2010 19:45:41 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Animation]]></category>

		<guid isPermaLink="false">http://life.timkingslynne.com/?p=560</guid>
		<description><![CDATA[My first ever MEL scripts for maya ..ughh //Zero Out Selection //Exludes visibility and scale //get selection string $sel[] = `ls -sl` ; //zero out loop for($item in $sel) { //get attributes string $attrs[] = `listAttr -v -k -s $item` ; //zero out - exclude scl and vis for ($attr in $attrs) { if($attr != [...]]]></description>
			<content:encoded><![CDATA[<p>My first ever MEL scripts for maya ..ughh</p>
<p><!-- code formatted by http://manoli.net/csharpformat/ --></p>
<div class="csharpcode">
<pre class="alt"><strong><span class="rem">//Zero Out Selection</span></strong></pre>
<pre><span class="rem">//Exludes visibility and scale</span></pre>
<pre><span class="rem">//get selection</span></pre>
<pre class="alt">    <span class="kwrd">string</span> $sel[] = `ls -sl` ;</pre>
<pre class="alt">    <span class="rem">//zero out loop</span></pre>
<pre>    <span class="kwrd">for</span>($item <span class="kwrd">in</span> $sel) {</pre>
<pre>           <span class="rem">//get attributes</span></pre>
<pre class="alt">           <span class="kwrd">string</span> $attrs[] = `listAttr -v -k -s $item` ;</pre>
<pre class="alt">           <span class="rem">//zero out - exclude scl and vis</span></pre>
<pre>           <span class="kwrd">for</span> ($attr <span class="kwrd">in</span> $attrs) {</pre>
<pre class="alt">               <span class="kwrd">if</span>($attr != <span class="str">"visibility"</span> &amp;&amp; $attr != <span class="str">"scaleX"</span> &amp;&amp; $attr != <span class="str">"scaleY"</span> &amp;&amp; $attr != <span class="str">"scaleZ"</span>) {</pre>
<pre class="alt">                   <span class="kwrd">string</span> $path = ($item+<span class="str">"."</span>+$attr) ;</pre>
<pre>                   <span class="kwrd">if</span>(!`getAttr -l $path`) setAttr ($item+<span class="str">"."</span>+$attr) 0 ;</pre>
<pre>               }</pre>
<pre>       }</pre>
<pre>}</pre>
</div>
<p><!-- code formatted by http://manoli.net/csharpformat/ --></p>
<div class="csharpcode">
<pre class="alt"><span class="rem">
<strong>//Toggle Set Textures</strong>
//work specific, however the method is good to put ehre for me to learn. 
//The drawShading 0/1 changes the deault maya shading/previs textures attr</span></pre>
<p><span class="rem">//create set selection</span></p>
<pre><span class="kwrd">string</span> $set[] =`ls -type [yourSetItemsPrefix]`;</pre>
<pre><span class="rem">//loop through set pieces</span></pre>
<pre class="alt"><span class="kwrd">for</span> ($item <span class="kwrd">in</span> $set){</pre>
<pre class="alt">    <span class="rem">//get drawShading Attr</span></pre>
<pre>    <span class="kwrd">string</span> $val = `getAttr ($item+<span class="str">".drawShading"</span>)`;</pre>
<pre>        <span class="rem">//toggle 0/1 previs textures</span></pre>
<pre class="alt">        <span class="kwrd">if</span> ($val == 0){</pre>
<pre class="alt">            setAttr ($item + <span class="str">".drawShading"</span>) 1;</pre>
<pre class="alt">        }</pre>
<pre class="alt">        <span class="kwrd">else</span>{</pre>
<pre class="alt">            setAttr ($item + <span class="str">".drawShading"</span>) 0;</pre>
<pre class="alt">        }</pre>
<pre class="alt">}</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://life.timkingslynne.com/?feed=rss2&amp;p=560</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Glorious Weekend</title>
		<link>http://life.timkingslynne.com/?p=554</link>
		<comments>http://life.timkingslynne.com/?p=554#comments</comments>
		<pubDate>Mon, 04 Oct 2010 20:49:23 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Noise]]></category>

		<guid isPermaLink="false">http://life.timkingslynne.com/?p=554</guid>
		<description><![CDATA[So the weather turned glorious over the weekend &#8211; just in time for Mum to visit   We had a nice time this weekend hanging out with the &#8216;dort&#8217;, cruising around the bays of Welly and checking out the vistas from the Mt Vic lookout.  We had some lunch at The Cheeky Pipi which was [...]]]></description>
			<content:encoded><![CDATA[<p>So the weather turned glorious over the weekend &#8211; just in time for Mum to visit <img src='http://life.timkingslynne.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   We had a nice time this weekend hanging out with the &#8216;dort&#8217;, cruising around the bays of Welly and checking out the vistas from the Mt Vic lookout.  We had some lunch at <a title="pipi" href="http://www.thecheekypipi.co.nz/" target="_blank">The Cheeky Pipi</a> which was nice.</p>
<p>Started getting back into some games/project development, will try to stop procrastinating and get some work done.  Will be downloading and starting  to use Unity 3 ASAP.  Hopefully get Chris into helping me finish the first iPhone project.  We&#8217;ll see &#8211; I need a team of slaves dammit!  Join me or die rebel scum&#8230;</p>
<p>Seeing <a title="GOG" href="http://legendoftheguardians.warnerbros.com/?adid=theatrical-%20LTlt3dcartoon_0910legendsguardians" target="_blank">LOTG:TOOG</a> this week in 3D hopefully it looks nice, shame they didn&#8217;t end up putting in production baby credits &#8211; disappointed.  Anyway, will finally see how some of my shots look on the big screen.</p>
]]></content:encoded>
			<wfw:commentRss>http://life.timkingslynne.com/?feed=rss2&amp;p=554</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reef &#8211; Glow</title>
		<link>http://life.timkingslynne.com/?p=547</link>
		<comments>http://life.timkingslynne.com/?p=547#comments</comments>
		<pubDate>Wed, 22 Sep 2010 23:13:03 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://life.timkingslynne.com/?p=547</guid>
		<description><![CDATA[I&#8217;ve been having flashbacks to how AWESOME this album is. Reef &#8211; Glow, some great rocknroll from a while back. Check the whole album out, including some picks like Place Your Hands, Consideration and I Would Have Left You. They have a real 70s rock feel, drawing influences from Rolling Stones and Led Zepp etc.  [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been having flashbacks to how AWESOME this album is.  Reef &#8211; Glow, some great rocknroll from a while back.  Check the whole album out, including some picks like <em>Place Your Hands</em>, <em>Consideration</em> and <em>I Would Have Left You. </em>They have a real 70s rock feel, drawing influences from Rolling Stones and Led Zepp etc.  Old school blues rock in there for grooves and a gruff sexy edge!</p>
<p><em><br />
</em></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/0Yaq06FxkG0?fs=1&amp;hl=en_US&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/0Yaq06FxkG0?fs=1&amp;hl=en_US&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/vhLddJcw_WA?fs=1&amp;hl=en_US&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/vhLddJcw_WA?fs=1&amp;hl=en_US&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/xfbCbxHPF-s?fs=1&amp;hl=en_US&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/xfbCbxHPF-s?fs=1&amp;hl=en_US&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://life.timkingslynne.com/?feed=rss2&amp;p=547</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PS3 Gamer Card</title>
		<link>http://life.timkingslynne.com/?p=540</link>
		<comments>http://life.timkingslynne.com/?p=540#comments</comments>
		<pubDate>Tue, 21 Sep 2010 21:31:14 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Gaming]]></category>

		<guid isPermaLink="false">http://life.timkingslynne.com/?p=540</guid>
		<description><![CDATA[testing a gamercard generator]]></description>
			<content:encoded><![CDATA[<p>testing a gamercard generator</p>
<p><a href="http://www.yourgamercards.net/profile/idego"><img src="http://www.yourgamercards.net/trophy/11/idego.png" alt="idego Trophy Card" border="0" /></p>
<p><a href="http://www.yourgamercards.net/profile/idego"><img src="http://www.yourgamercards.net/trophy/20/idego.png" alt="idego Trophy Card" border="0" /></p>
<p><img src="http://www.yourgamercards.net/trophy/139/idego.png" alt="idego Trophy Card" border="0" /></p>
<p><a href="http://www.yourgamercards.net"><img src="http://www.yourgamercards.net/kz2/0/idego.png" alt="idego Gamer Card" border="0" /></p>
<p><a href="http://www.yourgamercards.net/profile/idego"><img src="http://www.yourgamercards.net/trophy/52/idego.png" alt="idego Trophy Card" border="0" /></p>
<p><a href="http://www.yourgamercards.net/profile/idego"><img src="http://www.yourgamercards.net/trophy/33/idego.png" alt="idego Trophy Card" border="0" /></p>
<p><a href="http://www.yourgamercards.net/profile/idego"><img src="http://www.yourgamercards.net/trophy/3/idego.png" alt="idego Trophy Card" border="0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://life.timkingslynne.com/?feed=rss2&amp;p=540</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Couchlife</title>
		<link>http://life.timkingslynne.com/?p=536</link>
		<comments>http://life.timkingslynne.com/?p=536#comments</comments>
		<pubDate>Mon, 20 Sep 2010 21:34:31 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Gaming]]></category>

		<guid isPermaLink="false">http://life.timkingslynne.com/?p=536</guid>
		<description><![CDATA[Couchlife is a well priced online games store.  Ship pretty fast throughout Oz and NZ.]]></description>
			<content:encoded><![CDATA[<p><a title="CL" href="http://www.couchlife.co.nz/" target="_blank">Couchlife</a> is a well priced online games store.  Ship pretty fast throughout Oz and NZ.</p>
]]></content:encoded>
			<wfw:commentRss>http://life.timkingslynne.com/?feed=rss2&amp;p=536</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Games to Watch this Season!</title>
		<link>http://life.timkingslynne.com/?p=531</link>
		<comments>http://life.timkingslynne.com/?p=531#comments</comments>
		<pubDate>Sun, 19 Sep 2010 23:48:29 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Gaming]]></category>

		<guid isPermaLink="false">http://life.timkingslynne.com/?p=531</guid>
		<description><![CDATA[There are quite a few good looking new games for the new season. Here is my list of games to keep in mind &#8211; in no particular order: Brink sci-fi shooter that blends game mode types, SP, COOP and MP all blended seamlessly.  Also introduces some nice mirror&#8217;s edge movement freedom into an FPS &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>There are quite a few good looking new games for the new season.  Here is my list of games to keep in mind &#8211; in no particular order:</p>
<p><a title="Brink" href="http://www.brinkthegame.com/" target="_blank"><strong>Brink</strong></a><br />
sci-fi shooter that blends game mode types, SP, COOP and MP all blended seamlessly.  Also introduces some nice mirror&#8217;s edge movement freedom into an FPS &#8211; looks fun</p>
<p><a title="MOH" href="http://www.medalofhonor.com/" target="_blank"><strong>Medal of Honor</strong></a><br />
new military shooter &#8211; looks as good as most shooters like this &#8211; the multiplayer is being dev&#8217;d by EA DICE (BFBC2) which im all for!!</p>
<p><a title="COD:BO" href="http://www.callofduty.com/" target="_blank"><strong>Call of Duty : Black Ops</strong></a><br />
well, may as well get this because I always end up getting the COD series games.</p>
<p><a title="bulletstorm" href="http://www.bulletstorm.com/" target="_blank"><strong>Bulletstorm</strong></a><br />
ridiculous sci-fi action arcade shooter.  so OTT its really funny.  Will probably give any game a go where you can laser lasso an enemy, then face kick them into a cactus.</p>
<p><a title="Singularity" href="http://www.singularity-game.com" target="_blank"><strong>Singularity</strong></a><br />
sci-fi FPS and puzzle game.  Looks like supernatural shooter meets half-life 2 style weaponry/puzzles.  sounds cool</p>
<p><a title="Lego HP" href="http://games.kidswb.com/official-site/lego-harry-potter/" target="_blank"><strong>Lego Harry Potter</strong></a><br />
Lego games like this are always good.</p>
<p><a title="LBP2" href="http://www.littlebigplanet.com/en-us/2/" target="_blank"><strong>Little Big Planet 2</strong></a><br />
extremely creative and content rich follow up to a great original</p>
<p><a title="Crysis 2" href="http://www.sosnewyork.com/agegate" target="_blank"><strong>Crysis 2</strong></a><br />
rad, also coming to consoles this time! so your pooter wont chug to play it</p>
<p><a title="Portal 2" href="http://www.valvesoftware.com/games/portal2.html" target="_blank"><strong>Portal 2</strong></a><br />
must play.  Original was awesome</p>
<p><a title="KZ3" href="http://www.killzone.com/kz3/agegate.html" target="_blank"><strong>Killzone 3</strong></a><br />
sequel to my fave sci-fi shooter of alst season.  Great online MP.</p>
<p><a title="TW2" href="http://www.twoworlds2.com/confirm.php" target="_blank"><strong>Two Worlds 2</strong></a><br />
hopefully they get this right &#8211; a new opportunity for an Oblivions style open world RPG with loads of playtime and content.</p>
<p><a title="CC" href="http://www.castlecrashers.com/" target="_blank"><strong>Castle Crashers</strong></a><br />
arcade side scrolling RPG action &#8211; download-able game.</p>
<p><a title="KOA:Reckoning" href="http://www.reckoningthegame.com/" target="_blank"><strong>Kingdoms of Amalur : The Reckoning</strong></a><br />
new RPG from some big name developers.  Will be a standalone rpg, with plans for an MMO in the future.  Writing by R. A. Salvatore</p>
<p><a title="trine 2" href="http://trine2.com/" target="_blank"><strong>Trine 2</strong></a><br />
great looking follow up to last years awesome RPG platformer.</p>
<p><a title="TL2" href="http://www.torchlight2game.com/" target="_blank"><strong>Torchlight 2</strong></a><br />
MP follow up to the cool action RPG of last year.  Good cheap nice looking fun to play diablo clone made by ..well..ex Diablo makers&#8230;  Also ships with TorchEd &#8211; complete modding system for players.  This is going to be awesome!!</p>
]]></content:encoded>
			<wfw:commentRss>http://life.timkingslynne.com/?feed=rss2&amp;p=531</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paekakariki</title>
		<link>http://life.timkingslynne.com/?p=525</link>
		<comments>http://life.timkingslynne.com/?p=525#comments</comments>
		<pubDate>Sun, 19 Sep 2010 22:39:42 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Noise]]></category>

		<guid isPermaLink="false">http://life.timkingslynne.com/?p=525</guid>
		<description><![CDATA[Sunday revealed some nice clear sunny weather.  It was still windy but the storm had cleared out most of the cloud and rain.  We drove up the west coast a little bit, and visited some friends in Paekakariki.  Really nice easy coastal drive alongside some amazing rolling green hills, that drop right down into the [...]]]></description>
			<content:encoded><![CDATA[<p>Sunday revealed some nice clear sunny weather.  It was still windy but the storm had cleared out most of the cloud and rain.  We drove up the west coast a little bit, and visited some friends in <a title="Paekakariki" href="http://en.wikipedia.org/wiki/Paekakariki" target="_blank">Paekakariki</a>.  Really nice easy coastal drive alongside some amazing rolling green hills, that drop right down into the ocean.  Off the coast is <a title="Kapiti Island" href="http://www.doc.govt.nz/parks-and-recreation/places-to-visit/wellington/kapiti/kapiti-island-nature-reserve/" target="_blank">Kapiti</a> island, home to a famous Kiwi bird conservation park.  We are planning a small weekender trip to that little protected paradise.</p>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?hl=en&amp;q=google+maps+paekakariki+NZ&amp;ie=UTF8&amp;hq=&amp;hnear=Paekakariki,+Wellington,+New+Zealand&amp;ei=oI-WTPz0I4rsvQOesOWZDQ&amp;ved=0CBgQ8gEwAA&amp;t=h&amp;ll=-40.948788,174.954529&amp;spn=0.363034,0.583649&amp;z=10&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?hl=en&amp;q=google+maps+paekakariki+NZ&amp;ie=UTF8&amp;hq=&amp;hnear=Paekakariki,+Wellington,+New+Zealand&amp;ei=oI-WTPz0I4rsvQOesOWZDQ&amp;ved=0CBgQ8gEwAA&amp;t=h&amp;ll=-40.948788,174.954529&amp;spn=0.363034,0.583649&amp;z=10&amp;source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://life.timkingslynne.com/?feed=rss2&amp;p=525</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Music Pick &#8211; Explosions In The Sky</title>
		<link>http://life.timkingslynne.com/?p=523</link>
		<comments>http://life.timkingslynne.com/?p=523#comments</comments>
		<pubDate>Fri, 17 Sep 2010 02:08:45 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://life.timkingslynne.com/?p=523</guid>
		<description><![CDATA[Being listening to some more wavy post-rock.  If you&#8217;re into it, then check out this and more songs from Explosions In The Sky.  This little one is called &#8216;Catastrophe and Cure&#8217;]]></description>
			<content:encoded><![CDATA[<p>Being listening to some more wavy post-rock.  If you&#8217;re into it, then check out this and more songs from Explosions In The Sky.  This little one is called &#8216;Catastrophe and Cure&#8217;</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/ZeaXvVLuSJw?fs=1&amp;hl=en_US&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/ZeaXvVLuSJw?fs=1&amp;hl=en_US&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://life.timkingslynne.com/?feed=rss2&amp;p=523</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windy Welly</title>
		<link>http://life.timkingslynne.com/?p=519</link>
		<comments>http://life.timkingslynne.com/?p=519#comments</comments>
		<pubDate>Fri, 17 Sep 2010 01:45:44 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Noise]]></category>

		<guid isPermaLink="false">http://life.timkingslynne.com/?p=519</guid>
		<description><![CDATA[Some huge storms swirling around New Zealand this week &#8211; this weekend Wellington  finally gets hit with a severe gale force storm warning.  Looking out my window now..it seems it has begun! weather attack! it has begun&#8230; what does it look like at the moment? like THIS]]></description>
			<content:encoded><![CDATA[<p>Some huge storms swirling around New Zealand this week &#8211; this weekend Wellington  finally gets hit with a severe gale force storm warning.  Looking out my window now..it seems it has begun!</p>
<p><a title="weather_incoming" href="http://www.stuff.co.nz/national/4132085/Massive-storm-heading-for-New-Zealand" target="_blank">weather attack!</a></p>
<p><a title="weather" href="http://www.stuff.co.nz/national/4137634/Wild-weather-roughs-up-New-Zealand" target="_blank">it has begun&#8230;</a></p>
<p>what does it look like at the moment? like <a title="welly web cam" href="http://www.wn.co.nz/categories.php?category=4" target="_blank">THIS</a></p>
]]></content:encoded>
			<wfw:commentRss>http://life.timkingslynne.com/?feed=rss2&amp;p=519</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

