<?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>Krichie - That SharePoint Guy</title>
	<atom:link href="http://blog.krichie.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.krichie.com</link>
	<description>It's a household name</description>
	<lastBuildDate>Tue, 16 Feb 2010 18:14:44 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='blog.krichie.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/3619741251beccd2366b17c7698737c6?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>Krichie - That SharePoint Guy</title>
		<link>http://blog.krichie.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.krichie.com/osd.xml" title="Krichie &#8211; That SharePoint Guy" />
	<atom:link rel='hub' href='http://blog.krichie.com/?pushpress=hub'/>
		<item>
		<title>Determining the Configuration Database in a SharePoint 2007 Farm</title>
		<link>http://blog.krichie.com/2010/02/17/determining-the-configuration-database-in-a-sharepoint-2007-farm/</link>
		<comments>http://blog.krichie.com/2010/02/17/determining-the-configuration-database-in-a-sharepoint-2007-farm/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 18:14:44 +0000</pubDate>
		<dc:creator>Keith Richie</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://krichie.wordpress.com/2010/02/17/determining-the-configuration-database-in-a-sharepoint-2007-farm/</guid>
		<description><![CDATA[For whatever reason you may have, you may find the need to identify the Configuration Database in your server farm programmatically.&#160; The problem is that it is not directly exposed for consumption via the object model.&#160; What I mean by this, is that there is no single identifiable property that tells you that the database [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=131&subd=krichie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>For whatever reason you may have, you may find the need to identify the Configuration Database in your server farm programmatically.&#160; The problem is that it is not directly exposed for consumption via the object model.&#160; What I mean by this, is that there is no single identifiable property that tells you that the database your enumerating is in fact the Configuration Database.</p>
<p>In V2, it was a simple matter of using the <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.administration.spconfigdatabase_members.aspx" target="_blank">SPConfigDatabase</a> object within the Microsoft.SharePoint.Administration namespace, but with V3, this was marked obsolete, with no reference to&#160; what you can use in V3.&#160; Another issue is that the new object type for the configuration database (SPConfigurationDatabase) is not exposed publicly in the object model.</p>
<p>I’ve seen a few posts that drive you to towards deriving it using crazy nested reflection by first starting with the ProcessIdentity object of the farms TimerService, but I recommend a clearer and simpler approach as follows</p>
<blockquote><pre>// Code Begins</pre>
<pre>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.SharePoint;
using Microsoft.SharePoint.Administration;

namespace SPTest
{
    class Program
    {
        static void Main(string[] args)
        {

            // Get the Database Service class within the farm
            SPDatabaseService dbService = SPFarm.Local.Services.GetValue();

            // Enumerate the service instances
            foreach(SPDatabaseServiceInstance instance in dbService.Instances)
            {
                // enumerate the databases within this service instance
                foreach (SPDatabase database in instance.Databases)
                {
                    Console.WriteLine(&quot;Database Server: {0} :: Database Name: {1}&quot;,database.Server.Name, database.Name);

                    object oDB = database.GetType();

                    Console.WriteLine(&quot;Object Type: {0}&quot;, oDB.ToString());

                    // If the objects type is &quot;Microsoft.SharePoint.Administration.SPConfigurationDatabase, you've found the Config DB.
                    if (oDB.ToString().CompareTo(&quot;Microsoft.SharePoint.Administration.SPConfigurationDatabase&quot;) == 0)
                        Console.WriteLine(&quot;You found the config database oDB.ToString(): {0} &quot;,oDB.ToString());
                }
            }
        }
    }
}</pre>
<pre>// Code Ends
 </pre>
</blockquote>
<p>HTH!</p>
<p> &#8211; Keith</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/krichie.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/krichie.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/krichie.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/krichie.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/krichie.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/krichie.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/krichie.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/krichie.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/krichie.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/krichie.wordpress.com/131/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=131&subd=krichie&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.krichie.com/2010/02/17/determining-the-configuration-database-in-a-sharepoint-2007-farm/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7c8e2add071b299f0e1709afb5055ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Keith Richie</media:title>
		</media:content>
	</item>
		<item>
		<title>Help me welcome Paul Stork to the ShareSquared team!</title>
		<link>http://blog.krichie.com/2010/01/23/help-me-welcome-paul-stork-to-the-sharesquared-team/</link>
		<comments>http://blog.krichie.com/2010/01/23/help-me-welcome-paul-stork-to-the-sharesquared-team/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 19:17:57 +0000</pubDate>
		<dc:creator>Keith Richie</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://krichie.wordpress.com/2010/01/23/help-me-welcome-paul-stork-to-the-sharesquared-team/</guid>
		<description><![CDATA[ Please help me welcome Paul Stork to the ShareSquared Team!!!
During my tenure with Barracuda, I had the pleasure of meeting and working with Paul a few times, and it’s exciting to be working with him again  .
You can read his announcement at http://sharepoint.mindsharpblogs.com/PaulS/default.aspx
Welcome Aboard Paul!
 &#8211; Keith
       [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=130&subd=krichie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://krichie.files.wordpress.com/2010/01/s2logo1.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="s2logo[1]" border="0" alt="s2logo[1]" src="http://krichie.files.wordpress.com/2010/01/s2logo1_thumb.gif?w=123&#038;h=40" width="123" height="40" /></a> Please help me welcome Paul Stork to the ShareSquared Team!!!</p>
<p>During my tenure with Barracuda, I had the pleasure of meeting and working with Paul a few times, and it’s exciting to be working with him again <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>You can read his announcement at <a title="http://sharepoint.mindsharpblogs.com/PaulS/default.aspx" href="http://sharepoint.mindsharpblogs.com/PaulS/default.aspx">http://sharepoint.mindsharpblogs.com/PaulS/default.aspx</a></p>
<p>Welcome Aboard Paul!</p>
<p> &#8211; Keith</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/krichie.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/krichie.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/krichie.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/krichie.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/krichie.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/krichie.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/krichie.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/krichie.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/krichie.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/krichie.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=130&subd=krichie&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.krichie.com/2010/01/23/help-me-welcome-paul-stork-to-the-sharesquared-team/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7c8e2add071b299f0e1709afb5055ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Keith Richie</media:title>
		</media:content>

		<media:content url="http://krichie.files.wordpress.com/2010/01/s2logo1_thumb.gif" medium="image">
			<media:title type="html">s2logo[1]</media:title>
		</media:content>
	</item>
		<item>
		<title>2010 &#8211; The Year I make Contact</title>
		<link>http://blog.krichie.com/2010/01/09/2010-the-year-i-make-contact/</link>
		<comments>http://blog.krichie.com/2010/01/09/2010-the-year-i-make-contact/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 18:22:50 +0000</pubDate>
		<dc:creator>Keith Richie</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://krichie.wordpress.com/2010/01/09/2010-the-year-i-make-contact/</guid>
		<description><![CDATA[It’s another new year again
I told myself I was going to watch 2010: The Year We Make Contact on New Years Eve weekend, but I didn’t.&#160; If you haven’t seen it, it’s movie based on Arthur C. Clare’s second part of his 4 part Odyssey series beginning with 2001: A Space Odyssey. (I’ve read all [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=127&subd=krichie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<h2>It’s another new year again</h2>
<p>I told myself I was going to watch <a href="http://en.wikipedia.org/wiki/2010_(film)" target="_blank">2010: The Year We Make Contact</a> on New Years Eve weekend, but I didn’t.&#160; If you haven’t seen it, it’s movie based on Arthur C. Clare’s second part of his 4 part Odyssey series beginning with <a href="http://en.wikipedia.org/wiki/2001:_A_Space_Odyssey_(film)" target="_blank">2001: A Space Odyssey</a>. (I’ve read all four parts of the series, and they’re definitely worth the read btw).&#160; The reason I bring this up, is that I always love&#160; watching movies that predict where we’ll be at a given point in time.&#160; They always seem to predict we’ll be further along than where we actually wind up.&#160; The same goes for me over the past few years and where I predicted I would be at this point in my life.</p>
<p>What I’m about to say, is not to attract people to a perceived pity party, because that’s definitely not what this post is all about.&#160; I’m just giving some background on what’s happened and what I plan to do about it <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ; to set things in motion for myself; to reflect on where I’ve been;where I plan to go, and to predict where I’ll be in the future.</p>
<h2>Pre 2007</h2>
<p>Working for Microsoft was an absolute pleasure, and my decision to move to SharePoint vs. Exchange/Outlook was probably the most important decision I ever made in my professional career.&#160;&#160; I absolutely loved working with this product.&#160; It gave me the opportunity to to slowly move back into a development “Like” position which was something I truly missed.&#160; So many great things were going on such as:</p>
<ul>
<li>My oldest daughter had recently graduated High School, and was attending College.&#160; </li>
<li>My Wife at the time, and I had recently adopted a second child.&#160; </li>
<li>I began to realize the impact that some of the technical contributions I made to the community was quite larger than I had anticipated</li>
<li>I finally got back to writing/composing music and publishing a few CD’s</li>
<li>Ideas for blog posts; helping the community; and inspiration was plentiful.</li>
</ul>
<p>There were great things happening, and I think 2005/2006 were probably the best years of my life up to that time.</p>
<p>Mind you, there were certainly things I was NOT happy for such as</p>
<ul>
<li>Working literally an average of 70 hours a week most times</li>
<li>Life&#8217;s own dramatic interruptions</li>
<li>Trying to launch a new Church</li>
</ul>
<h2>2007</h2>
<p>My desire to get back into full time development was really making me consider what I wanted to do with the rest of my life, and eventually I made the decision to leave Microsoft, and then a flood of life impacting things occurred.</p>
<ul>
<li>My oldest daughter decided to Join the Army.&#160; Something I’m VERY PROUD OF, but was truly a scary time;</li>
<li>My marriage technically ended, and I began the process of going through a divorce</li>
<li>My oldest daughter was deployed to IRAQ</li>
<li>What I thought was going to be an amazing career move for me, turned out not to be quite so; I could see myself drifting further and further away from SharePoint.</li>
<li>People I thought were “True” friends, basically showed their true colors.&#160; When you confide in someone and they immediately turn around and disclose things to others, is the absolute worst thing you can do, and when you do it to me, well….. Don’t bother speaking to me again buddy <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</li>
<li>People I “Knew” were “True” friends, also confirmed their true colors.&#160; They proved themselves to be true friends; and my list of friends grew smaller, but also closer and more tight.</li>
<li>My desires and aspirations and love of life were at an all time low.</li>
<li>Most people didn’t have encouraging things to say; and I was constantly brought down rather than being encouraged.</li>
</ul>
<p>Where 2005/2006 were the best years of my life, 2007 was probably the worst.</p>
<p>This was NOT where I predicted myself to be.</p>
<h2>2008</h2>
<p>2008 wasn’t entirely horrible; but it was certainly a close runner up to 2007.</p>
<ul>
<li>My mothers health began to deteriorate</li>
<li>I was doing literally NO SharePoint work.</li>
<li>I was living in a home I did not want to be at nor even wanted, but due to the economy, couldn’t do a thing about.</li>
<li>Other pathetic things I don’t even care to mention <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>My divorce was finalized</li>
<li>I did however begin to make some new close friendships, but learned to keep my guard up even higher.</li>
</ul>
<p>So again I’m not saying these things to attract people to a perceived pity party.&#160; I’m just simply putting them out there to lead up to something later.</p>
<h2>2009</h2>
<p>Finally, things started turning around.&#160; I had plenty of time to do plenty of thinking in the previous years and did the following things</p>
<ul>
<li>Took time to inspect and choose a job I felt I could really excel at.</li>
<li>Moved out of my house for a brief period.&#160; Initially to sell it; but primarily to just start anew.</li>
<li>Moved “back” to my house <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</li>
<li>Started investing back into “Me, something I had not had the opportunity to do for a very, very long time.</li>
<li>Refurnished a majority of my home, to make it more “me”.</li>
<li>Buried a closet full of hatchets.</li>
<li>Made lots of new friends who believe in “Joy” and “Humor” like myself and that sometimes you just can’t take some things in life so darn seriously!.</li>
</ul>
<p>Things were getting better, and I began to make predictions about the future again.</p>
<h2>2010</h2>
<p>Well now 2010 is upon us.&#160; Although I’m not completely where I wanted to be at this stage in my life, I have a new found hope and belief in the future.</p>
<p>Moving forward I plan to get back to what I once was</p>
<ul>
<li>A Joyful; Helpful; Community Oriented and driven SharePoint expert.</li>
<li>Get back into my music once again</li>
<li>Continue to be the best father to two great children I can possibly be.</li>
</ul>
<p>Things were not great in the past, but it’s time to put those things aside and move on!&#160; I want this year to be “The year that I make Contact” once again, and let you know&#160; I’m still here and quite alive!</p>
<p>- Keith</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/krichie.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/krichie.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/krichie.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/krichie.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/krichie.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/krichie.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/krichie.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/krichie.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/krichie.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/krichie.wordpress.com/127/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=127&subd=krichie&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.krichie.com/2010/01/09/2010-the-year-i-make-contact/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7c8e2add071b299f0e1709afb5055ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Keith Richie</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint BI and PowerPivot</title>
		<link>http://blog.krichie.com/2009/10/27/sharepoint-bi-and-powerpivot/</link>
		<comments>http://blog.krichie.com/2009/10/27/sharepoint-bi-and-powerpivot/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 17:57:41 +0000</pubDate>
		<dc:creator>Keith Richie</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://krichie.wordpress.com/2009/10/27/sharepoint-bi-and-powerpivot/</guid>
		<description><![CDATA[The 2009 SharePoint Conference was a total blast.&#160; For those who were not able to attend, Microsoft also announced PowerPivot.&#160; With PowerPivot, IT Managers can empower business users to create and share Excel 2010 workbook applications through SharePoint 2010.
Rob Collie, one of the founding engineers behind PowerPivot has started a blog here and has announced [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=126&subd=krichie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>The 2009 SharePoint Conference was a total blast.&#160; For those who were not able to attend, Microsoft also announced <a href="http://www.powerpivot.com/" target="_blank">PowerPivot</a>.&#160; With <a href="http://www.powerpivot.com/" target="_blank">PowerPivot</a>, IT Managers can empower business users to create and share Excel 2010 workbook applications through <a href="http://sharepoint2010.microsoft.com/Pages/default.aspx" target="_blank">SharePoint 2010</a>.</p>
<p>Rob Collie, one of the founding engineers behind PowerPivot has started a <a href="http://powerpivotpro.com/" target="_blank">blog here</a> and has announced the &quot;<a href="http://powerpivotpro.com/2009/10/27/announcing-the-great-football-project/" target="_blank">Great Football Project</a>” as a non-demoware PowerPivot solution, from start to finish where he’ll be taking a hardcore BI project from his past and re-implement it using PowerPivot.</p>
<p>I myself will be diving deep into PowerPivot over the next few weeks, and will detail all I can as the weeks progress.</p>
<p>Until then, be sure to visit the following links to get an overview of PowerPivot and Rob Collie</p>
<ul>
<li><a href="http://www.powerpivot.com/" target="_blank">PowerPivot</a></li>
<li><a href="http://www.microsoft.com/sqlserver/2008/en/us/powerpivot.aspx" target="_blank">Microsoft SQL Server PowerPivot for Excel 2010</a></li>
<li><a href="http://powerpivotpro.com/" target="_blank">PowerPivotPro featuring Rob Collie</a></li>
</ul>
<p>Cheers!</p>
<p> &#8211; Keith</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/krichie.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/krichie.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/krichie.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/krichie.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/krichie.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/krichie.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/krichie.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/krichie.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/krichie.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/krichie.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=126&subd=krichie&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.krichie.com/2009/10/27/sharepoint-bi-and-powerpivot/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7c8e2add071b299f0e1709afb5055ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Keith Richie</media:title>
		</media:content>
	</item>
		<item>
		<title>Whoa! I&#8217;m listed in the Zune Marketplace!</title>
		<link>http://blog.krichie.com/2009/07/17/whoa-im-listed-in-the-zune-marketplace/</link>
		<comments>http://blog.krichie.com/2009/07/17/whoa-im-listed-in-the-zune-marketplace/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 21:44:54 +0000</pubDate>
		<dc:creator>Keith Richie</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://krichie.wordpress.com/2009/07/17/whoa-im-listed-in-the-zune-marketplace/</guid>
		<description><![CDATA[Wow, just checked and saw this, I’m now listed in the Zune Marketplace.
http://social.zune.net/artist/Keith-Richie/79d40c00-0600-11db-89ca-0019b92a3933/albums
One thing that isn’t listed is my La famille du solénoïde release, But of course it’s available on iTunes here, as with the rest of my releases.
&#60;sigh&#62; I plan to get back to my music too, I’ve just had a very busy past [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=124&subd=krichie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Wow, just checked and saw this, I’m now listed in the Zune Marketplace.</p>
<p><a title="http://social.zune.net/artist/Keith-Richie/79d40c00-0600-11db-89ca-0019b92a3933/albums" href="http://social.zune.net/artist/Keith-Richie/79d40c00-0600-11db-89ca-0019b92a3933/albums">http://social.zune.net/artist/Keith-Richie/79d40c00-0600-11db-89ca-0019b92a3933/albums</a></p>
<p>One thing that isn’t listed is my <a href="http://www.indieopolis.net/Pages/ProductDetails.aspx?IPID=IPID0009">La famille du solénoïde</a> release, But of course it’s available on <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?id=276026013&amp;s=143441">iTunes here</a>, as with the rest of my releases.</p>
<p>&lt;sigh&gt; I plan to get back to my music too, I’ve just had a very busy past couple of years, and no time or inspiration for it.</p>
<p>Anyways, just wanted to note the whole listing in the Zune Marketplace real quick, cause it was way too exciting!</p>
<p>- Keith</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/krichie.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/krichie.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/krichie.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/krichie.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/krichie.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/krichie.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/krichie.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/krichie.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/krichie.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/krichie.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=124&subd=krichie&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.krichie.com/2009/07/17/whoa-im-listed-in-the-zune-marketplace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7c8e2add071b299f0e1709afb5055ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Keith Richie</media:title>
		</media:content>
	</item>
		<item>
		<title>Public update for the Service Pack 2 expiration date issue</title>
		<link>http://blog.krichie.com/2009/06/26/public-update-for-the-service-pack-2-expiration-date-issue/</link>
		<comments>http://blog.krichie.com/2009/06/26/public-update-for-the-service-pack-2-expiration-date-issue/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 17:13:46 +0000</pubDate>
		<dc:creator>Keith Richie</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://krichie.wordpress.com/2009/06/26/public-update-for-the-service-pack-2-expiration-date-issue/</guid>
		<description><![CDATA[Head up!&#160;&#160; The update to the SharePoint Service Pack 2 expiration date issue is now available.
Direct download links:

x86: http://download.microsoft.com/download/2/F/5/2F51AB71-1325-49D2-9CB9-18DEC4780E99/office2007-kb971620-fullfile-x86-glb.exe
x64: http://download.microsoft.com/download/5/B/B/5BBD34A9-C528-42B0-8A5F-9A8997B25C32/office2007-kb971620-fullfile-x64-glb.exe

For more information on the original issue, see the following posting on the SharePoint Team Blog: 
Attention: Important Information on Service Pack 2
Cheers!
 &#8211; Keith
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=123&subd=krichie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Head up!&#160;&#160; The update to the SharePoint Service Pack 2 expiration date issue is now available.</p>
<p>Direct download links:</p>
<ul>
<li>x86: <a href="http://download.microsoft.com/download/2/F/5/2F51AB71-1325-49D2-9CB9-18DEC4780E99/office2007-kb971620-fullfile-x86-glb.exe">http://download.microsoft.com/download/2/F/5/2F51AB71-1325-49D2-9CB9-18DEC4780E99/office2007-kb971620-fullfile-x86-glb.exe</a></li>
<li>x64: <a href="http://download.microsoft.com/download/5/B/B/5BBD34A9-C528-42B0-8A5F-9A8997B25C32/office2007-kb971620-fullfile-x64-glb.exe">http://download.microsoft.com/download/5/B/B/5BBD34A9-C528-42B0-8A5F-9A8997B25C32/office2007-kb971620-fullfile-x64-glb.exe</a></li>
</ul>
<p>For more information on the original issue, see the following posting on the SharePoint Team Blog: </p>
<p><a title="http://blogs.msdn.com/sharepoint/archive/2009/05/21/attention-important-information-on-service-pack-2.aspx" href="http://blogs.msdn.com/sharepoint/archive/2009/05/21/attention-important-information-on-service-pack-2.aspx">Attention: Important Information on Service Pack 2</a></p>
<p>Cheers!</p>
<p> &#8211; Keith</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/krichie.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/krichie.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/krichie.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/krichie.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/krichie.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/krichie.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/krichie.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/krichie.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/krichie.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/krichie.wordpress.com/123/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=123&subd=krichie&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.krichie.com/2009/06/26/public-update-for-the-service-pack-2-expiration-date-issue/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7c8e2add071b299f0e1709afb5055ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Keith Richie</media:title>
		</media:content>
	</item>
		<item>
		<title>What to blog about</title>
		<link>http://blog.krichie.com/2009/05/28/what-to-blog-about/</link>
		<comments>http://blog.krichie.com/2009/05/28/what-to-blog-about/#comments</comments>
		<pubDate>Thu, 28 May 2009 12:41:42 +0000</pubDate>
		<dc:creator>Keith Richie</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://krichie.wordpress.com/2009/05/28/what-to-blog-about/</guid>
		<description><![CDATA[Since I started my new job, I’ve been struggling to find topics to discuss that have not already been discussed before.&#160; 
I’m not the kind of guy to just re-hash what someone else has said unless I can add additional value to it.&#160; When I do that, I always start out with “First read what [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=121&subd=krichie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Since I started my <a href="http://blog.krichie.com/2009/02/18/im-such-a-square-and-proud-of-it/">new job</a>, I’ve been struggling to find topics to discuss that have not already been discussed before.&#160; </p>
<p>I’m not the kind of guy to just re-hash what someone else has said unless I can add additional value to it.&#160; When I do that, I always start out with “First read what so and so has said about x”.&#160; There are too many of the content thieves out there, and they really provide no real value back to the community.&#160;&#160; They’re just going for self gratification in subscribers, etc.&#160; I also don’t like just blasting links as I discover them just to make a blog post, unless they are significant.&#160; Besides, if I come across a cool article these days, I just dump it on twitter.&#160; What I’m saying, is that when I post something, I want to really provide extreme value.</p>
<p>What I’ve realized, is that the things I do want to blog about require too much time to sit down in one setting to post, and thus I never get them done, or take the time to finish them and thus, this blog just gets extremely stale.&#160;&#160; Also, I’ve noticed a lot of blog postings recently on very very short samples, about things I figured a lot of people would know.&#160;&#160; But I’ve had to take a step back and realize that not all my followers know all the gritty details.</p>
<p>So…From now on, I’m going to blog about just what’s on my mind, what I learned, what I might be able to share.&#160;&#160; There may be some overlap in things that were already posted, but I’ve got to stop worrying about “It’s been said before” because I have to realize that my view/insight into the problem/solution may in fact add value not otherwise stated.</p>
<p>- Keith</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/krichie.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/krichie.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/krichie.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/krichie.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/krichie.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/krichie.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/krichie.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/krichie.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/krichie.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/krichie.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=121&subd=krichie&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.krichie.com/2009/05/28/what-to-blog-about/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7c8e2add071b299f0e1709afb5055ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Keith Richie</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Certified Master for SharePoint Server 2007 at ShareSquared</title>
		<link>http://blog.krichie.com/2009/05/04/microsoft-certified-master-for-sharepoint-server-2007-at-sharesquared/</link>
		<comments>http://blog.krichie.com/2009/05/04/microsoft-certified-master-for-sharepoint-server-2007-at-sharesquared/#comments</comments>
		<pubDate>Mon, 04 May 2009 12:26:18 +0000</pubDate>
		<dc:creator>Keith Richie</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://krichie.wordpress.com/2009/05/04/microsoft-certified-master-for-sharepoint-server-2007-at-sharesquared/</guid>
		<description><![CDATA[Maurice and I have been friends for quite awhile. While at Microsoft, he and I collaborated while working through critical SharePoint customer issues, debated on bugs, discussed SharePoint tools, etc.&#160; After both of our departures from Microsoft, we continued to keep in contact sharing ideas and thoughts about the product.&#160;&#160; I was excited when I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=120&subd=krichie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Maurice and I have been friends for quite awhile. While at Microsoft, he and I collaborated while working through critical SharePoint customer issues, debated on bugs, discussed SharePoint tools, etc.&#160; After both of our departures from Microsoft, we continued to keep in contact sharing ideas and thoughts about the product.&#160;&#160; I was excited when I came on board with <a href="http://www.sharesquared.com" target="_blank">ShareSquared</a> to not only be working with my friend again, but also to expand my horizons and work with a great bunch of talented folks.</p>
<p>Maurice has just completed the Microsoft Certified Masters training for SharePoint Server 2007 and was awarded the certification along with a small group of elite personnel. Now ShareSquared has a Microsoft Certified Master for SharePoint Server 2007 in our group, and I’m extremely happy for my company and friend.</p>
<p>Maurice did a great write-up on <a href="http://www.bluedoglimited.com/SharePointThoughts/ViewPost.aspx?ID=301" target="_blank">his perspective of the program here</a>, and I encourage you to give it a read if you are considering this for your future.&#160; As well, you can check out <a href="http://www.harbar.net/archive/2009/04/28/certified-master-for-sharepoint-2007-ldquor2rdquo.aspx" target="_blank">Spence Harbar’s write-up here</a>.</p>
<p>Congratulations to the newest Certified Masters for SharePoint Server 2007!</p>
<p> &#8211; Keith</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/krichie.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/krichie.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/krichie.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/krichie.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/krichie.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/krichie.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/krichie.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/krichie.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/krichie.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/krichie.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=120&subd=krichie&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.krichie.com/2009/05/04/microsoft-certified-master-for-sharepoint-server-2007-at-sharesquared/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7c8e2add071b299f0e1709afb5055ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Keith Richie</media:title>
		</media:content>
	</item>
		<item>
		<title>I&#8217;m such a Square, and proud of it!</title>
		<link>http://blog.krichie.com/2009/02/18/im-such-a-square-and-proud-of-it/</link>
		<comments>http://blog.krichie.com/2009/02/18/im-such-a-square-and-proud-of-it/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 20:28:58 +0000</pubDate>
		<dc:creator>Keith Richie</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://krichie.wordpress.com/2009/02/18/im-such-a-square-and-proud-of-it/</guid>
		<description><![CDATA[ 
Today I’m happy to announce that I have joined the great team at ShareSquared The SharePoint Solution Experts, where I’ll be working with long time friend and cohort Maurice Prather as a Senior SharePoint Architect.
The team at ShareSquared is composed of expert SharePoint architects and developers who are seasoned computer science professionals with a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=119&subd=krichie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><img style="display:inline;margin-left:0;margin-right:0;" src="http://www.sharesquared.com/sitecollectionimages/s2logo.gif" /> </p>
<p>Today I’m happy to announce that I have joined the great team at <a href="http://www.sharesquared.com" target="_blank">ShareSquared</a> The SharePoint Solution Experts, where I’ll be working with long time friend and cohort <a href="http://www.bluedoglimited.com/SharePointThoughts/default.aspx" target="_blank">Maurice Prather</a> as a Senior SharePoint Architect.</p>
<p>The team at ShareSquared is composed of expert SharePoint architects and developers who are seasoned computer science professionals with a thorough understanding of proper software construction, design patterns and best practices.&#160; I’m so proud to be joining this team.</p>
<p>I want to thank ALL my friends for their support over the past couple of months while I sought ought just who I wanted to be when I grew up <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .&#160; My new position will allow me to utilize my previous skills as well as further extend myself into areas I had only dreamed about before.</p>
<p>Here’s to new adventures in 2009!</p>
<p>- Keith</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/krichie.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/krichie.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/krichie.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/krichie.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/krichie.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/krichie.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/krichie.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/krichie.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/krichie.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/krichie.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=119&subd=krichie&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.krichie.com/2009/02/18/im-such-a-square-and-proud-of-it/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7c8e2add071b299f0e1709afb5055ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Keith Richie</media:title>
		</media:content>

		<media:content url="http://www.sharesquared.com/sitecollectionimages/s2logo.gif" medium="image" />
	</item>
		<item>
		<title>SPSiteBuilder 3.0 re-released with Source</title>
		<link>http://blog.krichie.com/2009/01/15/spsitebuilder-30-re-released-with-source/</link>
		<comments>http://blog.krichie.com/2009/01/15/spsitebuilder-30-re-released-with-source/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 15:38:43 +0000</pubDate>
		<dc:creator>Keith Richie</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://krichie.wordpress.com/2009/01/15/spsitebuilder-30-re-released-with-source/</guid>
		<description><![CDATA[I had placed my 3.0 version of SPSiteBuilder (For WSS 3.0/MOSS 2007) on codeplex previously as it was referenced in a book by good friend and SharePoint MVP Ben Curry.&#160; Unfortunately, I forgot to get the code up there  &#160; And the reminder for me to do it got lost in the plethora of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=118&subd=krichie&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I had placed my 3.0 version of SPSiteBuilder (For WSS 3.0/MOSS 2007) on codeplex previously as it was referenced in a book by good friend and SharePoint MVP <a href="http://www.mindsharpblogs.com/ben">Ben Curry</a>.&nbsp; Unfortunately, I forgot to get the code up there <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &nbsp; And the reminder for me to do it got lost in the plethora of tasks I needed to accomplish, and therefore the project was removed.&nbsp; I&#8217;m happy to say, I finally took care of that today and you can now get SPSiteBuilder (with source) from <a href="http://www.codeplex.com/spsitebuilder">http://www.codeplex.com/spsitebuilder</a> </p>
<p>The purpose of the SharePoint Site Builder (SPSiteBuilder) is to assist customers with performing SharePoint Site Collection build outs for testing purposes. Primarily for load testing, etc. This sample source can be compiled to produce a tool that will allow you to easily create multiple hierarchies of site collections.
<p>My apologies to those who followed the link before and found nothing <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>-Keith</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/krichie.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/krichie.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/krichie.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/krichie.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/krichie.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/krichie.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/krichie.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/krichie.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/krichie.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/krichie.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.krichie.com&blog=617816&post=118&subd=krichie&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.krichie.com/2009/01/15/spsitebuilder-30-re-released-with-source/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7c8e2add071b299f0e1709afb5055ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Keith Richie</media:title>
		</media:content>
	</item>
	</channel>
</rss>