<?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>eric.polerecky.com</title>
	<atom:link href="http://eric.polerecky.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://eric.polerecky.com</link>
	<description>@detroitpro&#039;s technology blog</description>
	<lastBuildDate>Thu, 03 May 2012 03:32:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Hooking Bamboo to Campfire w/ Node.js</title>
		<link>http://eric.polerecky.com/hooking-bamboo-to-campfire-w-node-js/</link>
		<comments>http://eric.polerecky.com/hooking-bamboo-to-campfire-w-node-js/#comments</comments>
		<pubDate>Thu, 03 May 2012 03:32:10 +0000</pubDate>
		<dc:creator>detroitpro</dc:creator>
				<category><![CDATA[bamboo]]></category>
		<category><![CDATA[campfire]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[node.js]]></category>

		<guid isPermaLink="false">http://eric.polerecky.com/?p=870</guid>
		<description><![CDATA[TL;DR I wrote a simple node.js app that reads the bamboo RSS feed and posts builds in campfire. You can get the complete app here. https://github.com/detroitpro/node-bamboo-campfire, change the values around and you are good to go. Back Story Daily I am in windows, at work we use bamboo for CI, there is no community support <a href='http://eric.polerecky.com/hooking-bamboo-to-campfire-w-node-js/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<h2>TL;DR</h2>
<p>I wrote a simple node.js app that reads the bamboo RSS feed and posts builds in campfire. You can get the complete app here. <a href="https://github.com/detroitpro/node-bamboo-campfire"><u><font color="#0066cc">https://github.com/detroitpro/node-bamboo-campfire</font></u></a>, change the values around and you are good to go.</p>
<h2>Back Story</h2>
<p>Daily I am in windows, at work we use bamboo for CI, there is no community support for bamboo but we want our build status posted into our campfire room. While Bamboo4 comes with the AMAZING!!! ability to write plugins no one anyway, even, wants to write plugins for a commercial system. Blah. We had some preliminary discussions that devolved into the idea of considered parsing the build status email and then reposting them into campfire. Yuck. </p>
<h2>JavaScript Saves the Day, again!</h2>
<p>Here is how I got a node.js app posting our build status into campfire…in 35 LOC….on windows..</p>
<h4>Install Node</h4>
<p>Use <a title="Chocolatey Nuget Gallery" href="http://chocolatey.org">chocolatey</a> to install <a href="http://chocolatey.org/packages?q=node">Node JS (CommandLine)</a></p>
<p><a href="http://eric.polerecky.com/wp-content/uploads/2012/05/image.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://eric.polerecky.com/wp-content/uploads/2012/05/image_thumb.png" width="1023" height="655" /></a></p>
<h4>Make sure nodejs is in your path</h4>
<ul>
<li>The path to node, C:\Program Files (x86)\nodejs, should be in the system and <strong>user path</strong>.</li>
</ul>
<p><a href="http://eric.polerecky.com/wp-content/uploads/2012/05/image1.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://eric.polerecky.com/wp-content/uploads/2012/05/image_thumb1.png" width="395" height="434" /></a></p>
<ul>
<li>open powershell and check the node version.</li>
</ul>
<p>&#160;</p>
<p>&#160;</p>
<p><a href="http://eric.polerecky.com/wp-content/uploads/2012/05/image2.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://eric.polerecky.com/wp-content/uploads/2012/05/image_thumb2.png" width="372" height="132" /></a></p>
<h4>Write Code</h4>
<ul>
<li>Use npm to install the dependencies. </li>
</ul>
<p><a href="http://eric.polerecky.com/wp-content/uploads/2012/05/image3.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://eric.polerecky.com/wp-content/uploads/2012/05/image_thumb3.png" width="593" height="373" /></a></p>
<ul>
<li>Create a file to be the main entry point for your app. I called my app.js but you can all it anything you want. main.js, application.js, whateva.js</li>
<li>Short cut: <a href="https://github.com/detroitpro/node-bamboo-campfire/blob/master/app.js"><u><font color="#0066cc">https://github.com/detroitpro/node-bamboo-campfire/blob/master/app.js</font></u></a></li>
<li>Details&#160; <strong><font size="5">↓</font></strong>      </li>
</ul>
<p><a href="http://eric.polerecky.com/wp-content/uploads/2012/05/image4.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://eric.polerecky.com/wp-content/uploads/2012/05/image_thumb4.png" width="1028" height="622" /></a></p>
<h4>Run the app</h4>
<p>From the command prompt, and this – besides npm – is the reason you need nodejs in your path, run <strong></strong></p>
<blockquote><p><strong>node.exe yourfile.js</strong></p>
</blockquote>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fhooking-bamboo-to-campfire-w-node-js%2F&amp;title=Hooking+Bamboo+to+Campfire+w%2F+Node.js" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fhooking-bamboo-to-campfire-w-node-js%2F&amp;title=Hooking+Bamboo+to+Campfire+w%2F+Node.js" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fhooking-bamboo-to-campfire-w-node-js%2F&amp;title=Hooking+Bamboo+to+Campfire+w%2F+Node.js" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Feric.polerecky.com%2Fhooking-bamboo-to-campfire-w-node-js%2F&amp;headline=Hooking+Bamboo+to+Campfire+w%2F+Node.js" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Hooking+Bamboo+to+Campfire+w%2F+Node.js&amp;url=http%3A%2F%2Feric.polerecky.com%2Fhooking-bamboo-to-campfire-w-node-js%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Hooking+Bamboo+to+Campfire+w%2F+Node.js&amp;u=http%3A%2F%2Feric.polerecky.com%2Fhooking-bamboo-to-campfire-w-node-js%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Hooking+Bamboo+to+Campfire+w%2F+Node.js&amp;url=http%3A%2F%2Feric.polerecky.com%2Fhooking-bamboo-to-campfire-w-node-js%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Hooking+Bamboo+to+Campfire+w%2F+Node.js&amp;url=http%3A%2F%2Feric.polerecky.com%2Fhooking-bamboo-to-campfire-w-node-js%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Hooking+Bamboo+to+Campfire+w%2F+Node.js&amp;url=http%3A%2F%2Feric.polerecky.com%2Fhooking-bamboo-to-campfire-w-node-js%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Feric.polerecky.com%2Fhooking-bamboo-to-campfire-w-node-js%2F&amp;title=Hooking+Bamboo+to+Campfire+w%2F+Node.js&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Feric.polerecky.com%2Fhooking-bamboo-to-campfire-w-node-js%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Feric.polerecky.com%2Fhooking-bamboo-to-campfire-w-node-js%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Feric.polerecky.com%2Fhooking-bamboo-to-campfire-w-node-js%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://eric.polerecky.com/hooking-bamboo-to-campfire-w-node-js/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When to write what tests</title>
		<link>http://eric.polerecky.com/when-to-write-what-tests/</link>
		<comments>http://eric.polerecky.com/when-to-write-what-tests/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 18:05:15 +0000</pubDate>
		<dc:creator>detroitpro</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eric.polerecky.com/?p=852</guid>
		<description><![CDATA[Unit tests should be used to support the final product, edge cases, additional negative and fuzzy tests. Unit tests with mocks should be created when the layers are well defined TDD should be done always. Context specs should Be created post dev to create documentation and regression tests. Specs can be based on known behavior.]]></description>
			<content:encoded><![CDATA[<p>Unit tests should be used to support the final product, edge cases, additional negative and fuzzy tests.</p>
<p>Unit tests with mocks should be created when the layers are well defined</p>
<p>TDD should be done always.</p>
<p>Context specs should Be created post dev to create documentation and regression tests.</p>
<p>Specs can be based on known behavior.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fwhen-to-write-what-tests%2F&amp;title=When+to+write+what+tests" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fwhen-to-write-what-tests%2F&amp;title=When+to+write+what+tests" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fwhen-to-write-what-tests%2F&amp;title=When+to+write+what+tests" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Feric.polerecky.com%2Fwhen-to-write-what-tests%2F&amp;headline=When+to+write+what+tests" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=When+to+write+what+tests&amp;url=http%3A%2F%2Feric.polerecky.com%2Fwhen-to-write-what-tests%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=When+to+write+what+tests&amp;u=http%3A%2F%2Feric.polerecky.com%2Fwhen-to-write-what-tests%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=When+to+write+what+tests&amp;url=http%3A%2F%2Feric.polerecky.com%2Fwhen-to-write-what-tests%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=When+to+write+what+tests&amp;url=http%3A%2F%2Feric.polerecky.com%2Fwhen-to-write-what-tests%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=When+to+write+what+tests&amp;url=http%3A%2F%2Feric.polerecky.com%2Fwhen-to-write-what-tests%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Feric.polerecky.com%2Fwhen-to-write-what-tests%2F&amp;title=When+to+write+what+tests&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Feric.polerecky.com%2Fwhen-to-write-what-tests%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Feric.polerecky.com%2Fwhen-to-write-what-tests%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Feric.polerecky.com%2Fwhen-to-write-what-tests%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://eric.polerecky.com/when-to-write-what-tests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2012 Reading List</title>
		<link>http://eric.polerecky.com/2012-reading-list/</link>
		<comments>http://eric.polerecky.com/2012-reading-list/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 17:32:00 +0000</pubDate>
		<dc:creator>detroitpro</dc:creator>
				<category><![CDATA[passion]]></category>
		<category><![CDATA[Reading]]></category>

		<guid isPermaLink="false">http://eric.polerecky.com/?p=854</guid>
		<description><![CDATA[One of the AWESOME perks about working at @grasshopper is a company provided Kindle. So far this year I’ve read: &#160; I recently reached out the the team @grasshopper for other book recommendations. These books are next up on my reading list. On Lean: http://www.amazon.com/Leading-Lean-Software-Development-Results/dp/0321620704/ref=sr_1_1?s=books&#38;ie=UTF8&#38;qid=1330103475&#38;sr=1-1 On Craftsmanship: http://www.amazon.com/Agile-Principles-Patterns-Practices-C/dp/0131857258/ref=ntt_at_ep_dpt_4 http://pragprog.com/book/tpp/the-pragmatic-programmer http://www.amazon.com/Rework-Jason-Fried/dp/0307463745 http://www.amazon.com/Mythical-Man-Month-Software-Engineering-Anniversary/dp/0201835959 http://www.amazon.com/Passionate-Programmer-Remarkable-Development-Pragmatic/dp/1934356344 Of the recommendations <a href='http://eric.polerecky.com/2012-reading-list/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>One of the AWESOME perks about working at @grasshopper is a company provided Kindle. So far this year I’ve read:</p>
<p><img alt="51vN15YCJyL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA300_SH20_OU01_.jpg (300×300)" src="http://ecx.images-amazon.com/images/I/51vN15YCJyL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA300_SH20_OU01_.jpg" width="180" height="180" /><img alt="5117hR3sYcL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA300_SH20_OU01_.jpg (300×300)" src="http://ecx.images-amazon.com/images/I/5117hR3sYcL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA300_SH20_OU01_.jpg" width="196" height="188" /><img alt="41znMZniZ1L._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA300_SH20_OU01_.jpg (300×300)" src="http://ecx.images-amazon.com/images/I/41znMZniZ1L._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA300_SH20_OU01_.jpg" width="192" height="192" /></p>
<p>&#160;</p>
<p>I recently reached out the the team @grasshopper for other book recommendations. These books are next up on my reading list. </p>
<p>On Lean:</p>
<p><a href="http://www.amazon.com/Leading-Lean-Software-Development-Results/dp/0321620704/ref=sr_1_1?s=books&amp;ie=UTF8&amp;qid=1330103475&amp;sr=1-1">http://www.amazon.com/Leading-Lean-Software-Development-Results/dp/0321620704/ref=sr_1_1?s=books&amp;ie=UTF8&amp;qid=1330103475&amp;sr=1-1</a></p>
<p>On Craftsmanship:</p>
<p><a href="http://www.amazon.com/Agile-Principles-Patterns-Practices-C/dp/0131857258/ref=ntt_at_ep_dpt_4">http://www.amazon.com/Agile-Principles-Patterns-Practices-C/dp/0131857258/ref=ntt_at_ep_dpt_4</a></p>
<p><a href="http://pragprog.com/book/tpp/the-pragmatic-programmer">http://pragprog.com/book/tpp/the-pragmatic-programmer</a> </p>
<p><a href="http://www.amazon.com/Rework-Jason-Fried/dp/0307463745">http://www.amazon.com/Rework-Jason-Fried/dp/0307463745</a> </p>
<p><a href="http://www.amazon.com/Mythical-Man-Month-Software-Engineering-Anniversary/dp/0201835959">http://www.amazon.com/Mythical-Man-Month-Software-Engineering-Anniversary/dp/0201835959</a> </p>
<p><a href="http://www.amazon.com/Passionate-Programmer-Remarkable-Development-Pragmatic/dp/1934356344">http://www.amazon.com/Passionate-Programmer-Remarkable-Development-Pragmatic/dp/1934356344</a> </p>
<p>Of the recommendations I got I am going to skip, for now, THE DDD book. If it comes back with a good recommendation I might pick it up but it feels too much like a textbook. With applied DDD and all the other DDD stuff I’ve done/read in the past I feel confident speaking about the topic w/o the root book. However; I’m sure I’ll read it soon….</p>
<p><a href="http://www.amazon.com/Domain-Driven-Design-Tackling-Complexity-Software/dp/0321125215/">http://www.amazon.com/Domain-Driven-Design-Tackling-Complexity-Software/dp/0321125215/</a> </p>
<h3>Side note:</h3>
<p>If you are a .NET developer and you have not read read Foundations of Programming by Karl Seguin do yourself, and me, a favor and please go read it. It’s a free PDF.</p>
<p><a href="http://openmymind.net/FoundationsOfProgramming.pdf">http://openmymind.net/FoundationsOfProgramming.pdf</a></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Feric.polerecky.com%2F2012-reading-list%2F&amp;title=2012+Reading+List" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Feric.polerecky.com%2F2012-reading-list%2F&amp;title=2012+Reading+List" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Feric.polerecky.com%2F2012-reading-list%2F&amp;title=2012+Reading+List" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Feric.polerecky.com%2F2012-reading-list%2F&amp;headline=2012+Reading+List" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=2012+Reading+List&amp;url=http%3A%2F%2Feric.polerecky.com%2F2012-reading-list%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=2012+Reading+List&amp;u=http%3A%2F%2Feric.polerecky.com%2F2012-reading-list%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=2012+Reading+List&amp;url=http%3A%2F%2Feric.polerecky.com%2F2012-reading-list%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=2012+Reading+List&amp;url=http%3A%2F%2Feric.polerecky.com%2F2012-reading-list%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=2012+Reading+List&amp;url=http%3A%2F%2Feric.polerecky.com%2F2012-reading-list%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Feric.polerecky.com%2F2012-reading-list%2F&amp;title=2012+Reading+List&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Feric.polerecky.com%2F2012-reading-list%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Feric.polerecky.com%2F2012-reading-list%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Feric.polerecky.com%2F2012-reading-list%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://eric.polerecky.com/2012-reading-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated ProMongoRepository</title>
		<link>http://eric.polerecky.com/updated-promongorepository/</link>
		<comments>http://eric.polerecky.com/updated-promongorepository/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 20:04:00 +0000</pubDate>
		<dc:creator>detroitpro</dc:creator>
				<category><![CDATA[mongo]]></category>
		<category><![CDATA[mongodb]]></category>

		<guid isPermaLink="false">http://eric.polerecky.com/?p=850</guid>
		<description><![CDATA[IMPORTANT NEWS: I need to use clever names for my open source projects. Or maybe just shorter names. BORNING NEWS: I updated ProMongoRepository to use the official gen10 MongoDB C# driver. I did the update because NoRM does not support Skip() but I hear the new driver is insanely fast too. This class really supports <a href='http://eric.polerecky.com/updated-promongorepository/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<h5>IMPORTANT NEWS: </h5>
<p>I need to use clever names for my open source projects. Or maybe just shorter names.</p>
<h5>BORNING NEWS:</h5>
<p>I updated <a href="https://github.com/detroitpro/ProMongoRepository" target="_blank">ProMongoRepository</a> to use the official gen10 MongoDB C# driver. I did the update because NoRM does not support Skip() but I hear the new driver is insanely fast too. This class really supports only very little of what the driver can do. You should check it all out <a href="http://www.mongodb.org/display/DOCS/CSharp+Driver+Tutorial">http://www.mongodb.org/display/DOCS/CSharp+Driver+Tutorial</a></p>
<h5>BREAKING NEWS: </h5>
<p>The Collection&lt;T&gt; is exposed via IRepository&lt;T&gt; so you can get down to the driver if you need MAOR POWER!</p>
<p>….intermission break while I go code that…..</p>
<p><script src="https://gist.github.com/1871058.js?file=gistfile1.js"></script></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fupdated-promongorepository%2F&amp;title=Updated+ProMongoRepository" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fupdated-promongorepository%2F&amp;title=Updated+ProMongoRepository" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fupdated-promongorepository%2F&amp;title=Updated+ProMongoRepository" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Feric.polerecky.com%2Fupdated-promongorepository%2F&amp;headline=Updated+ProMongoRepository" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Updated+ProMongoRepository&amp;url=http%3A%2F%2Feric.polerecky.com%2Fupdated-promongorepository%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Updated+ProMongoRepository&amp;u=http%3A%2F%2Feric.polerecky.com%2Fupdated-promongorepository%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Updated+ProMongoRepository&amp;url=http%3A%2F%2Feric.polerecky.com%2Fupdated-promongorepository%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Updated+ProMongoRepository&amp;url=http%3A%2F%2Feric.polerecky.com%2Fupdated-promongorepository%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Updated+ProMongoRepository&amp;url=http%3A%2F%2Feric.polerecky.com%2Fupdated-promongorepository%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Feric.polerecky.com%2Fupdated-promongorepository%2F&amp;title=Updated+ProMongoRepository&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Feric.polerecky.com%2Fupdated-promongorepository%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Feric.polerecky.com%2Fupdated-promongorepository%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Feric.polerecky.com%2Fupdated-promongorepository%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://eric.polerecky.com/updated-promongorepository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC4 Killer Feature: Auto Conneg</title>
		<link>http://eric.polerecky.com/asp-net-mvc4-killer-feature-auto-conneg/</link>
		<comments>http://eric.polerecky.com/asp-net-mvc4-killer-feature-auto-conneg/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 16:36:00 +0000</pubDate>
		<dc:creator>detroitpro</dc:creator>
				<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[REST]]></category>
		<category><![CDATA[rest]]></category>

		<guid isPermaLink="false">http://eric.polerecky.com/?p=847</guid>
		<description><![CDATA[There once was a project called the ASP.NET Web API but that is dead and gone. It’s features all merged into ASP.NET MVC4. For us that means that out of the box, building REST web services, just got a shit ton easier. When creating RESTish services with MVC there are some things we need to <a href='http://eric.polerecky.com/asp-net-mvc4-killer-feature-auto-conneg/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>There once was a project called the <a href="http://www.asp.net/web-api">ASP.NET Web API</a> but that is dead and gone. It’s features all merged into <a href="http://blogs.msdn.com/b/carlosfigueira/archive/2012/02/16/introducing-asp-net-mvc-4-beta-with-web-apis.aspx">ASP.NET MVC4</a>. For us that means that out of the box, building REST web services, just got a shit ton easier.</p>
<p>When creating RESTish services with MVC there are some things we need to handle and some places we don’t exactly have the right size legos to make it all look nice.</p>
<ul>
<li>Routing</li>
<li>Content Negotiation</li>
<li>Verbs – attributes all over the damn place [HttpGet], etc</li>
</ul>
<p>&#160;</p>
<h3>Content Negotiation!</h3>
<p>If you ask for JSONyou get JSON, if you ask for xml you get xml! if you don’t specify you get XML…<strong>just kidding, you get JSON!</strong> The best part: <strong>You have a way to extend it build in! with the DelegatingHandler class.</strong></p>
<p>Pedro Reys has an article that, while he does not like that it defaults to JSON, is a good overview of the feature.</p>
<p><a href="http://pedroreys.com/2012/02/17/extending-asp-net-web-api-content-negotiation/#"><u><font color="#0066cc">http://pedroreys.com/2012/02/17/extending-asp-net-web-api-content-negotiation/#</font></u></a></p>
<h3>Release Notes</h3>
<p><a href="http://www.asp.net/whitepapers/mvc4-release-notes#_Toc317096197">http://www.asp.net/whitepapers/mvc4-release-notes#_Toc317096197</a></p>
<h4>ASP.NET Web API</h4>
<p>ASP.NET MVC 4 now includes ASP.NET Web API, a new framework for creating HTTP services that can reach a broad range of clients including browsers and mobile devices. ASP.NET Web API is also an ideal platform for building RESTful services.</p>
<p>ASP.NET Web API includes support for the following features:</p>
<ul>
<li><b>Modern HTTP programming model: </b>Directly access and manipulate HTTP requests and responses in your Web APIs using a new, strongly typed HTTP object model. The same programming model and HTTP pipeline is symmetrically available on the client through the new HttpClient type. </li>
<li><b>Full support for routes</b>: Web APIs now support the full set of route capabilities that have always been a part of the Web stack, including route parameters and constraints. Additionally, mapping to actions has full support for conventions, so you no longer need to apply attributes such as [HttpPost] to your classes and methods. </li>
<li><b>Content negotiation</b>: The client and server can work together to determine the right format for data being returned from an API. We provide default support for XML, JSON, and Form URL-encoded formats, and you can extend this support by adding your own formatters, or even replace the default content negotiation strategy. </li>
<li><b>Model binding and validation: </b>Model binders provide an easy way to extract data from various parts of an HTTP request and convert those message parts into .NET objects which can be used by the Web API actions. </li>
<li><b>Filters: </b>Web APIs now supports filters, including well-known filters such as the [Authorize] attribute. You can author and plug in your own filters for actions, authorization and exception handling. </li>
<li><b>Query composition: </b>By simply returning IQueryable&lt;T&gt;, your Web API will support querying via the OData URL conventions. </li>
<li><b>Improved testability of HTTP details: </b>Rather than setting HTTP details in static context objects, Web API actions can now work with instances of HttpRequestMessage and HttpResponseMessage. Generic versions of these objects also exist to let you work with your custom types in addition to the HTTP types. </li>
<li><b>Improved Inversion of Control (IoC) via DependencyResolver: </b>Web API now uses the service locator pattern implemented by MVC’s dependency resolver to obtain instances for many different facilities. </li>
<li><b>Code-based configuration: </b>Web API configuration is accomplished solely through code, leaving your config files clean. </li>
<li><b>Self-host: </b>Web APIs can be hosted in your own process in addition to IIS while still using the full power of routes and other features of Web API.</li>
</ul>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fasp-net-mvc4-killer-feature-auto-conneg%2F&amp;title=ASP.NET+MVC4+Killer+Feature%3A+Auto+Conneg" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fasp-net-mvc4-killer-feature-auto-conneg%2F&amp;title=ASP.NET+MVC4+Killer+Feature%3A+Auto+Conneg" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fasp-net-mvc4-killer-feature-auto-conneg%2F&amp;title=ASP.NET+MVC4+Killer+Feature%3A+Auto+Conneg" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Feric.polerecky.com%2Fasp-net-mvc4-killer-feature-auto-conneg%2F&amp;headline=ASP.NET+MVC4+Killer+Feature%3A+Auto+Conneg" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=ASP.NET+MVC4+Killer+Feature%3A+Auto+Conneg&amp;url=http%3A%2F%2Feric.polerecky.com%2Fasp-net-mvc4-killer-feature-auto-conneg%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=ASP.NET+MVC4+Killer+Feature%3A+Auto+Conneg&amp;u=http%3A%2F%2Feric.polerecky.com%2Fasp-net-mvc4-killer-feature-auto-conneg%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=ASP.NET+MVC4+Killer+Feature%3A+Auto+Conneg&amp;url=http%3A%2F%2Feric.polerecky.com%2Fasp-net-mvc4-killer-feature-auto-conneg%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=ASP.NET+MVC4+Killer+Feature%3A+Auto+Conneg&amp;url=http%3A%2F%2Feric.polerecky.com%2Fasp-net-mvc4-killer-feature-auto-conneg%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=ASP.NET+MVC4+Killer+Feature%3A+Auto+Conneg&amp;url=http%3A%2F%2Feric.polerecky.com%2Fasp-net-mvc4-killer-feature-auto-conneg%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Feric.polerecky.com%2Fasp-net-mvc4-killer-feature-auto-conneg%2F&amp;title=ASP.NET+MVC4+Killer+Feature%3A+Auto+Conneg&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Feric.polerecky.com%2Fasp-net-mvc4-killer-feature-auto-conneg%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Feric.polerecky.com%2Fasp-net-mvc4-killer-feature-auto-conneg%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Feric.polerecky.com%2Fasp-net-mvc4-killer-feature-auto-conneg%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://eric.polerecky.com/asp-net-mvc4-killer-feature-auto-conneg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>So you wanna work with detroitpro?</title>
		<link>http://eric.polerecky.com/so-you-wanna-work-with-detroitpro/</link>
		<comments>http://eric.polerecky.com/so-you-wanna-work-with-detroitpro/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 17:45:00 +0000</pubDate>
		<dc:creator>detroitpro</dc:creator>
				<category><![CDATA[awesome]]></category>
		<category><![CDATA[passion]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://eric.polerecky.com/?p=844</guid>
		<description><![CDATA[Over the past few weeks I’ve been thinking and talking a lot about developers. The word that keeps coming up in conversation with many non-developers is “passion”. I am not sure “passion” is the word to describe those who eat-drink-sleep development. As I sat in the back of a car, on the way to the <a href='http://eric.polerecky.com/so-you-wanna-work-with-detroitpro/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Over the past few weeks I’ve been thinking and talking a lot about developers. The word that keeps coming up in conversation with many non-developers is “passion”. I am not sure “passion” is the word to describe those who eat-drink-sleep development. </p>
<p>As I sat in the back of a car, on the way to the airport, reading twitter – my stream full of nothing but other developers. I started to think about the time I spent working the past week, the meetings, the excitement and the future tasks. I was done working but my brain kept on. </p>
<p>Then, on the plain, I fired up my podcasts at 2x speed so I could get more in. I listened to <a href="http://herdingcode.com/?p=384" target="_blank">HERDING CODE 132: PHIL HAACK, KEITH DAHLBY AND PAUL BETTS ON GIT FOR WINDOWS DEVELOPERS</a> and <a href="http://www.dotnetrocks.com/default.aspx?showNum=722" target="_blank">.NET Rocks 722: Development Practices</a>. I am not sure “passion” is the best word to describe how much I enjoy what I do for a living. </p>
<p>Today, Saturday night as I write this, I am reading about <a href="http://blog.stackoverflow.com/2012/02/stack-exchange-open-source-projects/" target="_blank">Open Source at Stack Exchange</a> and come across this video that drives home that my enjoyment is hardwired obsession.</p>
<p>From Penny Arcade:</p>
<p><a href="http://penny-arcade.com/patv/episode/so-you-want-to-be-a-developer-part-1"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://eric.polerecky.com/wp-content/uploads/2012/02/image2.png" width="966" height="614" /></a></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fso-you-wanna-work-with-detroitpro%2F&amp;title=So+you+wanna+work+with+detroitpro%3F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fso-you-wanna-work-with-detroitpro%2F&amp;title=So+you+wanna+work+with+detroitpro%3F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fso-you-wanna-work-with-detroitpro%2F&amp;title=So+you+wanna+work+with+detroitpro%3F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Feric.polerecky.com%2Fso-you-wanna-work-with-detroitpro%2F&amp;headline=So+you+wanna+work+with+detroitpro%3F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=So+you+wanna+work+with+detroitpro%3F&amp;url=http%3A%2F%2Feric.polerecky.com%2Fso-you-wanna-work-with-detroitpro%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=So+you+wanna+work+with+detroitpro%3F&amp;u=http%3A%2F%2Feric.polerecky.com%2Fso-you-wanna-work-with-detroitpro%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=So+you+wanna+work+with+detroitpro%3F&amp;url=http%3A%2F%2Feric.polerecky.com%2Fso-you-wanna-work-with-detroitpro%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=So+you+wanna+work+with+detroitpro%3F&amp;url=http%3A%2F%2Feric.polerecky.com%2Fso-you-wanna-work-with-detroitpro%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=So+you+wanna+work+with+detroitpro%3F&amp;url=http%3A%2F%2Feric.polerecky.com%2Fso-you-wanna-work-with-detroitpro%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Feric.polerecky.com%2Fso-you-wanna-work-with-detroitpro%2F&amp;title=So+you+wanna+work+with+detroitpro%3F&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Feric.polerecky.com%2Fso-you-wanna-work-with-detroitpro%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Feric.polerecky.com%2Fso-you-wanna-work-with-detroitpro%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Feric.polerecky.com%2Fso-you-wanna-work-with-detroitpro%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://eric.polerecky.com/so-you-wanna-work-with-detroitpro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CodeMashNotes</title>
		<link>http://eric.polerecky.com/codemashnotes/</link>
		<comments>http://eric.polerecky.com/codemashnotes/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 16:58:18 +0000</pubDate>
		<dc:creator>detroitpro</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eric.polerecky.com/?p=618</guid>
		<description><![CDATA[Keynote: Ted Neward – Rethinking the enterprise the brain is hardwired to use what you know. creatures of habbit. All software sucks. It just sucks in different ways. See Tweets Hanselman – Web of love WebAPI is some good. GetP Mobile theme support using xxxxxx.mobile.cshtml IsMobile, _LayoutSwitcher.cshtml for switching between mobile/desktop &#160; What’s new in <a href='http://eric.polerecky.com/codemashnotes/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Keynote: Ted Neward – Rethinking the enterprise</p>
<ul>
<li>the brain is hardwired to use what you know. creatures of habbit.</li>
<li>All software sucks. It just sucks in different ways.</li>
<li>See Tweets</li>
</ul>
<p>Hanselman – Web of love</p>
<ul>
<li>WebAPI is some good. GetP</li>
<li>Mobile theme support using xxxxxx.mobile.cshtml</li>
<li>IsMobile, _LayoutSwitcher.cshtml for switching between mobile/desktop</li>
</ul>
<p>&nbsp;</p>
<p>What’s new in ASP.NET MVC4</p>
<ul>
<li>demos of jquery mobile theme support – all css that comes with jquery mobile. modify theme is the easiest way to change them.</li>
<li>support for anything.mobile.cshtml works at the partial level.</li>
<li>knockoutjs included by default. designed for single page apps (gmail, todolists)</li>
<li>jquery mobile included by default.</li>
<li>Install-Package MvcJQueryMobile</li>
<li>Recipes:
<ul>
<li>Install via nuget</li>
<li>Mvc.Haack.ViewMobilizer – sample</li>
</ul>
</li>
<li>async and await
<ul>
<li>.net 4.5 (download CTP)</li>
<li>inherit from asyncController</li>
<li>public async Task&lt;ViewResult&gt; Index</li>
<li>Uses same thread if possbile</li>
</ul>
</li>
<li>Guess: another preview release of MVC4 (soon)</li>
<li>stevesmithblog.com</li>
</ul>
<p>&nbsp;</p>
<p>Wicked Domain Models</p>
<ul>
<li>Anemic Domain Models.</li>
<li>Managers-&gt;Serivces-&gt;PageLoad-&gt;Back to Services-&gt;Utility-&gt;Helper-&gt;etc.</li>
<li>services should be used to merge data access and domain logic.</li>
<li>don’t expose things that are not supported ex: raw collection w/ add/remove/clear list.</li>
<li>when a collection is just queryable expost it as ienumberable. not icollection or ilist.</li>
<li>is object has required fields make constructor that requires information (paramaters) . If a object does not have required information do not use a constructor with params.</li>
<li>The object model should only expose as much functionallity as is required.</li>
<li>If values can’t change after assignment put assignment as part of the ctor.</li>
<li>DDD – Double Dispatch (taking a service using it by passing myself (this) in)</li>
<li>slutty code – one thing cares too much about another and keeps poking it.</li>
<li>Talking to yourself is good</li>
<li>Methods should be in your domain model. Methods are good for your domain model.</li>
<li>DDD = name of the game is make it private.</li>
<li>Stratagy Pattern = removing switch statems for actual logic.</li>
<li>Services are part of DDD, they coordinate and delegate to model.</li>
<li>by pushing functionality down to the model you remove the requirement for intrinsic knowledge in someones head of a systems architecture.</li>
<li>Object model should be behavioral, DTO = null.</li>
</ul>
<p>&nbsp;</p>
<p>Massive Scailability thru ruthless caching</p>
<ul>
<li>AppFabric Demo
<ul>
<li>authoritative information is expensive.</li>
<li>the network is a huge cost.</li>
<li>Added a micro-cache (5sec) commonly eliminates 95% of database calls.</li>
<li>AppFabric cache is a “aside” cache. You check the cache for the data first, if not exist get from source (db, web service, etc)</li>
<li>AppFabric is a service, runs on a port, you connect to it.</li>
<li>Unique named caches</li>
<li>Connect to the cache much like a database.</li>
<li>Connect localhost?</li>
</ul>
</li>
</ul>
<p>Collections DeepDive</p>
<ul>
<li>Adding an element to an array using .Add() does Array.Copy(). O(n). Array.Copy() is slow. Use AddRange(). No loops.</li>
<li>Using Array.Add() on less then 10K objects is fine…if you will never scale.</li>
<li>Get a copy of ILSpy to understand what is happening at a lower level.</li>
<li>LinkedList&lt;T&gt; is fast, you have to tell it where to put an item but slow on look ups. (after for add/remove)</li>
<li>Dictionary gives fast lookup. Performances depends on GetHashCode</li>
<ul>
<li>Use int/string for key. It’s the fastest and already optimized.</li>
</ul>
<li>For multi-value per key use .ToLookup – this is cool.</li>
<li>Sorted Collections</li>
<ul>
<li>SortedList&lt;T&gt; uses less memory than SortedDictionary&lt;T&gt;</li>
<li>SortedDictionary&lt;T&gt; has fast add/remove and is sorted.</li>
<li>Adding lots of data at once use Sorted&lt;T&gt; (via AddRange())</li>
</ul>
<li>Concurrent Collections</li>
<ul>
<li>ConcurrentBag,Dictionary,Queue,Stack,Partitioner,BlockingCollection</li>
<ul>
<li>TryAdd() – returns bol</li>
<li>TryTake() – returns bool</li>
<li>Always check value before moving on.</li>
</ul>
<li>BlockingCollection&lt;T&gt;</li>
<ul>
<li>Blocks and waits until TryXXXX is done.</li>
<li>TryXXXX can specify a timeout.</li>
<li></li>
</ul>
</ul>
</ul>
<p>Unit of work!!!!! – Business logic should not have to care about saving information.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fcodemashnotes%2F&amp;title=CodeMashNotes" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fcodemashnotes%2F&amp;title=CodeMashNotes" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fcodemashnotes%2F&amp;title=CodeMashNotes" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Feric.polerecky.com%2Fcodemashnotes%2F&amp;headline=CodeMashNotes" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=CodeMashNotes&amp;url=http%3A%2F%2Feric.polerecky.com%2Fcodemashnotes%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=CodeMashNotes&amp;u=http%3A%2F%2Feric.polerecky.com%2Fcodemashnotes%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=CodeMashNotes&amp;url=http%3A%2F%2Feric.polerecky.com%2Fcodemashnotes%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=CodeMashNotes&amp;url=http%3A%2F%2Feric.polerecky.com%2Fcodemashnotes%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=CodeMashNotes&amp;url=http%3A%2F%2Feric.polerecky.com%2Fcodemashnotes%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Feric.polerecky.com%2Fcodemashnotes%2F&amp;title=CodeMashNotes&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Feric.polerecky.com%2Fcodemashnotes%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Feric.polerecky.com%2Fcodemashnotes%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Feric.polerecky.com%2Fcodemashnotes%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://eric.polerecky.com/codemashnotes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Managers: How to make your job easy</title>
		<link>http://eric.polerecky.com/managers-how-to-make-your-job-easy/</link>
		<comments>http://eric.polerecky.com/managers-how-to-make-your-job-easy/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 15:56:00 +0000</pubDate>
		<dc:creator>detroitpro</dc:creator>
				<category><![CDATA[awesome]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[managers]]></category>

		<guid isPermaLink="false">http://eric.polerecky.com/?p=841</guid>
		<description><![CDATA[Joel Spolsky wrote a guest post on AVC, Fred Wilson’s blog, about management. It’s a pretty nice article about how founders struggle through creating management structures. However; the TL;DR version speaks to something that is too often overlooked. Too many times I’ve seen deadline-based hiring, cronyism or – and most often this is the case <a href='http://eric.polerecky.com/managers-how-to-make-your-job-easy/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p><a href="https://twitter.com/spolsky" target="_blank">Joel Spolsky</a> wrote a guest post on AVC, <a href="http://www.avc.com/a_vc/about.html" target="_blank">Fred Wilson</a>’s blog, about management. It’s a pretty nice article about how founders struggle through creating management structures. However; the TL;DR version speaks to something that is too often overlooked. Too many times I’ve seen deadline-based hiring, cronyism or – and <strong>most often this is the case</strong> – not having the people who will work with and for as part of the interview.</p>
<p>TL;DR</p>
<p><a href="http://eric.polerecky.com/wp-content/uploads/2012/02/image1.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://eric.polerecky.com/wp-content/uploads/2012/02/image_thumb1.png" width="682" height="152" /></a></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fmanagers-how-to-make-your-job-easy%2F&amp;title=Managers%3A+How+to+make+your+job+easy" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fmanagers-how-to-make-your-job-easy%2F&amp;title=Managers%3A+How+to+make+your+job+easy" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fmanagers-how-to-make-your-job-easy%2F&amp;title=Managers%3A+How+to+make+your+job+easy" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Feric.polerecky.com%2Fmanagers-how-to-make-your-job-easy%2F&amp;headline=Managers%3A+How+to+make+your+job+easy" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Managers%3A+How+to+make+your+job+easy&amp;url=http%3A%2F%2Feric.polerecky.com%2Fmanagers-how-to-make-your-job-easy%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Managers%3A+How+to+make+your+job+easy&amp;u=http%3A%2F%2Feric.polerecky.com%2Fmanagers-how-to-make-your-job-easy%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Managers%3A+How+to+make+your+job+easy&amp;url=http%3A%2F%2Feric.polerecky.com%2Fmanagers-how-to-make-your-job-easy%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Managers%3A+How+to+make+your+job+easy&amp;url=http%3A%2F%2Feric.polerecky.com%2Fmanagers-how-to-make-your-job-easy%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Managers%3A+How+to+make+your+job+easy&amp;url=http%3A%2F%2Feric.polerecky.com%2Fmanagers-how-to-make-your-job-easy%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Feric.polerecky.com%2Fmanagers-how-to-make-your-job-easy%2F&amp;title=Managers%3A+How+to+make+your+job+easy&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Feric.polerecky.com%2Fmanagers-how-to-make-your-job-easy%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Feric.polerecky.com%2Fmanagers-how-to-make-your-job-easy%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Feric.polerecky.com%2Fmanagers-how-to-make-your-job-easy%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://eric.polerecky.com/managers-how-to-make-your-job-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting ready for Kanban</title>
		<link>http://eric.polerecky.com/getting-ready-for-kanban/</link>
		<comments>http://eric.polerecky.com/getting-ready-for-kanban/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 18:16:00 +0000</pubDate>
		<dc:creator>detroitpro</dc:creator>
				<category><![CDATA[kanban]]></category>
		<category><![CDATA[lean]]></category>

		<guid isPermaLink="false">http://eric.polerecky.com/?p=836</guid>
		<description><![CDATA[InfoQ has a great interview with Jesper Boeg about teams getting started with Kanban. http://www.infoq.com/interviews/jesper-boeg-priming-kanban]]></description>
			<content:encoded><![CDATA[<p>InfoQ has a great interview with Jesper Boeg about teams getting started with Kanban.</p>
<p><a href="http://www.infoq.com/interviews/jesper-boeg-priming-kanban">http://www.infoq.com/interviews/jesper-boeg-priming-kanban</a></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fgetting-ready-for-kanban%2F&amp;title=Getting+ready+for+Kanban" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fgetting-ready-for-kanban%2F&amp;title=Getting+ready+for+Kanban" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Fgetting-ready-for-kanban%2F&amp;title=Getting+ready+for+Kanban" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Feric.polerecky.com%2Fgetting-ready-for-kanban%2F&amp;headline=Getting+ready+for+Kanban" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Getting+ready+for+Kanban&amp;url=http%3A%2F%2Feric.polerecky.com%2Fgetting-ready-for-kanban%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Getting+ready+for+Kanban&amp;u=http%3A%2F%2Feric.polerecky.com%2Fgetting-ready-for-kanban%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Getting+ready+for+Kanban&amp;url=http%3A%2F%2Feric.polerecky.com%2Fgetting-ready-for-kanban%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Getting+ready+for+Kanban&amp;url=http%3A%2F%2Feric.polerecky.com%2Fgetting-ready-for-kanban%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Getting+ready+for+Kanban&amp;url=http%3A%2F%2Feric.polerecky.com%2Fgetting-ready-for-kanban%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Feric.polerecky.com%2Fgetting-ready-for-kanban%2F&amp;title=Getting+ready+for+Kanban&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Feric.polerecky.com%2Fgetting-ready-for-kanban%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Feric.polerecky.com%2Fgetting-ready-for-kanban%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Feric.polerecky.com%2Fgetting-ready-for-kanban%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://eric.polerecky.com/getting-ready-for-kanban/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trello.Router</title>
		<link>http://eric.polerecky.com/trello-router/</link>
		<comments>http://eric.polerecky.com/trello-router/#comments</comments>
		<pubDate>Mon, 13 Feb 2012 18:20:00 +0000</pubDate>
		<dc:creator>detroitpro</dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[trello]]></category>
		<category><![CDATA[campfire]]></category>
		<category><![CDATA[sdk]]></category>

		<guid isPermaLink="false">http://eric.polerecky.com/?p=829</guid>
		<description><![CDATA[sending board/card updates to your favorite business class social network since 02/07/2012. https://github.com/detroitpro/Trello.Router The goal here is to be a mini hubot and keep everyone, that is anyone, in the know about the the cool sh!t that we are working on. or…a way to give managers visibility into a card wall since they might not <a href='http://eric.polerecky.com/trello-router/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>sending board/card updates to your favorite business class social network since 02/07/2012.</p>
<p><a href="https://github.com/detroitpro/Trello.Router">https://github.com/detroitpro/Trello.Router</a></p>
<p>The goal here is to be a mini <a href="https://github.com/github/hubot" target="_blank">hubot</a> and keep everyone, that is anyone, in the know about the the cool sh!t that we are working on.</p>
<p>or…a way to give managers visibility into a card wall since they might not be actually look at it and this feels more like email or sharepoint.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Ftrello-router%2F&amp;title=Trello.Router" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Ftrello-router%2F&amp;title=Trello.Router" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Feric.polerecky.com%2Ftrello-router%2F&amp;title=Trello.Router" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Feric.polerecky.com%2Ftrello-router%2F&amp;headline=Trello.Router" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Trello.Router&amp;url=http%3A%2F%2Feric.polerecky.com%2Ftrello-router%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Trello.Router&amp;u=http%3A%2F%2Feric.polerecky.com%2Ftrello-router%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Trello.Router&amp;url=http%3A%2F%2Feric.polerecky.com%2Ftrello-router%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Trello.Router&amp;url=http%3A%2F%2Feric.polerecky.com%2Ftrello-router%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Trello.Router&amp;url=http%3A%2F%2Feric.polerecky.com%2Ftrello-router%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Feric.polerecky.com%2Ftrello-router%2F&amp;title=Trello.Router&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Feric.polerecky.com%2Ftrello-router%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Feric.polerecky.com%2Ftrello-router%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Feric.polerecky.com%2Ftrello-router%2F" ><img class="lightsocial_img" src="http://eric.polerecky.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://eric.polerecky.com/trello-router/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: eric.polerecky.com @ 2012-05-23 11:11:20 -->
