<?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.jasongaylord.com/~d/styles/itemcontent.css"?><rss xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Jason's Blog</title><link>http://jasongaylord.com:80/blog</link><description>Jason's Blog</description><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.jasongaylord.com/JasonNGaylord" /><feedburner:info uri="jasonngaylord" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>41.337585</geo:lat><geo:long>-75.815873</geo:long><item><title>State of Apple</title><link>http://feeds.jasongaylord.com/~r/JasonNGaylord/~3/5yXCZHGLn88/state-of-apple-2011</link><description>&lt;p&gt;Now that Steve Jobs has officially passed away at the age of 56, take a moment and grieve. After that period has passed, reflect. Reflect on the state of Microsoft after Bill Gates left and dedicated the majority of his time to his foundation. Reflect on the state of Dell Computers when Michael Dell left. There was a reason he came back. And now Apple has lost it's leader as well. The original three from Apple are no longer there. What does the future hold? New Apple CEO, Tim Cook, has been critized for the lack of pop in his presentation earlier this week. If this is any indication of the future, what does this do to the state of Apple?&lt;/p&gt;
&lt;p&gt;Let's see how this affects stocks over the next few weeks.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=5yXCZHGLn88:5qr9mC183B8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=5yXCZHGLn88:5qr9mC183B8:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=5yXCZHGLn88:5qr9mC183B8:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=5yXCZHGLn88:5qr9mC183B8:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=5yXCZHGLn88:5qr9mC183B8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=5yXCZHGLn88:5qr9mC183B8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=5yXCZHGLn88:5qr9mC183B8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasonNGaylord/~4/5yXCZHGLn88" height="1" width="1"/&gt;</description><pubDate>Thu, 06 Oct 2011 14:00:00 GMT</pubDate><guid isPermaLink="false">http://jasongaylord.com:80/blog/state-of-apple-2011</guid><feedburner:origLink>http://jasongaylord.com:80/blog/state-of-apple-2011</feedburner:origLink></item><item><title>Converting a .NET DateTime object to a JavaScript Date object</title><link>http://feeds.jasongaylord.com/~r/JasonNGaylord/~3/Byf-TZx2rGc/converting-a-.net-datetime-object-to-a-javascript-date-object</link><description>&lt;p&gt;When using a WCF or ASMX web service in ASP.NET, you might find the need to pass back a DateTime object via JSON. However, what you might not realize is that by passing a .NET DateTime object back to JavaScript, you&amp;rsquo;d receive an &amp;ldquo;Invalid date&amp;rdquo; script exception. The data being passed back to JavaScript may resemble the following:&lt;/p&gt;
&lt;pre class="brush: text; auto-links: true; collapse: false; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: true; tab-size: 4; toolbar: true;"&gt;/Date(1315938182867-0400)/&lt;/pre&gt;
&lt;p&gt;The reason that the date is formatted in this way is that JavaScript uses Unix Epoch as the base date and time. This value is 1/1/1970 at 12:00:00 AM. JavaScript tracks dates as the number of milliseconds from the Unix Epoch value to the date submitted.&lt;/p&gt;
&lt;p&gt;To assist in the JavaScript date conversion, I have added an extension method for the DateTime object that resembles the following:&lt;/p&gt;
&lt;pre class="brush: csharp; auto-links: true; collapse: false; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: true; tab-size: 4; toolbar: true;"&gt;private static readonly long UnixEpochTicks = (new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc)).Ticks; 
        
public static long? ToJsonTicks(this DateTime? value)
{
    return value == null ? (long?)null : (value.Value.ToUniversalTime().Ticks - UnixEpochTicks) / 10000;
}

public static long ToJsonTicks(this DateTime value)
{
    return (value.ToUniversalTime().Ticks - UnixEpochTicks) / 10000;
}&lt;/pre&gt;
&lt;p&gt;In JavaScript, I can now pass this value into a Date() object and get the correct DateTime value for my locale.&lt;/p&gt;
&lt;p&gt;Feel free to use this method in your applications. I offer no warranties or guarantees with the code above.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=Byf-TZx2rGc:iwcu-kLmS3M:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=Byf-TZx2rGc:iwcu-kLmS3M:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=Byf-TZx2rGc:iwcu-kLmS3M:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=Byf-TZx2rGc:iwcu-kLmS3M:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=Byf-TZx2rGc:iwcu-kLmS3M:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=Byf-TZx2rGc:iwcu-kLmS3M:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=Byf-TZx2rGc:iwcu-kLmS3M:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasonNGaylord/~4/Byf-TZx2rGc" height="1" width="1"/&gt;</description><pubDate>Wed, 28 Sep 2011 18:15:00 GMT</pubDate><guid isPermaLink="false">http://jasongaylord.com:80/blog/converting-a-.net-datetime-object-to-a-javascript-date-object</guid><feedburner:origLink>http://jasongaylord.com:80/blog/converting-a-.net-datetime-object-to-a-javascript-date-object</feedburner:origLink></item><item><title>Calculating Dell Power Consumption for Servers</title><link>http://feeds.jasongaylord.com/~r/JasonNGaylord/~3/Ng3lQOV5kpQ/calculating-dell-server-power-consumption</link><description>&lt;p&gt;We are in the process of building out a new data center. One of the items I needed to know was a rough estimate of our new, monthly electrical bill. In some cases, you may need to show a return on investment (ROI) for going to a virtualized environment using VMWare or Microsoft Hyper-V. You can calculate the number of watts your devices use by visiting &lt;a href="http://www.dell.com/calc"&gt;http://www.dell.com/calc&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If you need to calculate cost of power, you can convert watts to kilowatts (watts / 1000), then multiply that by 24 hours, 30 days, and the cost per kwh. So, if you live in an area that has a cost per kilowatt hour at 9.5 cents and your equipment uses 2500 watts, your total cost per month would be $171 per month.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=Ng3lQOV5kpQ:U-25MerFLK4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=Ng3lQOV5kpQ:U-25MerFLK4:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=Ng3lQOV5kpQ:U-25MerFLK4:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=Ng3lQOV5kpQ:U-25MerFLK4:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=Ng3lQOV5kpQ:U-25MerFLK4:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=Ng3lQOV5kpQ:U-25MerFLK4:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=Ng3lQOV5kpQ:U-25MerFLK4:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasonNGaylord/~4/Ng3lQOV5kpQ" height="1" width="1"/&gt;</description><pubDate>Fri, 01 Jul 2011 03:45:00 GMT</pubDate><guid isPermaLink="false">http://jasongaylord.com:80/blog/calculating-dell-server-power-consumption</guid><feedburner:origLink>http://jasongaylord.com:80/blog/calculating-dell-server-power-consumption</feedburner:origLink></item><item><title>Port your Android or iPhone apps to Windows Phone 7</title><link>http://feeds.jasongaylord.com/~r/JasonNGaylord/~3/h--LjNufYsU/port-android-or-iphone-apps-to-wp7</link><description>&lt;p&gt;Did you know that your current Android or iPhone apps can be ported to Windows Phone 7? Now, there&amp;rsquo;s no &amp;ldquo;easy&amp;rdquo; button that will automagically convert the apps for you. However, &lt;a href="http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/06/09/leveraging-your-android-development-expertise-to-build-windows-phone-applications.aspx" target="_blank"&gt;in a post on June 9th, 2011&lt;/a&gt;, the Windows Phone team explained how Android apps can be converted. Microsoft has provided an easy package for Android developers. The package includes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://wp7mapping.interoperabilitybridges.com/Home/Library?source=Android" target="_blank"&gt;Android to Windows Phone API mapping tool&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://windowsphone.interoperabilitybridges.com/articles/windows-phone-7-guide-for-android-application-developers" target="_blank"&gt;Windows Phone 7 Guide for Android Application Developers&lt;/a&gt; white paper, 90+ pages organized in 7 chapters&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In April, the team &lt;a href="http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/04/29/leveraging-your-iphone-development-expertise-to-build-windows-phone-7-applications.aspx" target="_blank"&gt;released an initial post&lt;/a&gt; explaining how iPhone apps can be ported to WP7. This package includes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://wp7mapping.interoperabilitybridges.com/" target="_blank"&gt;iPhone to Windows Phone API mapping tool&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://windowsphone.interoperabilitybridges.com/articles/windows-phone-7-guide-for-iphone-application-developers" target="_blank"&gt;Windows Phone 7 Guide for iOS and iPhone Application Developers&lt;/a&gt; white paper, 90+ pages organized in 7 chapters&lt;/li&gt;
&lt;!--EndFragment--&gt;&lt;/ul&gt;
&lt;p&gt;More information about converting existing apps to Windows Phone 7 can be found at &lt;a title="http://windowsphone.interoperabilitybridges.com/" href="http://windowsphone.interoperabilitybridges.com/" target="_blank"&gt;http://windowsphone.interoperabilitybridges.com/&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If you plan on converting an Android or iPhone app, be sure to respond to this and let me know how things are going.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=h--LjNufYsU:ePx6RNpPNmA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=h--LjNufYsU:ePx6RNpPNmA:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=h--LjNufYsU:ePx6RNpPNmA:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=h--LjNufYsU:ePx6RNpPNmA:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=h--LjNufYsU:ePx6RNpPNmA:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=h--LjNufYsU:ePx6RNpPNmA:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=h--LjNufYsU:ePx6RNpPNmA:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasonNGaylord/~4/h--LjNufYsU" height="1" width="1"/&gt;</description><pubDate>Wed, 22 Jun 2011 19:15:00 GMT</pubDate><guid isPermaLink="false">http://jasongaylord.com:80/blog/port-android-or-iphone-apps-to-wp7</guid><feedburner:origLink>http://jasongaylord.com:80/blog/port-android-or-iphone-apps-to-wp7</feedburner:origLink></item><item><title>Changing the Title in the Tile Icon of a Windows Phone 7 Application</title><link>http://feeds.jasongaylord.com/~r/JasonNGaylord/~3/eNw7BbR04g4/windows-phone-7-tile-icon-title-change</link><description>&lt;p&gt;If you&amp;rsquo;ve built a Windows Phone 7 application, you may have noticed that if you pin your application to the Start menu, the name of your application appears in the lower, left-hand side of the tile. You can change the text in this tile, by right-clicking on the application and going to properties. On the Application menu, modify the Tile title properties. A sample of this area is displayed below:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://jasongaylord.com/Media/Default/Windows-Live-Writer/Removing-the-Title-in-the-Tile-Icon-of-a_11B05/tile_options_2.png"&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="tile_options" border="0" alt="tile_options" src="http://jasongaylord.com/Media/Default/Windows-Live-Writer/Removing-the-Title-in-the-Tile-Icon-of-a_11B05/tile_options_thumb.png" width="244" height="90" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You&amp;rsquo;ll notice that the title text is blank in my screenshot. To accomplish this, you&amp;rsquo;ll need to perform a little magic. If you wipe this out in Visual Studio 2010, you&amp;rsquo;ll receive the error message stating &amp;ldquo;An empty string is not allowed for Title&amp;rdquo; like the following:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://jasongaylord.com/Media/Default/Windows-Live-Writer/Removing-the-Title-in-the-Tile-Icon-of-a_11B05/error_2.png"&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="error" border="0" alt="error" src="http://jasongaylord.com/Media/Default/Windows-Live-Writer/Removing-the-Title-in-the-Tile-Icon-of-a_11B05/error_thumb.png" width="244" height="135" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;However, you can blank out this field my modifying the WMAppManifest.xml file located in your project&amp;rsquo;s properties folder. Modify the section of this file that is highlighted below:&lt;/p&gt;
&lt;pre class="brush: xml; auto-links: true; collapse: false; first-line: 1; gutter: true; highlight: [9]; html-script: false; light: false; ruler: false; smart-tabs: true; tab-size: 4; toolbar: true;"&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;Deployment xmlns="http://schemas.microsoft.com/windowsphone/2009/deployment" AppPlatformVersion="7.0"&amp;gt;
    ...
    &amp;lt;Tokens&amp;gt;
      &amp;lt;PrimaryToken TokenID="BarefootToken" TaskName="_default"&amp;gt;
        &amp;lt;TemplateType5&amp;gt;
          &amp;lt;BackgroundImageURI IsRelative="true" IsResource="false"&amp;gt;Application_TileImage_173x173.png&amp;lt;/BackgroundImageURI&amp;gt;
          &amp;lt;Count&amp;gt;0&amp;lt;/Count&amp;gt;
          &amp;lt;Title&amp;gt;&amp;lt;/Title&amp;gt;
        &amp;lt;/TemplateType5&amp;gt;
      &amp;lt;/PrimaryToken&amp;gt;
    &amp;lt;/Tokens&amp;gt;
  &amp;lt;/App&amp;gt;
&amp;lt;/Deployment&amp;gt;&lt;/pre&gt;
&lt;p&gt;This will allow your title to be blank and also allow your tile to appear on your device without the title.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=eNw7BbR04g4:eFMTqMmpERc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=eNw7BbR04g4:eFMTqMmpERc:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=eNw7BbR04g4:eFMTqMmpERc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=eNw7BbR04g4:eFMTqMmpERc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=eNw7BbR04g4:eFMTqMmpERc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=eNw7BbR04g4:eFMTqMmpERc:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=eNw7BbR04g4:eFMTqMmpERc:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasonNGaylord/~4/eNw7BbR04g4" height="1" width="1"/&gt;</description><pubDate>Tue, 14 Jun 2011 01:45:00 GMT</pubDate><guid isPermaLink="false">http://jasongaylord.com:80/blog/windows-phone-7-tile-icon-title-change</guid><feedburner:origLink>http://jasongaylord.com:80/blog/windows-phone-7-tile-icon-title-change</feedburner:origLink></item><item><title>Using Web.config Transforms in ASP.NET</title><link>http://feeds.jasongaylord.com/~r/JasonNGaylord/~3/3MHQCn-WjME/using-web-config-transforms-in-aspnet</link><description>&lt;p&gt;One of my team members was working on an issue today within an application. The application is setup to use web.config transformations. Web.config transforms are a great way to create multiple build configurations (including, but not limited to, the debug and release build configuration that are built-in) and allow different configuration settings based on the build. For instance, you may have a database connection set to your localhost when you are debugging locally. However, you can use web.config transforms to change the server name when you publish the application using the release build configuration. This can also be used to ensure that every time you publish an application as a release, debug and trace are disabled for your application.&lt;/p&gt;
&lt;p&gt;Our application is setup so that we use transforms to set the connectionString attribute of each SQL connection in the configuration. We have multiple connection strings in this area.. We had multiple connection strings such as:&lt;/p&gt;
&lt;pre class="brush: xml; auto-links: true; collapse: false; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: true; tab-size: 4; toolbar: true;"&gt;&amp;lt;connectionStrings&amp;gt;
    &amp;lt;clear/&amp;gt;
    &amp;lt;add name="DefaultSqlServer" connectionString="metadata=res://*/Data.Sql.SqlEntities.csdl|res://*/Data.Sql.SqlEntities.ssdl|res://*/Data.Sql.SqlEntities.msl;provider=System.Data.SqlClient;provider connection string=&amp;amp;quot;Data Source=localhost;Initial Catalog=Test;User ID=sa;Password=password;MultipleActiveResultSets=True&amp;amp;quot;" providerName="System.Data.EntityClient"/&amp;gt;
    &amp;lt;add name="DefaultProviderConnectionString" connectionString="Data Source=localhost;Initial Catalog=Test;User ID=sa;Password=password;" providerName="System.Data.SqlClient"/&amp;gt;
&amp;lt;/connectionStrings&amp;gt;&lt;/pre&gt;
&lt;p&gt;In other words, one connection is used for connecting to the SQL database using Entity Framework while the other is used to connect to the database using the built-in providers. When we published the application using the release build configuration, both connectionString values were set to the same. After digging around for some time we forgot a simple part of the transform.&lt;/p&gt;
&lt;p&gt;When performing web.config transforms on a Key/Value dictionary pair in the web.config file, make sure that use also include an xdt:Locator attribute that contains the method Match. This allows you to pair up the specific value to a particular key.&lt;/p&gt;
&lt;p&gt;So, your connection strings should resemble something like the following in your web.release.config file:&lt;/p&gt;
&lt;pre class="brush: xml; auto-links: true; collapse: false; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: true; tab-size: 4; toolbar: true;"&gt;&amp;lt;add name="DefaultSqlServer" connectionString="..." xdt:Transform="SetAttributes(connectionString)" xdt:Locator="Match(name)" /&amp;gt;&lt;/pre&gt;
&lt;p&gt;In my case, I&amp;rsquo;m replacing the DefaultSqlServer value with the value defined in the connectionString above. I can replace other attributes by separating the attribute names in the SetAttributes method with a comma.&lt;/p&gt;
&lt;p&gt;For additional config transform options, be sure to visit the MSDN page at &lt;a title="http://jasong.us/mhgvPh" href="http://jasong.us/mhgvPh"&gt;http://jasong.us/mhgvPh&lt;/a&gt;.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=3MHQCn-WjME:ci7IYV8Gtug:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=3MHQCn-WjME:ci7IYV8Gtug:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=3MHQCn-WjME:ci7IYV8Gtug:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=3MHQCn-WjME:ci7IYV8Gtug:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=3MHQCn-WjME:ci7IYV8Gtug:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=3MHQCn-WjME:ci7IYV8Gtug:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=3MHQCn-WjME:ci7IYV8Gtug:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasonNGaylord/~4/3MHQCn-WjME" height="1" width="1"/&gt;</description><pubDate>Tue, 07 Jun 2011 22:15:00 GMT</pubDate><guid isPermaLink="false">http://jasongaylord.com:80/blog/using-web-config-transforms-in-aspnet</guid><feedburner:origLink>http://jasongaylord.com:80/blog/using-web-config-transforms-in-aspnet</feedburner:origLink></item><item><title>Disneyland Adventures due out November 15th</title><link>http://feeds.jasongaylord.com/~r/JasonNGaylord/~3/SfqyYTXT8pk/xbox-kinect-disneyland-adventures-november-15</link><description>&lt;p&gt;Earlier today at the E3 Expo, Microsoft unveiled several new features to Xbox Live, Kinect, and announced several new games including Halo 4, Kinect Sports Season Two, and Kinect Disneyland Adventures. Kinect Disneyland Adventures is pegged to be the first Kinect game including Disney characters. I stumbled across a screenshot that appears the game will be released on November 15th this year.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://jasongaylord.com/Media/Default/Windows-Live-Writer/ac08e0bd7a6c_12064/DisneylandAdventures_2.png"&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="DisneylandAdventures" border="0" alt="DisneylandAdventures" src="http://jasongaylord.com/Media/Default/Windows-Live-Writer/ac08e0bd7a6c_12064/DisneylandAdventures_thumb.png" width="644" height="327" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;While additional specifics cannot be confirmed, this definitely looks to be in line for the holiday season.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=SfqyYTXT8pk:gfoJysEiqm0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=SfqyYTXT8pk:gfoJysEiqm0:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=SfqyYTXT8pk:gfoJysEiqm0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=SfqyYTXT8pk:gfoJysEiqm0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=SfqyYTXT8pk:gfoJysEiqm0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=SfqyYTXT8pk:gfoJysEiqm0:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=SfqyYTXT8pk:gfoJysEiqm0:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasonNGaylord/~4/SfqyYTXT8pk" height="1" width="1"/&gt;</description><pubDate>Tue, 07 Jun 2011 05:00:00 GMT</pubDate><guid isPermaLink="false">http://jasongaylord.com:80/blog/xbox-kinect-disneyland-adventures-november-15</guid><feedburner:origLink>http://jasongaylord.com:80/blog/xbox-kinect-disneyland-adventures-november-15</feedburner:origLink></item><item><title>Orchard CMS Command Line Exception</title><link>http://feeds.jasongaylord.com/~r/JasonNGaylord/~3/FOyu9XjgNtM/orchard-cms-command-line-exception</link><description>&lt;p&gt;Late last week when I was at CodeStock 2011, I ran into an error with the orchard.exe command line utility. The exception generated looked similar to the following:&lt;/p&gt;
&lt;pre class="brush: shell; auto-links: true; collapse: false; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: true; tab-size: 4; toolbar: true;"&gt;c:\inetpub\wwwroot\Orchard\Modules\Orchard.Packaging\Services\FileBaseProjectSystem.cs(33): error CS0246: The type or namespace name 'FrameworkName' could not be found (are you missing a using directive or an assembly reference?)

Exception Details: System.Web.HttpCompileException: c:\inetpub\wwwroot\Orchard\Modules\Orchard.Packaging\Services\FileBaseProjectSystem.cs(33): error CS0246: The type or namespace name 'FrameworkName' could not be found (are you missing a using directive or an assembly reference?)&lt;/pre&gt;
&lt;p&gt;After talking with individuals on the Orchard team, this appears to be an open item that they hope to solve for Orchard 1.2. If you run into this, please contact me directly by responding with a comment or messaging me on Twitter so I can pass on a potential resolution. I&amp;rsquo;m hoping that we can track whether or not the supposed solution does actually solve this issue.&lt;/p&gt;
&lt;p&gt;Since, this is a random exception, we can use your help.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=FOyu9XjgNtM:keSq2EF15ok:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=FOyu9XjgNtM:keSq2EF15ok:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=FOyu9XjgNtM:keSq2EF15ok:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=FOyu9XjgNtM:keSq2EF15ok:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=FOyu9XjgNtM:keSq2EF15ok:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=FOyu9XjgNtM:keSq2EF15ok:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=FOyu9XjgNtM:keSq2EF15ok:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasonNGaylord/~4/FOyu9XjgNtM" height="1" width="1"/&gt;</description><pubDate>Tue, 07 Jun 2011 02:30:00 GMT</pubDate><guid isPermaLink="false">http://jasongaylord.com:80/blog/orchard-cms-command-line-exception</guid><feedburner:origLink>http://jasongaylord.com:80/blog/orchard-cms-command-line-exception</feedburner:origLink></item><item><title>The WeatherDotCom Widget for Orchard CMS</title><link>http://feeds.jasongaylord.com/~r/JasonNGaylord/~3/Vce2NSImCbk/weatherdotcom-widget-for-orchard</link><description>&lt;p&gt;If you&amp;rsquo;ve checked out my new website recently, you may have noticed that I have included the weather on the site. Mouse over on the right-hand side and you&amp;rsquo;ll notice a &amp;ldquo;bing-like&amp;rdquo; box that will appear. I&amp;rsquo;ll talk about this a bit more in a bit, but you&amp;rsquo;ll notice that the weather pulls for my local zip code. These are the results from the &lt;a href="http://www.weather.com/" target="_blank"&gt;Weather Channel&amp;rsquo;s weather.com&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To take advantage of this service, you must first register on their website at &lt;a title="http://jasong.us/lTxDfY" href="http://jasong.us/lTxDfY" target="_blank"&gt;http://www.weather.com/services/xmloap.html&lt;/a&gt;. During this process, you&amp;rsquo;ll be provided with a Partner ID and a License Key. Be sure to take note of these as you&amp;rsquo;ll need them at a later point.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p align="center"&gt;&lt;strong&gt;&lt;em&gt;&lt;span style="color: #666666;" color="#666666"&gt;Note: If you are not a programmer or web developer, you may want to skip past the next two sections and go to Adding the Widget to Orchard.&lt;/span&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h4&gt;Weather Data from the Web Service&lt;/h4&gt;
&lt;p&gt;I wanted to take advantage of all of the data being returned from the Weather Channel&amp;rsquo;s current conditions web service. So, I converted the result into two strongly-typed class objects. The first class object is called LocationInfo and is defined as:&lt;/p&gt;
&lt;pre class="brush: csharp; auto-links: true; collapse: false; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: true; tab-size: 4; toolbar: true;"&gt;public class LocationInfo
{
    public string LocationName { get; set; }
    public string Latitude { get; set; }
    public string Longitude { get; set; }
    public string Sunrise { get; set; }
    public string Sunset { get; set; }
    public string TimeZone { get; set; }
}&lt;/pre&gt;
&lt;p&gt;The second class object is called CurrentConditions and is defined as:&lt;/p&gt;
&lt;pre class="brush: csharp; auto-links: true; collapse: false; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: true; tab-size: 4; toolbar: true;"&gt;public class CurrentConditions
{
    public string Temperature { get; set; }
    public string FeelsLike { get; set; }
    public string Description { get; set; }
    public string DescriptionIconNumber { get; set; }
    public string BarometricPressure { get; set; }
    public string BarometricPressureDirection { get; set; }
    public string WindSpeed { get; set; }
    public string WindDirection { get; set; }
    public string WindGust { get; set; }
    public string Humidity { get; set; }
    public string Visibility { get; set; }
    public string UvIndex { get; set; }
    public string UvDescription { get; set; }
    public string Dewpoint { get; set; }
    public string MoonIconNumber { get; set; }
    public string MoonType { get; set; }
}&lt;/pre&gt;
&lt;p&gt;In both of these instances, these are the properties that will be exposed to any custom views being rendered. I&amp;rsquo;ve included both of these class objects in another class object that is returned when the call is made to obtain the current weather. This class object is called Weather and is defined as:&lt;/p&gt;
&lt;pre class="brush: csharp; auto-links: true; collapse: false; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: true; tab-size: 4; toolbar: true;"&gt;public class Weather
{        
    public LocationInfo LocationInfo { get; set; }
    public CurrentConditions CurrentConditions { get; set; }
    public DateTime TimeCached { get; set; }
    public String ApiStatus { get; set; }
}&lt;/pre&gt;
&lt;h4&gt;Customizing the Weather View&lt;/h4&gt;
&lt;p&gt;In my particular instance, I wanted to be able to cache the weather every 15 minutes. I also wanted to show a current weather image in the background and hide the text details for the weather. Then, I would show the text details in a div. To get this to work, I decided to add some custom JavaScript.&lt;/p&gt;
&lt;p&gt;The first step in this task was to randomly generate where my first &amp;ldquo;bing-like&amp;rdquo; box would appear hinting that a mouseover was needed. To do this, I randomly calculated the location from the top and left and subtracted the size of the details box. This helped me to better place the boxes while staying within the background image location.&lt;/p&gt;
&lt;pre class="brush: js; auto-links: true; collapse: false; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: true; tab-size: 4; toolbar: true;"&gt;$(document).ready(function () {
    /* Randomize Divs */
    var ranHeight = Math.ceil(Math.random() * 115) + 5; /* Always 85 less than height */
    var ranIndent = Math.ceil(Math.random() * 120) + 5; /* Always 180 less than height */

    /* Get the Divs */
    var spot = $('#weatherSpot');
    var details = $('#weatherDetails');

    /* Add the new positions */
    spot.css("top", ranHeight + "px");
    details.css("top", ranHeight + "px");
    spot.css("right", ranIndent + 155 + "px");
    details.css("right", ranIndent + "px");
});&lt;/pre&gt;
&lt;p&gt;The next step in the process was to use jQuery to fade in and out the boxes.&lt;/p&gt;
&lt;pre class="brush: js; auto-links: true; collapse: false; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: true; tab-size: 4; toolbar: true;"&gt;$('#weatherBlock').mouseenter(function () {
    $('#weatherSpot').fadeIn('slow', function () {
        // Nothing happens when animation completes
    });
}).mouseleave(function () {
    $('#weatherSpot').fadeOut('slow', function () {
        // Nothing happens when animation completes
    });
});

$('#weatherSpot').mouseenter(function () {
    $('#weatherDetails').fadeIn('slow', function () {
        // Nothing happens when animation completes
    });
}).mouseleave(function () {
    $('#weatherDetails').fadeOut('slow', function () {
        // Nothing happens when animation completes
    });
});&lt;/pre&gt;
&lt;p&gt;Finally, I needed to layout my view. Since it&amp;rsquo;s a custom view, I had complete control over the rendering and decision of the data. I choose to use many of the default fields.&lt;/p&gt;
&lt;pre class="brush: csharp; auto-links: true; collapse: false; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: true; tab-size: 4; toolbar: true;"&gt;@using System.Web.Hosting
@{
    Script.Include("weatherDotCom.js");
   
    var imgPath = "~/Themes/MyTheme/Content/weathericons/";
    var weathericon = "";

    weathericon = Url.Content(imgPath + Model.WeatherResults.CurrentConditions.DescriptionIconNumber + ".png");
}

&amp;lt;div id="weatherBlock" class="weatherBlock" style="background: url('@weathericon') no-repeat;"&amp;gt;
    &amp;lt;div id="weatherSpot" class="weatherSpot"&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;div id="weatherDetails" class="weatherDetails"&amp;gt;
        &amp;lt;span class="weatherTemp"&amp;gt;@Model.WeatherResults.CurrentConditions.Temperature&amp;amp;deg;F&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;
        @Model.WeatherResults.CurrentConditions.Description&amp;lt;br /&amp;gt;
        Feels Like: @Model.WeatherResults.CurrentConditions.FeelsLike&amp;amp;deg;&amp;lt;br /&amp;gt;
        Wind: From @Model.WeatherResults.CurrentConditions.WindDirection at @Model.WeatherResults.CurrentConditions.WindSpeed mph
    &amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;&lt;/pre&gt;
&lt;p&gt;I created custom weather icons for each of the potential weather patterns. The Weather Channel includes default images with your connection to their service.&lt;/p&gt;
&lt;p&gt;You may customize the widget as I have shown above or use the default view which is provided.&lt;/p&gt;
&lt;h4&gt;Adding the Widget to Orchard&lt;/h4&gt;
&lt;p&gt;To install the widget, you can log into your Orchard CMS version 1.1 dashboard and go to Modules (If you are running Orchard version 1.0, I&amp;rsquo;d strongly urge you to upgrade your instance as this instance is much more stable and more user friendly). In the Modules section, choose Gallery and type in Weather in the search box. Choose the WeatherDotCom widget and click Install. After its finished installing, you&amp;rsquo;ll be prompted to enable this feature.&lt;/p&gt;
&lt;p&gt;If you&amp;rsquo;d like to install the widget offline, you can &lt;a href="http://jasong.us/kVwwY7" target="_blank"&gt;download it directly from the Orchard Gallery website&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Once it&amp;rsquo;s enabled, it&amp;rsquo;s now a new part that can be added to a page, a blog post, or as a widget. In most cases, you&amp;rsquo;ll want to add it as a widget. To add it as a Widget, choose Widgets in the dashboard. In the appropriate zone click the Add button. I&amp;rsquo;d recommend using it in AsideFirst, AsideSecond, or one of the zones found AfterMain. On the next screen, choose Web Part Record.&lt;/p&gt;
&lt;p&gt;When it&amp;rsquo;s added, you&amp;rsquo;ll have a property window screen that allows you to specify the properties for the widget. The screen looks like the following:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://jasongaylord.com.vserver01.cytanium.com/Media/Default/Windows-Live-Writer/Introducing-the-WeatherDotCom-Widget_B752/WeatherChannelProperties_2.png"&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="WeatherChannelProperties" border="0" alt="WeatherChannelProperties" src="http://jasongaylord.com.vserver01.cytanium.com/Media/Default/Windows-Live-Writer/Introducing-the-WeatherDotCom-Widget_B752/WeatherChannelProperties_thumb.png" width="416" height="484" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;Conclusion&lt;/h4&gt;
&lt;p&gt;The source code and the widget can be downloaded by using the links below. If you find any bugs or have any suggestions, be sure to enter them on the CodePlex site, not the Orchard Gallery website, by using the &lt;a href="http://jasong.us/jSK0CU" target="_blank"&gt;Issue page&lt;/a&gt; or &lt;a href="http://jasong.us/j2PCWf" target="_blank"&gt;Discussion page&lt;/a&gt; respectively.&lt;/p&gt;
&lt;p&gt;&lt;a title="http://jasong.us/iVgLrU" href="http://jasong.us/iVgLrU" target="_blank"&gt;&lt;img src="http://jasong.us/jrk74Q" /&gt; Module Package for Orchard CMS&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title="http://jasong.us/mhsING" href="http://jasong.us/mhsING" target="_blank"&gt;&lt;img src="http://jasong.us/jrk74Q" /&gt; Full Source Code&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=Vce2NSImCbk:It56FZHWeWw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=Vce2NSImCbk:It56FZHWeWw:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=Vce2NSImCbk:It56FZHWeWw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=Vce2NSImCbk:It56FZHWeWw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=Vce2NSImCbk:It56FZHWeWw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=Vce2NSImCbk:It56FZHWeWw:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=Vce2NSImCbk:It56FZHWeWw:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasonNGaylord/~4/Vce2NSImCbk" height="1" width="1"/&gt;</description><pubDate>Tue, 07 Jun 2011 01:15:00 GMT</pubDate><guid isPermaLink="false">http://jasongaylord.com:80/blog/weatherdotcom-widget-for-orchard</guid><feedburner:origLink>http://jasongaylord.com:80/blog/weatherdotcom-widget-for-orchard</feedburner:origLink></item><item><title>Grow Your Website using Orchard</title><link>http://feeds.jasongaylord.com/~r/JasonNGaylord/~3/z8Q8cVluJp8/grow-your-website-using-orchard</link><description>&lt;p&gt;I&amp;rsquo;m just wrapping up a trip to Eastern Tennessee&amp;rsquo;s &lt;a href="http://codestock.org/" target="_blank"&gt;CodeStock 2011&lt;/a&gt; (in Knoxville to be precise). While I was down here, I presented on the &lt;a href="http://orchardproject.net/" target="_blank"&gt;Orchard CMS&lt;/a&gt;. Both the conference and talk were great and while I&amp;rsquo;m never really satisfied with any of my talks, I have recorded it. It will soon be available on the CodeStock website for all to view at a later date and time. However, I know that Michael Neel is quite busy and it may take him another day (or week) to get everything up there. So, I&amp;rsquo;ve jumped the gun and published it up myself. Be sure to check it out:&lt;br /&gt;&lt;br /&gt;&lt;iframe height="300" src="http://player.vimeo.com/video/24661843?title=0&amp;amp;byline=0&amp;amp;portrait=0" frameborder="0" width="400"&gt;&lt;/iframe&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://vimeo.com/24661843"&gt;Grow Your Website Using Orchard&lt;/a&gt; from &lt;a href="http://vimeo.com/jasongaylord"&gt;Jason Gaylord&lt;/a&gt; on &lt;a href="http://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;By now you probably have heard of a new content management system called Orchard. You may already have a CMS, but this one that&amp;rsquo;s been released by The Outercurve Foundation is different. We&amp;rsquo;ll discuss some of the features and benefits to using Orchard. We&amp;rsquo;ll also see some tips and tricks. By the end of this session, you&amp;rsquo;ll not only have an understanding of how to use Orchard, but will have a fully functional website as an added bonus.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=z8Q8cVluJp8:-Tw0tUP1kQc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=z8Q8cVluJp8:-Tw0tUP1kQc:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=z8Q8cVluJp8:-Tw0tUP1kQc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=z8Q8cVluJp8:-Tw0tUP1kQc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=z8Q8cVluJp8:-Tw0tUP1kQc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=z8Q8cVluJp8:-Tw0tUP1kQc:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=z8Q8cVluJp8:-Tw0tUP1kQc:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasonNGaylord/~4/z8Q8cVluJp8" height="1" width="1"/&gt;</description><pubDate>Sun, 05 Jun 2011 02:45:00 GMT</pubDate><guid isPermaLink="false">http://jasongaylord.com:80/blog/grow-your-website-using-orchard</guid><feedburner:origLink>http://jasongaylord.com:80/blog/grow-your-website-using-orchard</feedburner:origLink></item><item><title>The Orchard CMS Gazette</title><link>http://feeds.jasongaylord.com/~r/JasonNGaylord/~3/0CG0G4Mb90s/the-orchard-cms-gazette</link><description>&lt;p&gt;Since my new site is based on Orchard and I&amp;rsquo;m hyped to start creating modules and customizing Orchard, I figured I&amp;rsquo;d share the links that I find on Twitter and Facebook with all. Subscribe today to the Orchard CMS Gazette by visiting &lt;a href="http://tinyurl.com/orchardcms"&gt;http://tinyurl.com/orchardcms&lt;/a&gt;. The publication will pull recent posts and articles submitted on Twitter and Facebook containing popular Orchard search terms. If you have any suggestions to improve this digital publication, please let me know by leaving a comment.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=0CG0G4Mb90s:iQZE1lYn71c:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=0CG0G4Mb90s:iQZE1lYn71c:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=0CG0G4Mb90s:iQZE1lYn71c:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=0CG0G4Mb90s:iQZE1lYn71c:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=0CG0G4Mb90s:iQZE1lYn71c:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=0CG0G4Mb90s:iQZE1lYn71c:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=0CG0G4Mb90s:iQZE1lYn71c:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasonNGaylord/~4/0CG0G4Mb90s" height="1" width="1"/&gt;</description><pubDate>Fri, 03 Jun 2011 20:00:00 GMT</pubDate><guid isPermaLink="false">http://jasongaylord.com:80/blog/the-orchard-cms-gazette</guid><feedburner:origLink>http://jasongaylord.com:80/blog/the-orchard-cms-gazette</feedburner:origLink></item><item><title>Preparing for CodeStock 2011</title><link>http://feeds.jasongaylord.com/~r/JasonNGaylord/~3/9poSc5wSHw0/preparing-for-codestock-2011</link><description>&lt;p&gt;I arrived in Sevierville, TN last evening in preparation for CodeStock 2011. I&amp;rsquo;ll be presenting about the Orchard CMS tomorrow at 12:30pm in room 401. You can read more about the talk on the CodeStock site at &lt;a title="http://codestock.org/Sessions/grow-your-website-using-orchard.aspx" href="http://codestock.org/Sessions/grow-your-website-using-orchard.aspx"&gt;http://codestock.org/Sessions/grow-your-website-using-orchard.aspx&lt;/a&gt;. I&amp;rsquo;ll be posting pictures later on after visiting various stops.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=9poSc5wSHw0:T0PdxhsVSUk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=9poSc5wSHw0:T0PdxhsVSUk:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=9poSc5wSHw0:T0PdxhsVSUk:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=9poSc5wSHw0:T0PdxhsVSUk:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=9poSc5wSHw0:T0PdxhsVSUk:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.jasongaylord.com/~ff/JasonNGaylord?a=9poSc5wSHw0:T0PdxhsVSUk:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/JasonNGaylord?i=9poSc5wSHw0:T0PdxhsVSUk:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasonNGaylord/~4/9poSc5wSHw0" height="1" width="1"/&gt;</description><pubDate>Thu, 02 Jun 2011 20:45:00 GMT</pubDate><guid isPermaLink="false">http://jasongaylord.com:80/blog/preparing-for-codestock-2011</guid><feedburner:origLink>http://jasongaylord.com:80/blog/preparing-for-codestock-2011</feedburner:origLink></item></channel></rss>

