<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>The Developer Dojo</title>
	
	<link>http://www.thedeveloperdojo.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 16 Apr 2010 20:11:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/TheDeveloperDojo" /><feedburner:info uri="thedeveloperdojo" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><media:copyright>(c) 2006 The Developer Dojo</media:copyright><media:keywords>development,asp,net,net,wpf,actionscript,flash,education,tutorial</media:keywords><media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Technology/Software How-To</media:category><itunes:owner><itunes:email>sensei@thesamuraideveloper.com</itunes:email><itunes:name>Sensei @ The Developer Dojo</itunes:name></itunes:owner><itunes:author>Sensei @ The Developer Dojo</itunes:author><itunes:explicit>no</itunes:explicit><itunes:keywords>development,asp,net,net,wpf,actionscript,flash,education,tutorial</itunes:keywords><itunes:subtitle>Tricks, tips, tutorials, tools and code from a professional eb developer. Covering .NET, PHP, Perl, Linux, Windows, Flash and much, much more.</itunes:subtitle><itunes:summary>Tricks, tips, tutorials, tools and code from a professional eb developer. Covering .NET, PHP, Perl, Linux, Windows, Flash and much, much more.</itunes:summary><itunes:category text="Technology"><itunes:category text="Software How-To" /></itunes:category><feedburner:emailServiceId>TheDeveloperDojo</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>.NET Tip: Find DayOfWeek from a String or Stupid Enum Tricks</title>
		<link>http://feedproxy.google.com/~r/TheDeveloperDojo/~3/RSkAwZUNw-I/</link>
		<comments>http://www.thedeveloperdojo.com/2010/04/net-tip-find-dayofweek-from-a-string-or-stupid-enum-tricks/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 17:00:48 +0000</pubDate>
		<dc:creator>sensei@thesamuraideveloper.com (Sensei @ The Developer Dojo)</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[sample]]></category>
		<category><![CDATA[screenshot]]></category>

		<guid isPermaLink="false">http://www.thedeveloperdojo.com/2010/04/net-tip-find-dayofweek-from-a-string-or-stupid-enum-tricks/</guid>
		<description><![CDATA[We are working on a project that runs scheduled tasks at user specified times. In short, the user needs to synchronize a local database with a remote one and wanted to automate the process. For context here is the UI that we developed for this iteration…
 
The bit that leads us to this tip is [...]]]></description>
			<content:encoded><![CDATA[<p>We are working on a project that runs scheduled tasks at user specified times. In short, the user needs to synchronize a local database with a remote one and wanted to automate the process. For context here is the UI that we developed for this iteration…</p>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="datagnome 4-8-2010 12-21-02 PM" border="0" alt="datagnome 4-8-2010 12-21-02 PM" src="http://www.thedeveloperdojo.com/assets/pool/datagnome482010122102PM1.png" width="600" height="284" /> </p>
<p>The bit that leads us to this tip is the <a href="http://msdn.microsoft.com/en-us/library/ms753382(VS.85).aspx" target="_blank">ComboBox</a> that handles the potential day of the week to schedule the task. When these options are saved, the day selected gets stored into <a href="http://msdn.microsoft.com/en-us/library/bb397755.aspx" target="_blank">UserSetting</a> as text (eg. “Monday”, “Tuesday” etc…). At the next launch of the app, we need to read those settings in and convert them to something we can use in our scheduling algorithm. Do do that, we need to convert a text day into a <a href="http://msdn.microsoft.com/en-us/library/system.dayofweek.aspx" target="_blank">DayOfWeek</a> enumeration object.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;">DayOfWeek theday<span style="color: #008000;">;</span>
&nbsp;
<span style="color: #0600FF;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #FF0000;">Enum</span>.<span style="color: #0000FF;">IsDefined</span><span style="color: #000000;">&#40;</span><span style="color: #008000;">typeof</span><span style="color: #000000;">&#40;</span>DayOfWeek<span style="color: #000000;">&#41;</span>, daynameastext<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
	<span style="color: #008080; font-style: italic;">// find it, the &amp;quot;true&amp;quot; means to be case insensitive</span>
	theday <span style="color: #008000;">=</span> <span style="color: #000000;">&#40;</span>DayOfWeek<span style="color: #000000;">&#41;</span><span style="color: #FF0000;">Enum</span>.<span style="color: #0000FF;">Parse</span><span style="color: #000000;">&#40;</span><span style="color: #008000;">typeof</span><span style="color: #000000;">&#40;</span>DayOfWeek<span style="color: #000000;">&#41;</span>, daynameastext, <span style="color: #0600FF;">true</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #000000;">&#125;</span>
<span style="color: #0600FF;">else</span>
<span style="color: #000000;">&#123;</span>
	<span style="color: #008080; font-style: italic;">// handle the error and let someone know the string was invalid</span>
	<span style="color: #008080; font-style: italic;">// in our example screenshot this would include the text of the words</span>
	<span style="color: #008080; font-style: italic;">// &quot;Day&quot; or &quot;Never&quot; and thus we also handled those settings here</span>
<span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

<p>Notice from the typecasts that <a href="http://msdn.microsoft.com/en-us/library/aa328348(VS.71).aspx" target="_blank">Enum.Parse</a> is not tied to any specific Enum so you can use it in lots of situations. </p>
<p>Enjoy!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=RSkAwZUNw-I:alAUVgxFAXo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=RSkAwZUNw-I:alAUVgxFAXo:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=RSkAwZUNw-I:alAUVgxFAXo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?i=RSkAwZUNw-I:alAUVgxFAXo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=RSkAwZUNw-I:alAUVgxFAXo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=RSkAwZUNw-I:alAUVgxFAXo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?i=RSkAwZUNw-I:alAUVgxFAXo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=RSkAwZUNw-I:alAUVgxFAXo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.thedeveloperdojo.com/2010/04/net-tip-find-dayofweek-from-a-string-or-stupid-enum-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.thedeveloperdojo.com/2010/04/net-tip-find-dayofweek-from-a-string-or-stupid-enum-tricks/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=net-tip-find-dayofweek-from-a-string-or-stupid-enum-tricks</feedburner:origLink></item>
		<item>
		<title>(Updated) Tim Heuer and the tools we love…</title>
		<link>http://feedproxy.google.com/~r/TheDeveloperDojo/~3/qEmv_cEScCs/</link>
		<comments>http://www.thedeveloperdojo.com/2010/03/tim-heuer-and-the-tools-we-love/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 19:37:57 +0000</pubDate>
		<dc:creator>sensei@thesamuraideveloper.com (Sensei @ The Developer Dojo)</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[telerik]]></category>
		<category><![CDATA[tim heuer]]></category>

		<guid isPermaLink="false">http://www.thedeveloperdojo.com/2010/03/tim-heuer-and-the-tools-we-love/</guid>
		<description><![CDATA[Updated! Tim pointed out that he did have Live Writer on his list. Sorry, I listed it in the wrong place. Egg, meet face.
In a recent post Tim Heuer discussed the tools he is re-loading after a fresh install on his laptop. While looking over the list I found some new gems and old favorites. [...]]]></description>
			<content:encoded><![CDATA[<p><em><strong>Updated!</strong> Tim pointed out that he did have Live Writer on his list. Sorry, I listed it in the wrong place. Egg, meet face.</em></p>
<p>In a <a href="http://timheuer.com/blog/archive/2010/03/30/repaving-my-machine-my-baseline-dev-workstation-tools.aspx" target="_blank">recent post Tim Heuer discussed the tools he is re-loading after a fresh install on his laptop</a>. While looking over the list I found some new gems and old favorites. As I have recently done a re-load it seemed worthwhile to piggy-back off his post and compile a similar list.</p>
<p>For the moment, I am concentrating on tools, utilities and applications that I use all the time while working with clients or projects. I will do a similar list for toolkits, components and libraries soon, for now, I will just scream <a href="http://www.telerik.com/" target="_blank">Telerik</a> :) </p>
<p>Stuff we use that is also on Tim’s list…</p>
<ul>
<li><a href="http://www.microsoft.com/office/2010/en/default.aspx" target="_blank">Office 2010</a> </li>
<li><a href="http://msdn.microsoft.com/en-us/vstudio/default.aspx" target="_blank">Visual Studio 2010</a> – we moved entirely off VS2008 a month or so ago </li>
<li>Microsoft&#8217;s <a href="http://www.microsoft.com/web/downloads/platform.aspx" target="_blank">Web Platform Installer</a> – simply the best way to get most of the good stuff you need for development, don’t walk, run to grab it. </li>
<li><a href="http://www.techsmith.com/camtasia.asp" target="_blank">Camtasia</a> and <a href="http://www.techsmith.com/screen-capture.asp" target="_blank">SnagIt</a> – as Tim says, “because they rock”. Screen capture and screen recording. </li>
<li><a href="http://balsamiq.com">Balsamiq</a> – I have been a fan of this for a while. Balsamiq allows yout o easily sketch interfaces. This has largely been supply supplanted by <a href="http://www.microsoft.com/expression/products/Sketchflow_Overview.aspx" target="_blank">SketchFlow</a> in <a href="http://www.microsoft.com/expression/products/Blend_Overview.aspx" target="_blank">Expression Blend</a>, but still useful. </li>
<li><a href="http://connect.microsoft.com/site/sitehome.aspx?SiteID=94" target="_blank">Microsoft Sharedview</a> – one of the easiest screen sharing tools around. </li>
<li><a href="http://www.7-zip.org/" target="_blank">7Zip</a> – an awesome file archive manager </li>
<li><a href="http://www.fiddler2.com/" target="_blank">Fiddler 2</a> –when you really need to see what is going on </li>
<li><a href="http://tortoisesvn.tigris.org/" target="_blank">TortoiseSVN</a> – we use this for connecting to client repositories, we use TFS internally. </li>
<li><a href="http://writer.live.com/" target="_blank">Windows Live Writer</a> – an awesome desktop blog editor, really fantastic </li>
</ul>
<p>&#160;</p>
<p>Stuff we use that is not on Tim’s list…</p>
<ul>
<li><a href="http://goplanapp.com/" target="_blank">GoPlan</a> – we use this <strong><em>constantly</em></strong> for project management and tracking. The company is awesome and the price is not bad. It beats Basecamp like a rented mule. </li>
<li><a href="http://www.microsoft.com/expression/products/Studio_Overview.aspx" target="_blank">Expression Studio</a> – that’s Blend, Web, SketchFlow, Design and Encoder </li>
<li><a href="http://www.tweetdeck.com" target="_blank">Tweetdeck</a> – currently our weapon of choice for Twitter on the desktop. Tim uses <a href="http://www.twhirl.org/" target="_blank">Twirl</a>. We keep considering a change to <a href="http://www.seesmic.com" target="_blank">Seesmic</a>, but it isn’t quite there yet. </li>
<li><a href="http://notepad-plus.sourceforge.net/uk/site.htm" target="_blank">Notepad++</a> – a awesome multi-tab notepad replacement that I love. Tim uses <a href="http://www.flos-freeware.ch/notepad2.html" target="_blank">Notepad2</a> (actually a <a href="http://code.kliu.org/misc/notepad2/" target="_blank">variant</a>) so I am curious as to the differences between them. Feel free to let me in on your thoughts in the comments. </li>
<li><a href="http://infrarecorder.org/" target="_blank">InfraRecorder</a> – a ISO burner / disk image tool. Tim is using <a href="http://imgburn.com/" target="_blank">ImgBurn</a> instead. Again, I wonder why that choice and welcome your comments. </li>
<li><a href="http://filezilla-project.org/" target="_blank">FileZilla</a> – a great free FTP client. </li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1843" target="_blank">Firebug</a> – I consider this tool absolutely essential when working with CSS. </li>
<li><a href="http://wingrep.com/" target="_blank">Windows Grep</a> – a essential utility to handle mass searching and / or replacement. </li>
<li><a href="http://winmerge.org/" target="_blank">WinMerge</a> – a super fast, super useful file differences and merge tool. Note that you can <a href="http://www.neovolve.com/post/2007/06/19/using-winmerge-with-tfs.aspx" target="_blank">set it up as the tool for resolving Team System conflicts</a>, which rocks. </li>
<li><a href="http://www.affixa.com/" target="_blank">Affixia</a> – allows you to use Gmail as the target for “send to email” menu options. Completely useful. </li>
<li><a href="http://www.getpaint.net/" target="_blank">paint.net</a> – a fantastic free image editor. yes, we use Photoshop and friends but this one is what we reach for when we have minor development images to create. </li>
<li><a href="http://download.live.com/?sku=messenger" target="_blank">Windows Live Messenger</a> – essential IM and messaging tool, allows us to stay in constant contact </li>
</ul>
<p>&#160;</p>
<p>Stuff we will look at in the future (thanks Tim!)</p>
<ul>
<li><a title="Ninite Easy PC Setup - Silent Unattended Install Multiple Programs At Once" href="http://ninite.com/" target="_blank">Ninite</a> – a multi installer. It looks like a good way to mass install the apps we like, though we always have security concerns with things like this. </li>
<li><a href="http://www.axialis.com" target="_blank">Axialis Icon Workshop</a> – looks interesting, not sure I have a use for it at the moment though. </li>
<li><a href="http://www.silverlightspy.com" target="_blank">Silverlight Spy</a> – this looks pretty cool for seeing what SL is doing. </li>
<li><a href="http://www.tabsstudio.com" target="_blank">TabsStudio for Visual Studio</a> – again, this looks really useful! </li>
<li><a href="http://karlshifflett.wordpress.com/2010/03/21/visual-studio-2010-xaml-editor-intellisense-presenter-extension/" target="_blank">XAML Intellisense by Karl Shifflett</a> – whoa! A fantastic find! </li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=qEmv_cEScCs:EnIqFL0U10U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=qEmv_cEScCs:EnIqFL0U10U:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=qEmv_cEScCs:EnIqFL0U10U:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?i=qEmv_cEScCs:EnIqFL0U10U:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=qEmv_cEScCs:EnIqFL0U10U:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=qEmv_cEScCs:EnIqFL0U10U:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?i=qEmv_cEScCs:EnIqFL0U10U:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=qEmv_cEScCs:EnIqFL0U10U:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.thedeveloperdojo.com/2010/03/tim-heuer-and-the-tools-we-love/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.thedeveloperdojo.com/2010/03/tim-heuer-and-the-tools-we-love/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=tim-heuer-and-the-tools-we-love</feedburner:origLink></item>
		<item>
		<title>Welcome and Re-Launch</title>
		<link>http://feedproxy.google.com/~r/TheDeveloperDojo/~3/l415QtMV96Q/</link>
		<comments>http://www.thedeveloperdojo.com/2010/03/welcome-and-re-launch/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 17:56:42 +0000</pubDate>
		<dc:creator>sensei@thesamuraideveloper.com (Sensei @ The Developer Dojo)</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[site news]]></category>
		<category><![CDATA[welcome]]></category>

		<guid isPermaLink="false">http://www.thedeveloperdojo.com/2010/03/welcome-and-re-launch/</guid>
		<description><![CDATA[I am going to keep this short and sweet, welcome to the re-launch of The Developer Dojo! 
TDD* is all about getting the code done. We are looking at tools, frameworks, toolkits, environments and educational resources that will make the job of bringing ideas to life in code more efficient.
We represent a wide mix of [...]]]></description>
			<content:encoded><![CDATA[<p>I am going to keep this short and sweet, welcome to the re-launch of The Developer Dojo! </p>
<p>TDD* is all about getting the code <strong><em>done</em></strong>. We are looking at tools, frameworks, toolkits, environments and educational resources that will make the job of bringing ideas to life in code more efficient.</p>
<p>We represent a wide mix of experiences and skills. Lots of Unix / Linux as well as strong backgrounds in Windows. We expect to cover the whole gamut of what is happening that&#8217;s interesting but we have a special place in our heart for <a href="http://www.asp.net/" target="_blank">.NET, Silverlight and WPF</a>. </p>
<p>We will be putting up tips, tutorials and reviews as we go. We plan a podcast as well, but that may take some time to get off the ground. By all means, please contribute to our discussions in the comments as well if you are moved to do so. We woudl love this to be a conversation, not a monologue.</p>
<p>* Short for “The Developer Dojo” not to be confused with “<a href="http://en.wikipedia.org/wiki/Test-driven_development" target="_blank">Test Driven Development</a>”</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=l415QtMV96Q:oE6HLiV-8HY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=l415QtMV96Q:oE6HLiV-8HY:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=l415QtMV96Q:oE6HLiV-8HY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?i=l415QtMV96Q:oE6HLiV-8HY:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=l415QtMV96Q:oE6HLiV-8HY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=l415QtMV96Q:oE6HLiV-8HY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?i=l415QtMV96Q:oE6HLiV-8HY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/TheDeveloperDojo?a=l415QtMV96Q:oE6HLiV-8HY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/TheDeveloperDojo?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.thedeveloperdojo.com/2010/03/welcome-and-re-launch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.thedeveloperdojo.com/2010/03/welcome-and-re-launch/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=welcome-and-re-launch</feedburner:origLink></item>
	<copyright>(c) 2006 The Developer Dojo</copyright><media:credit role="author">Sensei @ The Developer Dojo</media:credit><media:rating>nonadult</media:rating></channel>
</rss><!-- Dynamic page generated in 0.427 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-05-20 05:48:29 -->
