<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
  <channel>
    <title>fallenrogue: i love RESTful Rails</title>
    <link>http://www.fallenrogue.com/articles</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-nc-nd/2.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/fallenrogue" type="application/rss+xml" /><item>
      <title>Lambda and Scope in C#</title>
      <description>&lt;style type="text/css"&gt;
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: Consolas, "Courier New", Courier, Monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}

.csharpcode pre { margin: 0em; }

.csharpcode .rem { color: #008000; }

.csharpcode .kwrd { color: #0000ff; }

.csharpcode .str { color: #006080; }

.csharpcode .op { color: #0000c0; }

.csharpcode .preproc { color: #cc6633; }

.csharpcode .asp { background-color: #ffff00; }

.csharpcode .html { color: #800000; }

.csharpcode .attr { color: #ff0000; }

.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}

.csharpcode .lnum { color: #606060; }
&lt;/style&gt;&lt;br /&gt;
Ok, so I&amp;#8217;ve read a few articles out there that are &lt;a href="http://www.managed-world.com/2008/06/13/LambdasKnowYourClosures.aspx"&gt;trying to explain&lt;/a&gt; scope and lambdas. The one above is the latest in an attempt to make it easy to grok this concept in the new C# spec. (new is a relative term) Let me make this very clear and simple. &lt;br /&gt;&lt;br /&gt;
&lt;!-- code formatted by http://manoli.net/csharpformat/ --&gt;
&lt;pre class="csharpcode"&gt;
&lt;span class="kwrd"&gt;public&lt;/span&gt; &lt;span class="kwrd"&gt;static&lt;/span&gt; &lt;span class="kwrd"&gt;void&lt;/span&gt; Main(&lt;span class="kwrd"&gt;string&lt;/span&gt;[] args)
{
    List&amp;lt;Action&amp;gt; closures = &lt;span class="kwrd"&gt;new&lt;/span&gt; List&amp;lt;Action&amp;gt;();
    &lt;span class="kwrd"&gt;for&lt;/span&gt; (&lt;span class="kwrd"&gt;int&lt;/span&gt; i = 0; i &amp;lt; 10; i++)
    {
        closures.Add(() =&amp;gt; Console.WriteLine(i));
    }
}&lt;/pre&gt;
&lt;h3&gt;Results:&lt;/h3&gt;
&lt;img src="http://img.skitch.com/20080708-nn5qj5pb1uu4swd9hr64wmj9h5.jpg" alt="Windows Server 2003 Enterprise Edition"/&gt;&lt;br/&gt;&lt;br /&gt;
now, run this Console app and you&amp;#8217;re going to get a list of 10s. Here&amp;#8217;s where people&amp;#8217;s faces turn white and start cursing lambdas. The problem though is that it&amp;#8217;s not lambda&amp;#8217;s fault at all. In fact, lambda is doing exactly what it is suppose to do. I&amp;#8217;ve read online where people debate if lambda&amp;#8217;s are lexical at all, because they don&amp;#8217;t seem, in this case, to be retaining the correct scope of the variable passed in. Well, this is not true. The issue is the way that &lt;em&gt;&lt;strong&gt;for&lt;/strong&gt;&lt;/em&gt; loops execute in C#. You see, according to the C# 3.0 spec the variable &amp;#8220;i&amp;#8221; in our for loop defines it scope outside of the containing block that it is iterating over. &lt;em&gt;That&lt;/em&gt; is the issue. The lambda is going to capture it is in the parent scope and while, traditionally that variable &amp;#8220;i&amp;#8221; would have fallen out of scope after the for block it is actually retained in memory (because it&amp;#8217;s still being referenced by the lambda!) until the lambda is gone. &lt;br /&gt;&lt;br /&gt;
SO! what do we &lt;span class="caps"&gt;REALLY&lt;/span&gt; want here? Well, if the answer is to print numbers from 0 to 9 then you have to establish a variable to hold the value in the currently executing scope of the lambda. Like so&amp;#8230; &lt;br /&gt;
&lt;!-- code formatted by http://manoli.net/csharpformat/ --&gt;
&lt;pre class="csharpcode"&gt;
&lt;span class="kwrd"&gt;public&lt;/span&gt; &lt;span class="kwrd"&gt;static&lt;/span&gt; &lt;span class="kwrd"&gt;void&lt;/span&gt; Main(&lt;span class="kwrd"&gt;string&lt;/span&gt;[] args)
{
    List&amp;lt;Action&amp;gt; closures = &lt;span class="kwrd"&gt;new&lt;/span&gt; List&amp;lt;Action&amp;gt;();
    &lt;span class="kwrd"&gt;for&lt;/span&gt; (&lt;span class="kwrd"&gt;int&lt;/span&gt; i = 0; i &amp;lt; 10; i++)
    {
        &lt;span class="kwrd"&gt;int&lt;/span&gt; j = i;
        closures.Add(() =&amp;gt; Console.WriteLine(j));
    }
    &lt;span class="kwrd"&gt;foreach&lt;/span&gt; (var a &lt;span class="kwrd"&gt;in&lt;/span&gt; closures) a.Invoke();
}&lt;/pre&gt;
&lt;h3&gt;Results:&lt;/h3&gt;
&lt;img src="http://img.skitch.com/20080708-ffifjg2e85ab51xs7nu6jrpc8p.jpg" alt="Windows Server 2003 Enterprise Edition"/&gt;&lt;br/&gt;&lt;br /&gt;
And there you have it. You&amp;#8217;ve now correctly established a variable in the same scope as the lambda thus ensuring it is not modified after you exit that scope. If that's difficult to grok, think back to our garbage collector. It will flag an item for deletion when it falls out of scope and no objects are currently pointing to it in memory. j will be retained in memory because although its execution scope has exited, the lambda is retaining a reference to... even beyond its scope! How cool is that?!&lt;br /&gt;&lt;br /&gt;
Because some of you may be wondering&amp;#8230; why 10&amp;#8217;s? Well, again: Scope. the incrementor in our for loop increments &lt;span class="caps"&gt;AFTER&lt;/span&gt; the for block is complete. It is, in essence, a closure itself. If I defined a for loop in C# it might look like this: &lt;br /&gt;
&lt;!-- code formatted by http://manoli.net/csharpformat/ --&gt;
&lt;pre class="csharpcode"&gt;
&lt;span class="kwrd"&gt;static&lt;/span&gt; &lt;span class="kwrd"&gt;void&lt;/span&gt; LeonFor(&lt;span class="kwrd"&gt;int&lt;/span&gt; start, &lt;span class="kwrd"&gt;int&lt;/span&gt; end, Action&amp;lt;&lt;span class="kwrd"&gt;int&lt;/span&gt;&amp;gt; toDo)
{
    &lt;span class="kwrd"&gt;int&lt;/span&gt; i = start;
    &lt;span class="kwrd"&gt;while&lt;/span&gt; (i&amp;lt;end)
    {
        toDo.Invoke(i);
        i++;
    }
}&lt;/pre&gt;&lt;br /&gt;
You see how the scope is defined? The final increment on i will never be seen during the invocation of the block. Thus: 10. &lt;br /&gt;&lt;br /&gt;
I hope that helps clarify a bit. This is a common barrier to grokking this topic. Remember, it&amp;#8217;s not lambda&amp;#8217;s that are &amp;#8220;acting goofy&amp;#8221;. It&amp;#8217;s the assumptions we made before they existed. This issue is about Scope and not a &amp;#8220;funky new language feature&amp;#8221;. And scope is &lt;em&gt;certainly&lt;/em&gt; easy to understand, right? :)
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/fallenrogue?a=IQWwp4"&gt;&lt;img src="http://feeds.feedburner.com/~a/fallenrogue?i=IQWwp4" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=IZOi9J"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=IZOi9J" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=UJwzhJ"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=UJwzhJ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/fallenrogue/~4/330143274" height="1" width="1"/&gt;</description>
      <pubDate>Tue, 08 Jul 2008 16:34:04 -0400</pubDate>
      <guid isPermaLink="false">http://www.fallenrogue.com/articles/267-Lambda-and-Scope-in-C</guid>
      <link>http://feeds.feedburner.com/~r/fallenrogue/~3/330143274/267-Lambda-and-Scope-in-C</link>
    <feedburner:origLink>http://www.fallenrogue.com/articles/267-Lambda-and-Scope-in-C</feedburner:origLink></item>
    <item>
      <title>Check out the latest Deep Fried Bytes!</title>
      <description>Yours truly is on the latest episode of the great Deep Fried Bytes podcast! We&amp;#8217;re talking about doing .net development on a Mac. The pros, the cons, the ins and outs! Please check it out and also give us a digg! &lt;br /&gt;&lt;br /&gt;
&lt;a href="http://digg.com/programming/Developing_NET_Software_on_a_Mac"&gt;Digg here and then listen!&lt;/a&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/fallenrogue?a=Tcnz3d"&gt;&lt;img src="http://feeds.feedburner.com/~a/fallenrogue?i=Tcnz3d" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=sBzSPJ"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=sBzSPJ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=ZtljHJ"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=ZtljHJ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/fallenrogue/~4/328933895" height="1" width="1"/&gt;</description>
      <pubDate>Mon, 07 Jul 2008 10:51:45 -0400</pubDate>
      <guid isPermaLink="false">http://www.fallenrogue.com/articles/266-Check-out-the-latest-Deep-Fried-Bytes</guid>
      <link>http://feeds.feedburner.com/~r/fallenrogue/~3/328933895/266-Check-out-the-latest-Deep-Fried-Bytes</link>
    <feedburner:origLink>http://www.fallenrogue.com/articles/266-Check-out-the-latest-Deep-Fried-Bytes</feedburner:origLink></item>
    <item>
      <title>Wanna hear me complain in person? Work for Telligent!</title>
      <description>So, for those of you out there who can&amp;#8217;t seem to get enough of me there is an opening on our team for a SharePoint developer. The position is out of Dallas but, for the right candidate, that may be up for negotiation! If you want to sling some SharePoint code, making a difference in the enterprise (read: making it suck a whole lot less!), and get your geek on with some of the sharpest tacks in the .net drawer then email me [fallenrogue at gmail] &lt;br /&gt;&lt;br /&gt;
Just in case you don&amp;#8217;t know, I work for &lt;a href="http://www.telligent.com"&gt;Telligent Systems&lt;/a&gt; and we build the best community software platform on the planet, &lt;a href="http://www.communityserver.org"&gt;Community Server&lt;/a&gt; .
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/fallenrogue?a=kIo1kn"&gt;&lt;img src="http://feeds.feedburner.com/~a/fallenrogue?i=kIo1kn" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=bpmyCI"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=bpmyCI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=tzQAMI"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=tzQAMI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/fallenrogue/~4/318309733" height="1" width="1"/&gt;</description>
      <pubDate>Mon, 23 Jun 2008 15:08:12 -0400</pubDate>
      <guid isPermaLink="false">http://www.fallenrogue.com/articles/265-Wanna-hear-me-complain-in-person-Work-for-Telligent</guid>
      <link>http://feeds.feedburner.com/~r/fallenrogue/~3/318309733/265-Wanna-hear-me-complain-in-person-Work-for-Telligent</link>
    <feedburner:origLink>http://www.fallenrogue.com/articles/265-Wanna-hear-me-complain-in-person-Work-for-Telligent</feedburner:origLink></item>
    <item>
      <title>SharePoint Development is an Adventure!</title>
      <description>There is an amazing amount of pain that developers in the .net space are experiencing with SharePoint development. SharePoint has become much more than a place to store documents or work with others on a file. Many enterprises are using it in unique and orignal ways and that value has been brought to the service by a growing community of developers &lt;em&gt;outside&lt;/em&gt; of Microsoft. &lt;br /&gt;&lt;br /&gt;
I&amp;#8217;ve been asked many times why I bother with SharePoint. While out drinking with Alan Stevens in Cleveland he could barely hold back his contempt for the platform and my participation in it. He turns to me and screams &amp;#8220;You&amp;#8217;re doing &lt;span class="caps"&gt;WHAT&lt;/span&gt;?! SharePoint sucks! It sucks so hard! Why the fuck would you even do that!?&amp;#8221; He then went back to his drink. I&amp;#8217;m sure the beer brought the rage that had been lying dormant. I get these types of reactions often. &lt;br /&gt;&lt;br /&gt;
Joe Wirtley asked me (in a much more civil manner than Alan. :) ), nearly 6 months ago, &amp;#8220;Leon, why SharePoint? You love open source, standards, your favorite language is Ruby. You&amp;#8217;re an avid supporter of testing. SharePoint development seems to be the opposite of all of those things.&amp;#8221; Joe&amp;#8217;s observation and ability to articulate the confusion of my peers is exactly why I&amp;#8217;m taking a few moments to blog about my choices. Those who read this blog know that I have a language fetish and hop often. Folks who found me for my&lt;a href="http://www.rubyonrails.org" target="_blank"&gt; Rails &lt;/a&gt;articles have probably long since moved on to other rock stars in that community. I had little or nothing to contribute or say about&lt;a href="http://www.rubyonrails.org" target="_blank"&gt; Rails &lt;/a&gt;anymore so I haven&amp;#8217;t. Many kind people have asked about future articles on&lt;a href="http://www.rubyonrails.org" target="_blank"&gt; Rails &lt;/a&gt;but the truth of the matter is that there is a buzzing community around&lt;a href="http://www.rubyonrails.org" target="_blank"&gt; Rails &lt;/a&gt;doing just that. The area is covered and I feel good about moving on. I love Rails. I love Ruby and I&amp;#8217;ll continue to use it as appropriate but if there&amp;#8217;s one thing that I&amp;#8217;ve realized in this business its not to put all of your eggs into one technology basket. Besides, it&amp;#8217;s not my nature to stay tied down to tech or platform. &lt;br /&gt;&lt;br /&gt;
So, why this post? There is a lot of pissing and moaning on the internet these days about SharePoint as a bad development platform. Really? Well, it&amp;#8217;s not developer centric, I&amp;#8217;ll give you that. There are many challenges that go into developing for SharePoint when you compare it to non-platform specific development. Unfortunately, many of these developers who are in pain are making a comparison of SharePoint development to other forms of asp.net development. This is made worse by those, like myself, who are constantly saying that SharePoint development is, at its core, asp.net development. A statement that is true only in the sense that &lt;span class="caps"&gt;WSS 3&lt;/span&gt;.0 is built on asp.net. The comparison is not 1 to 1 and when the developer, perhaps an expert in asp.net, tries SharePoint and sees the poor tooling, documentation or worse finds one of the many bugs in the Object Model they throw their hands in the air and walk away from the table. &lt;br /&gt; &lt;br /&gt;
But that&amp;#8217;s not enough to make a man angry. That&amp;#8217;s not enough to make him go onto a blog and yell at the masses for days. It&amp;#8217;s certainly not enough to make a fat man in a plaid hat re-think his life while having drinks in Cleveland. No, the difference is that SharePoint is a platform that is usually endorsed by the enterprise. Meaning, the developer is thrust into the environment and expected to perform at the same level that they have in the past with asp.net; after all, the Microsoft rep assured the management team that the learning curve would be low considering the platform is &amp;#8220;just asp.net&amp;#8221;. Yeah. And there&amp;#8217;s not difference between merb and&lt;a href="http://www.rubyonrails.org" target="_blank"&gt; rails &lt;/a&gt;either or Django and Pylons. Now they&amp;#8217;re angry and they should be. &lt;br /&gt;&lt;br /&gt;
So that&amp;#8217;s where I come in. I&amp;#8217;m in SharePoint everyday. I did it while consulting and I&amp;#8217;m helping to bring Community Server into SharePoint (a union that gets stronger and stronger every day) and I do it everyday. The path was long and difficult and I had to pave my own road for most of it. Starting today, I&amp;#8217;m going to share my experiences with you. I&amp;#8217;m going to share my point of view, as a developer working in SharePoint. &amp;#8216;cause right now I feel like the guy who still loves his Dreamcast and says it was fantastic while everyone looked at me cross eyed. &lt;br /&gt;&lt;br /&gt;
I&amp;#8217;m not saying it&amp;#8217;s not difficult. I&amp;#8217;m not saying there is a small learning curve. I&amp;#8217;m not saying the barrier to entry is low. I &lt;em&gt;am&lt;/em&gt; saying that it is a rich and rewarding platform that has more to offer than most are giving it credit for. I, personally, have said some unkind things about SharePoint development out of anger and frustration. I&amp;#8217;ve since learned that it&amp;#8217;s just as easy to file a bug report and move on. Count me as one guy who does it. I&amp;#8217;m frustrated, sure, but nothing worth having isn&amp;#8217;t without some effort. Details will follow soon but for now... lighten up a bit and enjoy life. ;)
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/fallenrogue?a=eORUdG"&gt;&lt;img src="http://feeds.feedburner.com/~a/fallenrogue?i=eORUdG" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=pluKTI"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=pluKTI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=vWY2cI"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=vWY2cI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/fallenrogue/~4/314940464" height="1" width="1"/&gt;</description>
      <pubDate>Wed, 18 Jun 2008 18:00:55 -0400</pubDate>
      <guid isPermaLink="false">http://www.fallenrogue.com/articles/264-SharePoint-Development-is-an-Adventure</guid>
      <link>http://feeds.feedburner.com/~r/fallenrogue/~3/314940464/264-SharePoint-Development-is-an-Adventure</link>
    <feedburner:origLink>http://www.fallenrogue.com/articles/264-SharePoint-Development-is-an-Adventure</feedburner:origLink></item>
    <item>
      <title>How I got started programming</title>
      <description>Well, this is going round and round and round the inter-tubes and since &lt;a href="http://frazzleddad.blogspot.com/2008/06/meme-how-i-got-started-programming.html"&gt;Jim Holmes&lt;/a&gt; called me out I will certainly give my response. So here it is, in all it&amp;#8217;s pith&amp;#8230;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;strong&gt;How old were you when you started programming?&lt;/strong&gt; &lt;br /&gt;&lt;br /&gt;21-ish. Started building lame-ass websites for my friends in college in the late 90s for funzies. &lt;br /&gt;&lt;br /&gt;
&lt;strong&gt;How did you get started in programming?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Dad sent me a laptop, I built a web page. That turned into a web site. Then I got Flash 4 from my student discount and started building flash web sites for people. I was doing data entry one day when my boss saw my website and asked if I would develop something for him at 10x the bill rate. That&amp;#8217;s how I started. &lt;br /&gt;&lt;br /&gt;
&lt;strong&gt;What was your first language?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="caps"&gt;HTML&lt;/span&gt; and Javascript&lt;br /&gt;&lt;br /&gt;
&lt;strong&gt;What was the first real program you wrote?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;A Blog Engine before it was called a blog.&lt;br /&gt;&lt;br /&gt;
&lt;strong&gt;What languages have you used since you started programming?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;As many as I can get interested in: &lt;span class="caps"&gt;HTML&lt;/span&gt;, XHTML, &lt;span class="caps"&gt;CSS&lt;/span&gt;, Javascript, Flash (actionscript), C, C++, C#, VB, VBScript,  VB.NET, &lt;span class="caps"&gt;XML&lt;/span&gt;, Ruby, Ruby on Rails, Python, Smalltalk (Dolphin), &lt;span class="caps"&gt;DOS&lt;/span&gt;, Powershell, Bash, &lt;span class="caps"&gt;XAML&lt;/span&gt;. etc, etc, etc&amp;#8230;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;strong&gt;What was your first professional programming gig?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="caps"&gt;NYC&lt;/span&gt; &amp;#8211; Flash interfaces for banking reports.&lt;br /&gt;&lt;br /&gt;
&lt;strong&gt;If you knew then what you know now, would you have started programming?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Sure. I mean, if I didn&amp;#8217;t like it I just would stop doing it and do something else. Not doing something you like for a living is retarded. If you&amp;#8217;re doing that and you&amp;#8217;re reading this, stop now. Move on. Do something with your short life, people. I program cause I enjoy it not only for the money.  &lt;br /&gt;&lt;br /&gt;
&lt;strong&gt;If there is one thing you learned along the way that you would tell new developers, what would it be?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Think. &lt;br /&gt;&lt;br /&gt;
&lt;strong&gt;What&amp;#8217;s the most fun you&amp;#8217;ve ever had &amp;#8230; programming?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.richreuter.com"&gt;Rich&lt;/a&gt; and I built a impossible &lt;span class="caps"&gt;CRM&lt;/span&gt; system in 3 weeks that was scoped at 6 months. We worked non-stop and had a great time. It wasn&amp;#8217;t the system that was fun, it was working with Rich. &lt;br /&gt;&lt;br /&gt;
So, there you have it folks. Mystery revealed! ;)
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/fallenrogue?a=uul63U"&gt;&lt;img src="http://feeds.feedburner.com/~a/fallenrogue?i=uul63U" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=OiTi7I"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=OiTi7I" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=jPFEtI"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=jPFEtI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/fallenrogue/~4/309681595" height="1" width="1"/&gt;</description>
      <pubDate>Wed, 11 Jun 2008 10:56:39 -0400</pubDate>
      <guid isPermaLink="false">http://www.fallenrogue.com/articles/263-How-I-got-started-programming</guid>
      <link>http://feeds.feedburner.com/~r/fallenrogue/~3/309681595/263-How-I-got-started-programming</link>
    <feedburner:origLink>http://www.fallenrogue.com/articles/263-How-I-got-started-programming</feedburner:origLink></item>
    <item>
      <title>Calling all SharePoint developers!</title>
      <description>Or would be developers or folks who tinker, in fact, if you&amp;#8217;ve touched SharePoint from a development/design/admin capacity then Glenn Block and the P&amp;#38;P folks at Microsoft want to hear all about your dev concerns in a survey that will result in some &lt;em&gt;much needed and &lt;strong&gt;long overdue&lt;/strong&gt;&lt;/em&gt; guidance regarding SharePoint development and customization. &lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.zoomerang.com/Survey/?p=WEB227TWMU8VCR"&gt;The survey is here&lt;/a&gt; and you can read more about &lt;a href="http://blogs.msdn.com/gblock/archive/2008/05/18/guidance-for-developing-custom-solutions-with-sharepoint-2007.aspx"&gt;Glenn&amp;#8217;s project at this blog here&lt;/a&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/fallenrogue?a=oUaJ1k"&gt;&lt;img src="http://feeds.feedburner.com/~a/fallenrogue?i=oUaJ1k" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=eRBizH"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=eRBizH" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=WWscsH"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=WWscsH" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/fallenrogue/~4/293202235" height="1" width="1"/&gt;</description>
      <pubDate>Sun, 18 May 2008 22:52:26 -0400</pubDate>
      <guid isPermaLink="false">http://www.fallenrogue.com/articles/262-Calling-all-SharePoint-developers</guid>
      <link>http://feeds.feedburner.com/~r/fallenrogue/~3/293202235/262-Calling-all-SharePoint-developers</link>
    <feedburner:origLink>http://www.fallenrogue.com/articles/262-Calling-all-SharePoint-developers</feedburner:origLink></item>
    <item>
      <title>Meet up this week!</title>
      <description>Hey all, just wanted to let you know I&amp;#8217;m going to be jabbering live in the Cincinnati and Cleveland areas this week. &lt;br /&gt;&lt;br /&gt;First stop, there is a new Architecture specific special interest group starting up in Cincinnati Tuesday the 13th at 6:00. It&amp;#8217;s being started by Mike Wood who is head of the Cin .net user group, a fantastic community of passionate technologists. Come check it out, chances are that I will talk specifically about software arch and not hardware cause that&amp;#8217;s my thing. I&amp;#8217;ll let everyone else go on about hardware and infrastructure. &lt;a href="http://cinnug.org/"&gt;Details here.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
And on Saturday the 17, I&amp;#8217;m going to be talk about SharePoint in Cleveland. It&amp;#8217;s a 100-200 intro to SharePoint for designers, devs and sysadms so if you want to grok a little SP, see what it can do for you please stop by the talk. If you then want to talk about Ruby, Rails, Python or Django, hit me at the bar afterwards because I&amp;#8217;ve got some convos I need to have! &lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.clevelanddodn.org"&gt;&lt;img border="0" src="http://www.clevelanddodn.org/images/badge.png"  alt="Cleveland Day of .NET" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Truth is folks, I&amp;#8217;m large and have been accused of &amp;#8220;looking scary&amp;#8221; from a far but I asure you, nothing could be further from the truth! Please if you see a 300 lbs. man in a funny plaid colored bukkit hat answering to either Leon, FallenRogue or Rogue, say hi and let&amp;#8217;s chat nerd style. Hope to see you guys soon!&lt;br /&gt;&lt;br /&gt;
Oh! and it's not this week but I'm also speaking at the Dayton .net user group at the end of this month in case you can't make it to Cleveland. &lt;a href="http://daytondevgroup.net/content/UpcomingMeetings.aspx"&gt;details for that event are here&lt;/a&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/fallenrogue?a=9nva4H"&gt;&lt;img src="http://feeds.feedburner.com/~a/fallenrogue?i=9nva4H" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=OmVHHH"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=OmVHHH" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=g13paH"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=g13paH" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/fallenrogue/~4/288707821" height="1" width="1"/&gt;</description>
      <pubDate>Mon, 12 May 2008 09:56:18 -0400</pubDate>
      <guid isPermaLink="false">http://www.fallenrogue.com/articles/261-Meet-up-this-week</guid>
      <link>http://feeds.feedburner.com/~r/fallenrogue/~3/288707821/261-Meet-up-this-week</link>
    <feedburner:origLink>http://www.fallenrogue.com/articles/261-Meet-up-this-week</feedburner:origLink></item>
    <item>
      <title>Wanna work for Telligent?</title>
      <description>The company that I&amp;#8217;m currently slinging code for &lt;a href="http://www.telligent.com"&gt;Telligent Systems&lt;/a&gt; is currently looking for a SharePoint developer in the Dallas area to join the CommunityServer product team. Yup, that&amp;#8217;s right, you work with the best of the best in the .net space building one of the most badass apps on the planet. &lt;br /&gt;&lt;br /&gt;
So, if you&amp;#8217;re looking for a high profile, highly visible SharePoint project to get your hands dirty on &lt;a href="http://jobburner.com/jobs/?job=1119"&gt;check out the job posting here.&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;
Tell your friends. :) &lt;br /&gt;
Now back to our regularly scheduled blog articles&amp;#8230;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/fallenrogue?a=sbxXn6"&gt;&lt;img src="http://feeds.feedburner.com/~a/fallenrogue?i=sbxXn6" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=EC5p1H"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=EC5p1H" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=p7FosH"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=p7FosH" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/fallenrogue/~4/286429396" height="1" width="1"/&gt;</description>
      <pubDate>Thu, 08 May 2008 19:37:12 -0400</pubDate>
      <guid isPermaLink="false">http://www.fallenrogue.com/articles/260-Wanna-work-for-Telligent</guid>
      <link>http://feeds.feedburner.com/~r/fallenrogue/~3/286429396/260-Wanna-work-for-Telligent</link>
    <feedburner:origLink>http://www.fallenrogue.com/articles/260-Wanna-work-for-Telligent</feedburner:origLink></item>
    <item>
      <title>history blog meme</title>
      <description>&lt;a href="http://objo.com/2008/4/19/history-blog-meme"&gt;Joe&lt;/a&gt; and &lt;a href="http://jrwren.wrenfam.com/blog/2008/04/22/history-blog-meme/"&gt;Jay&lt;/a&gt; are doing it&amp;#8230; me too! &lt;br /&gt;
fallenrogue$ history 1000 | awk &amp;#8216;{a[$2]++}END{for(i in a){print a[i] &amp;#8221; &amp;#8221; i}}&amp;#8217; | sort -rn | head&lt;br /&gt;135 git&lt;br /&gt;128 rake&lt;br /&gt;30 svn&lt;br /&gt;26 ls&lt;br /&gt;22 rapt&lt;br /&gt;21 cd&lt;br /&gt;19 gem&lt;br /&gt;18 python&lt;br /&gt;11 mate&lt;br /&gt;9 script/plugin
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/fallenrogue?a=AAifYV"&gt;&lt;img src="http://feeds.feedburner.com/~a/fallenrogue?i=AAifYV" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=uzMdxGG"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=uzMdxGG" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=M6OrKiG"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=M6OrKiG" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/fallenrogue/~4/275836432" height="1" width="1"/&gt;</description>
      <pubDate>Tue, 22 Apr 2008 22:27:27 -0400</pubDate>
      <guid isPermaLink="false">http://www.fallenrogue.com/articles/259-history-blog-meme</guid>
      <link>http://feeds.feedburner.com/~r/fallenrogue/~3/275836432/259-history-blog-meme</link>
    <feedburner:origLink>http://www.fallenrogue.com/articles/259-history-blog-meme</feedburner:origLink></item>
    <item>
      <title>Central Ohio Day of .NET</title>
      <description>Hey all, this is a place holder for the content. I&amp;#8217;ll be pulling the materials for the &lt;span class="caps"&gt;LINQ&lt;/span&gt; and SharePoint talks that I have today and putting them up asap. Unfortunately, I&amp;#8217;m pretty tired so it&amp;#8217;s going to have to wait until the morning. :) I&amp;#8217;ll update the post with links to the material tomorrow. &lt;br /&gt;&lt;br /&gt;
Thanks to the organizers and sponsors for making it happen. Thanks to the audience for coming with their learning caps on. It was a blast and I can&amp;#8217;t wait for next year! :)
&lt;br /&gt;&lt;br /&gt;
&lt;strong&gt;UPDATE: FILES ARE AVAILABLE&lt;/strong&gt;&lt;br /&gt;

&lt;iframe scrolling="no" marginheight="0" marginwidth="0" frameborder="0" style="width:240px;height:66px;margin:3px;padding:0;border:1px solid #dde5e9;background-color:#ffffff;" src="http://cid-5925672bca7b02c7.skydrive.live.com/embedrowdetail.aspx/CODODN"&gt;&lt;/iframe&gt;

&lt;br /&gt;&lt;br /&gt;
One more update: &lt;a href="http://cincinnatirecruiter.wordpress.com/2008/04/22/central-ohio-day-of-net-2008"&gt;Andy Erickson&lt;/a&gt; put together a sweet little vid of the event. I'm in it for a second at the beginning. You can tell that I'm still kinda out of it cause of the giant Energy drink I'm inhaling. :) &lt;br /&gt;&lt;br /&gt;
&lt;object width="425" height="355"&gt;&lt;param name="movie" value="http://www.youtube.com/v/zT208fgYj_c&amp;rel=0"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/zT208fgYj_c&amp;rel=0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/fallenrogue?a=lYRDFp"&gt;&lt;img src="http://feeds.feedburner.com/~a/fallenrogue?i=lYRDFp" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=BN1dLtG"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=BN1dLtG" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/fallenrogue?a=l7nc1oG"&gt;&lt;img src="http://feeds.feedburner.com/~f/fallenrogue?i=l7nc1oG" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/fallenrogue/~4/273822765" height="1" width="1"/&gt;</description>
      <pubDate>Sat, 19 Apr 2008 21:30:17 -0400</pubDate>
      <guid isPermaLink="false">http://www.fallenrogue.com/articles/258-Central-Ohio-Day-of-NET</guid>
      <link>http://feeds.feedburner.com/~r/fallenrogue/~3/273822765/258-Central-Ohio-Day-of-NET</link>
    <feedburner:origLink>http://www.fallenrogue.com/articles/258-Central-Ohio-Day-of-NET</feedburner:origLink></item>
  </channel>
</rss>
