<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>MOSS</title>
        <link>http://www.mosslover.com/MOSSLover/category/7765.aspx</link>
        <description>SharePoint 2007</description>
        <language>en-US</language>
        <copyright>MOSSLover</copyright>
        <managingEditor>rebecca.isserman@gmail.com</managingEditor>
        <generator>Subtext Version 0.0.0.0</generator>
        <item>
            <title>Deploying Multiple WSP Files Using Powershell</title>
            <link>http://mosslover.com/archive/2010/08/18/deploying-multiple-wsp-files-using-powershell.aspx</link>
            <description>&lt;p&gt;I was playing around with some scripts today while I was working on an upgrade.  I didn’t want to individually write out the names of files in a batch file and I wanted to create a quick Powershell Script.  If you are using SharePoint 2010 you can use these lines of code in the Powershell Manager to deploy only .wsp files to your SharePoint 2010 Web Applications:&lt;/p&gt;  &lt;p&gt;$dir = [directory]&lt;/p&gt;  &lt;p&gt;$list = Get-ChildItem $dir | where {$_.extension -eq ".wsp"}&lt;/p&gt;  &lt;p&gt;foreach($my_file in Get-ChildItem $list){Add-SPSolution -LiteralPath $my_file.FullName}&lt;/p&gt;  &lt;p&gt;foreach($my_file in Get-ChildItem $list){Install-SPSolution -Identity $my_file.Name -AllWebApplications -GACDeployment}&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;Basically, you throw in the directory into a variable, then you throw the files into a variable in Powershell filtered by .wsp.  Then you loop through the files and add the solutions to the store, then loop through the files and deploy them to the web applications.  You can change the scripts accordingly.  I figured this would be something you all could use so enjoy!&lt;/p&gt;  &lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:fdcc38cf-c67e-4f42-9176-e6beb7e59a62" class="wlWriterEditableSmartContent"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/Powershell" rel="tag"&gt;Powershell&lt;/a&gt;,&lt;a href="http://technorati.com/tags/SharePoint+2010" rel="tag"&gt;SharePoint 2010&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Deploying+Multiple+Solutions" rel="tag"&gt;Deploying Multiple Solutions&lt;/a&gt;&lt;/div&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=141368"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=141368" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://mosslover.com/aggbug/141368.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>MOSSLover</dc:creator>
            <guid>http://mosslover.com/archive/2010/08/18/deploying-multiple-wsp-files-using-powershell.aspx</guid>
            <pubDate>Wed, 18 Aug 2010 17:31:15 GMT</pubDate>
            <wfw:comment>http://mosslover.com/comments/141368.aspx</wfw:comment>
            <comments>http://mosslover.com/archive/2010/08/18/deploying-multiple-wsp-files-using-powershell.aspx#feedback</comments>
            <wfw:commentRss>http://mosslover.com/comments/commentRss/141368.aspx</wfw:commentRss>
            <trackback:ping>http://mosslover.com/services/trackbacks/141368.aspx</trackback:ping>
        </item>
        <item>
            <title>Dude, where is my list instance?</title>
            <link>http://mosslover.com/archive/2010/06/01/dude-where-is-my-list-instance.aspx</link>
            <description>&lt;p&gt;I saw an MSDN Forum post today, so I looked for a ListInstance Hidden property in SharePoint 2007 features.  There is none, but interestingly enough there is one in 2010.  I wondered what would happen if you did this:&lt;/p&gt;  &lt;p&gt;&amp;lt;Elements xmlns="&lt;a href="http://schemas.microsoft.com/sharepoint/&amp;quot;"&gt;http://schemas.microsoft.com/sharepoint/"&lt;/a&gt;&amp;gt;    &lt;br /&gt;  &amp;lt;ListInstance    &lt;br /&gt;           FeatureId="00bfea71-de22-43b2-a848-c05709900100"    &lt;br /&gt;           Title="Hidden List Test"    &lt;br /&gt;           Description="Testing a hidden list."    &lt;br /&gt;           TemplateType="100"    &lt;br /&gt;           &lt;strong&gt;Hidden="TRUE"&lt;/strong&gt;    &lt;br /&gt;           OnQuickLaunch="FALSE"    &lt;br /&gt;           Url="Lists/TestHidden" /&amp;gt;    &lt;br /&gt;&amp;lt;/Elements&amp;gt;&lt;/p&gt;  &lt;p&gt;It hides the entire list from SharePoint Designer and the browser, however you can hit the list by typing in the url in internet explorer.  Pretty cool stuff.  Enjoy guys.&lt;/p&gt;  &lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:beb4d82c-1001-4d76-abf3-ef7e36bd6ac7" class="wlWriterEditableSmartContent"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/Feature" rel="tag"&gt;Feature&lt;/a&gt;,&lt;a href="http://technorati.com/tags/List+Instance" rel="tag"&gt;List Instance&lt;/a&gt;,&lt;a href="http://technorati.com/tags/SharePoint+2010" rel="tag"&gt;SharePoint 2010&lt;/a&gt;&lt;/div&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=140177"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=140177" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://mosslover.com/aggbug/140177.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>MOSSLover</dc:creator>
            <guid>http://mosslover.com/archive/2010/06/01/dude-where-is-my-list-instance.aspx</guid>
            <pubDate>Tue, 01 Jun 2010 21:00:39 GMT</pubDate>
            <wfw:comment>http://mosslover.com/comments/140177.aspx</wfw:comment>
            <comments>http://mosslover.com/archive/2010/06/01/dude-where-is-my-list-instance.aspx#feedback</comments>
            <wfw:commentRss>http://mosslover.com/comments/commentRss/140177.aspx</wfw:commentRss>
            <trackback:ping>http://mosslover.com/services/trackbacks/140177.aspx</trackback:ping>
        </item>
        <item>
            <title>More Changes...</title>
            <link>http://mosslover.com/archive/2010/04/23/more-changes.aspx</link>
            <description>&lt;p&gt;Stuff has changed drastically for me in the past two to three years.  I moved over 1000 miles from Saint Louis.  I go outside and I get up in front of crowds with less issues.  Now I'm changing jobs again.  I'm not really sure what to say here.  I was obviously unhappy and I needed to do something different.  So quit two days ago and I guess it worked out that I end with B&amp;amp;R this Friday, then head to TEC and SPS Huntsville and a week from this Monday I start my new job at Gig Werks.  I'm not sure what to expect or where I'm heading, but I think it's a step in the right direction.  I won't really know what kind of impact this will have on my life for at least another 6 months to a year.&lt;/p&gt;
&lt;p&gt;For some reason I can't sleep tonight and I think it's really a reflection of my last day.  Tomorrow is an ending and a beginning at the same time.  So it's both kind of sad and exciting.  I don't know why I'm really excited to go to Disney Land for the second time ever in my life time.  I get to ride the Teacups.  For the longest time when I was a kid I wanted to go to Disney Land.  I wanted to ride the teacups.  In 2007, at the age of 25, I rode the teacups for my first ever visit to LA.  That was the start of finally syncing up with my childhood goals.  I wanted to live near a major city.  I wanted to visit all the major cities in the world.  I wanted to see everything and meet everyone.  This job change will probably turn into something great I just don't know it yet.  I'm walking again outside my comfort zone and stepping into uncharted territory.  In 2-3 years I'll probably write another blog post how this week lead to something great.  It just stinks when you have to leave behind something you know and love.  I will miss all my current colleagues, but I'm sure I'll gain some new ones and keep in touch with the old.  To 2010 being a great year for change and hopefully by the end of the year I can say I went to Europe.  To reaching my goals and my dreams.  Don't let anyone stop you from getting what you want in life (unless you are axe murderer please don't kill anyone that's just wrong).  Have a good weekend everyone!&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=139466"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=139466" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://mosslover.com/aggbug/139466.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>MOSSLover</dc:creator>
            <guid>http://mosslover.com/archive/2010/04/23/more-changes.aspx</guid>
            <pubDate>Fri, 23 Apr 2010 05:18:37 GMT</pubDate>
            <wfw:comment>http://mosslover.com/comments/139466.aspx</wfw:comment>
            <comments>http://mosslover.com/archive/2010/04/23/more-changes.aspx#feedback</comments>
            <wfw:commentRss>http://mosslover.com/comments/commentRss/139466.aspx</wfw:commentRss>
            <trackback:ping>http://mosslover.com/services/trackbacks/139466.aspx</trackback:ping>
        </item>
        <item>
            <title>SPRoleAssignment Crazy Caveats</title>
            <link>http://mosslover.com/archive/2010/03/05/sproleassignment-crazy-caviats.aspx</link>
            <description>&lt;p&gt;I’m not sure if this bug exists on any other environment, but here are a few issues I ran into when trying to use &lt;strong&gt;&lt;font color="#ff8080"&gt;SPRoleAssignment&lt;/font&gt;&lt;/strong&gt; and &lt;strong&gt;&lt;font color="#ff8c8c"&gt;SPGroup&lt;/font&gt;&lt;/strong&gt;:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;font color="#e7e7e7"&gt;&lt;font color="#000000"&gt;When trying to use&lt;/font&gt; &lt;font color="#ff8080"&gt;Web.Groups[“GroupName”]&lt;/font&gt; &lt;font color="#000000"&gt;it basically told me the group did not exist, so I had to change the code to use&lt;/font&gt; &lt;/font&gt;&lt;font color="#ff8080"&gt;Web.SiteGroups[“GroupName”].&lt;/font&gt; &lt;/li&gt;    &lt;li&gt;&lt;font color="#e7e7e7"&gt;&lt;font color="#000000"&gt;I could not add the Role Assignment to the Web and run a&lt;/font&gt; &lt;font color="#ff8080"&gt;Web.Update()&lt;/font&gt; &lt;font color="#000000"&gt;without adding an additional&lt;/font&gt; &lt;font color="#ff8080"&gt;Web.AllowUnsafeUpdates= true;&lt;/font&gt; &lt;font color="#000000"&gt;, however on my virtual machine I could do a&lt;/font&gt; &lt;font color="#ff8080"&gt;Web.Update()&lt;/font&gt; &lt;/font&gt;&lt;font color="#000000"&gt;without the extra piece of code.  I kept receiving an error in my browser stating that I should hit the back button and update my permissions. &lt;/font&gt;&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;So after fixing those two issues I was able to copy the permissions from a page item into a Site for my migration.  Hopefully, one of you can learn from my error messages if you have any issues in the future.&lt;/p&gt;  &lt;div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c6e68eaf-e617-4164-a4fd-7f1e2d9e37a7" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/SPRoleAssignment" rel="tag"&gt;SPRoleAssignment&lt;/a&gt;,&lt;a href="http://technorati.com/tags/MOSS" rel="tag"&gt;MOSS&lt;/a&gt;,&lt;a href="http://technorati.com/tags/SPGroup" rel="tag"&gt;SPGroup&lt;/a&gt;&lt;/div&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=138360"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=138360" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://mosslover.com/aggbug/138360.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>MOSSLover</dc:creator>
            <guid>http://mosslover.com/archive/2010/03/05/sproleassignment-crazy-caviats.aspx</guid>
            <pubDate>Fri, 05 Mar 2010 19:11:14 GMT</pubDate>
            <wfw:comment>http://mosslover.com/comments/138360.aspx</wfw:comment>
            <comments>http://mosslover.com/archive/2010/03/05/sproleassignment-crazy-caviats.aspx#feedback</comments>
            <wfw:commentRss>http://mosslover.com/comments/commentRss/138360.aspx</wfw:commentRss>
            <trackback:ping>http://mosslover.com/services/trackbacks/138360.aspx</trackback:ping>
        </item>
        <item>
            <title>Upcoming Presentations</title>
            <link>http://mosslover.com/archive/2010/02/28/upcoming-presentations.aspx</link>
            <description>&lt;p&gt;Conferences:&lt;/p&gt; SSWUG.org VConference, 4 sessions, April 7,8, and 9, Register at &lt;a href="http://www.vconferenceonline.com/shows/spring10/uvc/"&gt;http://www.vconferenceonline.com/shows/spring10/uvc/&lt;/a&gt;   &lt;br /&gt;SharePoint .org Conference, 2 sessions, April 18-21, &lt;a href="http://www.sharepointconference.org/Pages/default.aspx"&gt;http://www.sharepointconference.org/Pages/default.aspx&lt;/a&gt;   &lt;br /&gt;The Expert's Conference, Silverlight, April 25-28, enter the code "Gambit" when you register at: &lt;a href="http://www.theexpertsconference.com/general-information/sharepoint-training/ "&gt;http://www.theexpertsconference.com/general-information/sharepoint-training/&lt;/a&gt;   &lt;br /&gt;SharePoint Saturdays:   &lt;br /&gt;SharePoint Saturday Charlotte, Silverlight, April 10th, Regiser at &lt;a href="http://www.sharepointsaturday.org/charlotte"&gt;http://www.sharepointsaturday.org/charlotte&lt;/a&gt;   &lt;br /&gt;Code Camps:   &lt;br /&gt;New York City Code Camp, March 6th, Register at &lt;a href="http://ny.codecamp.us"&gt;http://ny.codecamp.us&lt;/a&gt;   &lt;br /&gt;User Groups:   &lt;br /&gt;TRISPUG, March 2nd, Register at &lt;a href="http://www.trispug.com/default.aspx "&gt;http://www.trispug.com/default.aspx&lt;/a&gt;   &lt;br /&gt;Central NJ .Net User Group, March 11th, Register at &lt;a href="http://www.njdotnet.net/ "&gt;http://www.njdotnet.net/&lt;/a&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=138238"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=138238" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://mosslover.com/aggbug/138238.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>MOSSLover</dc:creator>
            <guid>http://mosslover.com/archive/2010/02/28/upcoming-presentations.aspx</guid>
            <pubDate>Sun, 28 Feb 2010 19:07:33 GMT</pubDate>
            <wfw:comment>http://mosslover.com/comments/138238.aspx</wfw:comment>
            <comments>http://mosslover.com/archive/2010/02/28/upcoming-presentations.aspx#feedback</comments>
            <wfw:commentRss>http://mosslover.com/comments/commentRss/138238.aspx</wfw:commentRss>
            <trackback:ping>http://mosslover.com/services/trackbacks/138238.aspx</trackback:ping>
        </item>
        <item>
            <title>SharePoint Saturday Boston Slides and Code</title>
            <link>http://mosslover.com/archive/2010/02/28/sharepoint-saturday-boston-slides-and-code.aspx</link>
            <description>Here is a link to the slides and code samples on my Sky Drive: &lt;a href="http://cid-8e2654c5f01e6069.skydrive.live.com/summary.aspx?sa=624379842"&gt;http://cid-8e2654c5f01e6069.skydrive.live.com/summary.aspx?sa=624379842&lt;/a&gt;  &lt;br /&gt;In the future I will be doing a bunch of Stickam test presentations.  Check this blog for information and my twitter account.  I need more practice and I think Stickam or some other sharing outlet would help a lot.  &lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=138237"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=138237" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://mosslover.com/aggbug/138237.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>MOSSLover</dc:creator>
            <guid>http://mosslover.com/archive/2010/02/28/sharepoint-saturday-boston-slides-and-code.aspx</guid>
            <pubDate>Sun, 28 Feb 2010 18:57:28 GMT</pubDate>
            <wfw:comment>http://mosslover.com/comments/138237.aspx</wfw:comment>
            <comments>http://mosslover.com/archive/2010/02/28/sharepoint-saturday-boston-slides-and-code.aspx#feedback</comments>
            <wfw:commentRss>http://mosslover.com/comments/commentRss/138237.aspx</wfw:commentRss>
            <trackback:ping>http://mosslover.com/services/trackbacks/138237.aspx</trackback:ping>
        </item>
        <item>
            <title>Migrating the Publishing Pages for Fun and Profit</title>
            <link>http://mosslover.com/archive/2010/02/06/migrating-the-publishing-pages-for-fun-and-profit.aspx</link>
            <description>&lt;p&gt;This week and the following weeks I will be working through a ton of recursive functions to move a rather hefty page library into a Site Collection and subwebs.  I figure while I am having some “fun” you guys will profit will a few of my scripts.  For any of you out there who are interested in how to create a publishing page in a library here is a little sample code on how to copy items from the page content area and create a new page then replace a welcome page.  Here is a small sample:&lt;/p&gt;  &lt;p&gt;&lt;font color="#7dbeff"&gt;&lt;strong&gt;PublishingSite PubSite = new PublishingSite(NewSite);  //pass in an SPSite Object       &lt;br /&gt;PageLayoutCollection SiteLayouts = PubSite.GetPageLayouts(false);        &lt;br /&gt;PageLayout MyLayout = SiteLayous[“urlforlayout”];        &lt;br /&gt;PublishingWeb PubWeb = PublishingWeb.GetPublishingWeb(Web); //pass in an SPWeb Object        &lt;br /&gt;PublishingPageCollection Pages = PubWeb.GetPublishingPages();        &lt;br /&gt;PublishingPage MyPage = PubWeb.GetPublishingPages().Add(ChildItem["Name"].ToString(), MyLayout);        &lt;br /&gt;MyPage.ListItem["Page Content"] = ChildItem["Page Content"];        &lt;br /&gt;MyPage.ListItem.Update();        &lt;br /&gt;MyPage.Update();        &lt;br /&gt;MyPage.CheckIn("New Page Creation");        &lt;br /&gt;PubWeb.DefaultPage = Web.GetFile(MyPage.Url);        &lt;br /&gt;PubWeb.Update();&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;So basically if you look at the top you get the Publishing Site and then you get the Publishing Web.  What you want to do next is get one of the layout pages.  You could instead of hard-coding in a URL step through a foreach loop and search for the specific layout that you want.  What you want to do next is create a new page and then give it the name of the old item, so it will create the item with the same page name and you want to pass in the layout page from the previous step.  Next you want to get the Page Content from the Content Area in the “Page Content” field and then update the page.  Remember you need to check the item in before you set the welcome page or you will receive a fun little error message.  Then you can set the Publishing Web’s default page (welcome page) to your page and update the Publishing Web.  I learned the hard way by not updating the Publishing Web the first few times.  You also need to remember that you should turn on the flag for &lt;strong&gt;Web.AllowUnsafeUpdates &lt;/strong&gt;otherwise you will not be able to create a page or update anything at all in code.  After you are done turn this flag off as a good practice.  Remember to dispose all SPWeb and SPSite object if necessary or wrap using statements around everything.  I hope you enjoy!&lt;/p&gt;  &lt;div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:57d25b5f-81c8-42f6-b8c5-68bd1a75292c" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/Publishing+Pages" rel="tag"&gt;Publishing Pages&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Page+Creation" rel="tag"&gt;Page Creation&lt;/a&gt;,&lt;a href="http://technorati.com/tags/MOSS" rel="tag"&gt;MOSS&lt;/a&gt;&lt;/div&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=137839"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=137839" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://mosslover.com/aggbug/137839.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>MOSSLover</dc:creator>
            <guid>http://mosslover.com/archive/2010/02/06/migrating-the-publishing-pages-for-fun-and-profit.aspx</guid>
            <pubDate>Sat, 06 Feb 2010 20:58:01 GMT</pubDate>
            <wfw:comment>http://mosslover.com/comments/137839.aspx</wfw:comment>
            <comments>http://mosslover.com/archive/2010/02/06/migrating-the-publishing-pages-for-fun-and-profit.aspx#feedback</comments>
            <slash:comments>2</slash:comments>
            <wfw:commentRss>http://mosslover.com/comments/commentRss/137839.aspx</wfw:commentRss>
            <trackback:ping>http://mosslover.com/services/trackbacks/137839.aspx</trackback:ping>
        </item>
        <item>
            <title>Don&amp;rsquo;t Complain About SharePoint If You&amp;rsquo;ve Never Touched Open Source&amp;hellip;</title>
            <link>http://mosslover.com/archive/2010/01/13/donrsquot-complain-about-sharepoint-if-yoursquove-never-touched-open-sourcehellip.aspx</link>
            <description>&lt;p&gt;I have a couple posts coming to this respect, but I had the displeasure of working with Apache, SVN, and Perl these past few weeks.  First off I tried learning Perl when I was 16 years old and it never took.  I couldn’t understand it.  I still don’t understand half of what it does and why you would use it over any other scripting language.  The most I ever used it prior to these past few weeks was AOL .eml forms back in the day (&lt;a href="http://members.aol.com/jadedixon"&gt;http://members.aol.com/jadedixon&lt;/a&gt; yeah I know I’m not proud of my 17 year old self).  I feel like I’ve been sitting pretty in my C# and ASP .Net world.  This project was like a refresher of what I could be doing right now had I never been introduced to the .Net and SharePoint world.&lt;/p&gt;  &lt;p&gt;So first off I had do all these insane configurations.  You complain that SharePoint takes forever to configure correctly…DONOT ever complain to me about SharePoint.  Apache and Subversion are 10x more painful to install.  I swear when I installed these two technologies I had no idea what I was doing.  What is even better is that I had to statically set the IP for Apache, so that it would not conflict with IIS.  IIS is basically the Apache of the Microsoft world so the two just don’t like each other.  I also had to set the port number for Apache to some obscure port that was not 80 obviously the port conflicts due to IIS monopolizing it.  Oh yeah and did I mention the guide is not straight forward so you have to go into Event Viewer and the Apache and SVN error log files and basically google each error message.  Eventually I got past all that insanity after about 2 days of configuration and I had a base environment.&lt;/p&gt;  &lt;p&gt;Now at this point you wonder how do I get Perl to work.  For me I need to create an Authentication script for SVN that ties into a .Net Webservice that will tie into a Membership Provider.  As I said before I had no idea what I was doing.  I didn’t know a lick of Perl.  So I started by researching how to use Perl with Apache and how to hit a webservice using Perl.  I came across a couple of items that could help me throughout the process.  First off you want to install Active Perl, which is Perl for windows.  You have to put it in the usr/bin folder on your main drive.  Then what you want to do is remove all the IP address static junk you added, but remember to save it for later so you can add it back.  Type in “PPM” in run and you will get a list of all the mods available for Perl.  I noticed that mod_perl is a must have for Apache and Perl scripting.  It makes things run faster and has a whole library that you can access tailored specifically for working with Apache.  You need to right click on every prerequisite.  I also found a great webservice module called SOAP::Lite that helped me pull the data from the webservice later on.  Remember to right click on this module and then when you think you downloaded all the modules no you did not.  You have to tell it to run all the actions.  This will actually download the modules.  If you left on your static ips you cannot download these items because you cannot hit the internet.  So now you think your done right?&lt;/p&gt;  &lt;p&gt;No you’re not even close, because you now need to go into the Apache configuration files and add some lines of text to tell Apache to recognize mod_perl.  You also need to download a .so file and put it in the Apache directories.  If you download the wrong one and reference it or mess up your configuration files when you try and start the Apache 2 service it will not budge and send you an obscure error message.  If you get some crazy error message you need to go into the logs directory and open the error text file.  If you are lucky you might get a nice clean error message that means something.  If not well good luck you are going to be shooting in the dark for a few days.&lt;/p&gt;  &lt;p&gt;So now I finally got everything setup and I had to figure out the syntax.  This part was tricky because there are not a ton of blog posts an forums or documentation on this open source stuff.  Everyone was calling there stuff wrong and from what I understand hitting a .Net webservice can be buggy at times with Perl.  So at this point I downloaded a Perl Editor called Perl Express and started shooting in the dark.  I wrote the entire module and I added it to the configuration files as the Authentication Handler for SVN.  I got all kinds of crazy errors that I stepped through with the error logs.  Each one more obscure than the last message.  It felt like I was shooting at something with a blind fold.  Finally I got to a point where I thought everything worked, however it was not popping up a username and password dialog box.  So finally after hitting another 800 websites and trying different things it popped up the username and password.  I received no more error messages and I thought the script was working.&lt;/p&gt;  &lt;p&gt;I was so dead wrong, because the parameters had the username and password, however they were not passing them into the webservice.  I spent an entire week trying to figure out what was going on reading forums and blog posts.  No one had any documentation.  Last night I finally thing hey what about the namespace in my webservice.  Some people say you can use tempuri and other people just don’t use it at all.  I decided to change my namespace to the uri plus the folder up to the asmx file.  Finally everything works, so namespace apparently cannot be the default or Soap::Lite will not pass in the parameters.  If you do a debug and a trace it will print the XML out correctly and everything will act fine until you want to pass in parameters.  It was cool when everything worked, but I hate the open source world.  The documentation is horrendous.  At least Microsoft gives us MSDN and the people posting blogs are at least somewhat better.   Plus I missed my debugger.  I was using Fiddler and Apache error log files.  At least with .Net I can attach a debugger and step through code.  Maybe there is a way to do it in Perl, but I just don’t see it being easy.  It just felt like too much work for something so simple.&lt;/p&gt;  &lt;p&gt;If you are reading this blog post please take this with you that you could be working with Perl or Python or even PHP rather than .Net.  It could be 10x worse.  If you are working with SharePoint and complaining I will yell at you if you even begin to tell me how horrible the developer experience is right now.  It could be so much worse guys.  Don’t complain.  You have it good.  We could be working with punch cards or open source.  Our salaries could be so much worse.  Appreciate what you have, because it could go away in a heart beat.&lt;/p&gt;  &lt;div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c7d0abb7-4940-44ac-8207-189c223e81fe" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/SharePoint" rel="tag"&gt;SharePoint&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Perl" rel="tag"&gt;Perl&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Apache+2" rel="tag"&gt;Apache 2&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Subversion" rel="tag"&gt;Subversion&lt;/a&gt;&lt;/div&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=137466"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=137466" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://mosslover.com/aggbug/137466.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>MOSSLover</dc:creator>
            <guid>http://mosslover.com/archive/2010/01/13/donrsquot-complain-about-sharepoint-if-yoursquove-never-touched-open-sourcehellip.aspx</guid>
            <pubDate>Wed, 13 Jan 2010 08:15:11 GMT</pubDate>
            <wfw:comment>http://mosslover.com/comments/137466.aspx</wfw:comment>
            <comments>http://mosslover.com/archive/2010/01/13/donrsquot-complain-about-sharepoint-if-yoursquove-never-touched-open-sourcehellip.aspx#feedback</comments>
            <slash:comments>2</slash:comments>
            <wfw:commentRss>http://mosslover.com/comments/commentRss/137466.aspx</wfw:commentRss>
            <trackback:ping>http://mosslover.com/services/trackbacks/137466.aspx</trackback:ping>
        </item>
        <item>
            <title>Where I am Speaking&amp;hellip;</title>
            <link>http://mosslover.com/archive/2009/12/31/where-i-am-speakinghellip.aspx</link>
            <description>&lt;p&gt;Here is a list I have compiled thus far and will probably post as things come up:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;SharePoint Saturday Virginia Beach (January) &lt;/li&gt;    &lt;li&gt;Baltimore SharePoint User Group (January) &lt;/li&gt;    &lt;li&gt;SharePoint Saturday Boston (February) &lt;/li&gt;    &lt;li&gt;Raleigh SharePoint User Group (March) &lt;/li&gt;    &lt;li&gt;The Expert’s Conference (April) &lt;/li&gt;    &lt;li&gt;New York SharePoint User Group (May) &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;I am going to attend SharePoint Saturday New York and maybe help out a little.  I will probably also attend the Northern NJ .Net User Group and Princeton SharePoint User Group and possibly the New York SharePoint User Group.  It will be nice to attend events without running them for a change (not sure how long this will last).  If anyone knows of any other good user groups in the Somerville, NJ region let me know.  I might hit up Philly Office Geeks, but it’s about an hour and a half away from me so we’ll see what happens.  It’s going to take a while to get used to the area.  I don’t want to put more than two speaking engagements in one month also.  I want to spread it all out over different weeks (maybe one beginning of the month and one end).  I also need some time for exploring there is so much to visit like Vermont and Maine and Boston and New York City.  It will be a lot of fun.  Hopefully the development community out here is just as good as the one in Kansas City.  I look forward to meeting a bunch of people in the upcoming months.&lt;/p&gt;  &lt;div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:fcbbe7a8-c7d3-4cc0-b8a7-a800aa9c104d" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/Speaking" rel="tag"&gt;Speaking&lt;/a&gt;,&lt;a href="http://technorati.com/tags/SharePoint" rel="tag"&gt;SharePoint&lt;/a&gt;&lt;/div&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=137293"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=137293" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://mosslover.com/aggbug/137293.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>MOSSLover</dc:creator>
            <guid>http://mosslover.com/archive/2009/12/31/where-i-am-speakinghellip.aspx</guid>
            <pubDate>Thu, 31 Dec 2009 17:03:38 GMT</pubDate>
            <wfw:comment>http://mosslover.com/comments/137293.aspx</wfw:comment>
            <comments>http://mosslover.com/archive/2009/12/31/where-i-am-speakinghellip.aspx#feedback</comments>
            <wfw:commentRss>http://mosslover.com/comments/commentRss/137293.aspx</wfw:commentRss>
            <trackback:ping>http://mosslover.com/services/trackbacks/137293.aspx</trackback:ping>
        </item>
        <item>
            <title>Three Weeks&amp;hellip;</title>
            <link>http://mosslover.com/archive/2009/12/31/three-weekshellip.aspx</link>
            <description>&lt;p&gt;So I did it.  I moved, I ran a SharePoint Saturday, and I attended a wedding.  I can’t say everything went smoothly in the process, but I will say it all worked out for the best.  I started out my stressful adventure a couple months ago with packing and changing everything over to the new address.  Here is my account as best as I can describe it to you guys…&lt;/p&gt;  &lt;p&gt;I woke up on Friday, December 11th at about 6 am after sleeping on the floor with my boyfriend.  The mover’s came at about 7 am to pack the pod.  The night before I moved all the boxes to the living room, so that the mover’s could get everything packed up.  I also packed all the extra items into our cars.  When the movers came one box ended up dropping, but the contents as I found out were not destroyed.  One box cracked from stress and we taped it together.  In the end we had to shift some items in our vehicles and we lost the 4 chairs that Leah, Jason, and I sanded down and re-painted.  It was really sad, but I at least got to keep the table.  After this whole ordeal Johnny and I took a nap on the floor, which was horrible and then Brian Laird came to pick me up.  It was time to see Jeff Julian and a few other guys for a going away lunch.  We had lunch and Brian and I went to run a ton of errands, such as creating the welcome letter for the event and the online surveys.  We ended up at the hotel around 6 or 7 and I saw Lee Brandt.  We unpacked everything from Brian’s vehicle and the speaker dinner started for SharePoint Saturday.  It was a really great dinner, but I really cannot remember half of it.  I was exhausted.  A little later we ended up hitting Kinko’s, Brian, Karthik, and I to print out a ton of material for the event.  That night we stuffed all the folders as best we could (250 or so folders).  They looked awesome, unfortunately we all got to bed around midnight.  I left Johnny sleep late.&lt;/p&gt;  &lt;p&gt;Saturday, December 12th started with Susan and Gary Lennon giving me a ride to the event.  This day was a blur, but from what I can remember a couple crazy things happened.  KnowledgeLake was police escorted to the wherehouse at the community college, so that they could find all there banners and such for there booth.  A few sponsors showed up late, but everyone in the end got there stamps.  From what I can understand everyone was happy with the venue.  Next time the electronic stuff might work better if a kiosk was available.  The wireless access guy was downstairs instead of upstairs so a few people got lost.  All in all we ended the day at Talk of the Town having dinner together.  At night we all played dreidel in Joy Earles room which was a ton of fun.&lt;/p&gt;  &lt;p&gt;Sunday, December 13th was my last day in Kansas City for a while.  We started our adventure at Jerusalem Cafe with Johnny, Eric Harlan, Joy Earles, and Cathy Dew.  We got the Flaming Cheese and I got to eat the Vegetarian Platter for the last time.  Then we went over to the Boulevard Brewery for a tour.  I brought Cathy to the airport afterwards and headed to St. Louis.  I saw my friend Jaimie that night.&lt;/p&gt;  &lt;p&gt;Monday, December 14th was great, because I got to eat a Simon Kohn’s and Meskeram.  It was the perfect send off for St. Louis.  I bought a ton of beer at Schlafly for the guys in Jersey and some for Leah and Jason.  We had our last night of drinking before I headed to the east coast.&lt;/p&gt;  &lt;p&gt;Tuesday, December 15th was a day of driving.  We got into Columbus around 6 or 7.  I vaguely remember this day.  It was pretty uneventful.&lt;/p&gt;  &lt;p&gt;Wednesday, December 16th was pretty stressful.  I got into Columbus, MD around 2 pm or so.  I stopped at a McDonald’s by my aunt’s house.  I decided it would be a good idea to call the apartment complex.  They had no idea we were coming.  This is when the pain started to set in.  After hours of talking to these guys Johnny worked it out so we got a 2 bedroom.  We did not get the 2 bedroom that we wanted, so we had to change a few things the next day was going to be hectic.  We had to get up at 4 am.&lt;/p&gt;  &lt;p&gt;Thursday, December 17th was a quick drive and we were at the apartment complex.  I had to wait with Gambit in the car for a few hours.  It was cold outside so I tried to keep the car heated as much as I could.  When the lady showed up she said I needed a money order.  My bank was not located in this area. The closest branch was somewhere in the midwest.  I had to frantically drive around trying to get money.  Finally after moving some money from one place to another and getting money out of this and that account I had the money order.  We were able to pick up the keys and tour the apartment.  After a few hours of waiting for the Pod to show up and the clock hitting almost noon I called up the company.  There was a problem with the machinery, so they could not come until 1:30.  Luckily I was able to catch the guys I work with who helped me out.  When they arrived around 1:20 the ABF pod guy arrived after I chased the truck (literally ran after it).  Everything was unpacked and then we went out to buy all the things we needed.&lt;/p&gt;  &lt;p&gt;In the coming days insurance was changed, licenses were bought, and furniture was purchased.  In a few weeks we might actually get settled in.&lt;/p&gt;  &lt;p&gt;Friday, December 18th was hectic, because we were balancing the drive to Philly and getting stuff done.  Luckily, we got to Philly, but it took us 3 hours because of pending snow and traffic.  I saw some of my cousins and ate some awesome food.  We got home and decided to stay in Saturday due to snow.&lt;/p&gt;  &lt;p&gt;Saturday, December 19th was a ton of unpacking and staying inside.  Unfortunately, we had no food and it was pretty bad outside.  We got a lot unpacked and assembled.  It was the first day it was beginning to feel like a real place to live.&lt;/p&gt;  &lt;p&gt;Sunday, December 19th was the day of my cousin’s wedding. We made it to the hotel in record time.  Pictures were taken and the festivities were had.  I was confused with half of what went on because this was my very first Jewish wedding I can remember.  It was cool to see all the little rituals.  I don’t really know the guy all that well but I think my cousin will be happy.  That night I brought my dad back with me to my apartment so that he could help us lift the tv.  The tv was a little crooked but things ended up ok overall.  I went back to Philly and got to hang out with my grandmother for a little bit.&lt;/p&gt;  &lt;p&gt;Of all the days in that 2 week period I think it felt rushed and I couldn’t enjoy it as much as I should have enjoyed it.  I loved all the stuff, but I would have loved to space it out a little more.  I think next time (if I ever do it again) when I run a SharePoint Saturday I need to space it out away from any major events.  I’m glad everything turned out ok, but I was insane to do all that stuff in the same 2 week period.  I think I’m still recovering from all the events.  I probably won’t fully recover for another 2 months.&lt;/p&gt;  &lt;div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7b32a481-7f86-4cda-b847-409c580eb492" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/SPS+KC" rel="tag"&gt;SPS KC&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Crazy+Times" rel="tag"&gt;Crazy Times&lt;/a&gt;&lt;/div&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=137292"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=137292" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://mosslover.com/aggbug/137292.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>MOSSLover</dc:creator>
            <guid>http://mosslover.com/archive/2009/12/31/three-weekshellip.aspx</guid>
            <pubDate>Thu, 31 Dec 2009 16:54:33 GMT</pubDate>
            <wfw:comment>http://mosslover.com/comments/137292.aspx</wfw:comment>
            <comments>http://mosslover.com/archive/2009/12/31/three-weekshellip.aspx#feedback</comments>
            <wfw:commentRss>http://mosslover.com/comments/commentRss/137292.aspx</wfw:commentRss>
            <trackback:ping>http://mosslover.com/services/trackbacks/137292.aspx</trackback:ping>
        </item>
    </channel>
</rss>