<?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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Mark Nichols</title>
	
	<link>http://marknic.net</link>
	<description>Let me explain. No, there is too much.  I will sum up.</description>
	<lastBuildDate>Fri, 30 Dec 2011 20:45:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<div id="fb-root" />
					<script type="text/javascript">
						window.fbAsyncInit = function()
						{
							FB.init({appId: null, status: true, cookie: true, xfbml: true});
						};
						(function()
						{
							var e = document.createElement('script'); e.async = true;
							e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
							document.getElementById('fb-root').appendChild(e);
						}());
					</script>	
						<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/marknic" /><feedburner:info uri="marknic" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Using NuGet in TFS Without Committing Packages to Source Control</title>
		<link>http://feedproxy.google.com/~r/marknic/~3/hQe9eDZO7f0/</link>
		<comments>http://marknic.net/2011/12/21/using-nuget-in-tfs-without-committing-packages-to-source-control/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 16:52:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Automated Build]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[NuGet]]></category>
		<category><![CDATA[Team Foundation Server]]></category>
		<category><![CDATA[TFS]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://marknic.net/?p=283</guid>
		<description><![CDATA[And, without modifying your project “*.*proj” files. And, without storing nuget.exe in your project’s source control. NuGet 1.6 is out and with it is a new update to Visual Studio that will update your solution and projects with some extra code and even the NuGet.exe application so that your build process will dynamically download the [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="font-size: x-small;">And, <span style="text-decoration: underline;">without </span>modifying your project “*.*proj” files.</span></strong></p>
<p><strong><span style="font-size: x-small;">And, <span style="text-decoration: underline;">without</span> storing nuget.exe in your project’s source control.</span></strong></p>
<p><a href="http://nuget.org/">NuGet 1.6</a> is out and with it is a new update to Visual Studio that will update your solution and projects with some extra code and even the NuGet.exe application so that your build process will dynamically download the required NuGet packages.  Rightly so, this is in response to the request that NuGet packages not be stored in source control as they just take up space since they are always available via download.</p>
<p>I understand the approach that was taken (including a .targets file as well as the nuget.exe as well as updating the **proj files) however, I think all of that is unnecessary clutter if your build process can handle it alone.</p>
<p>So, I looked at the NuGet commands and updated the standard TFS 2010 build template to manage this additional step automatically.  With this new template, there is no need to update your solution or projects or include NuGet.exe in your project source.</p>
<p>The only thing you really need to change in your project source control is remove the “packages” folder from source control.  That folder will automatically be created during the build.</p>
<p>Even if you already have custom build templates, you should be able to copy the NuGet restore section over since it is all contained in a single sequence.</p>
<p>The one thing this solution does not do is download the packages locally on your dev machine.  So, if you are getting a solution from source control for the first time, you won’t get all of the references you need since the packages folder isn’t in TFS.  That is easily fixed with <a title="NuGet TFS Files" href="https://skydrive.live.com/redir.aspx?cid=5ebb260e3dc8af43&amp;resid=5EBB260E3DC8AF43!800&amp;parid=5EBB260E3DC8AF43!798" target="_blank">a simple PowerShell script </a>that you can run locally to set you up.  All of this is provided below.</p>
<h1><span style="color: #666666;"> </span></h1>
<h1><span style="color: #666666; font-size: x-large;">The solution:</span></h1>
<h2>The Template:</h2>
<p>Download the “<a title="NuGet TFS Files" href="https://skydrive.live.com/redir.aspx?cid=5ebb260e3dc8af43&amp;resid=5EBB260E3DC8AF43!800&amp;parid=5EBB260E3DC8AF43!798" target="_blank">NuGetRestoreTemplate.xaml</a>” template and add it to source control.  This can be anywhere -  it doesn’t need to be part of your Team Project, it just needs to be in a location where your build can access it.</p>
<h2>NuGet.exe:</h2>
<p>You have 3 options here.</p>
<ol>
<li>The easiest and least intrusive your build machine is to add NuGet.exe to source control.  Like the template, this does not need to be in your Team Project.  Just put it in a location where your build can access it.  You then tell the build definition where it exists in source control.  This approach makes updating NuGet.exe easy since it’s all done through source control.  You never have to get on the build machine which in some environments is next to impossible.</li>
<li>Put it on your build server and remember the exact file path.  You can tell the build definition exactly where to look for it.</li>
<li>Put it on your build server and add that folder to your PATH environment variable.  If you do this, then you will leave the location blank in the build definition.  It will be found automatically.  One note here: if you do this, you may have to reboot your machine so the build process realizes the right path.</li>
</ol>
<p>One suggestion for the template and the NuGet.exe location in source control:  Create a general Team Project that will house all of your build goodies such as custom templates, custom activities and support applications.  I generally create a “BuildActivities” project and put everything in there.  You just need to give everyone read access to it.</p>
<p>To follow along with this recommendation, I created a “BuildActivities” Team Project.  In it I have a “BuildProcessTemplates” folder where I keep all of the generally available build templates.  I have a “NuGet” folder where I keep the “NuGet.exe” application.  I also have subfolders in here for previous releases (just in case).  I also have a folder called “Custom Activities” for all of the custom activities that my templates require.  Note: the template I created for the solution I am describing does not require any custom activities.  I just included that suggestion for completeness.</p>
<h1><span style="color: #666666;"> </span></h1>
<h1><span style="color: #666666; font-size: x-large;">Creating the Build Definition</span></h1>
<p>Creating the build definition is pretty straight forward.</p>
<ol>
<li>When you get to the Process, click “New…” next to your “Build process file:”.</li>
<li>Click “Select an existing XAML file”</li>
<li>Click “Browse” and navigate to where you placed the template in source control</li>
<li>Click “OK”</li>
</ol>
<p><a href="http://marknic.net/wp-content/uploads/2011/12/image.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://marknic.net/wp-content/uploads/2011/12/image_thumb.png" border="0" alt="image" width="341" height="368" /></a></p>
<p>The “NuGet Restore/Install” section will appear in the build process parameters</p>
<p><a href="http://marknic.net/wp-content/uploads/2011/12/image1.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://marknic.net/wp-content/uploads/2011/12/image_thumb1.png" border="0" alt="image" width="449" height="208" /></a></p>
<p>Enter the location of the NuGet.exe file.  In this example I placed it in source control but you can just as easily enter the full path on the build machine if that’s where you placed it.  Leave this blank if you put NuGet.exe on the build machine and in the “Path”.</p>
<p>Next, you can add the locations of where to look for the NuGet packages during download.  You can enter multiples here – just delimit with a semi-colon “;”.  If you leave this blank, NuGet will attempt to look at “%AppData%\NuGet\NuGet.config” for NuGet repositories.   Keep in mind that if you leave the parameter blank and expect the build machine to look in the config file, that location is account specific.  The ID of the build process will need to have that file available.</p>
<p>In my example, I included a local network share I set up as a gallery as well as the official NuGet Gallery.</p>
<p>The “Additional Install Arguments” is there if you want to include other parameters like “-Prerelease” or “-ExcludeVersion”.  Note: include the “-“ before each parameter.</p>
<p>That’s it.  You can now remove the “packages” folder from source control and do a build.</p>
<p>Of course, and as always, I would recommend testing this first on a sample app within your environment just to see how it works.</p>
<p>When you run the build, you will see in your log file something similar to this:</p>
<p><a href="http://marknic.net/wp-content/uploads/2011/12/image2.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://marknic.net/wp-content/uploads/2011/12/image_thumb2.png" border="0" alt="image" width="433" height="249" /></a></p>
<p>This shows that the build process has dynamically downloaded all of the required NuGet packages.</p>
<h1><span style="color: #666666; font-size: x-large;">Resources:</span></h1>
<h2>NuGet Restore/Install/Update:</h2>
<p>Here’s the templates and PowerShell Script:</p>
<ul>
<li><a title="NuGet TFS Files" href="https://skydrive.live.com/redir.aspx?cid=5ebb260e3dc8af43&amp;resid=5EBB260E3DC8AF43!800&amp;parid=5EBB260E3DC8AF43!798" target="_blank">NuGetRestoreTemplate.XAML</a></li>
<li><a title="NuGet TFS Files" href="https://skydrive.live.com/redir.aspx?cid=5ebb260e3dc8af43&amp;resid=5EBB260E3DC8AF43!800&amp;parid=5EBB260E3DC8AF43!798" target="_blank">NuGetRestore.ps1</a></li>
<li><a title="NuGet TFS Files" href="https://skydrive.live.com/redir.aspx?cid=5ebb260e3dc8af43&amp;resid=5EBB260E3DC8AF43!800&amp;parid=5EBB260E3DC8AF43!798" target="_blank">NuGetRestoreUpdateTemplate.xaml</a></li>
</ul>
<p>The 2nd template I’ve provided will do the same “restore” process but will also update to the latest version of the NuGet packages rather that just the versions listed in the projects.  It is called <a title="NuGet TFS Files" href="https://skydrive.live.com/redir.aspx?cid=5ebb260e3dc8af43&amp;resid=5EBB260E3DC8AF43!800&amp;parid=5EBB260E3DC8AF43!798" target="_blank">NuGetRestoreUpdateTemplate.xaml</a>.  Note: it may or may not break your code to use the update template depending on the version of the package that is downloaded.  See the <a href="http://docs.nuget.org/docs/reference/command-line-reference#Update_Command">NuGet documentation</a> for more details.  You can include the “-safe” option in the build definition to avoid the breakage.</p>
<p>The PowerShell script will restore all of the NuGet packages locally if you are not storing the “packages” folder in source control:  <a title="NuGet TFS Files" href="https://skydrive.live.com/redir.aspx?cid=5ebb260e3dc8af43&amp;resid=5EBB260E3DC8AF43!800&amp;parid=5EBB260E3DC8AF43!798" target="_blank">NuGetRestore.ps1</a></p>
<p>&nbsp;</p>
<h2>My Other TFS Build Template Projects:</h2>
<p><a href="http://tfsversioning.codeplex.com/">TfsVersioning Automated Assembly Versioning on CodePlex</a></p>
<p><a href="http://nugetter.codeplex.com/">NuGetter Automated NuGet Package Generation on CodePlex</a></p>
<div class='wpfblike' style='height: 40px;'><fb:like href='http://marknic.net/2011/12/21/using-nuget-in-tfs-without-committing-packages-to-source-control/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://feeds.feedburner.com/~r/marknic/~4/hQe9eDZO7f0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://marknic.net/2011/12/21/using-nuget-in-tfs-without-committing-packages-to-source-control/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://marknic.net/2011/12/21/using-nuget-in-tfs-without-committing-packages-to-source-control/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=using-nuget-in-tfs-without-committing-packages-to-source-control</feedburner:origLink></item>
		<item>
		<title>Organizing a Conference with CodeManiacs Ian Randall and Ben Gracewood</title>
		<link>http://feedproxy.google.com/~r/marknic/~3/cHZ6wW-WjLo/</link>
		<comments>http://marknic.net/2011/12/15/organizing-a-conference-with-codemaniacs-ian-randall-and-ben-gracewood/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 11:00:00 +0000</pubDate>
		<dc:creator>DeveloperSmackdown</dc:creator>
				<category><![CDATA[Developer Smackdown]]></category>

		<guid isPermaLink="false">http://marknic.net/2011/12/15/organizing-a-conference-with-codemaniacs-ian-randall-and-ben-gracewood/</guid>
		<description><![CDATA[In this episode, Clark and Mark talk across a lot of time zones to Ian Randall and Ben Gracewood about how to set up and organize a technical conference. Ian and Ben are creating “CodeMania” which is a developer’s conference slated for March 2012 in Aukland, New Zealand. This is an interesting behind-the-scenes view of [...]]]></description>
			<content:encoded><![CDATA[<p>In this episode, Clark and Mark talk across a lot of time zones to Ian Randall and Ben Gracewood about how to set up and organize a technical conference.  Ian and Ben are creating “CodeMania” which is a developer’s conference slated for March 2012 in Aukland, New Zealand.  This is an interesting behind-the-scenes view of what goes through the minds of organizers trying to create the ultimate technical discussion and learning environment.,</p>
<p>
<h3><a href="http://www.podtrac.com/pts/redirect.mp3/DeveloperSmackdown.com/Services/PodcastServices.svc/GetPodcast/ds_063.mp3">Play Now</a></h3>
<p>
<hr />
<h1>Show Notes</h1>
<p><b>Ian Randall &#8211; @kiwipom</b></p>
<blockquote>
<p>Ian Randall has been involved in software since the mid 80&#8242;s, and professionally since 1997. He&#8217;s written code in Basic, C, C++ and more recently in C# with WinForms and WPF. He has been at Datacom Systems Ltd in Auckland for over 5 years. He’s been a BA, QA, PM and TL but didn’t like any of them, and is happy now being ‘Software Developer’ He blogs (semi)regularly on http://xaml.geek.nz and is co-creator of codemania </p>
</blockquote>
<p><b>Ben Gracewood &#8211; @nzben</b></p>
<blockquote>
<p>Ben is a recovering manager, a coder at Intergen, and a hardened veteran cat herder (aka conference organiser).</p>
</blockquote>
<h1>&#160;</h1>
<h1>&#160;</h1>
<h1>Resources</h1>
<p>Links mentioned during the show:</p>
<p><a href="http://codemania.co.nz/">CodeMania – A Conference for Developers</a></p>
<h1>&#160;</h1>
<h1>&#160;</h1>
<h1>Sponsors</h1>
<p>ThatConference is a brand new conference coming to the Kalahari Resort in the Wisconsin Dells on August 13th, 14th, 15th of 2012. This is a conference is founded by Developers who want to create the conference they’ve always want to go to and for a price that’s easy to justify to your boss. First and foremost this is a developer’s conference. 3 days of any technology and nothing but code. You can find more at <a href="http://ThatConference.com">ThatConference.com</a>.</p>
<p>WebSite Hosting is provided by <a href="http://www.appliedi.net/" target="_blank">Applied Innovations</a>.</p>
<h1>&#160;</h1>
<h1>&#160;</h1>
<h1>Music</h1>
<p><a href="http://ReMix.NIN.com" target="_blank">ReMix.NIN.com</a>, and <a href="http://www.podcastthemes.com/">http://www.podcastthemes.com/</a></p></p>
<div class='wpfblike' style='height: 40px;'><fb:like href='http://marknic.net/2011/12/15/organizing-a-conference-with-codemaniacs-ian-randall-and-ben-gracewood/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://feeds.feedburner.com/~r/marknic/~4/cHZ6wW-WjLo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://marknic.net/2011/12/15/organizing-a-conference-with-codemaniacs-ian-randall-and-ben-gracewood/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.podtrac.com/pts/redirect.mp3/DeveloperSmackdown.com/Services/PodcastServices.svc/GetPodcast/ds_063.mp3" length="197" type="audio/mpeg" />
		<feedburner:origLink>http://marknic.net/2011/12/15/organizing-a-conference-with-codemaniacs-ian-randall-and-ben-gracewood/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=organizing-a-conference-with-codemaniacs-ian-randall-and-ben-gracewood</feedburner:origLink></item>
		<item>
		<title>Arduino and Netduino with a Couple of Microcontroller Geeks</title>
		<link>http://feedproxy.google.com/~r/marknic/~3/zWm9LiXpJhk/</link>
		<comments>http://marknic.net/2011/10/26/arduino-and-netduino-with-a-couple-of-microcontroller-geeks/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 15:11:25 +0000</pubDate>
		<dc:creator>DeveloperSmackdown</dc:creator>
				<category><![CDATA[Developer Smackdown]]></category>

		<guid isPermaLink="false">http://marknic.net/2011/10/26/arduino-and-netduino-with-a-couple-of-microcontroller-geeks/</guid>
		<description><![CDATA[In this version, we grab a table at the local pub and talk microcontrollers. Brothers, Min and Lwin Maung walk us through the Arduino and Netduino revolution. By the end of the show, we decided to hack Clark’s garage door. We will save that for another show., Play Now Show Notes Accolade Systems Accolade Systems [...]]]></description>
			<content:encoded><![CDATA[<p>In this version, we grab a table at the local pub and talk microcontrollers. Brothers, Min and Lwin Maung walk us through the Arduino and Netduino revolution. By the end of the show, we decided to hack Clark’s garage door. We will save that for another show.,</p>
<p>
<h3><a href="http://www.podtrac.com/pts/redirect.mp3/DeveloperSmackdown.com/Services/PodcastServices.svc/GetPodcast/ds_062.mp3">Play Now</a></h3>
<p>
<hr />
<h1>Show Notes</h1>
<h3><font>Accolade Systems</font></h3>
<blockquote>
<p>Accolade Systems is a startup based in Northbrook, Illinois. Accolade supports small and mid size businesses and they are experts in creating mobile applications. They are currently in the process of creating an automotive infotainment system as well as event planning and management system. They are also experts in VoIP technologies and have installed VoIP servers and phone systems for ISPs in Chicago. In the past members of the Accolade team have built and installed servers for local Chicago businesses as well as NGOs all over the world. </p>
</blockquote>
<h3><font>Min Maung</font></h3>
<blockquote>
<p>In his &quot;spare&quot; time, Min Maung is a skilled, cross-platform mobile developer, aggressive hackathon competitor and presenter. Enamored with the Window Phone UI, Min co-created the first Metro UI launcher for Android, featured on Engadget. He&#8217;s soon to publish “check in”, an Eventbrite driven application and currently developing several Windows phone applications . When he&#8217;s not coding, he&#8217;s building robots. Monday through Friday, you&#8217;ll find Min at a leading, privately-held payroll and HR sofware solutions company, cranking out .Net code and writing apps in ASP.Net, Silverlight, and other .Net solutions. </p>
</blockquote>
<h3><font>Lwin Maung</font></h3>
<blockquote>
<p>Lwin Maung is a developer and principal at Accolade Systems, a Chicagoland IT consulting startup. He is a developer of mobile applications. He also secures servers, enable VOIP and SIP solutions, and designs networks for small businesses. In his free time, Lwin plays with microcontrollers. Lwin teamed up with his brother, Min, to win several hackathons. Together, they&#8217;ve developed multiple cross-platform mobile apps.</p>
</blockquote>
<h1>Links Mentioned</h1>
<ul>
<li>Arduino : <a href="http://www.arduino.cc">www.arduino.cc</a> </li>
<li>Netduino: <a href="http://www.netduino.com">www.netduino.com</a> </li>
<li>Sparkfun: <a href="http://www.sparkfun.com">www.sparkfun.com</a> </li>
<li>Digikey: <a href="http://www.digikey.com">www.digikey.com</a> </li>
<li>Local Store in Chicagoland : <a href="http://www.trossenrobotics.com">www.trossenrobotics.com</a> </li>
<li>Chemicals: <a href="http://www.mgchemicals.com">www.mgchemicals.com</a> </li>
<li><a href="http://yourduino.com/">http://yourduino.com/</a> </li>
<li>Spark Fun: <a href="http://www.sparkfun.com/">http://www.sparkfun.com/</a> </li>
<li>ServoCity: <a href="http://www.servocity.com/index.html">http://www.servocity.com/index.html</a> </li>
<li>All About Circuits: <a href="http://www.allaboutcircuits.com/">http://www.allaboutcircuits.com/</a> </li>
</ul>
<h2>Books Mentioned</h2>
<ul>
<li><a href="http://shop.oreilly.com/product/0636920013037.do" target="_blank">Getting Started with the Internet of Things</a></li>
<li><a href="http://shop.oreilly.com/product/9780596153755.do" target="_blank">Make: Electronics</a></li>
</ul>
<h1>Sponsors</h1>
<p>ThatConference is a brand new conference coming to the Kalahari Resort in the Wisconsin Dells on August 13th, 14th, 15th of 2012. This is a conference is founded by Developers who want to create the conference they’ve always want to go to and for a price that’s easy to justify to your boss. First and foremost this is a developer’s conference. 3 days of any technology and nothing but code. You can find more at <a href="http://ThatConference.com">ThatConference.com</a>.</p>
<p>WebSite Hosting is provided by <a href="http://www.appliedi.net/" target="_blank">Applied Innovations</a>.</p>
<h1>Music</h1>
<p><a href="http://ReMix.NIN.com" target="_blank">ReMix.NIN.com</a>, and <a href="http://www.podcastthemes.com/">http://www.podcastthemes.com/</a></p></p>
<div class='wpfblike' style='height: 40px;'><fb:like href='http://marknic.net/2011/10/26/arduino-and-netduino-with-a-couple-of-microcontroller-geeks/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://feeds.feedburner.com/~r/marknic/~4/zWm9LiXpJhk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://marknic.net/2011/10/26/arduino-and-netduino-with-a-couple-of-microcontroller-geeks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.podtrac.com/pts/redirect.mp3/DeveloperSmackdown.com/Services/PodcastServices.svc/GetPodcast/ds_062.mp3" length="197" type="audio/mpeg" />
		<feedburner:origLink>http://marknic.net/2011/10/26/arduino-and-netduino-with-a-couple-of-microcontroller-geeks/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=arduino-and-netduino-with-a-couple-of-microcontroller-geeks</feedburner:origLink></item>
		<item>
		<title>Live from HTML5.tx: Drifting Creatives destroys the DeveloperSmackdown.com website</title>
		<link>http://feedproxy.google.com/~r/marknic/~3/yXWHpgCRhbo/</link>
		<comments>http://marknic.net/2011/10/13/live-from-html5-tx-drifting-creatives-destroys-the-developersmackdown-com-website/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 12:42:27 +0000</pubDate>
		<dc:creator>DeveloperSmackdown</dc:creator>
				<category><![CDATA[Developer Smackdown]]></category>

		<guid isPermaLink="false">http://marknic.net/2011/10/13/live-from-html5-tx-drifting-creatives-destroys-the-developersmackdown-com-website/</guid>
		<description><![CDATA[We’re live from Austin TX at the epic HTML5.tx conference. In version 56 we asked the warriors from Drifting Creatives to blow up the DeveloperSmackdown.com site. They did exactly that! They walk us through what’s wrong, why they would change it. Of course they served us that plate of humble pie in front of 100 [...]]]></description>
			<content:encoded><![CDATA[<p>We’re live from Austin TX at the epic HTML5.tx conference. In version 56 we asked the warriors from Drifting Creatives to blow up the DeveloperSmackdown.com site. They did exactly that! They walk us through what’s wrong, why they would change it. Of course they served us that plate of humble pie in front of 100 of our closest friends. After that Brandon and Clark talk about where the site should start adopting HTML5. ,</p>
<p>
<h3><a href="http://www.podtrac.com/pts/redirect.mp3/DeveloperSmackdown.com/Services/PodcastServices.svc/GetPodcast/ds_061.mp3">Play Now</a></h3>
<p>
<hr />
<h1>Show Notes</h1>
<p><b><a href="http://www.driftingcreatives.com/" target="_blank">Drifting Creatives</a>:</b></p>
<blockquote>
<p>Drifting Creatives is a two-person design team with a focus in badassery. We design user-friendly websites, develop beautiful and memorable brands and if you can print it, we can design it. We began this journey by designing our way across the country; connecting &amp; learning from creatives around the US and sharing what we learned with students. We lived and designed from the road for five months. Our travels were published in two magazines. We spoke at a design conference in Nashville, TN. Students asked us to come to their universities to share our story. We did. And it was awesome. </p>
<p>We started our company in an unconventional way and continue to strive to be a bit different in everything we do. So yeah, we&#8217;re not your normal design firm, but you don&#8217;t want us to be. We are Martin Hooper and Gavin Braman, just a couple of warriors, tryin&#8217; to make it big.</p>
</blockquote>
<p><b>Gavin Braman</b></p>
<blockquote>
<p>I&#8217;m a 20-somethin&#8217; image maker and adventurer. My name is Gavin Braman and I co-own Drifting Creatives. During the day I stare at my computer screen until magical unicorns whisper ideas into my ears. Once I have an idea, I teleport into my laptop, slap around some pixels with my two-handed battle axe and usually I emerge victorious.</p>
<p>When I&#8217;m not making websites or logos for clients, I might be drawing monsters. Imagine Hairy Friends is something I started and work on when I&#8217;m feeling exceptionally inspired. I&#8217;m a huge fan of monster-related art. Love artists like, Alex Pardee, Jeff Soto, Nicholas Di Genova and I would assume this obsession stems from my on-and-off addiction to computer games. #nerd</p>
<p>I also dabble in photography. I shoot photos of beautiful models in strange and weird locations, like abandoned hotels. Every shoot is an epic adventure and the entire process is very inspiring in both my design work and art.</p>
<p>Once I&#8217;ve exhausted all creative resources, I go rock climbing. I&#8217;m a huge fan of all board-sports too, though snowboarding and wakeboarding are at the top of the list. Some items on my bucket list are to go deep-water soloing in Thailand, go snowboarding and see one of my designs or monsters on someone&#8217;s snowboard, learn to kayak, make Drifting Creatives successful enough that we can hire a personal masseuse and to one day have a beard as awesome as Martin Hooper, my business partner.</p>
</blockquote>
<p><b>Martin Hooper</b></p>
<blockquote>
<p>I grew up in the small town of Henderson, Texas. I grew up in an artistic family and discovered my passion for design in high school. After high school, I completed my Bachelor of Visual Studies at Texas A&amp;M University.&#160; </p>
<p>I enjoy the winter, great beers, and good people. My mother tells me I’m a blast to hang out with. I&#8217;m married to a wonderful Australian woman, and we have a pseudo-child in our black labrodoodle named “Cache”.&#160; I like to do a lot stereotypical designer things like take photos with Instagram, ride my bike, and pretend to like crappy music. I’ve been able to work with a ton of talented people in the past few years, and I can’t wait to work with more amazing people in the future. I believe that design is an organic, team-driven process, and I believe a well designed T-shirt could one day save the world. Wanna grab a beer?</p>
</blockquote>
<p><strong>Brandon Satrom</strong></p>
<blockquote>
<p>Brandon is a web evangelist for Microsoft, based in Austin, TX. A unapologetic lover of the web, Brandon loves to talk about HTML, JavaScript, CSS, Open Source and whatever new shiny tool or technology has distracted him from that other thing he was working on (like CoffeeScript). Brandon loves writing and speaking and loves hanging out with and learning from other passionate developers.</p>
<p><a href="http://www.userinexperience.com/">http://www.userinexperience.com</a> </p>
<p><a href="http://twitter.com/BrandonSatrom">@BrandonSatrom</a></p>
</blockquote>
<h1>Resources</h1>
<p>Links mentioned during the show:</p>
<ul>
<li><a href="http://mediaqueri.es" target="_blank">CSS Media Queries</a> </li>
<li>The *EPIC* <a href="http://html5tx.com/" target="_blank">HTML5.tx conference</a> </li>
<li><a href="http://driftingCreatives.com" target="_blank">Drifting Creatives</a> </li>
</ul>
<p>&#160;</p>
<p>As for the site redesign, <strong>that will start soon</strong>. Make sure to check out <a href="http://clarksell.info/" target="_blank">Clark</a> as he will blog not only about the site refresh but the transformation to adopting HTML5.</p>
<h1>Sponsors</h1>
<p>ThatConference is a brand new conference coming to the Kalahari Resort in the Wisconsin Dells on August 13th, 14th, 15th of 2012. This is a conference is founded by Developers who want to create the conference they’ve always want to go to and for a price that’s easy to justify to your boss. First and foremost this is a developer’s conference. 3 days of any technology and nothing but code. You can find more at <a href="http://ThatConference.com">ThatConference.com</a>.</p>
<p>WebSite Hosting is provided by <a href="http://www.appliedi.net/" target="_blank">Applied Innovations</a>.</p>
<h1>Music</h1>
<p><a href="http://ReMix.NIN.com" target="_blank">ReMix.NIN.com</a>, and <a href="http://www.podcastthemes.com/">http://www.podcastthemes.com/</a></p></p>
<div class='wpfblike' style='height: 40px;'><fb:like href='http://marknic.net/2011/10/13/live-from-html5-tx-drifting-creatives-destroys-the-developersmackdown-com-website/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://feeds.feedburner.com/~r/marknic/~4/yXWHpgCRhbo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://marknic.net/2011/10/13/live-from-html5-tx-drifting-creatives-destroys-the-developersmackdown-com-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.podtrac.com/pts/redirect.mp3/DeveloperSmackdown.com/Services/PodcastServices.svc/GetPodcast/ds_061.mp3" length="197" type="audio/mpeg" />
		<feedburner:origLink>http://marknic.net/2011/10/13/live-from-html5-tx-drifting-creatives-destroys-the-developersmackdown-com-website/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=live-from-html5-tx-drifting-creatives-destroys-the-developersmackdown-com-website</feedburner:origLink></item>
		<item>
		<title>Talkin Twilio and Telephony with Keith Casey and John Sheehan</title>
		<link>http://feedproxy.google.com/~r/marknic/~3/ysQRCB00gOo/</link>
		<comments>http://marknic.net/2011/09/07/talkin-twilio-and-telephony-with-keith-casey-and-john-sheehan/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 15:00:00 +0000</pubDate>
		<dc:creator>DeveloperSmackdown</dc:creator>
				<category><![CDATA[Developer Smackdown]]></category>

		<guid isPermaLink="false">http://marknic.net/2011/09/07/talkin-twilio-and-telephony-with-keith-casey-and-john-sheehan/</guid>
		<description><![CDATA[In this version Mark and Clark talk to Keith Casey and John Sheehan of Twilio. Keith and John are Twilio evangelists who talk to developers and help them create reliable and scalable voice and text messaging apps with Twilio technology., Play Now Show Notes Twilio Twilio provides infrastructure APIs for businesses to build scalable, reliable [...]]]></description>
			<content:encoded><![CDATA[<div>In this version Mark and Clark talk to Keith Casey and John Sheehan of Twilio.  Keith and John are Twilio evangelists who talk to developers and help them create reliable and scalable voice and text messaging apps with Twilio technology.,</div>
<div>
<h3><a href="http://www.podtrac.com/pts/redirect.mp3/DeveloperSmackdown.com/Services/PodcastServices.svc/GetPodcast/ds_060.mp3">Play Now</a></h3>
<div>
<hr />
<h1>Show Notes</h1>
<div><strong>Twilio</strong></div>
<blockquote>
<div>Twilio provides <strong>infrastructure APIs</strong> for businesses to build scalable, reliable <strong>voice and text messaging</strong> apps.</div>
</blockquote>
<div><strong>Keith Casey</strong></div>
<blockquote>
<div>Keith Casey has been a developer for over a decade serving in roles ranging from leading distributed teams through major product releases to replacing tabs with spaces. In his current role, he gets to explore new and creative uses of the Twilio API.</p>
<p><a href="http://caseysoftware.com/blog">http://caseysoftware.com/blog</a></div>
<div>Twitter: @CaseySoftware</div>
</blockquote>
<div><strong>John Sheehan</strong></div>
<blockquote>
<div>John launched his career in software when he was 15 by selling practical joke software as shareware on CompuServe and AOL. Since then he’s had stints in desktop support, corporate IT, and systems administration eventually finding his calling building web apps. By day John helps the Twilio community build great things. By night John loves spending time with his wife exploring San Francisco and playing and watching sports. You can find him online working on his award-winning open source project RestSharp, co-hosting the Overload Show, or chirping away about APIs, REST, .NET and more on Twitter.<br />
<a href="http://john-sheehan.com/blog/">http://john-sheehan.com/blog/</a></div>
<div>Twitter: @johnsheehan</div>
</blockquote>
<h1>
Resources</h1>
<ul>
<li><a href="http://www.twilio.com/">http://www.twilio.com/</a></li>
<li>Twilio is hiring Developer Evangelists: <a href="http://www.twilio.com/jobs">http://www.twilio.com/jobs</a></li>
<li><a href="http://www.twilio.com/conference/">Twilio &lt;Conference&gt;</a></li>
</ul>
<h1>Sponsors</h1>
<div>ThatConference is a brand new conference coming to the Kalahari Resort in the Wisconsin Dells on August 13th, 14th, 15th of 2012. This is a conference is founded by Developers who want to create the conference they’ve always want to go to and for a price that’s easy to justify to your boss. First and foremost this is a developer’s conference. 3 days of any technology and nothing but code. You can find more at <a href="http://ThatConference.com">ThatConference.com</a>.</div>
<div>WebSite Hosting is provided by <a href="http://www.appliedi.net/">Applied Innovations</a>.</div>
<h1>Music</h1>
<div><a href="http://ReMix.NIN.com">ReMix.NIN.com</a>, and <a href="http://www.podcastthemes.com/">http://www.podcastthemes.com/</a></div>
</div>
</div>
<div class='wpfblike' style='height: 40px;'><fb:like href='http://marknic.net/2011/09/07/talkin-twilio-and-telephony-with-keith-casey-and-john-sheehan/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://feeds.feedburner.com/~r/marknic/~4/ysQRCB00gOo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://marknic.net/2011/09/07/talkin-twilio-and-telephony-with-keith-casey-and-john-sheehan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.podtrac.com/pts/redirect.mp3/DeveloperSmackdown.com/Services/PodcastServices.svc/GetPodcast/ds_060.mp3" length="197" type="audio/mpeg" />
		<feedburner:origLink>http://marknic.net/2011/09/07/talkin-twilio-and-telephony-with-keith-casey-and-john-sheehan/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=talkin-twilio-and-telephony-with-keith-casey-and-john-sheehan</feedburner:origLink></item>
		<item>
		<title>Build HTML5tx.com with FrogSlayer’s Sam Hooker</title>
		<link>http://feedproxy.google.com/~r/marknic/~3/-7o7xsjDSw0/</link>
		<comments>http://marknic.net/2011/08/31/build-html5tx-com-with-frogslayers-sam-hooker/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 15:00:00 +0000</pubDate>
		<dc:creator>DeveloperSmackdown</dc:creator>
				<category><![CDATA[Developer Smackdown]]></category>

		<guid isPermaLink="false">http://marknic.net/2011/08/31/build-html5tx-com-with-frogslayers-sam-hooker/</guid>
		<description><![CDATA[In this version Mark and Clark sit down with FrogSlayer’s Sam Hooker. We talk to Sam about how he took the creative built by Drifting Creatives and built HTML5TX.com., Play Now Show Notes FrogSlayer FrogSlayer is a full-service software consulting and development firm that specializes in Microsoft .Net. Based in Round Rock, TX, the company [...]]]></description>
			<content:encoded><![CDATA[<div>In this version Mark and Clark sit down with FrogSlayer’s Sam Hooker. We talk to Sam about how he took the creative built by Drifting Creatives and built HTML5TX.com.,</div>
<div>
<h3><a href="http://www.podtrac.com/pts/redirect.mp3/DeveloperSmackdown.com/Services/PodcastServices.svc/GetPodcast/ds_059.mp3">Play Now</a></h3>
<div>
<hr />
<h1>Show Notes</h1>
<div><strong>FrogSlayer</strong></div>
<blockquote>
<div>FrogSlayer is a full-service software consulting and development firm that specializes in Microsoft .Net. Based in Round Rock, TX, the company works with a variety of companies in the health care, oil &amp; gas and data security industries, to name a few. From architecture to design to development, FrogSlayer can handle any or all of the effort to move software from concept to finish.</div>
</blockquote>
<div><strong>Sam Hooker</strong></div>
<blockquote>
<div>Sam is the head of FrogSlayer’s creative department. He has worked in the IT sector in several roles over the past decade, including web and graphics design, network administration, marketing and web consulting. He joined FrogSlayer in early 2009 to do our marketing, and his vast experience and versatility has proven to be invaluable. He is our leading expert in graphics and web design. He’s been playing D&amp;D for 25 years.</div>
</blockquote>
<h1>Resources</h1>
<ol>
<li><a href="http://frogslayer.com/">FrogSlayer Software Development</a></li>
<li><a href="http://www.driftingcreatives.com/">Drifting Creatives</a></li>
<li><a href="http://html5tx.com/">HTML5.tx Conference</a></li>
<li><a href="http://wordpress.org/">WordPress</a></li>
<li><a href="http://www.modernizr.com/">Modernizr</a></li>
<li><a href="http://www.html5rocks.com/">HTML 5 ROCKS</a></li>
<li><a href="http://w3schools.com/">W3Schools</a></li>
<li><a href="http://lib.closetou.com/diveintohtml5/">Dive Into HTML 5</a></li>
<li><a href="http://www.microsoft.com/expression/products/Web_Overview.aspx">Expression Web (with SuperPreview)</a></li>
<li><a href="http://www.asp.net/WebMatrix">WebMatrix</a></li>
<li><a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a></li>
</ol>
<div></div>
<h1>Sponsors</h1>
<div>ThatConference is a brand new conference coming to the Kalahari Resort in the Wisconsin Dells on August 13th, 14th, 15th of 2012. This is a conference is founded by Developers who want to create the conference they’ve always want to go to and for a price that’s easy to justify to your boss. First and foremost this is a developer’s conference. 3 days of any technology and nothing but code. You can find more at <a href="http://ThatConference.com">ThatConference.com</a>.</div>
<div>WebSite Hosting is provided by <a href="http://www.appliedi.net/">Applied Innovations</a>.</div>
<h1>Music</h1>
<div><a href="http://ReMix.NIN.com">ReMix.NIN.com</a>, and <a href="http://www.podcastthemes.com/">http://www.podcastthemes.com/</a></div>
</div>
</div>
<div class='wpfblike' style='height: 40px;'><fb:like href='http://marknic.net/2011/08/31/build-html5tx-com-with-frogslayers-sam-hooker/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://feeds.feedburner.com/~r/marknic/~4/-7o7xsjDSw0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://marknic.net/2011/08/31/build-html5tx-com-with-frogslayers-sam-hooker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.podtrac.com/pts/redirect.mp3/DeveloperSmackdown.com/Services/PodcastServices.svc/GetPodcast/ds_059.mp3" length="197" type="audio/mpeg" />
		<feedburner:origLink>http://marknic.net/2011/08/31/build-html5tx-com-with-frogslayers-sam-hooker/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=build-html5tx-com-with-frogslayers-sam-hooker</feedburner:origLink></item>
		<item>
		<title>NuGetter Project “Pick of the Week” on Channel 9</title>
		<link>http://feedproxy.google.com/~r/marknic/~3/Y7XoRrYWCtU/</link>
		<comments>http://marknic.net/2011/08/25/nugetter-project-pick-of-the-week-on-channel-9/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 18:18:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ALM]]></category>
		<category><![CDATA[Automated Build]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Team Foundation Server]]></category>
		<category><![CDATA[Build]]></category>
		<category><![CDATA[Channel 9]]></category>
		<category><![CDATA[CI]]></category>
		<category><![CDATA[CodePlex]]></category>
		<category><![CDATA[NuGet]]></category>
		<category><![CDATA[NuGet Gallery]]></category>
		<category><![CDATA[NuGetter]]></category>
		<category><![CDATA[Packaging]]></category>
		<category><![CDATA[TFS]]></category>

		<guid isPermaLink="false">http://marknic.net/?p=259</guid>
		<description><![CDATA[I just found out that Brian Keller mentioned my TFS NuGetter (CodePlex) project that automates the creation, push and publish of NuGet packages through TFS 2010  as his “Pick of the Week” on the August 19th episode of TWC9 (&#8220;This Week on Channel 9&#8243;). You can see that episode here:  http://channel9.msdn.com/Shows/This+Week+On+Channel+9/TWC9-August-19-2011 That part was very [...]]]></description>
			<content:encoded><![CDATA[<p>I just found out that <a href="http://channel9.msdn.com/Niners/briankel">Brian Keller</a> mentioned my <a href="http://nugetter.codeplex.com/">TFS NuGetter (CodePlex) project</a> that automates the creation, push and publish of NuGet packages through TFS 2010  as his <strong>“Pick of the Week” </strong>on the August 19th episode of <a href="http://channel9.msdn.com/">TWC9 (&#8220;This Week on Channel 9&#8243;).</a></p>
<p style="text-align: left;">You can see that episode here:  <a title="http://channel9.msdn.com/Shows/This+Week+On+Channel+9/TWC9-August-19-2011" href="http://channel9.msdn.com/Shows/This+Week+On+Channel+9/TWC9-August-19-2011">http://channel9.msdn.com/Shows/This+Week+On+Channel+9/TWC9-August-19-2011</a></p>
<p>That part was very cool.  The only thing that would’ve made it even more exciting (to me anyway) would have been if he knew who actually created it.  Oh well, it was still cool that it was his pick.  I appreciate the mention Brian!</p>
<p><a href="http://nugetter.codeplex.com/"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="TfsNugetter-shortened" src="http://marknic.net/wp-content/uploads/2011/08/TfsNugetter-shortened.png" border="0" alt="TfsNugetter-shortened" width="352" height="84" /></a></p>
<div class='wpfblike' style='height: 40px;'><fb:like href='http://marknic.net/2011/08/25/nugetter-project-pick-of-the-week-on-channel-9/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://feeds.feedburner.com/~r/marknic/~4/Y7XoRrYWCtU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://marknic.net/2011/08/25/nugetter-project-pick-of-the-week-on-channel-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://marknic.net/2011/08/25/nugetter-project-pick-of-the-week-on-channel-9/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=nugetter-project-pick-of-the-week-on-channel-9</feedburner:origLink></item>
		<item>
		<title>A few beers and JavaScript with Brandon Satrom</title>
		<link>http://feedproxy.google.com/~r/marknic/~3/0G1INGfQ4Qc/</link>
		<comments>http://marknic.net/2011/08/24/a-few-beers-and-javascript-with-brandon-satrom/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 15:00:00 +0000</pubDate>
		<dc:creator>DeveloperSmackdown</dc:creator>
				<category><![CDATA[Developer Smackdown]]></category>

		<guid isPermaLink="false">http://marknic.net/2011/08/24/a-few-beers-and-javascript-with-brandon-satrom/</guid>
		<description><![CDATA[What do you do when your on the road at 1AM? Easy, talk about JavaScript after after imbibing on a few cocktails. Clark and Brandon explore the resurgence of JavaScript today and talk about a number of populate JavaScript tools. Brandon even decides to show off his beat boxing skills., Play Now Show Notes whois [...]]]></description>
			<content:encoded><![CDATA[<p>What do you do when your on the road at 1AM? Easy, talk about JavaScript after after imbibing on a few cocktails. Clark and Brandon explore the resurgence of JavaScript today and talk about a number of populate JavaScript tools. Brandon even decides to show off his beat boxing skills.,</p>
<p>
<h3><a href="http://www.podtrac.com/pts/redirect.mp3/DeveloperSmackdown.com/Services/PodcastServices.svc/GetPodcast/ds_058.mp3">Play Now</a></h3>
<p>
<hr />
<h1>Show Notes</h1>
<p>whois Brandon Satrom?</p>
<blockquote>
<p>Brandon is a web evangelist for Microsoft, based in Austin, TX. A unapologetic lover of the web, Brandon loves to talk about HTML, JavaScript, CSS, Open Source and whatever new shiny tool or technology has distracted him from that other thing he was working on (like CoffeeScript). Brandon loves writing and speaking and loves hanging out with and learning from other passionate developers.</p>
<p><a href="http://userinexperience.com/" target="_blank">Brandon’s Blog</a></p>
<p><a href="http://twitter.com/brandonsatrom" target="_blank">@BrandonSatrom</a></p>
</blockquote>
<h1> Resources</h1>
<ol>
<li><a href="http://en.wikipedia.org/wiki/User_agent" target="_blank">UA Sniffing</a></li>
<li>Feature detection with <a href="http://www.modernizr.com/" target="_blank">Modernizr</a> or <a href="http://yepnopejs.com/" target="_blank">YepNope.js</a></li>
<li><a href="http://jashkenas.github.com/coffee-script/" target="_blank">CoffeeScript</a></li>
<li><a href="http://jQuery.com" target="_blank">jQuery</a></li>
<li><a href="http://knockoutjs.com/" target="_blank">Knockout.js</a></li>
<li><a href="http://blog.stevensanderson.com/" target="_blank">Steve Sanderson’s Blog</a></li>
<li><a href="http://documentcloud.github.com/backbone/" target="_blank">Backbone.js</a></li>
<li><a href="http://lostechies.com/derickbailey/" target="_blank">Derick Bailey’s Blog</a></li>
<li><a href="http://userinexperience.com/?p=689" target="_blank">Knockout.Unobtrusive</a></li>
<li><a href="http://www.mindscapehq.com/products/web-workbench" target="_blank">Mindscape Web Workbench</a>, <a href="http://visualstudiogallery.msdn.microsoft.com/2b96d16a-c986-4501-8f97-8008f9db141a" target="_blank">Download Link</a></li>
<li><a href="http://nodejs.org/" target="_blank">NodeJS</a></li>
<li><a href="http://crockford.com/javascript/performance.html" target="_blank">Douglas Crockford on JavaScript Performance</a></li>
</ol>
<h1>Sponsors</h1>
<p>ThatConference is a brand new conference coming to the Kalahari Resort in the Wisconsin Dells on August 13th, 14th, 15th of 2012. This is a conference is founded by Developers who want to create the conference they’ve always want to go to and for a price that’s easy to justify to your boss. First and foremost this is a developer’s conference. 3 days of any technology and nothing but code. You can find more at <a href="http://ThatConference.com">ThatConference.com</a>.</p>
<p>WebSite Hosting is provided by <a href="http://www.appliedi.net/">Applied Innovations</a>.</p>
<h1>Music</h1>
<p><a href="http://ReMix.NIN.com">ReMix.NIN.com</a>, and <a href="http://www.podcastthemes.com/">http://www.podcastthemes.com/</a></p></p>
<div class='wpfblike' style='height: 40px;'><fb:like href='http://marknic.net/2011/08/24/a-few-beers-and-javascript-with-brandon-satrom/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://feeds.feedburner.com/~r/marknic/~4/0G1INGfQ4Qc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://marknic.net/2011/08/24/a-few-beers-and-javascript-with-brandon-satrom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.podtrac.com/pts/redirect.mp3/DeveloperSmackdown.com/Services/PodcastServices.svc/GetPodcast/ds_058.mp3" length="197" type="audio/mpeg" />
		<feedburner:origLink>http://marknic.net/2011/08/24/a-few-beers-and-javascript-with-brandon-satrom/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=a-few-beers-and-javascript-with-brandon-satrom</feedburner:origLink></item>
		<item>
		<title>Turning on the LightSwitch with Jay Schmelzer</title>
		<link>http://feedproxy.google.com/~r/marknic/~3/4vgwFUuOdfA/</link>
		<comments>http://marknic.net/2011/08/17/turning-on-the-lightswitch-with-jay-schmelzer/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 15:00:00 +0000</pubDate>
		<dc:creator>DeveloperSmackdown</dc:creator>
				<category><![CDATA[Developer Smackdown]]></category>

		<guid isPermaLink="false">http://marknic.net/2011/08/17/turning-on-the-lightswitch-with-jay-schmelzer/</guid>
		<description><![CDATA[In this version Mark and Clark sit down with Microsoft Director Jay Schmelzer and talk about the newly released Visual Studio LightSwitch. Jay flips on the LightSwitch for us as he walks us through just what exactly Visual Studio LightSwitch is and how it all works., Play Now Show Notes What is LightSwitch? “Microsoft Visual [...]]]></description>
			<content:encoded><![CDATA[<div>In this version Mark and Clark sit down with Microsoft Director Jay Schmelzer and talk about the newly released Visual Studio LightSwitch.  Jay flips on the LightSwitch for us as he walks us through just what exactly Visual Studio LightSwitch is and how it all works.,</div>
<div>
<h3><a href="http://www.podtrac.com/pts/redirect.mp3/DeveloperSmackdown.com/Services/PodcastServices.svc/GetPodcast/ds_057.mp3">Play Now</a></h3>
<div>
<hr />
<h1>Show Notes</h1>
<div>What is LightSwitch?</div>
<blockquote>
<div>“Microsoft Visual Studio LightSwitch is a simplified self-service development tool that enables you to build business applications quickly and easily for the desktop and cloud. What can your business do with LightSwitch? Watch this brief introduction to find out.”<sub>2</sub></div>
</blockquote>
<div><strong>Jay Schmelzer</strong></div>
<blockquote>
<div>Jay Schmelzer is a Director of Program Management on the Visual Studio Team at Microsoft.  Jay and his team are responsible for the Visual Studio design-time tools and runtime components used to build line of business applications. That includes the Visual Studio support for building Microsoft Office, SharePoint and Windows Azure solutions, Visual Studio LightSwitch and Visual Studio&#8217;s data binding and data consumption experiences.  Prior to joining Microsoft, Jay was a partner with a leading consulting firm and specialized in the design and development of enterprise applications.</div>
</blockquote>
<h1>Resources</h1>
<ol>
<li><a href="http://channel9.msdn.com/Blogs/Dan/Jay-Schmelzer-Introducing-Visual-Studio-LightSwitch" target="_blank">Jay-Schmelzer-Introducing-Visual-Studio-LightSwitch</a></li>
<li><a href="http://www.microsoft.com/visualstudio/en-us/lightswitch" target="_blank">Visual Studio LightSwitch on MSDN</a></li>
<li><a href="http://blogs.msdn.com/b/lightswitch/" target="_blank">Visual Studio LightSwitch Blog</a></li>
</ol>
<h1>Sponsors</h1>
<div>ThatConference is a brand new conference coming to the Kalahari Resort in the Wisconsin Dells on August 13th, 14th, 15th of 2012. This is a conference is founded by Developers who want to create the conference they’ve always want to go to and for a price that’s easy to justify to your boss. First and foremost this is a developer’s conference. 3 days of any technology and nothing but code. You can find more at <a href="http://ThatConference.com">ThatConference.com</a>.</div>
<div>WebSite Hosting is provided by <a href="http://www.appliedi.net/">Applied Innovations</a>.</div>
<h1>Music</h1>
<div><a href="http://ReMix.NIN.com">ReMix.NIN.com</a>, and <a href="http://www.podcastthemes.com/">http://www.podcastthemes.com/</a></div>
</div>
</div>
<div class='wpfblike' style='height: 40px;'><fb:like href='http://marknic.net/2011/08/17/turning-on-the-lightswitch-with-jay-schmelzer/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://feeds.feedburner.com/~r/marknic/~4/4vgwFUuOdfA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://marknic.net/2011/08/17/turning-on-the-lightswitch-with-jay-schmelzer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.podtrac.com/pts/redirect.mp3/DeveloperSmackdown.com/Services/PodcastServices.svc/GetPodcast/ds_057.mp3" length="197" type="audio/mpeg" />
		<feedburner:origLink>http://marknic.net/2011/08/17/turning-on-the-lightswitch-with-jay-schmelzer/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=turning-on-the-lightswitch-with-jay-schmelzer</feedburner:origLink></item>
		<item>
		<title>Creating the HTML5tx.com design with Drifting Creatives Gavin Braman and Martin Hooper</title>
		<link>http://feedproxy.google.com/~r/marknic/~3/I3npB-3Ymio/</link>
		<comments>http://marknic.net/2011/08/10/creating-the-html5tx-com-design-with-drifting-creatives-gavin-braman-and-martin-hooper/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 15:00:00 +0000</pubDate>
		<dc:creator>DeveloperSmackdown</dc:creator>
				<category><![CDATA[Developer Smackdown]]></category>

		<guid isPermaLink="false">http://marknic.net/2011/08/10/creating-the-html5tx-com-design-with-drifting-creatives-gavin-braman-and-martin-hooper/</guid>
		<description><![CDATA[In this version Clark and Mark sit down with Gavin Braman and Martin Hooper, founders, owners and warriors of Drifting Creatives. Gavin and Martin were the designers behind html5tx.com. Listen to us as we try crawling into their heads and see just how they came up with such badassery. Play Now Show Notes Drifting Creatives: [...]]]></description>
			<content:encoded><![CDATA[<div>In this version Clark and Mark sit down with Gavin Braman and Martin Hooper, founders, owners and warriors of Drifting Creatives. Gavin and Martin were the designers behind html5tx.com. Listen to us as we try crawling into their heads and see just how they came up with such badassery.</div>
<div>
<h3><a href="http://www.podtrac.com/pts/redirect.mp3/DeveloperSmackdown.com/Services/PodcastServices.svc/GetPodcast/ds_056.mp3">Play Now</a></h3>
<div>
<hr />
<h1>Show Notes</h1>
<div><strong><a href="http://www.driftingcreatives.com/" target="_blank">Drifting Creatives</a>:</strong></div>
<blockquote>
<div>Drifting Creatives is a two-person design team with a focus in badassery. We design user-friendly websites, develop beautiful and memorable brands and if you can print it, we can design it. We began this journey by designing our way across the country; connecting &amp; learning from creatives around the US and sharing what we learned with students. We lived and designed from the road for five months. Our travels were published in two magazines. We spoke at a design conference in Nashville, TN. Students asked us to come to their universities to share our story. We did. And it was awesome.</div>
<div>We started our company in an unconventional way and continue to strive to be a bit different in everything we do. So yeah, we&#8217;re not your normal design firm, but you don&#8217;t want us to be. We are Martin Hooper and Gavin Braman, just a couple of warriors, tryin&#8217; to make it big.</div>
</blockquote>
<div><strong>Gavin Braman</strong></div>
<blockquote>
<div>I&#8217;m a 20-somethin&#8217; image maker and adventurer. My name is Gavin Braman and I co-own Drifting Creatives. During the day I stare at my computer screen until magical unicorns whisper ideas into my ears. Once I have an idea, I teleport into my laptop, slap around some pixels with my two-handed battle axe and usually I emerge victorious.</div>
<div>When I&#8217;m not making websites or logos for clients, I might be drawing monsters. Imagine Hairy Friends is something I started and work on when I&#8217;m feeling exceptionally inspired. I&#8217;m a huge fan of monster-related art. Love artists like, Alex Pardee, Jeff Soto, Nicholas Di Genova and I would assume this obsession stems from my on-and-off addiction to computer games. #nerd</div>
<div>I also dabble in photography. I shoot photos of beautiful models in strange and weird locations, like abandoned hotels. Every shoot is an epic adventure and the entire process is very inspiring in both my design work and art.</div>
<div>Once I&#8217;ve exhausted all creative resources, I go rock climbing. I&#8217;m a huge fan of all board-sports too, though snowboarding and wakeboarding are at the top of the list. Some items on my bucket list are to go deep-water soloing in Thailand, go snowboarding and see one of my designs or monsters on someone&#8217;s snowboard, learn to kayak, make Drifting Creatives successful enough that we can hire a personal masseuse and to one day have a beard as awesome as Martin Hooper, my business partner.</div>
</blockquote>
<div><strong>Martin Hooper</strong></div>
<blockquote>
<div>I grew up in the small town of Henderson, Texas. I grew up in an artistic family and discovered my passion for design in high school. After high school, I completed my Bachelor of Visual Studies at Texas A&amp;M University.</div>
<div>I enjoy the winter, great beers, and good people. My mother tells me I’m a blast to hang out with. I&#8217;m married to a wonderful Australian woman, and we have a pseudo-child in our black labrodoodle named “Cache”.  I like to do a lot stereotypical designer things like take photos with Instagram, ride my bike, and pretend to like crappy music. I’ve been able to work with a ton of talented people in the past few years, and I can’t wait to work with more amazing people in the future. I believe that design is an organic, team-driven process, and I believe a well designed T-shirt could one day save the world. Wanna grab a beer?</div>
</blockquote>
<h1>Resources</h1>
<div>Links mentioned during the show:</div>
<ul>
<li><a href="http://html5tx.com/" target="_blank">HTML5 TX Conference</a></li>
<li><a href="http://driftingCreatives.com" target="_blank">Drifting Creatives</a></li>
<li><a href="http://www.microsoft.com/expression/" target="_blank">Microsoft Expression Suite</a></li>
<li><a href="http://expression.microsoft.com/en-us/ee307361.aspx" target="_blank">Microsoft Sketchflow</a></li>
<li><a href="http://www.adobe.com/products/photoshopfamily.html?promoid=ITXQN" target="_blank">Adobe Photoshop</a></li>
<li><a href="http://www.microsoft.com/design/toolbox/about/" target="_blank">.toolbox a great set of online courses and tutorials around design</a></li>
</ul>
<h1>Sponsors</h1>
<div>ThatConference is a brand new conference coming to the Kalahari Resort in the Wisconsin Dells on August 13th, 14th, 15th of 2012. This is a conference is founded by Developers who want to create the conference they’ve always want to go to and for a price that’s easy to justify to your boss. First and foremost this is a developer’s conference. 3 days of any technology and nothing but code. You can find more at <a href="http://ThatConference.com">ThatConference.com</a>.</div>
<div>WebSite Hosting is provided by <a href="http://www.appliedi.net/">Applied Innovations</a>.</div>
<h1>Music</h1>
<div><a href="http://ReMix.NIN.com">ReMix.NIN.com</a>, and <a href="http://www.podcastthemes.com/">http://www.podcastthemes.com/</a></div>
</div>
</div>
<div class='wpfblike' style='height: 40px;'><fb:like href='http://marknic.net/2011/08/10/creating-the-html5tx-com-design-with-drifting-creatives-gavin-braman-and-martin-hooper/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' send='false' /></div><img src="http://feeds.feedburner.com/~r/marknic/~4/I3npB-3Ymio" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://marknic.net/2011/08/10/creating-the-html5tx-com-design-with-drifting-creatives-gavin-braman-and-martin-hooper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.podtrac.com/pts/redirect.mp3/DeveloperSmackdown.com/Services/PodcastServices.svc/GetPodcast/ds_056.mp3" length="197" type="audio/mpeg" />
		<feedburner:origLink>http://marknic.net/2011/08/10/creating-the-html5tx-com-design-with-drifting-creatives-gavin-braman-and-martin-hooper/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=creating-the-html5tx-com-design-with-drifting-creatives-gavin-braman-and-martin-hooper</feedburner:origLink></item>
	</channel>
</rss>

