<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Fuzzy World</title>
	<atom:link href="http://fuzzyworld.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://fuzzyworld.wordpress.com</link>
	<description>[fuzzy world] - A messed up look at the world, sometimes through my Treo and often incomprehensible to anyone but a dim-witted individual who holds an advanced degree in hyperbolic topology.</description>
	<lastBuildDate>Thu, 03 Dec 2009 02:34:37 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='fuzzyworld.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/98dbc3a777e37c4e2f1d01ceac21522c?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Fuzzy World</title>
		<link>http://fuzzyworld.wordpress.com</link>
	</image>
			<item>
		<title>Switch laptop Power Plans with PowerShell</title>
		<link>http://fuzzyworld.wordpress.com/2009/12/02/switch-laptop-power-plans-with-powershell/</link>
		<comments>http://fuzzyworld.wordpress.com/2009/12/02/switch-laptop-power-plans-with-powershell/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 02:34:37 +0000</pubDate>
		<dc:creator>FuzzyGamer</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://fuzzyworld.wordpress.com/?p=1080</guid>
		<description><![CDATA[The following is a PowerShell script that I wrote to change the Power Plans on my laptop. The script checks which plan I&#8217;m currently using, either &#8220;Power saver&#8221; or &#8220;High performance&#8221;, and switches to using the other one. I find this functionality helpful, as I can simply create a single shortcut on the desktop (or [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1080&subd=fuzzyworld&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The following is a PowerShell script that I wrote to change the Power Plans on my laptop. The script checks which plan I&#8217;m currently using, either &#8220;Power saver&#8221; or &#8220;High performance&#8221;, and switches to using the other one. I find this functionality helpful, as I can simply create a single shortcut on the desktop (or wherever) that can be executed to instantly change the power plan, without bothering to go through menus. Plus, it&#8217;s an excuse to play around with PowerShell.</p>
<p><strong>Code after the jump.</strong></p>
<p><span id="more-1080"></span></p>
<pre class="brush: powershell;">

function GetGuidsOfPowerSchemes
{
	param(
		[ref]$highPerformanceSchemeGuid,
		[ref]$powerSaverSchemeGuid,
		$powercfgOutput)

	$powerSchemeGuidString = &quot;Power Scheme GUID: &quot;
	$highPerformanceString = &quot;(High Performance)&quot;
	$powerSaverString = &quot;(Power saver)&quot;
	$highPerformanceSchemeGuid.Value = $null
	$powerSaverSchemeGuid.Value = $null

	foreach($config in $powercfgOutput)
	{
		$configsString = New-Object
			-TypeName &quot;System.String&quot;
			-ArgumentList &quot;$config&quot;
		if (
			$configsString.IndexOf(
				$powerSchemeGuidString,
				[System.StringComparison]::OrdinalIgnoreCase)
			-eq 0)
		{
			$guid = New-Object
				-TypeName &quot;System.Guid&quot;
				-ArgumentList (
					$configsString.Substring(
						$powerSchemeGuidString.Length,
						36))
			if (
				$configsString.IndexOf(
					$highPerformanceString,
					[System.StringComparison]::OrdinalIgnoreCase)
				-gt 0)
			{
				$highPerformanceSchemeGuid.Value = $guid
			}
			elseif (
				$configsString.IndexOf(
					$powerSaverString,
					[System.StringComparison]::OrdinalIgnoreCase)
				-gt 0)
			{
				$powerSaverSchemeGuid.Value = $guid
			}
		}
	}
}

$garbage = [Reflection.Assembly]::LoadWithPartialName(&quot;System.Text&quot;)

$highPerformanceSchemeGuid = $null
$powerSaverSchemeGuid = $null
$configsList = powercfg -list
GetGuidsOfPowerSchemes
	-powercfgOutput $configsList
	-highPerformanceSchemeGuid ([ref]$highPerformanceSchemeGuid)
	-powerSaverSchemeGuid ([ref]$powerSaverSchemeGuid)

$highPerformanceSchemeActiveGuid = $null
$powerSaverSchemeActiveGuid = $null
$configsList = powercfg -getactivescheme
GetGuidsOfPowerSchemes
	-powercfgOutput $configsList
	-highPerformanceSchemeGuid ([ref]$highPerformanceSchemeActiveGuid)
	-powerSaverSchemeGuid ([ref]$powerSaverSchemeActiveGuid)

Write-Host &quot;Active schemes&quot;
if ($highPerformanceSchemeActiveGuid -ne $null
	-and $powerSaverSchemeGuid -ne $null)
{
	Write-Host &quot;High power, setting to low&quot;
	$garbage = powercfg -setactive $powerSaverSchemeGuid
}
elseif ($powerSaverSchemeActiveGuid -ne $null
	-and $highPerformanceSchemeGuid -ne $null)
{
	Write-Host &quot;Low power, setting to high&quot;
	$garbage = powercfg -setactive $highPerformanceSchemeGuid
}
elseif ($highPerformanceSchemeGuid -ne $null)
{
	Write-Host &quot;Power setting not determined, setting to high&quot;
	$garbage = powercfg -setactive $highPerformanceSchemeGuid
}
else
{
	Write-Host &quot;Unable to determine current setting and cannot find high setting&quot;
}
</pre>
<p>All the real work is done by an application called powercfg. The script just gets the available power schemes, checks which scheme is now active and sets the other scheme (identified by GUIDs) to be the active one. Pretty straightforward stuff, but still required me to &#8220;parse&#8221; the input. Of course, a regex would have worked better, but that&#8217;s yet another thing I need to learn.</p>
Posted in Programming  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fuzzyworld.wordpress.com/1080/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fuzzyworld.wordpress.com/1080/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fuzzyworld.wordpress.com/1080/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fuzzyworld.wordpress.com/1080/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fuzzyworld.wordpress.com/1080/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fuzzyworld.wordpress.com/1080/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fuzzyworld.wordpress.com/1080/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fuzzyworld.wordpress.com/1080/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fuzzyworld.wordpress.com/1080/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fuzzyworld.wordpress.com/1080/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1080&subd=fuzzyworld&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fuzzyworld.wordpress.com/2009/12/02/switch-laptop-power-plans-with-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8054cedcbe193a47f3bbda06e456bac9?s=96&#38;d=identicon" medium="image">
			<media:title type="html">FuzzyGamer</media:title>
		</media:content>
	</item>
		<item>
		<title>Deleting SharePoint items based on a CAML query, in PowerShell</title>
		<link>http://fuzzyworld.wordpress.com/2009/11/30/deleting-sharepoint-items-based-on-a-caml-query-in-powershell/</link>
		<comments>http://fuzzyworld.wordpress.com/2009/11/30/deleting-sharepoint-items-based-on-a-caml-query-in-powershell/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 04:43:01 +0000</pubDate>
		<dc:creator>FuzzyGamer</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://fuzzyworld.wordpress.com/?p=1068</guid>
		<description><![CDATA[The following is a PowerShell script that will delete SharePoint items in a specific list that match the passed-in query. I ended up writing this at work to delete a lot of items from a list (1 million, to be exact).
Code is after the jump.
The problem is that SharePoint does not expose this functionality anywhere. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1068&subd=fuzzyworld&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The following is a PowerShell script that will delete SharePoint items in a specific list that match the passed-in query. I ended up writing this at work to delete a lot of items from a list (1 million, to be exact).</p>
<p><strong>Code is after the jump.</strong></p>
<p><span id="more-1068"></span>The problem is that SharePoint does not expose this functionality anywhere. So I write the script to query for the items, delete all the returned items, query again (paging issues), delete again and keep going until no more items are found. For paging, make sure to get no more than about 2,000 items, otherwise queries aren&#8217;t performant and you may even get exceptions thrown.</p>
<pre class="brush: powershell;">
# Delete an item from the announcements list by using a CAML query

param(
    [string] $web = $(throw &quot;The parameter web is required&quot;),
    [string] $list = $(throw &quot;The parameter list is required&quot;),
    [string] $caml = $(throw &quot;The parameter caml is required&quot;),&lt;/code&gt;
    [int] $rowLimit = 1000,
    [switch] $whatif = $true
)

[System.reflection.Assembly]::LoadWithPartialName(&quot;Microsoft.SharePoint&quot;)
$spsite = New-Object -TypeName &quot;Microsoft.SharePoint.SPSite&quot; -ArgumentList $web
$spweb = $spsite.OpenWeb()
$splist = $spweb.Lists[$list]

$query=new-object -TypeName &quot;Microsoft.SharePoint.SPQuery&quot;
$query.Query = $caml
$query.RowLimit = $rowLimit

$col = $null
do
{
    $col=$splist.GetItems($query)

    Write-Host (&quot;Items returned = [&quot; + $col.Count + &quot;]&quot;)

    $col | % {
        Write-Host (&quot;Found item with ID = [&quot; + $_.ID + &quot;] and title = [&quot; + $_.Title + &quot;]&quot;)
        if (!$whatif)
        {
            Write-Host (&quot;Deleting item with ID = &quot; + $_.ID)
            $_.Delete()
        }
    }

    $query.ListItemCollectionPosition = $col.ListItemCollectionPosition
}
while ($col.ListItemCollectionPosition -ne $null)

$spweb.Dispose()
$spsite.Dispose()
</pre>
<p>Sample usage:</p>
<pre class="brush: plain;">
DeleteSPItemsWithCaml.ps1
 -web http://test06/sites/english
 -list &quot;Pages&quot;
 -whatIf:$true
 -caml &quot;&lt;Where&gt;&lt;Contains&gt;&lt;FieldRef Name=`&quot;Title`&quot; /&gt;&lt;Value Type=`&quot;Text`&quot;&gt;Test&lt;/Value&gt;&lt;/Contains&gt;&lt;/Where&gt;&quot;
</pre>
<p>This will list out, but not delete, all the items in the Pages list on my test box/site where the Title field contains &#8220;Test&#8221;. Notice that quotes are escaped with the ` symbol.</p>
<pre class="brush: plain;">
DeleteSPItemsWithCaml.ps1
 -web http://test06/sites/english
 -list &quot;Other Content&quot;
 -whatIf:$false
 -rowLimit 10
 -caml &quot;&lt;Where&gt;&lt;Contains&gt;&lt;FieldRef Name=`&quot;Title`&quot; /&gt;&lt;Value Type=`&quot;Text`&quot;&gt;Category1&lt;/Value&gt;&lt;/Contains&gt;&lt;/Where&gt;&quot;
</pre>
<p>This will delete all matching items. The difference is that now the whatIf parameter is false, so this is not a &#8220;test&#8221;. Also, I&#8217;ve changed the rowLimit parameter, which results in each query getting 10 items at a time.</p>
<p>I use the <strong>whatIf </strong>parameter in practically all my scripts, and set it to a default of true, so that I can test out the script without screwing anything up. In this case, it&#8217;s particularly important.</p>
<p>A final note on the script: when running it against our huge list of a million items, we noticed incredibly slow perf. One of my coworkers found a solution, though: sort the results so you&#8217;re deleting the largest items first. Here&#8217;s a sample query for that. The relevant CAML is highlighted.</p>
<pre class="brush: xml; highlight: [7,8,9];">
  &lt;Where&gt;
    &lt;Lt&gt;
      &lt;FieldRef Name=&quot;StartTime&quot; /&gt;
      &lt;Value Type=&quot;DateTime&quot;&gt;2009-11-18T12:24:59Z&lt;/Value&gt;
    &lt;/Lt&gt;
  &lt;/Where&gt;
  &lt;OrderBy&gt;
    &lt;FieldRef Name=&quot;JobSize&quot; Ascending=&quot;FALSE&quot; /&gt;
  &lt;/OrderBy&gt;
</pre>
Posted in Programming, Work  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fuzzyworld.wordpress.com/1068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fuzzyworld.wordpress.com/1068/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fuzzyworld.wordpress.com/1068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fuzzyworld.wordpress.com/1068/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fuzzyworld.wordpress.com/1068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fuzzyworld.wordpress.com/1068/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fuzzyworld.wordpress.com/1068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fuzzyworld.wordpress.com/1068/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fuzzyworld.wordpress.com/1068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fuzzyworld.wordpress.com/1068/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1068&subd=fuzzyworld&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fuzzyworld.wordpress.com/2009/11/30/deleting-sharepoint-items-based-on-a-caml-query-in-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8054cedcbe193a47f3bbda06e456bac9?s=96&#38;d=identicon" medium="image">
			<media:title type="html">FuzzyGamer</media:title>
		</media:content>
	</item>
		<item>
		<title>Funny name for a beer</title>
		<link>http://fuzzyworld.wordpress.com/2009/11/13/funny-name-for-a-beer/</link>
		<comments>http://fuzzyworld.wordpress.com/2009/11/13/funny-name-for-a-beer/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 04:35:05 +0000</pubDate>
		<dc:creator>FuzzyGamer</dc:creator>
				<category><![CDATA[Treo Post]]></category>

		<guid isPermaLink="false">http://fuzzyworld.wordpress.com/2009/11/13/funny-name-for-a-beer/</guid>
		<description><![CDATA[But it&#8217;s damn good. And the name is half the reason I keep ordering it.

Posted in Treo Post       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1066&subd=fuzzyworld&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>But it&#8217;s damn good. And the name is half the reason I keep ordering it.</p>
<p><a href="http://fuzzyworld.files.wordpress.com/2009/11/image_092.jpg"><img src="http://fuzzyworld.files.wordpress.com/2009/11/image_092.jpg?w=509&#038;h=382" alt="image 092" title="image 092" width="509" height="382" class="alignnone size-full wp-image-1067" /></a></p>
Posted in Treo Post  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fuzzyworld.wordpress.com/1066/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fuzzyworld.wordpress.com/1066/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fuzzyworld.wordpress.com/1066/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fuzzyworld.wordpress.com/1066/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fuzzyworld.wordpress.com/1066/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fuzzyworld.wordpress.com/1066/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fuzzyworld.wordpress.com/1066/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fuzzyworld.wordpress.com/1066/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fuzzyworld.wordpress.com/1066/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fuzzyworld.wordpress.com/1066/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1066&subd=fuzzyworld&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fuzzyworld.wordpress.com/2009/11/13/funny-name-for-a-beer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8054cedcbe193a47f3bbda06e456bac9?s=96&#38;d=identicon" medium="image">
			<media:title type="html">FuzzyGamer</media:title>
		</media:content>

		<media:content url="http://fuzzyworld.files.wordpress.com/2009/11/image_092.jpg" medium="image">
			<media:title type="html">image 092</media:title>
		</media:content>
	</item>
		<item>
		<title>Insane battery</title>
		<link>http://fuzzyworld.wordpress.com/2009/11/08/insane-battery/</link>
		<comments>http://fuzzyworld.wordpress.com/2009/11/08/insane-battery/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 01:46:16 +0000</pubDate>
		<dc:creator>FuzzyGamer</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[Pictures]]></category>

		<guid isPermaLink="false">http://fuzzyworld.wordpress.com/?p=1061</guid>
		<description><![CDATA[So, I think there might be a problem with my laptop&#8217;s battery meter:

EDIT: And about 3 minutes after posting up this image, my laptop died, due to a dead battery.
Posted in Humor, Pictures       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1061&subd=fuzzyworld&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>So, I think there might be a problem with my laptop&#8217;s battery meter:</p>
<p><img class="aligncenter size-full wp-image-1062" title="battery_time" src="http://fuzzyworld.files.wordpress.com/2009/11/battery_time.png?w=193&#038;h=74" alt="battery_time" width="193" height="74" /></p>
<p>EDIT: And about 3 minutes after posting up this image, my laptop died, due to a <strong>dead battery.</strong></p>
Posted in Humor, Pictures  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fuzzyworld.wordpress.com/1061/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fuzzyworld.wordpress.com/1061/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fuzzyworld.wordpress.com/1061/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fuzzyworld.wordpress.com/1061/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fuzzyworld.wordpress.com/1061/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fuzzyworld.wordpress.com/1061/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fuzzyworld.wordpress.com/1061/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fuzzyworld.wordpress.com/1061/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fuzzyworld.wordpress.com/1061/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fuzzyworld.wordpress.com/1061/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1061&subd=fuzzyworld&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fuzzyworld.wordpress.com/2009/11/08/insane-battery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8054cedcbe193a47f3bbda06e456bac9?s=96&#38;d=identicon" medium="image">
			<media:title type="html">FuzzyGamer</media:title>
		</media:content>

		<media:content url="http://fuzzyworld.files.wordpress.com/2009/11/battery_time.png" medium="image">
			<media:title type="html">battery_time</media:title>
		</media:content>
	</item>
		<item>
		<title>NaNoWriMo 2009</title>
		<link>http://fuzzyworld.wordpress.com/2009/11/08/nanowrimo-2009/</link>
		<comments>http://fuzzyworld.wordpress.com/2009/11/08/nanowrimo-2009/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 22:35:18 +0000</pubDate>
		<dc:creator>FuzzyGamer</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Sci-Fi]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://fuzzyworld.wordpress.com/?p=1058</guid>
		<description><![CDATA[Same as last year, the days/weeks leading up to the NaNoWriMo event are once again entirely devoid of blog posts. That&#8217;s because any spare time I may have had in the the two or three weeks leading up November were mainly taken up by plotting. Same as last year, I&#8217;m working on a sci-fi story. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1058&subd=fuzzyworld&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Same as last year, the days/weeks leading up to the <a href="http://en.wikipedia.org/wiki/Nanowrimo" target="_blank">NaNoWriMo event</a> are once again entirely devoid of blog posts. That&#8217;s because any spare time I may have had in the the two or three weeks leading up November were mainly taken up by plotting. Same as last year, I&#8217;m working on a sci-fi story. This time, though, it&#8217;s based on a short story I wrote during the summer. It&#8217;s the same underlying concept/problem, but completely different set of characters (one of whom is named after a friend&#8217;s newborn kid) and a different resolution.</p>
<p>As opposed to last year, when I spent a lot of time on the concept behind the story and no time at all on actually plotting out the flow, this year I&#8217;ve jotted down the summaries of all the scenes, ahead of time. So now all I have to do is allot the required number of days per scene (about 2.5) and the story feels like it&#8217;s writing itself. It&#8217;s a much less stressful and more enjoyable NaNo experience than last year&#8217;s. And hey, I&#8217;m already at 10,000 words. I missed a day last week due to excessive alcohol intake (Trivia Tuesday, you understand) but aside from that I&#8217;ve been writing regularly, every day, about 1.6 thousand words, the required amount for me to coast through November and have 50 thousand words by December.</p>
<p>Speaking of alcohol intake, I&#8217;m considering not having less booze than normal, as I&#8217;ve found that writing while intoxicated just doesn&#8217;t cut it for me. At that point, I&#8217;d rather be listening to Pink Floyd, Led Zeppelin or playing GTA: IV. Not exactly a good writing atmosphere.</p>
<p>And speaking of music (yes, this post is taking on a very tangential motif, but what the hell do I care?!), I&#8217;ve recently discovered Led Zeppelin and I gotta say: shit, I&#8217;ve been missing out! &#8220;Ramble On&#8221; is one of the best songs I have ever heard. Period. (Have you noticed that it starts out kinda like The Guess Who&#8217;s &#8220;No Sugar Tonight/New Mother Nature&#8221;? It&#8217;s weird, but I constantly think I&#8217;m going to hear &#8220;no sugar tonight&#8221; just as the song breaks into obvious Led Zeppelin.)</p>
<p style="text-align:center;"><span style="text-align:center; display: block;"><a href="http://fuzzyworld.wordpress.com/2009/11/08/nanowrimo-2009/"><img src="http://img.youtube.com/vi/4F7672DzkHY/2.jpg" alt="" /></a></span></p>
<p>Sadly, I don&#8217;t expect to be writing much here until way after NaNo is over. This post itself is being written in between lunch and watching &#8220;Back to the Future: Part 2&#8243;. After that, probably going to head out to a coffee shop to get the day&#8217;s allotment of sci-fi written up.</p>
Posted in Blog, Music, Sci-Fi, Writing, YouTube  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fuzzyworld.wordpress.com/1058/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fuzzyworld.wordpress.com/1058/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fuzzyworld.wordpress.com/1058/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fuzzyworld.wordpress.com/1058/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fuzzyworld.wordpress.com/1058/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fuzzyworld.wordpress.com/1058/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fuzzyworld.wordpress.com/1058/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fuzzyworld.wordpress.com/1058/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fuzzyworld.wordpress.com/1058/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fuzzyworld.wordpress.com/1058/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1058&subd=fuzzyworld&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fuzzyworld.wordpress.com/2009/11/08/nanowrimo-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8054cedcbe193a47f3bbda06e456bac9?s=96&#38;d=identicon" medium="image">
			<media:title type="html">FuzzyGamer</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/4F7672DzkHY/2.jpg" medium="image" />
	</item>
		<item>
		<title>GTA: The Ballad of Gay Tony</title>
		<link>http://fuzzyworld.wordpress.com/2009/10/11/gta-the-ballad-of-gay-tony/</link>
		<comments>http://fuzzyworld.wordpress.com/2009/10/11/gta-the-ballad-of-gay-tony/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 22:09:35 +0000</pubDate>
		<dc:creator>FuzzyGamer</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Pictures]]></category>

		<guid isPermaLink="false">http://fuzzyworld.wordpress.com/?p=1052</guid>
		<description><![CDATA[Rockstar&#8217;s second episodic download for GTA: IV is coming in just two long weeks, and I anticipate this to be the best experience, probably outdoing The Lost and most certainly the original. This episodic brings with it the content which was, unfortunately, missing from GTA:IV. Coming back is the glitz of Vice City, the super-weapons [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1052&subd=fuzzyworld&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Rockstar&#8217;s second episodic download for GTA: IV is coming in just two long weeks, and I anticipate this to be the best experience, probably outdoing The Lost and most certainly the original. This episodic brings with it the content which was, unfortunately, missing from GTA:IV. Coming back is the glitz of Vice City, the super-weapons of San Andreas, the all-purpose tank (re-imagined as a SWAT Tank, or APC), a larger variety of helicopters (including one based on the AH-6 Little Bird from Vice) and the parachutes for those dearly-missed BASE-jumping exercises.</p>
<p><img class="aligncenter size-medium wp-image-1053" title="image_grand_theft_auto_iv-11572-1077_0005" src="http://fuzzyworld.files.wordpress.com/2009/10/image_grand_theft_auto_iv-11572-1077_0005.jpg?w=350&#038;h=196" alt="image_grand_theft_auto_iv-11572-1077_0005" width="350" height="196" /></p>
<p>And, if that&#8217;s not all, we will now be able to experience Liberty City from yet another perspective. Niko was an OK character, certainly nothing stellar and sometimes just an asshole. Johnny was great, someone I could really enjoy playing as, but his was a dark world. Luis, the protagonist of the new game, will be the body-guard and assistant of the titular character, Anthony &#8220;Gay Tony&#8221; Prince. Seems like we&#8217;ll now be able to experience Liberty from a different vantage point. Some places, a tough biker or an immigrant mobster just can&#8217;t get into (at least, not without a fire-fight or an invite from double-crossing politicians).</p>
<p><img class="aligncenter size-medium wp-image-1054" title="image_grand_theft_auto_iv-11572-1077_0001" src="http://fuzzyworld.files.wordpress.com/2009/10/image_grand_theft_auto_iv-11572-1077_0001.jpg?w=350&#038;h=196" alt="image_grand_theft_auto_iv-11572-1077_0001" width="350" height="196" /></p>
Posted in Games, Gaming, Pictures  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fuzzyworld.wordpress.com/1052/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fuzzyworld.wordpress.com/1052/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fuzzyworld.wordpress.com/1052/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fuzzyworld.wordpress.com/1052/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fuzzyworld.wordpress.com/1052/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fuzzyworld.wordpress.com/1052/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fuzzyworld.wordpress.com/1052/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fuzzyworld.wordpress.com/1052/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fuzzyworld.wordpress.com/1052/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fuzzyworld.wordpress.com/1052/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1052&subd=fuzzyworld&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fuzzyworld.wordpress.com/2009/10/11/gta-the-ballad-of-gay-tony/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8054cedcbe193a47f3bbda06e456bac9?s=96&#38;d=identicon" medium="image">
			<media:title type="html">FuzzyGamer</media:title>
		</media:content>

		<media:content url="http://fuzzyworld.files.wordpress.com/2009/10/image_grand_theft_auto_iv-11572-1077_0005.jpg?w=350" medium="image">
			<media:title type="html">image_grand_theft_auto_iv-11572-1077_0005</media:title>
		</media:content>

		<media:content url="http://fuzzyworld.files.wordpress.com/2009/10/image_grand_theft_auto_iv-11572-1077_0001.jpg?w=350" medium="image">
			<media:title type="html">image_grand_theft_auto_iv-11572-1077_0001</media:title>
		</media:content>
	</item>
		<item>
		<title>The Beatles in Vegas</title>
		<link>http://fuzzyworld.wordpress.com/2009/10/09/the-beatles-in-vegas/</link>
		<comments>http://fuzzyworld.wordpress.com/2009/10/09/the-beatles-in-vegas/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 08:36:56 +0000</pubDate>
		<dc:creator>FuzzyGamer</dc:creator>
				<category><![CDATA[Pictures]]></category>

		<guid isPermaLink="false">http://fuzzyworld.wordpress.com/?p=1050</guid>
		<description><![CDATA[
Posted in Pictures       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1050&subd=fuzzyworld&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:center;"><a title="The Beatles sign by FuzzyGamer, on Flickr" href="http://www.flickr.com/photos/fuzzygamer/3995125610/" target="_blank"><img class="aligncenter" style="border:1px solid black;" src="http://farm3.static.flickr.com/2664/3995125610_5deec18fe1.jpg" alt="The Beatles sign" width="335" height="500" /></a></p>
Posted in Pictures  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fuzzyworld.wordpress.com/1050/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fuzzyworld.wordpress.com/1050/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fuzzyworld.wordpress.com/1050/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fuzzyworld.wordpress.com/1050/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fuzzyworld.wordpress.com/1050/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fuzzyworld.wordpress.com/1050/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fuzzyworld.wordpress.com/1050/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fuzzyworld.wordpress.com/1050/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fuzzyworld.wordpress.com/1050/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fuzzyworld.wordpress.com/1050/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1050&subd=fuzzyworld&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fuzzyworld.wordpress.com/2009/10/09/the-beatles-in-vegas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8054cedcbe193a47f3bbda06e456bac9?s=96&#38;d=identicon" medium="image">
			<media:title type="html">FuzzyGamer</media:title>
		</media:content>

		<media:content url="http://farm3.static.flickr.com/2664/3995125610_5deec18fe1.jpg" medium="image">
			<media:title type="html">The Beatles sign</media:title>
		</media:content>
	</item>
		<item>
		<title>Boring photos</title>
		<link>http://fuzzyworld.wordpress.com/2009/10/08/boring-photos/</link>
		<comments>http://fuzzyworld.wordpress.com/2009/10/08/boring-photos/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 10:13:55 +0000</pubDate>
		<dc:creator>FuzzyGamer</dc:creator>
				<category><![CDATA[Pictures]]></category>

		<guid isPermaLink="false">http://fuzzyworld.wordpress.com/?p=1048</guid>
		<description><![CDATA[I&#8217;ve hit a semi-boring patch of photos with the NY-NY and MGM casino photos. Nothing interesting to process/post. At least, that&#8217;s the reason I&#8217;m giving for only uploading 5 photos (and only 1 public photo!). Below is the fish tank from the Rainforest Cafe at the MGM.

In a bit of related news, a few hours [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1048&subd=fuzzyworld&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve hit a semi-boring patch of photos with the NY-NY and MGM casino photos. Nothing interesting to process/post. At least, that&#8217;s the reason I&#8217;m giving for only uploading 5 photos (and only 1 public photo!). Below is the fish tank from the Rainforest Cafe at the MGM.</p>
<p style="text-align:center;"><a title="Fish tank at the Rainforest Cafe by FuzzyGamer, on Flickr" href="http://www.flickr.com/photos/fuzzygamer/3991950277/" target="_blank"><img class="aligncenter" style="border:1px solid black;" src="http://farm4.static.flickr.com/3143/3991950277_40b659cb90.jpg" alt="Fish tank at the Rainforest Cafe" width="500" height="445" /></a></p>
<p>In a bit of related news, a few hours ago I got an email from an online guide that is apparently considering using one of my photos on their site. The site is free, I&#8217;ll get no money for this, and all I heard is that my photo is being short-listed, but it&#8217;s still something. I&#8217;ll post here, obviously, if my photo gets picked.</p>
<p>&#8212;</p>
<p>Currently listening to: <strong>Jethro Tull</strong></p>
Posted in Pictures  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fuzzyworld.wordpress.com/1048/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fuzzyworld.wordpress.com/1048/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fuzzyworld.wordpress.com/1048/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fuzzyworld.wordpress.com/1048/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fuzzyworld.wordpress.com/1048/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fuzzyworld.wordpress.com/1048/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fuzzyworld.wordpress.com/1048/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fuzzyworld.wordpress.com/1048/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fuzzyworld.wordpress.com/1048/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fuzzyworld.wordpress.com/1048/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1048&subd=fuzzyworld&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fuzzyworld.wordpress.com/2009/10/08/boring-photos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8054cedcbe193a47f3bbda06e456bac9?s=96&#38;d=identicon" medium="image">
			<media:title type="html">FuzzyGamer</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3143/3991950277_40b659cb90.jpg" medium="image">
			<media:title type="html">Fish tank at the Rainforest Cafe</media:title>
		</media:content>
	</item>
		<item>
		<title>Lioness in MGM</title>
		<link>http://fuzzyworld.wordpress.com/2009/10/07/lioness-in-mgm/</link>
		<comments>http://fuzzyworld.wordpress.com/2009/10/07/lioness-in-mgm/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 09:27:43 +0000</pubDate>
		<dc:creator>FuzzyGamer</dc:creator>
				<category><![CDATA[Pictures]]></category>

		<guid isPermaLink="false">http://fuzzyworld.wordpress.com/?p=1046</guid>
		<description><![CDATA[I&#8217;m too tired today. And, frankly, the photos I took of NY-NY were just boring, so I wasn&#8217;t in the mood to process too many of them. Did upload a few, then skipped ahead to the MGM lion exhibit photos. Those turned out a bit better. Below is an example.

Posted in Pictures    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1046&subd=fuzzyworld&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;m too tired today. And, frankly, the photos I took of NY-NY were just boring, so I wasn&#8217;t in the mood to process too many of them. Did upload a few, then skipped ahead to the MGM lion exhibit photos. Those turned out a bit better. Below is an example.</p>
<p style="text-align:center;"><a title="Lioness at MGM by FuzzyGamer, on Flickr" href="http://www.flickr.com/photos/fuzzygamer/3989125281/" target="_blank"><img class="aligncenter" style="border:1px solid black;" src="http://farm3.static.flickr.com/2594/3989125281_89a87501b9.jpg" alt="Lioness at MGM" width="500" height="334" /></a></p>
Posted in Pictures  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fuzzyworld.wordpress.com/1046/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fuzzyworld.wordpress.com/1046/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fuzzyworld.wordpress.com/1046/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fuzzyworld.wordpress.com/1046/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fuzzyworld.wordpress.com/1046/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fuzzyworld.wordpress.com/1046/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fuzzyworld.wordpress.com/1046/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fuzzyworld.wordpress.com/1046/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fuzzyworld.wordpress.com/1046/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fuzzyworld.wordpress.com/1046/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1046&subd=fuzzyworld&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fuzzyworld.wordpress.com/2009/10/07/lioness-in-mgm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8054cedcbe193a47f3bbda06e456bac9?s=96&#38;d=identicon" medium="image">
			<media:title type="html">FuzzyGamer</media:title>
		</media:content>

		<media:content url="http://farm3.static.flickr.com/2594/3989125281_89a87501b9.jpg" medium="image">
			<media:title type="html">Lioness at MGM</media:title>
		</media:content>
	</item>
		<item>
		<title>Building under construction in Vegas</title>
		<link>http://fuzzyworld.wordpress.com/2009/10/05/building-under-construction-in-vegas/</link>
		<comments>http://fuzzyworld.wordpress.com/2009/10/05/building-under-construction-in-vegas/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 06:18:46 +0000</pubDate>
		<dc:creator>FuzzyGamer</dc:creator>
				<category><![CDATA[Pictures]]></category>

		<guid isPermaLink="false">http://fuzzyworld.wordpress.com/?p=1042</guid>
		<description><![CDATA[More of the Flickr project to motivate me. Managed to upload 10 more Vegas photos (8 public) to Flickr. This one wasn&#8217;t too bad.

Posted in Pictures       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1042&subd=fuzzyworld&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>More of the <a href="http://www.flickr.com/photos/fuzzygamer/sets/72157622512137868/" target="_blank">Flickr project to motivate me</a>. Managed to upload 10 more Vegas photos (8 public) to Flickr. This one wasn&#8217;t too bad.</p>
<p style="text-align:center;"><a title="Building under construction by FuzzyGamer, on Flickr" href="http://www.flickr.com/photos/fuzzygamer/3986557506/" target="_blank"><img class="aligncenter" style="border:1px solid black;" src="http://farm3.static.flickr.com/2614/3986557506_993c6862e1.jpg" alt="Building under construction" width="334" height="500" /></a></p>
Posted in Pictures  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fuzzyworld.wordpress.com/1042/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fuzzyworld.wordpress.com/1042/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fuzzyworld.wordpress.com/1042/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fuzzyworld.wordpress.com/1042/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fuzzyworld.wordpress.com/1042/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fuzzyworld.wordpress.com/1042/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fuzzyworld.wordpress.com/1042/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fuzzyworld.wordpress.com/1042/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fuzzyworld.wordpress.com/1042/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fuzzyworld.wordpress.com/1042/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fuzzyworld.wordpress.com&blog=1406657&post=1042&subd=fuzzyworld&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fuzzyworld.wordpress.com/2009/10/05/building-under-construction-in-vegas/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8054cedcbe193a47f3bbda06e456bac9?s=96&#38;d=identicon" medium="image">
			<media:title type="html">FuzzyGamer</media:title>
		</media:content>

		<media:content url="http://farm3.static.flickr.com/2614/3986557506_993c6862e1.jpg" medium="image">
			<media:title type="html">Building under construction</media:title>
		</media:content>
	</item>
	</channel>
</rss>