<?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/"
	>

<channel>
	<title>Ryan Brady &#187; .Net</title>
	<atom:link href="http://www.ryanbrady.org/category/net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ryanbrady.org</link>
	<description>Assorted Musings, Mostly About Web and Software Development</description>
	<lastBuildDate>Sun, 18 Apr 2010 00:02:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Debugging IronPython In Visual Studio</title>
		<link>http://www.ryanbrady.org/2008/12/30/debugging-ironpython-in-visual-studio/</link>
		<comments>http://www.ryanbrady.org/2008/12/30/debugging-ironpython-in-visual-studio/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 00:28:48 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[iron python]]></category>
		<category><![CDATA[visual studio]]></category>

		<guid isPermaLink="false">http://www.ryanbrady.org/?p=146</guid>
		<description><![CDATA[I&#8217;ve been getting to know IronPython a little lately and one of the first things I wanted to know was how to debug IronPython in an IDE.  Since I use Visual Studio 2008 at work, I thought it would be a good start.  I searched Google and found a text representation of the steps involved [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been getting to know IronPython a little lately and one of the first things I wanted to know was how to debug IronPython in an IDE.  Since I use Visual Studio 2008 at work, I thought it would be a good start.  I searched Google and found a text representation of the steps involved over at <a href="http://devhawk.net/2008/05/08/Debugging+IronPython+Code+In+Visual+Studio.aspx" target="_blank">Harry Pierson&#8217;s</a> blog.</p>
<p>I found it pretty simple to do and somewhat useful for longer scripts.  It will be nice in the future to have first class support for IronPython in Visual Studio 2010.</p>
<p>You should have IronPython 2.0 Final and Visual Studio 2008 Professional or Better* installed to complete this demo.</p>
<p>Create a python file to debug:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="python" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">#debug.py</span>
<span style="color: #ff7700;font-weight:bold;">class</span> Foo:
<span style="color: #ff7700;font-weight:bold;">def</span> <span style="color: #0000cd;">__init__</span><span style="color: black;">&#40;</span><span style="color: #008000;">self</span>, name=<span style="color: #008000;">None</span><span style="color: black;">&#41;</span>:
    <span style="color: #008000;">self</span>.<span style="color: black;">name</span> = name
&nbsp;
<span style="color: #ff7700;font-weight:bold;">if</span> __name__ == <span style="color: #483d8b;">&quot;__main__&quot;</span>:
    f = Foo<span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;LVS&quot;</span><span style="color: black;">&#41;</span>
    <span style="color: #ff7700;font-weight:bold;">print</span> f.<span style="color: black;">name</span></pre></td></tr></table></div>

<p>From Visual Studio, open the IronPython executable (ipy.exe).  If it doesn&#8217;t do so for you, add the ipy.exe as an existing project.</p>
<p>From the Solution Explorer, right-click on Properties and set the Command Arguments property.  Use “-D” to tell ipy.exe to create debugging output, “-i” to start an interactive session at the end of debugging and add the full path to the script you made before.</p>
<div id="attachment_155" class="wp-caption alignnone" style="width: 310px"><a href="http://www.ryanbrady.org/wp-content/uploads/2008/12/properties.jpg"><img class="size-medium wp-image-155" title="Properties" src="http://www.ryanbrady.org/wp-content/uploads/2008/12/properties-300x204.jpg" alt="Properties Dialog" width="300" height="204" /></a><p class="wp-caption-text">Properties Dialog</p></div>
<p>Click Ok.</p>
<p>Open the script you created earlier in Visual Studio and place breakpoints as desired.</p>
<div id="attachment_156" class="wp-caption alignnone" style="width: 310px"><a href="http://www.ryanbrady.org/wp-content/uploads/2008/12/breakpoint.jpg"><img class="size-medium wp-image-156" title="Breakpoint" src="http://www.ryanbrady.org/wp-content/uploads/2008/12/breakpoint-300x179.jpg" alt="Adding a Breakpoint" width="300" height="179" /></a><p class="wp-caption-text">Adding a Breakpoint</p></div>
<p>Run the script in debug mode (F5).</p>
<p><a href="http://www.ryanbrady.org/wp-content/uploads/2008/12/run.jpg"><img class="alignnone size-medium wp-image-157" title="Running (F5)" src="http://www.ryanbrady.org/wp-content/uploads/2008/12/run-300x179.jpg" alt="" width="300" height="179" /></a></p>
<p>If you added the “-i” argument in step 3, after the last breakpoint is released it will launch an interactive session for you.  You will be able to inspect your script at this point, much like the immediate window in Visual Studio.</p>
<div id="attachment_158" class="wp-caption alignnone" style="width: 310px"><a href="http://www.ryanbrady.org/wp-content/uploads/2008/12/console.jpg"><img class="size-medium wp-image-158" title="Console" src="http://www.ryanbrady.org/wp-content/uploads/2008/12/console-300x150.jpg" alt="Interactive Console" width="300" height="150" /></a><p class="wp-caption-text">Interactive Console</p></div>
<p>* I tried this in the Visual Studio 2008 Team Developer Edition and the Visual Studio Express Edition.  The Express Editions do not work as they don&#8217;t allow you to open the ipy.exe as a solution item.  Sorry &#8220;hobbyists&#8221;, we&#8217;ll see if the Express sku&#8217;s of Visual Studio 2010 will target IronPython / IronRuby.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F&amp;title=Debugging+IronPython+In+Visual+Studio" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F&amp;title=Debugging+IronPython+In+Visual+Studio" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F&amp;title=Debugging+IronPython+In+Visual+Studio" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F&amp;title=Debugging+IronPython+In+Visual+Studio" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F&amp;title=Debugging+IronPython+In+Visual+Studio', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F&amp;title=Debugging+IronPython+In+Visual+Studio" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F&amp;title=Debugging+IronPython+In+Visual+Studio" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2008/12/30/debugging-ironpython-in-visual-studio/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Designing An Intranet With Sharepoint [External Reference]</title>
		<link>http://www.ryanbrady.org/2008/09/19/designing-an-intranet-with-sharepoint-external-reference/</link>
		<comments>http://www.ryanbrady.org/2008/09/19/designing-an-intranet-with-sharepoint-external-reference/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 23:41:00 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://www.ryanbrady.org/?p=118</guid>
		<description><![CDATA[A collegue (really a mentor) of mine knows Sharepoint like nobody&#8217;s business and she posted an interesting article this week about when moving to Sharepoint, there is a shift in the mindset how you look at and classify information.  It&#8217;s a quick point with a list of good references and I think it&#8217;s a good [...]]]></description>
			<content:encoded><![CDATA[<p>A <a href="http://shareesblog.com">collegue</a> (really a mentor) of mine knows Sharepoint like nobody&#8217;s business and she posted an <a href="http://www.shareesblog.com/?p=208" target="_blank">interesting article</a> this week about when moving to Sharepoint, there is a shift in the mindset how you look at and classify information.  It&#8217;s a quick point with a list of good references and I think it&#8217;s a good primer before jumping into Sharepoint.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F&amp;title=Designing+An+Intranet+With+Sharepoint+%5BExternal+Reference%5D" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F&amp;title=Designing+An+Intranet+With+Sharepoint+%5BExternal+Reference%5D" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F&amp;title=Designing+An+Intranet+With+Sharepoint+%5BExternal+Reference%5D" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F&amp;title=Designing+An+Intranet+With+Sharepoint+%5BExternal+Reference%5D" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F&amp;title=Designing+An+Intranet+With+Sharepoint+%5BExternal+Reference%5D', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F&amp;title=Designing+An+Intranet+With+Sharepoint+%5BExternal+Reference%5D" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F&amp;title=Designing+An+Intranet+With+Sharepoint+%5BExternal+Reference%5D" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2008/09/19/designing-an-intranet-with-sharepoint-external-reference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CI: Using RoR for ASP.Net &#8211; Success! (Sort of&#8230;)</title>
		<link>http://www.ryanbrady.org/2007/11/02/ci-using-ror-for-aspnet-success-sort-of/</link>
		<comments>http://www.ryanbrady.org/2007/11/02/ci-using-ror-for-aspnet-success-sort-of/#comments</comments>
		<pubDate>Fri, 02 Nov 2007 23:46:15 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.oneinspired.com/?p=60</guid>
		<description><![CDATA[In my continued quest to use Ruby to build my .Net apps, I have been successful using Ruby&#8217;s &#8220;sh&#8221; command to call the C# compiler (csc.exe) and successfully build my assemblies. I still have not gotten it to use MSBuild, but I&#8217;ve been lazily trying to use the .csproj files generated by Visual Studio, but [...]]]></description>
			<content:encoded><![CDATA[<p>In my continued quest to use Ruby to build my .Net apps, I have been successful using Ruby&#8217;s &#8220;sh&#8221; command to call the C# compiler (csc.exe) and successfully build my assemblies.  I still have not gotten it to use MSBuild, but I&#8217;ve been lazily trying to use the .csproj files generated by Visual Studio, but it doesn&#8217;t seem to work.  MSBuild acts like everything worked, however no files get changed.  I guess I&#8217;ll actually need to take a look at building it with MSBuild and then incorporating that back into a Rake task.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F02%2Fci-using-ror-for-aspnet-success-sort-of%2F&amp;title=CI%3A+Using+RoR+for+ASP.Net+%26%238211%3B+Success%21+%28Sort+of%26%238230%3B%29" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F02%2Fci-using-ror-for-aspnet-success-sort-of%2F&amp;title=CI%3A+Using+RoR+for+ASP.Net+%26%238211%3B+Success%21+%28Sort+of%26%238230%3B%29" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F02%2Fci-using-ror-for-aspnet-success-sort-of%2F&amp;title=CI%3A+Using+RoR+for+ASP.Net+%26%238211%3B+Success%21+%28Sort+of%26%238230%3B%29" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F02%2Fci-using-ror-for-aspnet-success-sort-of%2F&amp;title=CI%3A+Using+RoR+for+ASP.Net+%26%238211%3B+Success%21+%28Sort+of%26%238230%3B%29" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F02%2Fci-using-ror-for-aspnet-success-sort-of%2F&amp;title=CI%3A+Using+RoR+for+ASP.Net+%26%238211%3B+Success%21+%28Sort+of%26%238230%3B%29', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F02%2Fci-using-ror-for-aspnet-success-sort-of%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F02%2Fci-using-ror-for-aspnet-success-sort-of%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F02%2Fci-using-ror-for-aspnet-success-sort-of%2F&amp;title=CI%3A+Using+RoR+for+ASP.Net+%26%238211%3B+Success%21+%28Sort+of%26%238230%3B%29" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F02%2Fci-using-ror-for-aspnet-success-sort-of%2F&amp;title=CI%3A+Using+RoR+for+ASP.Net+%26%238211%3B+Success%21+%28Sort+of%26%238230%3B%29" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2007/11/02/ci-using-ror-for-aspnet-success-sort-of/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Continuous Integration : Using RoR to manage my ASP.Net builds</title>
		<link>http://www.ryanbrady.org/2007/11/01/continuous-integration-using-ror-to-manage-my-aspnet-builds/</link>
		<comments>http://www.ryanbrady.org/2007/11/01/continuous-integration-using-ror-to-manage-my-aspnet-builds/#comments</comments>
		<pubDate>Thu, 01 Nov 2007 17:33:10 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.oneinspired.com/?p=59</guid>
		<description><![CDATA[So I&#8217;ve started down the path of setting up continuous integration (CI). I&#8217;m working on a project now for a client that wants to be involved with the process as much as possible. The CI with a few other hacks will allow him to use the current working version of his website at anytime. I [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve started down the path of setting up continuous integration (CI).  I&#8217;m working on a project now for a client that wants to be involved with the process as much as possible.  The CI with a few other hacks will allow him to use the current working version of his website at anytime.</p>
<p>I started looking into some CI  products and ended up watching a screencast on CI Factory.  I was amazed at my initial reaction (yuuk!)!  I&#8217;m not knocking CI Factory directly, rather the fact that I need to configure a product that will configure a suite of products for me sounded like something that would be overly complicated to maintain / use.  This is not what I need to stay agile and keep a client involved.</p>
<p>So in my tinkering with RoR, I ran into CruiseControl.rb.  This product was easy to install and I already had the required dependencies from my RoR work.  It works out of the box for RoR, but needs a little love for building .Net apps.</p>
<p>I started out by deciding that I was going to continue to use MSBuild for building my projects and use CrusieControl.rb to do the CI and other tasks not including the actual build.  This would allow me to continue to work in Visual Studio as normal without changing a development process already underway.</p>
<p>So far I have integrated Rake into Visual Studio, created a rake file in my solution and created a task to build my projects.  It works great from the command line (rake dotnet_build) but when calling from CruiseControl, it throws an error that is probably complaining about not having resgen.exe in the path &#8211; that will be taken care of soon and I plan on publishing a full post on each step in the near future.</p>
<p>I am very excited by the possibilities that Rake and Ruby bring to my .Net development.  I&#8217;m already thinking of how to integrate this with the new IIS 7 API to have a Capistrano like feel to deploying my ASP.Net apps.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F01%2Fcontinuous-integration-using-ror-to-manage-my-aspnet-builds%2F&amp;title=Continuous+Integration+%3A+Using+RoR+to+manage+my+ASP.Net+builds" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F01%2Fcontinuous-integration-using-ror-to-manage-my-aspnet-builds%2F&amp;title=Continuous+Integration+%3A+Using+RoR+to+manage+my+ASP.Net+builds" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F01%2Fcontinuous-integration-using-ror-to-manage-my-aspnet-builds%2F&amp;title=Continuous+Integration+%3A+Using+RoR+to+manage+my+ASP.Net+builds" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F01%2Fcontinuous-integration-using-ror-to-manage-my-aspnet-builds%2F&amp;title=Continuous+Integration+%3A+Using+RoR+to+manage+my+ASP.Net+builds" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F01%2Fcontinuous-integration-using-ror-to-manage-my-aspnet-builds%2F&amp;title=Continuous+Integration+%3A+Using+RoR+to+manage+my+ASP.Net+builds', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F01%2Fcontinuous-integration-using-ror-to-manage-my-aspnet-builds%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F01%2Fcontinuous-integration-using-ror-to-manage-my-aspnet-builds%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F01%2Fcontinuous-integration-using-ror-to-manage-my-aspnet-builds%2F&amp;title=Continuous+Integration+%3A+Using+RoR+to+manage+my+ASP.Net+builds" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F01%2Fcontinuous-integration-using-ror-to-manage-my-aspnet-builds%2F&amp;title=Continuous+Integration+%3A+Using+RoR+to+manage+my+ASP.Net+builds" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2007/11/01/continuous-integration-using-ror-to-manage-my-aspnet-builds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jim Losi Nominated for MVP</title>
		<link>http://www.ryanbrady.org/2007/04/12/jim-losi-nominated-for-mvp/</link>
		<comments>http://www.ryanbrady.org/2007/04/12/jim-losi-nominated-for-mvp/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 17:27:40 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Blogs I Read]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.oneinspired.com/?p=36</guid>
		<description><![CDATA[Jim Losi, Visual Developer &#8211; Visual C# MVP Candidate 2007 For both new and experienced developers, Jim Losi has been a tremendous resource for guidance and assistance within the .Net community. Jim has assisted me personally via forum post, a code sample, a note of confidence, debugging a project, or contributing a library when needed. [...]]]></description>
			<content:encoded><![CDATA[<p>Jim Losi, Visual Developer &#8211; Visual C# MVP Candidate 2007</p>
<p>For both new and experienced developers, Jim Losi has been a tremendous resource for guidance and assistance within the .Net community. Jim has assisted me personally via forum post, a code sample, a note of confidence, debugging a project, or contributing a library when needed. I have witnessed Jim help countless others on the LearnVisualStudio.Net forums as well in the same manner. Jim lives on the other side of the country from me and as such I am surprised to be able to get a hold of him in the late hours of the night and the early hours of the morning.</p>
<p>Jim remains steadfast in his dedication to ensure that those who ask him questions understand the answers and he encourages those individuals to continue the cycle and help each other. Jim consistently assists others in a professional and friendly manner and demonstrates a level of commitment to others rarely seen within the .Net community.</p>
<p>Jim has worked very hard to help many of us out in the community and has never asked for anything in return. He is a colleague, a mentor, and an example for the community at large. Jim Losi is the ideal candidate for Visual Developer &#8211; Visual C# MVP.</p>
<p>Jim Losi has been a great influence to me in the last year and a half and &#8216;m really hoping Microsoft recognizes him this year for all of his hard work.  If you have a testimonial for Jim as well, please forward it to me and I&#8217;ll make sure it makes its way to Microsoft by way of Bob Tabor / LearnVisualStudio.Net.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F&amp;title=Jim+Losi+Nominated+for+MVP" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F&amp;title=Jim+Losi+Nominated+for+MVP" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F&amp;title=Jim+Losi+Nominated+for+MVP" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F&amp;title=Jim+Losi+Nominated+for+MVP" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F&amp;title=Jim+Losi+Nominated+for+MVP', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F&amp;title=Jim+Losi+Nominated+for+MVP" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F&amp;title=Jim+Losi+Nominated+for+MVP" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2007/04/12/jim-losi-nominated-for-mvp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SubSonic Beta 2</title>
		<link>http://www.ryanbrady.org/2007/04/11/subsonic-beta-2/</link>
		<comments>http://www.ryanbrady.org/2007/04/11/subsonic-beta-2/#comments</comments>
		<pubDate>Wed, 11 Apr 2007 13:34:45 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Object Relational Mapping]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.oneinspired.com/?p=35</guid>
		<description><![CDATA[Rob and Eric have already released a second beta for SubSonic 2.0. I introduced a colleague to SubSonic yesterday and found myself telling her how much faster I can get an app out the door because I don&#8217;t have to build a custom data access layer. I felt like I was telling her a secret&#8230;]]></description>
			<content:encoded><![CDATA[<p>Rob and Eric have already <a href="http://blog.wekeroad.com/archive/2007/04/10/SubSonic-Beta-2-is-Ready.aspx">released a second</a> beta for SubSonic 2.0.</p>
<p>I introduced a colleague to SubSonic yesterday and found myself telling her how much faster I can get an app out the door because I don&#8217;t have to build a custom data access layer.  I felt like I was telling her a secret&#8230;</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F11%2Fsubsonic-beta-2%2F&amp;title=SubSonic+Beta+2" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F11%2Fsubsonic-beta-2%2F&amp;title=SubSonic+Beta+2" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F11%2Fsubsonic-beta-2%2F&amp;title=SubSonic+Beta+2" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F11%2Fsubsonic-beta-2%2F&amp;title=SubSonic+Beta+2" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F11%2Fsubsonic-beta-2%2F&amp;title=SubSonic+Beta+2', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F11%2Fsubsonic-beta-2%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F11%2Fsubsonic-beta-2%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F11%2Fsubsonic-beta-2%2F&amp;title=SubSonic+Beta+2" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F11%2Fsubsonic-beta-2%2F&amp;title=SubSonic+Beta+2" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2007/04/11/subsonic-beta-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coming To An Enterprise Near You?</title>
		<link>http://www.ryanbrady.org/2007/04/07/coming-to-an-enterprise-near-you/</link>
		<comments>http://www.ryanbrady.org/2007/04/07/coming-to-an-enterprise-near-you/#comments</comments>
		<pubDate>Sun, 08 Apr 2007 05:59:57 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.oneinspired.com/?p=32</guid>
		<description><![CDATA[Like a couple of aging heavyweight fighters, Java and Microsoft have been slugging it out in the enterprise web application market for some time now. It seems like the fight continues round after round with no real winner in sight. But there have been some very interesting things happening in the last month that seem [...]]]></description>
			<content:encoded><![CDATA[<p><font face="Times New Roman"><font size="3">Like a couple of aging heavyweight fighters, Java and Microsoft have been slugging it out in the enterprise web application market for some time now. It seems like the fight continues round after round with no real winner in sight. But there have been some very interesting things happening in the last month that seem to indicate that the conditions may be right for Ruby on Rails (RoR) to slide in take some of the “Enterprise” market share.</font></font><font face="Times New Roman"><font size="3">When I refer to “Enterprise” I am most certainly pointing at the plethora of programming shops where they’re sticking to ASP.Net or JSP and Servlets.  I have worked in the former for the last 8 years and have worked with external vendors and service providers that were the latter.  Many of the platform discussions came down to the same points.  Funny thing is, they seem similarly bloated at times for solving some of the same everyday problems.  If you want to see a <a href="http://www.softiesonrails.com/2007/2/13/ruby-101-for-net-developers-multiple-assignments-made-easy">good comparison</a> of Ruby to C# (Java guys will feel at home too), check out <a href="http://www.softiesonrails.com/">Softies on Rails</a>. </font></font></p>
<p><font face="Times New Roman"><font size="3">For the Java environments, <a href="http://jruby.codehaus.org/" title="JRuby Home" target="_blank">JRuby</a> has hit another <a href="http://docs.codehaus.org/display/JRUBY/2007/03/05/JRuby+0.9.8+Released" title="Latest JRuby Release">milestone</a> and they are confident enough to hang it out there for RoR developers to give it a shot. Building a Ruby interpreter on Java instead of C allows you to extend the Java classes, deploy Rails applications to a web server as a WAR file, and provide similar portability to RoR as Cold Fusion enjoys.</font></font></p>
<p><font face="Times New Roman"><font size="3">For the Microsoft environments, the IIS Team <a href="http://www.iis.net/default.aspx?tabid=1000051" title="IIS 7">announced</a> they have implemented Fast CGI for IIS 7. This will make RoR on IIS more efficient and easier to deploy. Rob Conery has the <a href="http://blog.wekeroad.com/archive/2007/03/28/Rails-for-IIS-Always-Have-Friend-Named-quotMikequot.aspx" title="Rob Conery">drop</a> on this as well as <a href="http://mvolo.com/blogs/serverside/archive/2007/02/18/10-steps-to-get-Ruby-on-Rails-running-on-Windows-with-IIS-FastCGI.aspx">instruction</a>s for how he was able to make this work. Rob is the founder of a framework for .Net inspired by Rails called <a href="http://www.codeplex.com/subsonic" title="SubSonic">SubSonic</a> and if you write ASP.Net 2.0 applications, you need to take a look.</font></font></p>
<p><font size="3"><font face="Times New Roman">Both of these recent events seem to indicate that in organizations that already have a significant amount of infrastructure built up in either Java or .Net will not have to do much at all to make Rails run in the same environment. I think this will lead to greater adoption because it will be faster and easier to deploy and configure, making it an easier sell to your development manager, VP, etc., or for you to sneak it in.</font></font></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F07%2Fcoming-to-an-enterprise-near-you%2F&amp;title=Coming+To+An+Enterprise+Near+You%3F" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F07%2Fcoming-to-an-enterprise-near-you%2F&amp;title=Coming+To+An+Enterprise+Near+You%3F" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F07%2Fcoming-to-an-enterprise-near-you%2F&amp;title=Coming+To+An+Enterprise+Near+You%3F" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F07%2Fcoming-to-an-enterprise-near-you%2F&amp;title=Coming+To+An+Enterprise+Near+You%3F" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F07%2Fcoming-to-an-enterprise-near-you%2F&amp;title=Coming+To+An+Enterprise+Near+You%3F', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F07%2Fcoming-to-an-enterprise-near-you%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F07%2Fcoming-to-an-enterprise-near-you%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F07%2Fcoming-to-an-enterprise-near-you%2F&amp;title=Coming+To+An+Enterprise+Near+You%3F" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F07%2Fcoming-to-an-enterprise-near-you%2F&amp;title=Coming+To+An+Enterprise+Near+You%3F" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2007/04/07/coming-to-an-enterprise-near-you/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Speak4Me &#8211; The Beginning of an Open Source Project</title>
		<link>http://www.ryanbrady.org/2007/03/28/speak4me-the-beginning-of-an-open-source-project/</link>
		<comments>http://www.ryanbrady.org/2007/03/28/speak4me-the-beginning-of-an-open-source-project/#comments</comments>
		<pubDate>Wed, 28 Mar 2007 13:58:49 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.oneinspired.com/?p=28</guid>
		<description><![CDATA[ I&#8217;ve recently been planning an open source project for this summer.  I was approached last year during the holiday season by a woman on a forum with a story about her friend with Multiple Sclerosis who had lost most of his ability to speak normally.  She didn&#8217;t have any money and was taking this guy [...]]]></description>
			<content:encoded><![CDATA[<p> I&#8217;ve recently been planning an open source project for this summer.  I was approached last year during the holiday season by a woman on a forum with a story about her friend with Multiple Sclerosis who had lost most of his ability to speak normally.  She didn&#8217;t have any money and was taking this guy into her home because he had no where else to go.  She was looking for donations to buy a laptop to run a free application built for a Mac that would allow him to type and it would speak for him.  The only problem is that the original developer of the application had long since passed away and the source code was not available.</p>
<p>So when I heard about this story, I thought to myself there was something more I could do than pitch them $20 &#8211; I could write them an application.  They could get a PC laptop for a much cheaper price and really make the donations she received stretch further.  I started into motion by getting a <a href="http://codeplex.com/speak4me" target="_blank">CodePlex project</a> set up and creating a very small demo to send to her.  They were excited and said the new application would be very helpful and encouraged me to continue with development.</p>
<p>Now I kicked back into planning mode.  I thought that it would be important to do this the right way and not just slam out some code in a day or two and send it their way.  As the week progressed I got a message from the woman that someone had offered a sweet deal on equipment similar to what Stephen Hawking has.  She would no longer need my application and she was thankful for the week and a half that I had worked on the project.  This information combined with the fact that it was the holiday season and I had plenty of other things fighting for time in my schedule caused the project to be shelved indefinitely.</p>
<p>Some time later, I was walking to a coffee shop near my office with a friend who had a nephew that was born with a cleft palate.   He was listening to my story and told me that there are other people like his nephew that would benefit from this.  This led me to think that there would still be some value in continuing this project.</p>
<p>I have now started planning again.  I have several ideas and have started a project plan document.  I&#8217;m looking to use an open source text to speech engine to support further goals of eventually making this application cross-platform.  If you would like to help in any way I could use assistance in development, documentation and of course testers!</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F28%2Fspeak4me-the-beginning-of-an-open-source-project%2F&amp;title=Speak4Me+%26%238211%3B+The+Beginning+of+an+Open+Source+Project" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F28%2Fspeak4me-the-beginning-of-an-open-source-project%2F&amp;title=Speak4Me+%26%238211%3B+The+Beginning+of+an+Open+Source+Project" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F28%2Fspeak4me-the-beginning-of-an-open-source-project%2F&amp;title=Speak4Me+%26%238211%3B+The+Beginning+of+an+Open+Source+Project" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F28%2Fspeak4me-the-beginning-of-an-open-source-project%2F&amp;title=Speak4Me+%26%238211%3B+The+Beginning+of+an+Open+Source+Project" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F28%2Fspeak4me-the-beginning-of-an-open-source-project%2F&amp;title=Speak4Me+%26%238211%3B+The+Beginning+of+an+Open+Source+Project', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F28%2Fspeak4me-the-beginning-of-an-open-source-project%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F28%2Fspeak4me-the-beginning-of-an-open-source-project%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F28%2Fspeak4me-the-beginning-of-an-open-source-project%2F&amp;title=Speak4Me+%26%238211%3B+The+Beginning+of+an+Open+Source+Project" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F28%2Fspeak4me-the-beginning-of-an-open-source-project%2F&amp;title=Speak4Me+%26%238211%3B+The+Beginning+of+an+Open+Source+Project" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2007/03/28/speak4me-the-beginning-of-an-open-source-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Long Time, No Publish</title>
		<link>http://www.ryanbrady.org/2007/03/22/long-time-no-publish/</link>
		<comments>http://www.ryanbrady.org/2007/03/22/long-time-no-publish/#comments</comments>
		<pubDate>Thu, 22 Mar 2007 18:29:10 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.oneinspired.com/?p=27</guid>
		<description><![CDATA[Once again I have neglected my blog and the few readers I have (had).  I have recently started a new job and although it has been going GREAT, I have had little extra time to write a lot of code at home or blog about cool stuff.  I do have some partial posts and some [...]]]></description>
			<content:encoded><![CDATA[<p>Once again I have neglected my blog and the few readers I have (had).  I have recently started a new job and although it has been going GREAT, I have had little extra time to write a lot of code at home or blog about cool stuff.  I do have some partial posts and some ideas I&#8217;m working out, so I hope to have some more content soon.  A sample of the ideas on the list are comparing the speed of ADO.Net 2.0 to Generics, Useful Communication of Errors to the User, a full review of LearnVisualStudio.Net, and Leveraging Enumerations and Attributes to Retrieve and Modify Metadata.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F22%2Flong-time-no-publish%2F&amp;title=Long+Time%2C+No+Publish" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F22%2Flong-time-no-publish%2F&amp;title=Long+Time%2C+No+Publish" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F22%2Flong-time-no-publish%2F&amp;title=Long+Time%2C+No+Publish" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F22%2Flong-time-no-publish%2F&amp;title=Long+Time%2C+No+Publish" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F22%2Flong-time-no-publish%2F&amp;title=Long+Time%2C+No+Publish', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F22%2Flong-time-no-publish%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F22%2Flong-time-no-publish%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F22%2Flong-time-no-publish%2F&amp;title=Long+Time%2C+No+Publish" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F03%2F22%2Flong-time-no-publish%2F&amp;title=Long+Time%2C+No+Publish" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2007/03/22/long-time-no-publish/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerTogether.Com Vista Offer Validation</title>
		<link>http://www.ryanbrady.org/2007/01/24/powertogethercom-vista-offer-validation/</link>
		<comments>http://www.ryanbrady.org/2007/01/24/powertogethercom-vista-offer-validation/#comments</comments>
		<pubDate>Thu, 25 Jan 2007 04:42:20 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.oneinspired.com/?p=21</guid>
		<description><![CDATA[A couple of months back, Microsoft offered free copies of Vista Business or Office 2007 for watching 3 webcasts or hosted labs through PowerTogether.com. I did my part and signed up, watched the 3 webcasts and received an email saying it would be on the way within 6 weeks of RTM. That day came today! [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of months back, Microsoft offered free copies of Vista Business or Office 2007 for watching 3 webcasts or hosted labs through <a href="http://www.powertogether.com" target="_blank">PowerTogether.com</a>.  I did my part and signed up, watched the 3 webcasts and received an email saying it would be on the way within 6 weeks of RTM.</p>
<p>That day came today!  I received a license and media for Vista Business:</p>
<p id="gallery"> <a class="lightbox" href="http://www.oneinspired.com/images/070125-026.jpg"><img src="http://www.oneinspired.com/images/070125-026_thumb.jpg" align="middle" /></a>  <a class="lightbox" href="http://www.oneinspired.com/images/070125-026.jpg"> </a><a class="lightbox" href="http://www.oneinspired.com/images/070125-027.jpg"><img src="http://www.oneinspired.com/images/070125-027_thumb.jpg" align="middle" /> </a> <a class="lightbox" href="http://www.oneinspired.com/images/070125-029.jpg"><img src="http://www.oneinspired.com/images/070125-029_thumb.jpg" align="middle" /> </a> <a class="lightbox" href="http://www.oneinspired.com/images/070125-030.jpg"><img src="http://www.oneinspired.com/images/070125-030_thumb.jpg" align="middle" /></a></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F01%2F24%2Fpowertogethercom-vista-offer-validation%2F&amp;title=PowerTogether.Com+Vista+Offer+Validation" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F01%2F24%2Fpowertogethercom-vista-offer-validation%2F&amp;title=PowerTogether.Com+Vista+Offer+Validation" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F01%2F24%2Fpowertogethercom-vista-offer-validation%2F&amp;title=PowerTogether.Com+Vista+Offer+Validation" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F01%2F24%2Fpowertogethercom-vista-offer-validation%2F&amp;title=PowerTogether.Com+Vista+Offer+Validation" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F01%2F24%2Fpowertogethercom-vista-offer-validation%2F&amp;title=PowerTogether.Com+Vista+Offer+Validation', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F01%2F24%2Fpowertogethercom-vista-offer-validation%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F01%2F24%2Fpowertogethercom-vista-offer-validation%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F01%2F24%2Fpowertogethercom-vista-offer-validation%2F&amp;title=PowerTogether.Com+Vista+Offer+Validation" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F01%2F24%2Fpowertogethercom-vista-offer-validation%2F&amp;title=PowerTogether.Com+Vista+Offer+Validation" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2007/01/24/powertogethercom-vista-offer-validation/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
