<?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>Random thoughts of a random guy</title>
	<atom:link href="http://kittysniper.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kittysniper.wordpress.com</link>
	<description>Like the title says, a blog with my random thoughts about everything in life.</description>
	<lastBuildDate>Sat, 26 Feb 2011 11:44:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='kittysniper.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Random thoughts of a random guy</title>
		<link>http://kittysniper.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://kittysniper.wordpress.com/osd.xml" title="Random thoughts of a random guy" />
	<atom:link rel='hub' href='http://kittysniper.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Silverlight 4 Printing API</title>
		<link>http://kittysniper.wordpress.com/2009/11/22/silverlight-4-printing-api/</link>
		<comments>http://kittysniper.wordpress.com/2009/11/22/silverlight-4-printing-api/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 20:55:54 +0000</pubDate>
		<dc:creator>kittysn1per</dc:creator>
				<category><![CDATA[Silverlight 4]]></category>
		<category><![CDATA[Printing]]></category>

		<guid isPermaLink="false">http://kittysniper.wordpress.com/?p=27</guid>
		<description><![CDATA[One of the new features of Silverlight 4 is the printing API. This is really a huge thing because printing in previous version was really pain to do. So I decided to play around with the API to see what the possibilities are. In my example I created a &#8220;Hello World&#8221; application that contains a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kittysniper.wordpress.com&amp;blog=5878413&amp;post=27&amp;subd=kittysniper&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p lang="en-US">One of the new features of Silverlight 4 is the printing API. This is really a huge thing because printing in previous version was really pain to do. So I decided to play around with the API to see what the possibilities are.</p>
<p lang="en-US">In my example I created a &#8220;Hello World&#8221; application that contains a textblock and a button. By pressing the button the system will print the screen.</p>
<p>XAML:</p>
<p lang="en-US">&lt;Grid x:Name=&#8221;LayoutRoot&#8221; Background=&#8221;White&#8221;&gt;</p>
<p lang="en-US">&lt;Grid.RowDefinitions&gt;</p>
<p lang="en-US">&lt;RowDefinition Height=&#8221;auto&#8221; /&gt;</p>
<p lang="en-US">&lt;RowDefinition Height=&#8221;auto&#8221; /&gt;</p>
<p lang="en-US">&lt;/Grid.RowDefinitions&gt;</p>
<p lang="en-US">&lt;StackPanel Margin=&#8221;10 &#8221; Orientation=&#8221;Horizontal&#8221; Grid.Row=&#8221;0&#8243; &gt;</p>
<p lang="en-US">&lt;TextBlock Name=&#8221;txtTextToPrint&#8221; Margin=&#8221;5&#8243; Text=&#8221;Hello World! I am printing from Silverlight.&#8221;&gt;&lt;/TextBlock&gt;</p>
<p lang="en-US">&lt;Button Click=&#8221;Button_Click&#8221; Content=&#8221;Print&#8221;&gt;&lt;/Button&gt;</p>
<p lang="en-US">&lt;/StackPanel&gt;</p>
<p lang="en-US">&lt;/Grid&gt;</p>
<p lang="en-US">
<p lang="en-US">Code behind:</p>
<p lang="en-US">private void Button_Click(object sender, RoutedEventArgs e)</p>
<p>{</p>
<p>PrintDocument pd = new PrintDocument();</p>
<p>pd.DocumentName = &#8220;SilverlightPrintTest&#8221;;</p>
<p lang="en-US">pd.PrintPage += new EventHandler&lt;PrintPageEventArgs&gt;(pd_PrintPage);</p>
<p lang="en-US">pd.Print();</p>
<p lang="en-US">}</p>
<p lang="en-US">void pd_PrintPage(object sender, PrintPageEventArgs e)</p>
<p lang="en-US">{</p>
<p>e.PageVisual = LayoutRoot;</p>
<p lang="en-US">}</p>
<p lang="en-US">Print output :</p>
<p lang="en-US"><a href="http://kittysniper.files.wordpress.com/2009/11/printing-silverlight41.png"><img class="alignnone size-medium wp-image-33" title="printing silverlight4" src="http://kittysniper.files.wordpress.com/2009/11/printing-silverlight41.png?w=300&#038;h=54" alt="" width="300" height="54" /></a></p>
<p lang="en-US">
<p lang="en-US">This code lets me print the whole screen that you see because I set the PageVisual = LayoutRoot. The PageVisual property excepts a UIElement so if you only want to print a specific control then you do e.PageVisual = nameOfYourControl. In fact in my sample the LayoutRoot is the root UEIlement of the page.</p>
<p>In my sample  I use the new PrintDocument class. This class is located in the System.Windows.Printing namespace.  The most important things on this class are the following 3 events:</p>
<ul type="disc">
<li>PrintPage: occurs each time a      page is printing.</li>
<li>StartPrint: occurs before the      PrintPage event.</li>
<li>EndPrint: occurs after the      PrintPage event. Is mostly used to handle any errors that occurred during      printing.</li>
</ul>
<p>Mike Taulty has a more in depth sample in this blog post: <a href="http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2009/11/18/silverlight-4-rough-notes-printing.aspx">http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2009/11/18/silverlight-4-rough-notes-printing.aspx</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kittysniper.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kittysniper.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kittysniper.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kittysniper.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kittysniper.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kittysniper.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kittysniper.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kittysniper.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kittysniper.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kittysniper.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kittysniper.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kittysniper.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kittysniper.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kittysniper.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kittysniper.wordpress.com&amp;blog=5878413&amp;post=27&amp;subd=kittysniper&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kittysniper.wordpress.com/2009/11/22/silverlight-4-printing-api/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6fa7edc30ef694513343490d0bc52ed8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kittysn1per</media:title>
		</media:content>

		<media:content url="http://kittysniper.files.wordpress.com/2009/11/printing-silverlight41.png?w=300" medium="image">
			<media:title type="html">printing silverlight4</media:title>
		</media:content>
	</item>
		<item>
		<title>ASP.NET MVC 2 preview 1 released</title>
		<link>http://kittysniper.wordpress.com/2009/08/06/aspnet-mvc2-preview1-release/</link>
		<comments>http://kittysniper.wordpress.com/2009/08/06/aspnet-mvc2-preview1-release/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 20:02:47 +0000</pubDate>
		<dc:creator>kittysn1per</dc:creator>
				<category><![CDATA[ASP.NET MVC]]></category>

		<guid isPermaLink="false">http://kittysniper.wordpress.com/?p=21</guid>
		<description><![CDATA[Microsoft has released ASP.NET MVC 2 preview 1. I am quite late with the announcement but I have been busy. There are some nice features in this release like: Templated Helpers Areas Support for DataAnnotations Attributes I didn&#8217;t had the time yet to explore the new release but you can find more details on Phil [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kittysniper.wordpress.com&amp;blog=5878413&amp;post=21&amp;subd=kittysniper&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Microsoft has released ASP.NET MVC 2 preview 1. I am quite late with the announcement but I have been busy. There are some nice features in this release like:</p>
<ul>
<li>Templated Helpers</li>
<li>Areas</li>
<li>Support for DataAnnotations Attributes</li>
</ul>
<p>I didn&#8217;t had the time yet to explore the new release but you can find more details on Phil Haack blog. Here is the <a href="http://haacked.com/archive/2009/07/30/asp.net-mvc-released.aspx">link</a>. I will post more about this subject in the future.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kittysniper.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kittysniper.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kittysniper.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kittysniper.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kittysniper.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kittysniper.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kittysniper.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kittysniper.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kittysniper.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kittysniper.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kittysniper.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kittysniper.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kittysniper.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kittysniper.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kittysniper.wordpress.com&amp;blog=5878413&amp;post=21&amp;subd=kittysniper&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kittysniper.wordpress.com/2009/08/06/aspnet-mvc2-preview1-release/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6fa7edc30ef694513343490d0bc52ed8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kittysn1per</media:title>
		</media:content>
	</item>
		<item>
		<title>ASP.NET MVC Tip of the day</title>
		<link>http://kittysniper.wordpress.com/2009/07/30/asp-net-mvc-tip-of-the-day/</link>
		<comments>http://kittysniper.wordpress.com/2009/07/30/asp-net-mvc-tip-of-the-day/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 19:26:07 +0000</pubDate>
		<dc:creator>kittysn1per</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[MvcBuildViews]]></category>

		<guid isPermaLink="false">http://kittysniper.wordpress.com/?p=13</guid>
		<description><![CDATA[By default ASP.NET MVC doesn&#8217;t compile views. So if there are compile errors in your .aspx or .ascx you will see them at runtime which can be very painful . Luckily there is an option in your Visual Studio 2008 project file that lets you compile views. This option is called MvcBuildViews. The above screenshot [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kittysniper.wordpress.com&amp;blog=5878413&amp;post=13&amp;subd=kittysniper&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By default ASP.NET MVC doesn&#8217;t compile views. So if there are compile errors in your .aspx or .ascx you will see them at runtime which can be very painful <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . Luckily there is an option in your Visual Studio 2008 project file that lets you compile views. This option is called MvcBuildViews.</p>
<div id="attachment_14" class="wp-caption alignnone" style="width: 1034px"><img class="size-large wp-image-14" title="projectfile" src="http://kittysniper.files.wordpress.com/2009/07/projectfile.jpg?w=1024&#038;h=225" alt="Visual Studio project file" width="1024" height="225" /><p class="wp-caption-text">Visual Studio project file</p></div>
<p>The above screenshot shows the content of a Visual Studio 2008 project file. You just have to open it with a text editor (example: Notepad). Now if you set the value of property MvcBuildView to true the compiler will compile your views.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kittysniper.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kittysniper.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kittysniper.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kittysniper.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kittysniper.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kittysniper.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kittysniper.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kittysniper.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kittysniper.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kittysniper.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kittysniper.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kittysniper.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kittysniper.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kittysniper.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kittysniper.wordpress.com&amp;blog=5878413&amp;post=13&amp;subd=kittysniper&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kittysniper.wordpress.com/2009/07/30/asp-net-mvc-tip-of-the-day/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6fa7edc30ef694513343490d0bc52ed8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kittysn1per</media:title>
		</media:content>

		<media:content url="http://kittysniper.files.wordpress.com/2009/07/projectfile.jpg?w=1024" medium="image">
			<media:title type="html">projectfile</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;Project type is not supported by this installation&#8221; problem</title>
		<link>http://kittysniper.wordpress.com/2009/07/17/project-type-is-not-supported-by-this-installation-problem/</link>
		<comments>http://kittysniper.wordpress.com/2009/07/17/project-type-is-not-supported-by-this-installation-problem/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 20:46:42 +0000</pubDate>
		<dc:creator>kittysn1per</dc:creator>
				<category><![CDATA[Visual Studio 2008]]></category>
		<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://kittysniper.wordpress.com/?p=8</guid>
		<description><![CDATA[Recently I had a problem with my Visual Studio 2008. The problem was that I couldn&#8217;t open any ASP.NET Web Application projects. The error message I received when trying was the following: &#8220;Project type is not supported by this installation&#8221;. After some googling I found the following command: &#8220;devenv /setup&#8221;. So what does this command [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kittysniper.wordpress.com&amp;blog=5878413&amp;post=8&amp;subd=kittysniper&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently I had a problem with my Visual Studio 2008. The problem was that I couldn&#8217;t open any ASP.NET Web Application projects. The error message I received when trying was the following: &#8220;Project type is not supported by this installation&#8221;. After some googling I found the following command: &#8220;devenv /setup&#8221;. So what does this command do? Actually it resets your VSPackages and also you project templates. For me it fixed the problem because my project template returned. You need to type this command in the Visual Studio 2008 Command Prompt.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kittysniper.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kittysniper.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kittysniper.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kittysniper.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kittysniper.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kittysniper.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kittysniper.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kittysniper.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kittysniper.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kittysniper.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kittysniper.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kittysniper.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kittysniper.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kittysniper.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kittysniper.wordpress.com&amp;blog=5878413&amp;post=8&amp;subd=kittysniper&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kittysniper.wordpress.com/2009/07/17/project-type-is-not-supported-by-this-installation-problem/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6fa7edc30ef694513343490d0bc52ed8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kittysn1per</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello World!</title>
		<link>http://kittysniper.wordpress.com/2008/12/17/hello-world/</link>
		<comments>http://kittysniper.wordpress.com/2008/12/17/hello-world/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 08:12:48 +0000</pubDate>
		<dc:creator>kittysn1per</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kittysniper.wordpress.com/?p=3</guid>
		<description><![CDATA[This is my first wordpress post! I hope many more will come<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kittysniper.wordpress.com&amp;blog=5878413&amp;post=3&amp;subd=kittysniper&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is my first wordpress post! I hope many more will come <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kittysniper.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kittysniper.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kittysniper.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kittysniper.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kittysniper.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kittysniper.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kittysniper.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kittysniper.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kittysniper.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kittysniper.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kittysniper.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kittysniper.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kittysniper.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kittysniper.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kittysniper.wordpress.com&amp;blog=5878413&amp;post=3&amp;subd=kittysniper&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kittysniper.wordpress.com/2008/12/17/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6fa7edc30ef694513343490d0bc52ed8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kittysn1per</media:title>
		</media:content>
	</item>
	</channel>
</rss>
