<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#">
  <channel>
    <title>Andrew's Blog</title>
    <description>Random Thoughts of an ASP.Net Code Monkey</description>
    <link>http://www.andrewwestgarth.co.uk/blog/</link>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <generator>BlogEngine.NET 2.6.0.5</generator>
    <language>en-GB</language>
    <blogChannel:blogRoll>http://www.andrewwestgarth.co.uk/blog/opml.axd</blogChannel:blogRoll>
    <blogChannel:blink>http://www.dotnetblogengine.net/syndication.axd</blogChannel:blink>
    <dc:creator>Andrew Westgarth</dc:creator>
    <dc:title>Andrew's Blog</dc:title>
    <geo:lat>54.874690</geo:lat>
    <geo:long>-1.432664</geo:long>
    <item>
      <title>Scheduling a Webjob on Windows Azure Pack Websites V2 Update Rollup 9</title>
      <description>&lt;p&gt;With &lt;a href="https://www.microsoft.com/en-us/download/details.aspx?id=46896"&gt;Windows Azure Pack Websites V2 Update Rollup 6&lt;/a&gt; support was added for WebJobs – &lt;a href="https://technet.microsoft.com/en-us/library/mt125372.aspx"&gt;Using WebJobs in Windows Azure Pack V2&lt;/a&gt;.&amp;#160; WebJobs are executable files running as a background process in the context of a Web App, the executable file can be such as a cmd, bat, exe (.Net), ps1, sh, php, py, js and jar.&amp;#160; &lt;/p&gt;  &lt;p&gt;One of the limitations of Windows Azure Pack and subsequently WebJobs on Azure Pack is that the lack of Scheduler in Azure Pack which prevents the running of WebJobs on a Schedule.&amp;#160; However I have been able to get a WebJob running on a schedule using the &lt;a href="https://github.com/projectkudu/kudu/wiki"&gt;Kudu&lt;/a&gt; engine.&lt;/p&gt;  &lt;h2&gt;What is Kudu?&lt;/h2&gt;  &lt;p&gt;Taking the description from the project’s &lt;a href="https://github.com/projectkudu/kudu/wiki"&gt;wiki&lt;/a&gt;wiki page – “Kudu is the engine behind git deployments in Azure Web Sites.&amp;#160; It can also run out of Azure” and indeed it is running in Windows Azure Pack Websites.&amp;#160; Kudu enables features such as Web Jobs and Site Extensions for example.&amp;#160; Kudu is an Open Source and has an &lt;a href="https://github.com/projectkudu/kudu/blob/master/LICENSE.txt"&gt;Apache License 2.0&lt;/a&gt;Apache License 2.0.&amp;#160; For more information check out the repository on Github – &lt;a href="https://www.github.com/productkudu/kudu"&gt;https://www.github.com/productkudu/kudu&lt;/a&gt;&lt;/p&gt;  &lt;h2&gt;Create a Website in Windows Azure Pack Websites&lt;/h2&gt;  &lt;ol&gt;   &lt;li&gt;In the tenant portal, create a website. &lt;/li&gt;    &lt;li&gt;Select the website you created and click the option to “Reset your deployment credentials” &lt;/li&gt;    &lt;li&gt;Enter a username and password and click the tick button to save the changes. &lt;/li&gt; &lt;/ol&gt;  &lt;h3&gt;Enable AlwaysOn on the Website&lt;/h3&gt;  &lt;p&gt;In order to enable a WebJob to run on a schedule your Windows Azure Pack Websites farm needs to be running &lt;a href="https://www.microsoft.com/en-us/download/details.aspx?id=50746"&gt;Windows Azure Pack Websites Update Rollup 9&lt;/a&gt; and your site needs to be on a Reserved Instance with AlwaysOn enabled for your site: &lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;To scale up to a Standard instance in the scale tab of your website select Reserved Web Site Mode, select the instance size and select at least one instance and click Save:      &lt;p&gt;&lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=scale_2.png"&gt;&lt;img title="Windows Azure Pack Websites - Scale" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="Windows Azure Pack Websites - Scale" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=scale_thumb_2.png" width="460" height="436" /&gt;&lt;/a&gt;&lt;/p&gt;   &lt;/li&gt;    &lt;li&gt;Next in order to enable AlwaysOn you need to Remote Desktop onto the controller role and then run the following PowerShell CmdLet:      &lt;pre&gt;PS C:\Users\Administrator&amp;gt; import-module websitesdev
PS C:\Users\Administrator&amp;gt; Set-WebSiteConfig -Name &amp;quot;&amp;lt;NameofSite&amp;gt;&amp;quot; -AlwaysOn 1&lt;/pre&gt;
  &lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;Creating a Simple WebJob to run on a Schedule in Windows Azure Pack Websites&lt;/h2&gt;

&lt;p&gt;Let me walkthrough what I did to create a simple on-demand WebJob which will run on a schedule and deploy it to my Windows Azure Pack Websites deployment.&amp;#160; My preference is to work with .Net so my example is built using C#.&amp;#160; &lt;strong&gt;&lt;font style="background-color: #ffff00"&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;font style="background-color: #ffff00"&gt;&lt;strong&gt;IMPORTANT:&lt;/strong&gt; &lt;strong&gt;Do Not&lt;/strong&gt; use the Azure WebJobs SDK when creating WebJobs for Windows Azure Pack Websites as the SDK has a dependency on an Azure Storage Account which is not available in Windows Azure Pack.&lt;/font&gt;&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;In Visual Studio, File &amp;gt; New &amp;gt; Project and select Console Application&amp;#160; &lt;ul&gt;
      &lt;li&gt;Name the Project, set the correct location and name the solution &lt;/li&gt;

      &lt;li&gt;Click Ok to create the project &lt;/li&gt;
    &lt;/ul&gt;

    &lt;p&gt;&lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=2016-03-09_16h45_40_1.png"&gt;&lt;img title="Visual Studio New Console Application Dialog" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="Visual Studio New Console Application Dialog" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=2016-03-09_16h45_40_thumb_1.png" width="580" height="404" /&gt;&lt;/a&gt;&lt;/p&gt;
  &lt;/li&gt;

  &lt;li&gt;Edit the Main method of Program.cs to add functionality to your WebJob.&amp;#160; In this example I am simply writing some text to a file in the root of the Web App e.g. 
    &lt;pre&gt;static void Main(string[] args) 
{ 
    try 
    { 
        string strMessage = string.Format(&amp;quot;WebJob HelloWorld!&amp;quot;); 
        string strPath = Environment.GetEnvironmentVariable(&amp;quot;HOME&amp;quot;); 
        System.IO.File.AppendAllText(strPath + @&amp;quot;\WebJobLog.txt&amp;quot;, strMessage); 
    } 
    catch (Exception ex) 
    { 
        Console.WriteLine(&amp;quot;Exception: {0}&amp;quot;, ex.Message); 
    } 
}&lt;/pre&gt;
  &lt;/li&gt;

  &lt;li&gt;Right click the project and add a new item and add a JSON file naming it settings.job &lt;/li&gt;

  &lt;li&gt;In the properties of the file change the value of Copy to Output Directory to Copy Always: 
    &lt;p&gt;&lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=Properties_1.png"&gt;&lt;img title="File Properties Window" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="File Properties Window" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=Properties_thumb_1.png" width="244" height="160" /&gt;&lt;/a&gt; &lt;/p&gt;
  &lt;/li&gt;

  &lt;li&gt;Now we need to add a CRON expression to the settings.job file.&amp;#160; For example the following sets the job to run every five minutes on the 0,5,10,15,20… for more examples see – &lt;a href="https://code.google.com/archive/p/ncrontab/wikis/CrontabExamples.wiki"&gt;https://code.google.com/archive/p/ncrontab/wikis/CrontabExamples.wiki&lt;/a&gt; 

    &lt;pre&gt;{ 
  &amp;quot;schedule&amp;quot;:  &amp;quot;0 */5 * * * *&amp;quot; 
}&lt;/pre&gt;
  &lt;/li&gt;

  &lt;li&gt;Save the file and then rebuild the project. &lt;/li&gt;

  &lt;li&gt;Create a zip file of the output and ensure the settings.job file is also added to the zip file. &lt;/li&gt;

  &lt;li&gt;Browse to the WebJobs tab of your website in the Windows Azure Pack Tenant Portal &lt;/li&gt;

  &lt;li&gt;Then click the “Add a Job” button &lt;/li&gt;

  &lt;li&gt;Give the WebJob a name, select the content file and set the job to run on demand: 
    &lt;p&gt;&lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=2016-03-10_17h06_58_settingscrop_1.png"&gt;&lt;img title="Add New WebJob Dialog" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="Add New WebJob Dialog" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=2016-03-10_17h06_58_settingscrop_thumb_1.png" width="580" height="402" /&gt;&lt;/a&gt;&lt;/p&gt;
  &lt;/li&gt;

  &lt;li&gt;Click the tick button to create the WebJob &lt;/li&gt;

  &lt;li&gt;Click the link in the Logs column for your new WebJob.&amp;#160; This will open up a new tab/window (depends on how your browser is configured).&amp;#160; (Note: You may be asked to authenticate using the deployment credentials you reset earlier.): 
    &lt;p&gt;&lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=SimpleWebJobs_Details.png"&gt;&lt;img title="WebJobs Portal" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="WebJobs Portal" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=SimpleWebJobs_Details_thumb.png" width="580" height="186" /&gt;&lt;/a&gt;&lt;/p&gt;
  &lt;/li&gt;

  &lt;li&gt;Depending on how close it was to the nearest five minute interval (0,5,10) etc. you may not see any runs listed.&amp;#160; However if you refresh on the interval you should see the first run of the WebJob:
    &lt;p&gt;&lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=SimpleWebJobs_DetailsRun.png"&gt;&lt;img title="WebJobs Portal - List of Runs" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="WebJobs Portal - List of Runs" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=SimpleWebJobs_DetailsRun_thumb.png" width="580" height="189" /&gt;&lt;/a&gt;&lt;/p&gt;
  &lt;/li&gt;

  &lt;li&gt;On this screen you can see the list of Recent Job Runs and if you click the WebJob run entry and this will take you to the WebJob Run Details where you can see the output from the WebJob: 
    &lt;p&gt;&lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=SimpleWebJobs_DetailsRunConsole.png"&gt;&lt;img title="WebJobs Portal - Console Output of Individual Run" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="WebJobs Portal - Console Output of Individual Run" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=SimpleWebJobs_DetailsRunConsole_thumb.png" width="580" height="277" /&gt;&lt;/a&gt;&lt;/p&gt;
  &lt;/li&gt;

  &lt;li&gt;To finish this post, leave your WebJob running for a while and you will see the list of runs increase over time in accordance with the schedule you set:
    &lt;p&gt;&lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=SimpleWebJobs_DetailsRunList.png"&gt;&lt;img title="WebJobs Portal - List of Scheduled Executions" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="WebJobs Portal - List of Scheduled Executions" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=SimpleWebJobs_DetailsRunList_thumb.png" width="580" height="253" /&gt;&lt;/a&gt;&lt;/p&gt;
  &lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;

&lt;p&gt;There you have it! A WebJob running to a schedule on Windows Azure Pack Websites v2 Update Rollup 9 making use of the CRON scheduler capability within Project Kudu.&lt;/p&gt;
&lt;!--EndFragment--&gt;</description>
      <link>http://www.andrewwestgarth.co.uk/blog/post/2016/03/12/Scheduling-a-Webjob-on-Windows-Azure-Pack-Websites-V2.aspx</link>
      <comments>http://www.andrewwestgarth.co.uk/blog/post/2016/03/12/Scheduling-a-Webjob-on-Windows-Azure-Pack-Websites-V2.aspx#comment</comments>
      <guid>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=87381192-ea3c-4186-89b1-162deea735e7</guid>
      <pubDate>Sat, 12 Mar 2016 00:05:00 +0000</pubDate>
      <category>How To</category>
      <category>WAP Websites</category>
      <dc:publisher>Andrew Westgarth</dc:publisher>
      <pingback:server>http://www.andrewwestgarth.co.uk/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=87381192-ea3c-4186-89b1-162deea735e7</pingback:target>
      <slash:comments>60</slash:comments>
      <trackback:ping>http://www.andrewwestgarth.co.uk/blog/trackback.axd?id=87381192-ea3c-4186-89b1-162deea735e7</trackback:ping>
      <wfw:comment>http://www.andrewwestgarth.co.uk/blog/post/2016/03/12/Scheduling-a-Webjob-on-Windows-Azure-Pack-Websites-V2.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andrewwestgarth.co.uk/blog/syndication.axd?post=87381192-ea3c-4186-89b1-162deea735e7</wfw:commentRss>
    </item>
    <item>
      <title>Rebooting My Blog</title>
      <description>&lt;p&gt;A lot has happened since I last wrote a post on my blog way back in October 2014!&amp;nbsp; My son was born in December 2014 and we have since celebrated his first birthday too!&amp;nbsp; Oh and we have had the small matter of relocating four and half thousand miles from Sunderland, UK to Redmond, Washington, USA!!&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=11694870_10153673188844934_8182664770767615320_n.jpg"&gt;&lt;img style="background-image: none; padding-top: 0px; padding-left: 0px; display: inline; padding-right: 0px; border: 0px;" title="My Family" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=11694870_10153673188844934_8182664770767615320_n_thumb.jpg" alt="My Family" width="244" height="184" border="0" /&gt;&lt;/a&gt;&lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=20160301_155819804_iOS.jpg"&gt;&lt;img style="background-image: none; padding-top: 0px; padding-left: 0px; display: inline; padding-right: 0px; border: 0px;" title="View from our doorstep" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=20160301_155819804_iOS_thumb.jpg" alt="View from our doorstep" width="244" height="184" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Back in July 2014 I joined Microsoft as&amp;nbsp; Program Manager on what was then Azure Websites, &lt;a href="https://azure.microsoft.com/en-us/services/app-service/"&gt;Azure App Service&lt;/a&gt;.&amp;nbsp; My role includes working on the public cloud product &amp;ndash; Azure App Service, the on-premises product &amp;ndash; &lt;a href="https://technet.microsoft.com/en-us/library/dn457745.aspx"&gt;Windows Azure Pack Websites&lt;/a&gt; and the future of the service on premises &amp;ndash; &lt;a href="https://azure.microsoft.com/en-us/documentation/articles/azure-stack-webapps-deploy/"&gt;App Service on Azure Stack&lt;/a&gt; and I am also still involved with some of the &lt;a href="http://blogs.iis.net/iisoobs"&gt;out of band modules for IIS&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Outside of work I have stepped back from some of my community work, but not completely, to devote more time to my family &lt;img class="wlEmoticon wlEmoticon-smile" style="border-style: none;" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=wlEmoticon-smile_2.png" alt="Smile" /&gt;.&amp;nbsp; I am still involved with &lt;a href="http://www.dddnorth.co.uk"&gt;DDD North&lt;/a&gt; remotely and I will likely get involved in the community in and around Redmond but will scale up or down over time.&amp;nbsp; I am also hoping to restart blogging reasonably regularly and will be updating the blog theme over the coming weeks and months.&lt;/p&gt;</description>
      <link>http://www.andrewwestgarth.co.uk/blog/post/2016/03/09/Rebooting-My-Blog.aspx</link>
      <comments>http://www.andrewwestgarth.co.uk/blog/post/2016/03/09/Rebooting-My-Blog.aspx#comment</comments>
      <guid>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=5961ba0c-88ce-408b-99d8-f5dcef34613f</guid>
      <pubDate>Wed, 09 Mar 2016 20:50:00 +0000</pubDate>
      <category>Personal</category>
      <dc:publisher>Andrew Westgarth</dc:publisher>
      <pingback:server>http://www.andrewwestgarth.co.uk/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=5961ba0c-88ce-408b-99d8-f5dcef34613f</pingback:target>
      <slash:comments>13</slash:comments>
      <trackback:ping>http://www.andrewwestgarth.co.uk/blog/trackback.axd?id=5961ba0c-88ce-408b-99d8-f5dcef34613f</trackback:ping>
      <wfw:comment>http://www.andrewwestgarth.co.uk/blog/post/2016/03/09/Rebooting-My-Blog.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andrewwestgarth.co.uk/blog/syndication.axd?post=5961ba0c-88ce-408b-99d8-f5dcef34613f</wfw:commentRss>
    </item>
    <item>
      <title>Speaking at Tech Ed Europe 2014–This Week</title>
      <description>&lt;p&gt;&lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=tee14.png"&gt;&lt;img title="tee14" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin-left: auto; border-left: 0px; display: block; padding-right: 0px; margin-right: auto" border="0" alt="tee14" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=tee14_thumb.png" width="150" height="150" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;I’m currently in Barcelona and will be speaking at &lt;a href="http://europe.msteched.com"&gt;Tech Ed Europe 2014&lt;/a&gt;.&amp;#160; I’m presenting:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://teeu2014.eventpoint.com/topic/list"&gt;DEV-B341 Running a Global Massively Scalable Web Application on Microsoft Azure Web Sites&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Friday, October 31 12:00 PM - 1:15 PM Room: Hall 8.0 Room B1&lt;/p&gt;  &lt;p&gt;Track: Developer Platform and Tools&lt;/p&gt;  &lt;p&gt;Session Type: Breakout&lt;/p&gt;  &lt;p&gt;Topic: Microsoft Azure&lt;/p&gt;  &lt;p&gt;I’ll also be on hand to answer questions on our Azure Websites stand in the TechExpo, along with being around the event all week at the Welcome Reception, Happy Hour, Ask The Experts session and Country Drinks.&amp;#160; Looking forward to talking to lots of people about Azure Websites!&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=Faces%20Infographic%20Social%20(1).png"&gt;&lt;img title="Faces Infographic Social (1)" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin-left: auto; border-left: 0px; display: block; padding-right: 0px; margin-right: auto" border="0" alt="Faces Infographic Social (1)" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=Faces%20Infographic%20Social%20(1)_thumb.png" width="364" height="193" /&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <link>http://www.andrewwestgarth.co.uk/blog/post/2014/10/27/Speaking-at-Tech-Ed-Europe-2014-This-Week.aspx</link>
      <comments>http://www.andrewwestgarth.co.uk/blog/post/2014/10/27/Speaking-at-Tech-Ed-Europe-2014-This-Week.aspx#comment</comments>
      <guid>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=a272b625-814b-4c4f-881a-2625065b9f96</guid>
      <pubDate>Mon, 27 Oct 2014 16:25:09 +0000</pubDate>
      <category>MS Events</category>
      <category>Microsoft</category>
      <category>Azure Websites</category>
      <dc:publisher>Andrew Westgarth</dc:publisher>
      <pingback:server>http://www.andrewwestgarth.co.uk/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=a272b625-814b-4c4f-881a-2625065b9f96</pingback:target>
      <slash:comments>41</slash:comments>
      <trackback:ping>http://www.andrewwestgarth.co.uk/blog/trackback.axd?id=a272b625-814b-4c4f-881a-2625065b9f96</trackback:ping>
      <wfw:comment>http://www.andrewwestgarth.co.uk/blog/post/2014/10/27/Speaking-at-Tech-Ed-Europe-2014-This-Week.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andrewwestgarth.co.uk/blog/syndication.axd?post=a272b625-814b-4c4f-881a-2625065b9f96</wfw:commentRss>
    </item>
    <item>
      <title>Retired from the MVP Program–Got a New Badge</title>
      <description>&lt;p&gt;On Monday 28th July 2014, I retired from the Microsoft MVP Program after 7 years!&amp;#160; The MVP Program is a fantastic honour and privilege to be a part of and I have interacted with many, many fantastic peers and community members over the years.&amp;#160; &lt;/p&gt;  &lt;p&gt;I’ve had to retire because I have joined Microsoft as a Program Manager on the Microsoft Azure Websites Team, a very exciting and interesting opportunity for me!&amp;#160; I’m looking forward to getting up to speed quickly and working with my new team.&lt;/p&gt;  &lt;p&gt;I’ll still be as active as I used to be in the community, workload permitting, and look forward to seeing many of you at &lt;a href="http://www.nebytes.net"&gt;NEBytes&lt;/a&gt; and &lt;a href="http://www.dddnorth.co.uk"&gt;DDD North&lt;/a&gt; as it’s business as usual with both of those.&lt;/p&gt;</description>
      <link>http://www.andrewwestgarth.co.uk/blog/post/2014/07/31/Retired-from-the-MVP-Program-Got-a-New-Badge.aspx</link>
      <comments>http://www.andrewwestgarth.co.uk/blog/post/2014/07/31/Retired-from-the-MVP-Program-Got-a-New-Badge.aspx#comment</comments>
      <guid>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=55c94aaa-e44d-4de6-b54a-f7564a917814</guid>
      <pubDate>Thu, 31 Jul 2014 02:09:54 +0000</pubDate>
      <category>MVP</category>
      <category>Microsoft</category>
      <category>North East Bytes</category>
      <category>DDD North</category>
      <category>Personal</category>
      <dc:publisher>Andrew Westgarth</dc:publisher>
      <pingback:server>http://www.andrewwestgarth.co.uk/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=55c94aaa-e44d-4de6-b54a-f7564a917814</pingback:target>
      <slash:comments>39</slash:comments>
      <trackback:ping>http://www.andrewwestgarth.co.uk/blog/trackback.axd?id=55c94aaa-e44d-4de6-b54a-f7564a917814</trackback:ping>
      <wfw:comment>http://www.andrewwestgarth.co.uk/blog/post/2014/07/31/Retired-from-the-MVP-Program-Got-a-New-Badge.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andrewwestgarth.co.uk/blog/syndication.axd?post=55c94aaa-e44d-4de6-b54a-f7564a917814</wfw:commentRss>
    </item>
    <item>
      <title>An Invite to the Palace!</title>
      <description>&lt;p&gt;&lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=DSC_0696%20(2).jpg"&gt;&lt;img title="Being introduced to The Queen" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin-left: auto; display: block; padding-right: 0px; border-top-width: 0px; margin-right: auto" border="0" alt="Being introduced to The Queen" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=DSC_0696%20(2)_thumb.jpg" width="244" height="159" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Last month I was extremely surprised and honoured to receive an invite to a UK Technology Reception with The Queen and The Duke of Edinburgh at Buckingham Palace on Monday 9th June 2014.&amp;#160; The reception was hosted by &lt;a href="http://www.thedukeofyork.org/supporting-british-prosperity/smes-and-entrepreneurs/uk-tech-reception"&gt;The Duke of York&lt;/a&gt; and I was among 350 guests from all over the UK Technology industry invited to this fantastic occasion.&amp;#160; I received my invite for the work I’ve done in the community with user groups such as &lt;a href="http://www.nebytes.net"&gt;NEBytes&lt;/a&gt; and events such as &lt;a href="http://www.dddnorth.co.uk"&gt;DDD North&lt;/a&gt; and &lt;a href="http://www.imaginecup.com"&gt;Imagine Cup&lt;/a&gt; North East, which is very humbling as I love the work I do in the community and think of it more as a hobby than actual work, many thanks to everyone in the community who has supported the events, students and our fantastic user group here in the North East!&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=palaceinvite.jpg"&gt;&lt;img title="My Invite to the UK Technology Reception at Buckingham Palace" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin-left: auto; display: block; padding-right: 0px; border-top-width: 0px; margin-right: auto" border="0" alt="My Invite to the UK Technology Reception at Buckingham Palace" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=palaceinvite_thumb.jpg" width="244" height="139" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;I joined other representatives from the North East Technology Community, &lt;a href="http://www.sunderlandsoftwarecity.com/2014/06/downing-street-honours-north-east-technology-success/"&gt;David Dunn – CEO of Sunderland Software City&lt;/a&gt;, Kevin Beales – CEO of Sunderland based &lt;a href="http://www.thetestfactory.com/"&gt;Test Factory&lt;/a&gt;, Mike Fish – Managing Director of &lt;a href="http://www.dontynesystems.com/"&gt;Dontyne Systems&lt;/a&gt;, Ajay Sood – Managing Director of &lt;a href="http://www.orchidsoft.com/"&gt;Orchid Software&lt;/a&gt; and &lt;a href="http://www.workcast.com/uk"&gt;Workcast&lt;/a&gt; Director Gerrard Callaghan, among many others.&amp;#160; We were all privileged to be introduced to both The Queen and The Duke of Edinburgh and we discussed the UK Technology Industry with our peers throughout a very pleasant evening.&amp;#160; An experience I am very proud of and very grateful for the opportunity, certainly one to remember and what a great picture to put in the family album!&lt;/p&gt;</description>
      <link>http://www.andrewwestgarth.co.uk/blog/post/2014/07/02/An-Invite-to-the-Palace!.aspx</link>
      <comments>http://www.andrewwestgarth.co.uk/blog/post/2014/07/02/An-Invite-to-the-Palace!.aspx#comment</comments>
      <guid>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=8955c95f-3266-4420-92ef-eccd160525d9</guid>
      <pubDate>Wed, 02 Jul 2014 01:15:00 +0000</pubDate>
      <category>Personal</category>
      <category>UK Community</category>
      <category>North East Bytes</category>
      <category>Imagine Cup</category>
      <category>DDD North</category>
      <dc:publisher>Andrew Westgarth</dc:publisher>
      <pingback:server>http://www.andrewwestgarth.co.uk/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=8955c95f-3266-4420-92ef-eccd160525d9</pingback:target>
      <slash:comments>24</slash:comments>
      <trackback:ping>http://www.andrewwestgarth.co.uk/blog/trackback.axd?id=8955c95f-3266-4420-92ef-eccd160525d9</trackback:ping>
      <wfw:comment>http://www.andrewwestgarth.co.uk/blog/post/2014/07/02/An-Invite-to-the-Palace!.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andrewwestgarth.co.uk/blog/syndication.axd?post=8955c95f-3266-4420-92ef-eccd160525d9</wfw:commentRss>
    </item>
    <item>
      <title>Awarded Microsoft MVP Award for Seventh Year!</title>
      <description>&lt;p&gt;&lt;img style="float: none; margin-left: auto; display: block; margin-right: auto" src="http://www.andrewwestgarth.co.uk/blog/themes/petes/img/MVP_Horizontal_FullColor.png" /&gt;&lt;/p&gt;  &lt;p&gt;This afternoon I received an email from Microsoft to tell me that I’d been awarded the 2014 Microsoft &lt;a href="https://mvp.support.microsoft.com/en-us/mvp/Andrew%20Westgarth-4020463"&gt;MVP Award&lt;/a&gt; for ASP.Net/IIS!&amp;#160; This is my seventh MVP Award, I am extremely humble and privileged to be associated with a great group of less than 5000 technical people around the globe.&amp;#160; I’ll be aiming to continue my efforts to help the community and deliver as much content as I can to aid and spread knowledge through events, blogging and social media among other avenues.&amp;#160; &lt;/p&gt;</description>
      <link>http://www.andrewwestgarth.co.uk/blog/post/2014/07/01/Awarded-Microsoft-MVP-Award-for-Seventh-Year!.aspx</link>
      <comments>http://www.andrewwestgarth.co.uk/blog/post/2014/07/01/Awarded-Microsoft-MVP-Award-for-Seventh-Year!.aspx#comment</comments>
      <guid>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=9317f0dd-efca-41f9-b215-a9eb9bdd22c8</guid>
      <pubDate>Tue, 01 Jul 2014 14:09:05 +0000</pubDate>
      <category>MVP</category>
      <category>Microsoft</category>
      <category>Personal</category>
      <dc:publisher>Andrew Westgarth</dc:publisher>
      <pingback:server>http://www.andrewwestgarth.co.uk/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=9317f0dd-efca-41f9-b215-a9eb9bdd22c8</pingback:target>
      <slash:comments>7</slash:comments>
      <trackback:ping>http://www.andrewwestgarth.co.uk/blog/trackback.axd?id=9317f0dd-efca-41f9-b215-a9eb9bdd22c8</trackback:ping>
      <wfw:comment>http://www.andrewwestgarth.co.uk/blog/post/2014/07/01/Awarded-Microsoft-MVP-Award-for-Seventh-Year!.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andrewwestgarth.co.uk/blog/syndication.axd?post=9317f0dd-efca-41f9-b215-a9eb9bdd22c8</wfw:commentRss>
    </item>
    <item>
      <title>DDD North 2014 Announced</title>
      <description>&lt;p&gt;&lt;img style="float: none; margin-left: auto; display: block; margin-right: auto;" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=dddMed.png" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;This morning I am delighted to announce that &lt;a href="http://www.dddnorth.co.uk"&gt;DDD North 2014&lt;/a&gt; will be held at the &lt;a href="http://www.leeds.ac.uk"&gt;University of Leeds&lt;/a&gt; on Saturday 18th October 2014.&amp;nbsp; DDD North is a free one day technical event for developers. This is the fourth Developer! Developer! Developer! Community Event ever ran in the North of England and we are delighted to be hosted at the University of Leeds following on from our three previous events with registrations rising over 425 last year! DDD North is a day of learning, discussion, contribution and involvement in the community in the North East, North West, Midlands and Scotland. The goal of DDD North is to provide free technical education with the added benefit of the networking possibilities with peers and the development of relationships across the .NET Industry!&lt;/p&gt;
&lt;p&gt;DDD North 2014 is now open for session submissions so get them in now!! &amp;ndash; &lt;a href="http://www.dddnorth.co.uk/sessions"&gt;http://www.dddnorth.co.uk/sessions&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The timeline for the event is as follows:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Session submissions open now till 00:00 on Friday 22nd August 2014&lt;/li&gt;
&lt;li&gt;Session voting begins at 00:01 on Friday 22nd August 2014 and closes at 00:00 on Friday 29th August 2014&lt;/li&gt;
&lt;li&gt;Agenda will be published (subject to speaker confirmation) at 08:00 on Monday 1st September 2014&lt;/li&gt;
&lt;li&gt;Registration will open at 10:00 on Monday 1st September 2014&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;For more information and to stay up to date check out &lt;a href="http://www.dddnorth.co.uk"&gt;www.dddnorth.co.uk&lt;/a&gt; and follow the event on Twitter &amp;ndash; &lt;a href="http://www.twitter.com/dddnorth"&gt;http://www.twitter.com/dddnorth&lt;/a&gt;&lt;/p&gt;</description>
      <link>http://www.andrewwestgarth.co.uk/blog/post/2014/06/25/DDD-North-2014-Announced.aspx</link>
      <comments>http://www.andrewwestgarth.co.uk/blog/post/2014/06/25/DDD-North-2014-Announced.aspx#comment</comments>
      <guid>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=c518133c-9700-4e8a-9c82-259b0acb1787</guid>
      <pubDate>Wed, 25 Jun 2014 02:00:00 +0000</pubDate>
      <category>DDD North</category>
      <category>Events</category>
      <category>UK Community</category>
      <dc:publisher>Andrew Westgarth</dc:publisher>
      <pingback:server>http://www.andrewwestgarth.co.uk/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=c518133c-9700-4e8a-9c82-259b0acb1787</pingback:target>
      <slash:comments>36</slash:comments>
      <trackback:ping>http://www.andrewwestgarth.co.uk/blog/trackback.axd?id=c518133c-9700-4e8a-9c82-259b0acb1787</trackback:ping>
      <wfw:comment>http://www.andrewwestgarth.co.uk/blog/post/2014/06/25/DDD-North-2014-Announced.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andrewwestgarth.co.uk/blog/syndication.axd?post=c518133c-9700-4e8a-9c82-259b0acb1787</wfw:commentRss>
    </item>
    <item>
      <title>Getting Started with NDepend</title>
      <description>&lt;p&gt;For quite some time now I’ve been planning on writing a few blog posts about my experiences with &lt;a href="http://www.ndepend.com"&gt;NDepend&lt;/a&gt;.&amp;#160; NDepend is often described as a “Swiss Amy Knife for .NET developers” and I must admit there are plenty features to investigate and get to grips with.&lt;/p&gt;  &lt;p&gt;NDepend analyses your code base against a number of code rules to check against best practice to help to ensure that the code you produce is of a high quality and doesn’t degrade over time, for more details on the wide range of features checkout the list at &lt;a title="http://www.ndepend.com/Features.aspx" href="http://www.ndepend.com/Features.aspx"&gt;http://www.ndepend.com/Features.aspx&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;I’ve recently been revisiting the &lt;a href="http://www.dddnorth.co.uk"&gt;DDD North&lt;/a&gt; code base and looking to tidy up and improve on a few shortcuts and quick fixes I had to put in place last year in order to get the site up and running in time!&amp;#160; I’ve ran the solution through the NDepend tool and here is an example of the output received:-&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=NDepend_1.png"&gt;&lt;img title="NDepend" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="NDepend" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=NDepend_thumb_1.png" width="644" height="352" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;As you can see there is a huge amount of data and information reported by NDepend. I am now in the process of going through each element and looking at items such as the results from the Code Rules tests, Dependency Graphs, Matrices and many more application statistics.&lt;/p&gt;  &lt;p&gt;I’ll follow up this blog post with a look at each of the elements I discover in the report and how I’ve used the information to make my code base better.&amp;#160; In the meantime if you’d like to take a look at NDepend&amp;#160; you can get a 14 day fully functional trial from here &lt;a title="http://www.ndepend.com/NDependDownload.aspx" href="http://www.ndepend.com/NDependDownload.aspx"&gt;http://www.ndepend.com/NDependDownload.aspx&lt;/a&gt; with Getting Started documentation and videos here - &lt;a title="http://www.ndepend.com/GettingStarted.aspx" href="http://www.ndepend.com/GettingStarted.aspx"&gt;http://www.ndepend.com/GettingStarted.aspx&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;In addition why not check out &lt;a href="https://twitter.com/@daedtech"&gt;Erik Dietrich’s&lt;/a&gt; great course – &lt;a href="http://pluralsight.com/training/courses/TableOfContents?courseName=practical-ndepend&amp;amp;highlight=erik-dietrich_practical-ndepend-m2*1,5,11!erik-dietrich_practical-ndepend-m6*1,2,3,0,4,5,6!erik-dietrich_practical-ndepend-m7*8!erik-dietrich_practical-ndepend-m4*1#practical-ndepend-m2"&gt;Practical NDepend on Pluralsight&lt;/a&gt;!&lt;/p&gt;</description>
      <link>http://www.andrewwestgarth.co.uk/blog/post/2014/06/17/Getting-Started-with-NDepend.aspx</link>
      <comments>http://www.andrewwestgarth.co.uk/blog/post/2014/06/17/Getting-Started-with-NDepend.aspx#comment</comments>
      <guid>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=27d259c2-3627-4f42-a6b9-320c1e8f8ec0</guid>
      <pubDate>Tue, 17 Jun 2014 08:12:13 +0000</pubDate>
      <category>How To</category>
      <dc:publisher>Andrew Westgarth</dc:publisher>
      <pingback:server>http://www.andrewwestgarth.co.uk/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=27d259c2-3627-4f42-a6b9-320c1e8f8ec0</pingback:target>
      <slash:comments>13</slash:comments>
      <trackback:ping>http://www.andrewwestgarth.co.uk/blog/trackback.axd?id=27d259c2-3627-4f42-a6b9-320c1e8f8ec0</trackback:ping>
      <wfw:comment>http://www.andrewwestgarth.co.uk/blog/post/2014/06/17/Getting-Started-with-NDepend.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andrewwestgarth.co.uk/blog/syndication.axd?post=27d259c2-3627-4f42-a6b9-320c1e8f8ec0</wfw:commentRss>
    </item>
    <item>
      <title>Telemetry on Cloud Platforms–Resources</title>
      <description>&lt;p&gt;Last night I had the pleasure of presenting at &lt;a href="http://dotnetnotts.co"&gt;Dot Net Notts&lt;/a&gt; (@dotnetnotts), a relatively new User Group in Nottingham.&amp;#160; Having been born in Nottingham, it was a really nice experience to go back visit some family and then present at this vibrant and welcoming new user group.&lt;/p&gt;  &lt;p&gt;Last night I was talking about Telemetry and Logging experiences on a Cloud Platform (namely Microsoft Azure) and was trying to impart the benefit of some experiences running a large multi product platform.&amp;#160; Hopefully the talk was well received and everyone enjoyed it.&amp;#160; The talk was a different type to the majority I’ve given before and I’ve been wanting to deliver it for a while.&amp;#160; The content of the talk discussed mistakes that are easy to make, processes that can help, and some tips along the way for mitigating mistakes and providing a supportable approach to telemetry.&amp;#160; Here are some of the tips, conclusions and resources from the talk last night:&lt;/p&gt;  &lt;h2&gt;Logging Tips:&lt;/h2&gt;  &lt;ul&gt;   &lt;li&gt;Instrument for insight into application &lt;/li&gt;    &lt;li&gt;Capture inter-service application activity and latency &lt;/li&gt;    &lt;li&gt;Ensure level can be altered at run-time &lt;/li&gt;    &lt;li&gt;Abstract logging – gives agility to change framework &lt;/li&gt;    &lt;li&gt;ALWAYS ENABLE LOGGING &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Logging Level guides from a talk by &lt;a href="http://weblogs.asp.net/scottgu"&gt;Scott Guthrie&lt;/a&gt; at &lt;a href="http://bit.ly/ScottGuNDC2013"&gt;NDC 2013&lt;/a&gt;&lt;/p&gt;  &lt;table cellspacing="0" cellpadding="2" width="511" border="1"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="201"&gt;&lt;strong&gt;Level&lt;/strong&gt;&lt;/td&gt;        &lt;td valign="top" width="308"&gt;&lt;strong&gt;Context&lt;/strong&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="202"&gt;         &lt;p&gt;ERROR&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="308"&gt;         &lt;p&gt;Always on in Production. Any errors will trigger ACTION to resolve (automated or human)&lt;/p&gt;          &lt;ul&gt;           &lt;li&gt;Configuration issues &lt;/li&gt;            &lt;li&gt;Application failures &lt;/li&gt;         &lt;/ul&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="202"&gt;         &lt;p&gt;WARNING&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="308"&gt;         &lt;p&gt;Always on in Production. Warnings will INFORM, and may signal potential ACTION&lt;/p&gt;          &lt;ul&gt;           &lt;li&gt;Timeouts or throttling in external service &lt;/li&gt;         &lt;/ul&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="202"&gt;         &lt;p&gt;INFO&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="308"&gt;         &lt;p&gt;Always on in Production. Info messages INFORM during diagnostics and troubleshooting&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="202"&gt;         &lt;p&gt;DEBUG (VERBOSE)&lt;/p&gt;       &lt;/td&gt;        &lt;td valign="top" width="308"&gt;         &lt;p&gt;On during active debugging and troubleshooting on a case by case basis&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;  &lt;p&gt;NDC 2013 – Scott Guthrie: Building Real World Cloud Apps With Windows Azure PT2&lt;/p&gt;  &lt;h2&gt;Conclusions&lt;/h2&gt;  &lt;ul&gt;   &lt;li&gt;Involve key stakeholders early in the design phase from a product and platform perspective &lt;/li&gt;    &lt;li&gt;May have to tell them what they need &lt;/li&gt;    &lt;li&gt;Consider telemetry needs at early stage of development &lt;/li&gt;    &lt;li&gt;Consider SLA want to provide and how to prove it &lt;/li&gt;    &lt;li&gt;Choose frameworks and services carefully &lt;/li&gt;    &lt;li&gt;Iterate repeatedly – requirements evolve during lifetime of a product/platform &lt;/li&gt;    &lt;li&gt;Telemetry is important – just as important as new product features &lt;/li&gt; &lt;/ul&gt;  &lt;h2&gt;Resources&lt;/h2&gt;  &lt;ul&gt;   &lt;li&gt;Microsoft Azure CAT Team (&lt;a href="https://twitter.com/MSAzureCAT"&gt;https://&lt;/a&gt;&lt;a href="https://twitter.com/MSAzureCAT"&gt;twitter.com/MSAzureCAT&lt;/a&gt;) Guidance - &lt;a href="http://bit.ly/azurecat"&gt;http://&lt;/a&gt;&lt;a href="http://bit.ly/azurecat"&gt;bit.ly/azurecat&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;Azure Telemetry Blog Series - &lt;a href="http://bit.ly/AzureTelemetry"&gt;http://&lt;/a&gt;&lt;a href="http://bit.ly/AzureTelemetry"&gt;bit.ly/AzureTelemetry&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;Microsoft Azure Blog - &lt;a href="http://azure.microsoft.com/blog"&gt;http://&lt;/a&gt;&lt;a href="http://azure.microsoft.com/blog"&gt;azure.microsoft.com/blog&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;Microsoft ALM Blog - &lt;a href="http://bit.ly/vsalm"&gt;http://&lt;/a&gt;&lt;a href="http://bit.ly/vsalm"&gt;bit.ly/vsalm&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;The Fix It Sample Application (Building Real-World Cloud Apps with Windows Azure) - &lt;a href="http://bit.ly/FixItApp"&gt;http://&lt;/a&gt;&lt;a href="http://bit.ly/FixItApp"&gt;bit.ly/FixItApp&lt;/a&gt; and eBook - &lt;a href="http://bit.ly/FixIteBook"&gt;http://&lt;/a&gt;&lt;a href="http://bit.ly/FixIteBook"&gt;bit.ly/FixIteBook&lt;/a&gt; and videos - &lt;a href="http://bit.ly/ScottGuNDC2013"&gt;http://&lt;/a&gt;&lt;a href="http://bit.ly/ScottGuNDC2013"&gt;bit.ly/ScottGuNDC2013&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;The Easy Way Of Collecting Security Logs From Your Windows Azure Roles - &lt;a title="http://bit.ly/AzureSecurityLogs" href="http://bit.ly/AzureSecurityLogs"&gt;http://bit.ly/AzureSecurityLogs&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;ELK Stack - &lt;a href="http://bit.ly/ELKStack"&gt;http://&lt;/a&gt;&lt;a href="http://bit.ly/ELKStack"&gt;bit.ly/ELKStack&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt;</description>
      <link>http://www.andrewwestgarth.co.uk/blog/post/2014/05/28/Telemetry-on-Cloud-Platforms-Resources.aspx</link>
      <comments>http://www.andrewwestgarth.co.uk/blog/post/2014/05/28/Telemetry-on-Cloud-Platforms-Resources.aspx#comment</comments>
      <guid>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=66287927-693c-4f24-a371-e1b796482706</guid>
      <pubDate>Wed, 28 May 2014 03:26:51 +0000</pubDate>
      <category>Events</category>
      <category>Windows Azure</category>
      <category>UK Community</category>
      <dc:publisher>Andrew Westgarth</dc:publisher>
      <pingback:server>http://www.andrewwestgarth.co.uk/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=66287927-693c-4f24-a371-e1b796482706</pingback:target>
      <slash:comments>12</slash:comments>
      <trackback:ping>http://www.andrewwestgarth.co.uk/blog/trackback.axd?id=66287927-693c-4f24-a371-e1b796482706</trackback:ping>
      <wfw:comment>http://www.andrewwestgarth.co.uk/blog/post/2014/05/28/Telemetry-on-Cloud-Platforms-Resources.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andrewwestgarth.co.uk/blog/syndication.axd?post=66287927-693c-4f24-a371-e1b796482706</wfw:commentRss>
    </item>
    <item>
      <title>Using the Elasticsearch Azure Plugin with Windows Virtual Machines</title>
      <description>&lt;p&gt;Recently I’ve been working with &lt;a href="http://www.elasticsearch.org/"&gt;Elasticsearch&lt;/a&gt; as I look to implement a logging solution using &lt;a href="http://www.logstash.net"&gt;Logstash&lt;/a&gt;.&amp;#160; Elasticsearch is a popular, flexible open source real-time search and analytics engine and I’ve been looking at making use of the engine to perform full text searches and analytics against the mountains of log data we have on our platform.&lt;/p&gt;  &lt;p&gt;As part of this work I’ve been setting up an Elasticsearch cluster of three Windows Server 2012 R2 Datacenter edition virtual machines in &lt;a href="http://www.windowsazure.com"&gt;Windows Azure&lt;/a&gt;.&amp;#160; We’ve chosen Windows based virtual machines as the team who will support it have more experience and knowledge of Windows OS than Linux.&amp;#160; To get up an running I’ve used the following blog post from &lt;a href="https://twitter.com/ThomasArdal/"&gt;Thomas Ardal&lt;/a&gt;, which has a further link to info on installing Elasticsearch on the VMS – &lt;a href="http://thomasardal.com/running-elasticsearch-in-a-cluster-on-azure/"&gt;Running ElasticSearch in a cluster on Azure&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;One of the elements of configuring the cluster concerns the discovery of nodes in the cluster.&amp;#160; By default Elasticsearch makes use of multicast to discover the nodes in the cluster, however multicast doesn’t appear to work fully in Azure at present, therefore Thomas’ blog post details making changes to the elasticsearch.yml configuration file to disable multicast and add in the node ip addresses manually.&amp;#160; &lt;/p&gt;  &lt;p&gt;However on Friday (31st Jan 2014) Elasticsearch announced an &lt;a href="http://www.elasticsearch.org/blog/azure-cloud-plugin-for-elasticsearch/"&gt;Azure Cloud Plugin for Elasticsearch&lt;/a&gt; and the goal for this plugin is to enable automatic unicast discovery of Windows Azure Virtual Machines in the Cloud Service.&amp;#160; The article details how to set the plugin up in Linux Virtual Machines, but as I’ve already mentioned we are using Windows Server 2012 R2 for all of our virtual machines in the cluster.&amp;#160; Therefore I set off today to configure the plugin for running Elasticsearch on Windows.&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;Create Windows Azure VMs as detailed in Thomas’ post, installing Elasticsearch on each Virtual Machine you wish to use as a node. &lt;/li&gt;    &lt;li&gt;Create a self-signed certificate for working with the Azure REST API using makecert (You will need the Windows SDK for this in order to make use of makecert). &lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=makecert.png"&gt;&lt;img title="Create Self Signed Certificate" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 5px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="Create Self Signed Certificate" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=makecert_thumb.png" width="616" height="91" /&gt;&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;Upload the .cer file to the Management Certificates (Settings-&amp;gt;Management Certificates) store for your Azure subscription in the Azure Portal.&lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=Upload%20Management%20Certificate.png"&gt;&lt;img title="Upload Management Certificate" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 5px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="Upload Management Certificate" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=Upload%20Management%20Certificate_thumb.png" width="244" height="173" /&gt;&lt;/a&gt;&amp;#160; &lt;/li&gt;    &lt;li&gt;Using Certificate Manager (certmgr.msc) export the certificate with the public key (in .pfx format) and give the certificate a password of suitable complexity.&amp;#160; Copy the pfx file to a folder on your virtual machines, e.g. C:\MyCertificates &lt;/li&gt;    &lt;li&gt;Install the Azure-Cloud plugin on each of your Elasticsearch Virtual Machines by running the following command from a command point at your elasticsearch installation directory      &lt;br /&gt;&lt;code&gt;bin/plugin -install elasticsearch/elasticsearch-cloud-azure/1.0.0.alpha1 &lt;/code&gt;      &lt;br /&gt;&lt;font face="Calibri"&gt;&lt;img title="Install Elasticsearch Azure Cloud Plugin" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 15px auto 5px; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="Install Elasticsearch Azure Cloud Plugin" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=azurecloud_thumb.png" width="607" height="89" /&gt;&lt;/font&gt; &lt;/li&gt;    &lt;li&gt;Next edit the Elasticsearch configuration file, Elasticsearch.yml, which is found in the config folder of your Elasticsearch installation on each virtual machine in your cluster.&amp;#160; At the bottom add the following configuration and update with the relevant settings:      &lt;blockquote&gt;       &lt;p&gt;################################# AZURE PLUGIN ###############################          &lt;br /&gt;cloud:           &lt;br /&gt;&amp;#160; azure:           &lt;br /&gt;&amp;#160;&amp;#160; keystore: &amp;lt;path to certificate i.e. c:/MyCertificates/mycert.pfx&amp;gt;           &lt;br /&gt;&amp;#160;&amp;#160; password: &amp;lt;Password for certificate file&amp;gt;           &lt;br /&gt;&amp;#160;&amp;#160; subscription_id: &amp;lt;your subscription id&amp;gt;           &lt;br /&gt;&amp;#160;&amp;#160; service_name: &amp;lt;name of cloud service&amp;gt;           &lt;br /&gt;&amp;#160; &lt;br /&gt;discovery:           &lt;br /&gt;&amp;#160;&amp;#160; type: azure&lt;/p&gt;     &lt;/blockquote&gt;      &lt;blockquote&gt;for example:&lt;/blockquote&gt;      &lt;blockquote&gt;       &lt;p&gt;################################# AZURE PLUGIN ###############################          &lt;br /&gt;cloud:           &lt;br /&gt;&amp;#160; azure:           &lt;br /&gt;&amp;#160;&amp;#160; keystore: c:/MyCertificates/mycert.pfx           &lt;br /&gt;&amp;#160;&amp;#160; password: verystrongpassword           &lt;br /&gt;&amp;#160;&amp;#160; subscription_id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx           &lt;br /&gt;&amp;#160;&amp;#160; service_name: myescluster           &lt;br /&gt;&amp;#160; &lt;br /&gt;discovery:           &lt;br /&gt;&amp;#160;&amp;#160; type: azure&lt;/p&gt;     &lt;/blockquote&gt;      &lt;p&gt;&lt;em&gt;Thanks to &lt;a href="http://twitter.com/dadoonet"&gt;David Pilato&lt;/a&gt; and &lt;a href="http://twitter.com/tomconte"&gt;Thomas Conté&lt;/a&gt; for their help in getting the configuration correctly formatted and populated.&lt;/em&gt;&lt;/p&gt;      &lt;blockquote&gt;&lt;/blockquote&gt;   &lt;/li&gt;    &lt;li&gt;Start Elasticsearch on each server &lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;That’s it all configured, if you’re using plugins to monitor your Elasticsearch cluster such as the &lt;a href="https://github.com/mobz/elasticsearch-head"&gt;Head&lt;/a&gt; plugin you should now see all of your nodes in your cluster listed, for example:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=head.png"&gt;&lt;img title="head" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin-left: auto; border-left: 0px; display: block; padding-right: 0px; margin-right: auto" border="0" alt="head" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=head_thumb.png" width="442" height="141" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;em&gt;&lt;strong&gt;&lt;font style="background-color: #ffff00"&gt;WARNING: As a side note, it’s VERY easy to break the syntax in yml files when not familiar with them, I’m now using Notepad++ to work with them and I’ve also been using a VS Extension – &lt;/font&gt;&lt;/strong&gt;&lt;/em&gt;&lt;a href="http://visualstudiogallery.msdn.microsoft.com/34423c06-f756-4721-8394-bc3d23b91ca7"&gt;&lt;em&gt;&lt;strong&gt;&lt;font style="background-color: #ffff00"&gt;YamlDotNetEditor&lt;/font&gt;&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;em&gt;&lt;strong&gt;&lt;font style="background-color: #ffff00"&gt; - when editing the yml file so I can reduce the risk of making mistakes.&amp;#160; The extension formats and lays out the file in a readable format with syntax highlighting (although this is currently not working in VS2013).&lt;/font&gt;&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;</description>
      <link>http://www.andrewwestgarth.co.uk/blog/post/2014/02/04/Using-the-Elasticsearch-Azure-Plugin-with-Windows-Virtual-Machines.aspx</link>
      <comments>http://www.andrewwestgarth.co.uk/blog/post/2014/02/04/Using-the-Elasticsearch-Azure-Plugin-with-Windows-Virtual-Machines.aspx#comment</comments>
      <guid>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=60548a12-5df1-48e2-913b-b91f9e887986</guid>
      <pubDate>Tue, 04 Feb 2014 09:40:45 +0000</pubDate>
      <category>Windows Azure</category>
      <category>Elasticsearch</category>
      <dc:publisher>Andrew Westgarth</dc:publisher>
      <pingback:server>http://www.andrewwestgarth.co.uk/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=60548a12-5df1-48e2-913b-b91f9e887986</pingback:target>
      <slash:comments>100</slash:comments>
      <trackback:ping>http://www.andrewwestgarth.co.uk/blog/trackback.axd?id=60548a12-5df1-48e2-913b-b91f9e887986</trackback:ping>
      <wfw:comment>http://www.andrewwestgarth.co.uk/blog/post/2014/02/04/Using-the-Elasticsearch-Azure-Plugin-with-Windows-Virtual-Machines.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andrewwestgarth.co.uk/blog/syndication.axd?post=60548a12-5df1-48e2-913b-b91f9e887986</wfw:commentRss>
    </item>
    <item>
      <title>Bringing A Code Club to 9-11 Year Olds</title>
      <description>&lt;p align="justify"&gt;This is a cross post from my blog on STEMNet. - &lt;a href="http://networking.stemnet.org.uk/blog/bringing-code-club-9-11-year-olds"&gt;http://networking.stemnet.org.uk/blog/bringing-code-club-9-11-year-olds&lt;/a&gt;&lt;/p&gt; &lt;p align="justify"&gt;For a while now I’ve been a STEMNet Ambassador working with local schools on Technology related activities and have been working on getting involved in Code Clubs for quite some time.&amp;nbsp; This week I started my first Code Club with a local school.&lt;/p&gt; &lt;p align="justify"&gt;&lt;a href="http://www.codeclub.org.uk/"&gt;&lt;img title="logo-8f4e1ca6525af0d4b681e5bea5dbe3d6" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin-left: auto; display: block; padding-right: 0px; border-top-width: 0px; margin-right: auto" border="0" alt="logo-8f4e1ca6525af0d4b681e5bea5dbe3d6" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=logo-8f4e1ca6525af0d4b681e5bea5dbe3d6.png" width="150" height="150"&gt;&lt;/a&gt;&lt;/p&gt; &lt;p align="justify"&gt;I am a strong believer in giving children the opportunity to discover the fun in Computer Science and Computer Programming.&amp;nbsp; I believe the current National Curriculum can be boring, mundane and uninspiring so much so that we are losing many, many potentially great programmers, developers and technologists at a very early age.&amp;nbsp; I have worked with a variety of age groups and unfortunately the size of groups get smaller as they get older because they don’t see the fun in the subject, often spending year after year working on nothing more stretching than Microsoft Office (PowerPoint, Excel and Word), admittedly not all schools are this limited but in my experience this has been more a case of the exception rather than the norm.&lt;/p&gt; &lt;p align="justify"&gt;However, in a rare and unrepeated occurrence, Michael Gove actually said something I agreed with, in that Computer Science is to become an important part in the National Curriculum from September 2014 with children getting the opportunity to explore and experience Computer Science, looking at design, coding and algorithmic skills.&amp;nbsp; This really struck a chord with me and is something I’ve been keen to get involved with for quite some time.&amp;nbsp; In order for the UK to encourage students to look further into all scientific subjects, we need to capture the imaginations of students at an early age, i.e. before they leave Primary School (age 11), and then continue to stretch their imaginations and interests throughout Secondary education and onwards hopefully to Further Education or positions in the industry.&lt;/p&gt; &lt;p align="justify"&gt;Schools are currently not fully equipped with the knowledge, skills and resources to teach coding skills and this presents a great opportunity for our industry to build strong links with the education system, providing valuable support and resources to help bridge the gap.&amp;nbsp; One such way that I have started to do this, amongst others, is to run a Code Club at a local school.&amp;nbsp; &lt;a href="http://www.codeclub.org.uk/"&gt;Code Club&lt;/a&gt; is a UK wide network of after school coding clubs for children aged 9-11 run by volunteers.&lt;/p&gt; &lt;div align="justify"&gt; &lt;div id="scid:53357c8b-5919-4e32-8c25-305d27c17a37:a271845f-e33e-4701-bd50-2ac22121228b" class="wlWriterSmartContent" style="width: 425px; float: none; padding-bottom: 0px; padding-top: 0px; padding-left: 0px; margin-left: auto; display: block; padding-right: 0px; margin-right: auto"&gt;&lt;embed src="http://www.youtube.com/v/ACYsz7sZvH8" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"&gt;&lt;/embed&gt;&lt;/div&gt;&lt;/div&gt; &lt;p align="justify"&gt;This past week I held my first Code Club session and what a fantastic and rewarding session it was!&amp;nbsp; Using the wonderful resources and tutorials prepared by Code Club, I was able to introduce the group of approximately 11 to &lt;a href="http://www.scratch.mit.edu"&gt;Scratch&lt;/a&gt;, a programming language used to teach children how to build animations, games amongst others.&amp;nbsp; I started with a quick overview and demonstration of the Scratch IDE and then set the group off with a tutorial with which they were able to build a Cat and Mouse game using sprites and logic they put together using Scratch.&amp;nbsp; Within minutes of working with the tutorial they were all looking at ways in which they could stretch the possibilities and inject their own customisations into the program.&amp;nbsp; The hour long club past very quickly and when I had to tell the pupils that it was time to go home and their parents were waiting for them, there was a chorus of disappointed “Awwwws” as they wanted to carry on working.&amp;nbsp; The pupils seemed to really enjoy it and many took the tutorial notes home so they could continue working through the week until the next Code Club!&lt;/p&gt; &lt;p align="justify"&gt;If you’re reading this post, work in the IT Industry and have an hour to spare a week why not consider getting involved in helping children to learn to code? Check out the various initiatives in your area and nation, including &lt;a href="http://www.codeclub.org.uk/"&gt;Code Club&lt;/a&gt;, &lt;a href="http://www.code.org"&gt;Hour of Code&lt;/a&gt;; and look to see if there are any schools or community groups in your area who are looking for a volunteer.&amp;nbsp; Personally I think it’s the least we can do.&amp;nbsp; We complain that there aren’t enough good new people for us to hire in our industry, let’s take aim at the long term goal and look to help the next generation of coders grasp the opportunities that our wonderful industry provides!&lt;/p&gt; &lt;div align="justify"&gt; &lt;div id="scid:53357c8b-5919-4e32-8c25-305d27c17a37:67d46f5f-d3a3-4c19-92bb-1ccf1265e8f2" class="wlWriterSmartContent" style="width: 425px; float: none; padding-bottom: 0px; padding-top: 0px; padding-left: 0px; margin-left: auto; display: block; padding-right: 0px; margin-right: auto"&gt;&lt;embed src="http://www.youtube.com/v/FC5FbmsH4fw" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"&gt;&lt;/embed&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <link>http://www.andrewwestgarth.co.uk/blog/post/2014/01/19/Bringing-A-Code-Club-to-9-11-Year-Olds.aspx</link>
      <comments>http://www.andrewwestgarth.co.uk/blog/post/2014/01/19/Bringing-A-Code-Club-to-9-11-Year-Olds.aspx#comment</comments>
      <guid>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=70ec02c7-8283-47e9-9aae-d2410c647ed0</guid>
      <pubDate>Sun, 19 Jan 2014 10:06:15 +0000</pubDate>
      <category>General</category>
      <category>UK Community</category>
      <category>Code Club</category>
      <category>STEM</category>
      <dc:publisher>Andrew Westgarth</dc:publisher>
      <pingback:server>http://www.andrewwestgarth.co.uk/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=70ec02c7-8283-47e9-9aae-d2410c647ed0</pingback:target>
      <slash:comments>21</slash:comments>
      <trackback:ping>http://www.andrewwestgarth.co.uk/blog/trackback.axd?id=70ec02c7-8283-47e9-9aae-d2410c647ed0</trackback:ping>
      <wfw:comment>http://www.andrewwestgarth.co.uk/blog/post/2014/01/19/Bringing-A-Code-Club-to-9-11-Year-Olds.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andrewwestgarth.co.uk/blog/syndication.axd?post=70ec02c7-8283-47e9-9aae-d2410c647ed0</wfw:commentRss>
    </item>
    <item>
      <title>Book Review: SignalR Real-time Application Development</title>
      <description>&lt;p&gt;I've been keeping an eye on and experimenting with SignalR for about 18 months now when I get some free time and recently finished reading this book by Einar Ingebrigtsen and published by Packt Publishing.&amp;nbsp; &lt;a href="http://www.packtpub.com/signalr-realtime-dotnet-application-development/book" target="_blank"&gt;SignalR: Real-time Application Development&lt;/a&gt; is a very concise look at the key topics that you'd want to get up and running with SignalR.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.packtpub.com/signalr-realtime-dotnet-application-development/book" target="_blank"&gt;&lt;img style="margin-right: auto; margin-left: auto; display: block;" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=%2f2013%2f07%2f4241OS_.jpg" alt="" width="200" height="247" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The book covers topics such as Security and Scalability along with some simple step by step tutorials to help start using SignalR in a variety of scenarios - straight forward web apps, console apps, WinRT applications amongst others.&amp;nbsp; At just 124 pages long this book is not exhaustive and is a really useful start for someone who just wants to hit the ground running with SignalR fundamentals.&lt;/p&gt;
&lt;p&gt;I found the book a really light read however personally I would have preferred a more detailed book with more discussion of the core technologies employed by SignalR and how they can be exploited to their full potential.&amp;nbsp; Unfortunately this book focuses on the typical Hello World SignalR application of a chat application a lot of examples of which can be found freely on the internet.&lt;/p&gt;</description>
      <link>http://www.andrewwestgarth.co.uk/blog/post/2013/07/05/Book-Review-SignalR-Real-time-Application-Development.aspx</link>
      <comments>http://www.andrewwestgarth.co.uk/blog/post/2013/07/05/Book-Review-SignalR-Real-time-Application-Development.aspx#comment</comments>
      <guid>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=04ed9e55-35ec-4687-8181-73238ea46577</guid>
      <pubDate>Fri, 05 Jul 2013 06:34:00 +0000</pubDate>
      <category>Book Reviews</category>
      <dc:publisher>Andrew Westgarth</dc:publisher>
      <pingback:server>http://www.andrewwestgarth.co.uk/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=04ed9e55-35ec-4687-8181-73238ea46577</pingback:target>
      <slash:comments>25</slash:comments>
      <trackback:ping>http://www.andrewwestgarth.co.uk/blog/trackback.axd?id=04ed9e55-35ec-4687-8181-73238ea46577</trackback:ping>
      <wfw:comment>http://www.andrewwestgarth.co.uk/blog/post/2013/07/05/Book-Review-SignalR-Real-time-Application-Development.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andrewwestgarth.co.uk/blog/syndication.axd?post=04ed9e55-35ec-4687-8181-73238ea46577</wfw:commentRss>
    </item>
    <item>
      <title>Awarded Microsoft MVP Award for 2013</title>
      <description>&lt;p&gt;This afternoon I received an email from Microsoft to tell me that I’d been awarded the 2013 Microsoft &lt;a href="https://mvp.support.microsoft.com/en-us/mvp/Andrew%20Westgarth-4020463" target="_blank"&gt;MVP Award&lt;/a&gt; for ASP.Net/IIS!&amp;#160; This is my sixth MVP Award and I’ve mentioned before I am extremely humble to be associated with a great group of less than 5000 technical people around the globe.&amp;#160; I’ll be aiming to continue my efforts to help the community and deliver as much content as I can to aid and spread knowledge.&amp;#160; &lt;/p&gt;</description>
      <link>http://www.andrewwestgarth.co.uk/blog/post/2013/07/01/Awarded-Microsoft-MVP-Award-for-2013.aspx</link>
      <comments>http://www.andrewwestgarth.co.uk/blog/post/2013/07/01/Awarded-Microsoft-MVP-Award-for-2013.aspx#comment</comments>
      <guid>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=6124dccf-9263-42ff-a7b2-b271d0379faa</guid>
      <pubDate>Mon, 01 Jul 2013 13:12:47 +0000</pubDate>
      <category>IIS</category>
      <category>ASP.Net</category>
      <category>MVP</category>
      <category>Microsoft</category>
      <dc:publisher>Andrew Westgarth</dc:publisher>
      <pingback:server>http://www.andrewwestgarth.co.uk/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=6124dccf-9263-42ff-a7b2-b271d0379faa</pingback:target>
      <slash:comments>11</slash:comments>
      <trackback:ping>http://www.andrewwestgarth.co.uk/blog/trackback.axd?id=6124dccf-9263-42ff-a7b2-b271d0379faa</trackback:ping>
      <wfw:comment>http://www.andrewwestgarth.co.uk/blog/post/2013/07/01/Awarded-Microsoft-MVP-Award-for-2013.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andrewwestgarth.co.uk/blog/syndication.axd?post=6124dccf-9263-42ff-a7b2-b271d0379faa</wfw:commentRss>
    </item>
    <item>
      <title>DDD North 2013 Announced and Session Submission Open</title>
      <description>&lt;p&gt;On Saturday I attended the inaugural &lt;a href="http://www.dddeastanglia.com" target="_blank"&gt;DDD East Anglia&lt;/a&gt; and took the ideal opportunity to announce the details for this year’s &lt;a href="http://www.dddnorth.co.uk" target="_blank"&gt;DDD North&lt;/a&gt;!&amp;#160; The event has been in the planning stages for a while and work continues apace.&amp;#160; I’m delighted to announce that we will be returning to the &lt;a href="http://www.sunderland.ac.uk" target="_blank"&gt;University of Sunderland&lt;/a&gt; on Saturday 12th October 2013 for DDD North.&amp;#160; The University of Sunderland’s Sir Tom Cowie’s Campus at St.Peters’ is a fantastic venue and was a fantastic place to study when I was studying for my degree many years ago.&amp;#160; We are working hard with the University of Sunderland, Sunderland Software City and Sunderland City Council to make sure this is the best DDD North yet!&amp;#160; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.dddnorth.co.uk/"&gt;&lt;img title="dddMed" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin-left: auto; border-left: 0px; display: block; padding-right: 0px; margin-right: auto" border="0" alt="dddMed" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=dddMed.png" width="240" height="175" /&gt;&lt;/a&gt;DDD North has launched a new site at &lt;a href="http://www.dddnorth.co.uk"&gt;http://www.dddnorth.co.uk&lt;/a&gt; and improvements and functionality is being added hourly at present as we ramp up our efforts.&amp;#160; The DDD North Call for Speakers is now open and will remain open till early-mid August before voting will commence so get your &lt;a href="http://www.dddnorth.co.uk/Sessions/Create" target="_blank"&gt;session submissions&lt;/a&gt; in now!&amp;#160; We’d love to see some new speakers submitting sessions as the original premise of DDD Events was to encourage and introduce new speakers.&lt;/p&gt;  &lt;p&gt;DDD North is a free event and would not be so if it were not for the support of our fantastic &lt;a href="http://www.dddnorth.co.uk/sponsors" target="_blank"&gt;sponsors&lt;/a&gt;.&amp;#160; If you know of any business or groups who would like to sponsor DDD North, we have a range of packages available and are open to discussions about suggestions, please get in touch using the &lt;a href="http://www.dddnorth.co.uk/home/contact" target="_blank"&gt;contact form&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;In the meantime keep an eye on &lt;a href="http://www.dddnorth.co.uk"&gt;www.dddnorth.co.uk&lt;/a&gt; for more news and sessions being added daily.&amp;#160; I look forward to seeing you at &lt;a href="http://www.dddnorth.co.uk" target="_blank"&gt;DDD North 2013&lt;/a&gt; at the University of Sunderland!&lt;/p&gt;</description>
      <link>http://www.andrewwestgarth.co.uk/blog/post/2013/07/01/DDD-North-2013-Announced-and-Session-Submission-Open.aspx</link>
      <comments>http://www.andrewwestgarth.co.uk/blog/post/2013/07/01/DDD-North-2013-Announced-and-Session-Submission-Open.aspx#comment</comments>
      <guid>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=159ef88b-b299-424d-8dca-95f6f57bcbbb</guid>
      <pubDate>Mon, 01 Jul 2013 13:00:42 +0000</pubDate>
      <category>DDD North</category>
      <category>Developer Day</category>
      <category>Events</category>
      <category>UK Community</category>
      <dc:publisher>Andrew Westgarth</dc:publisher>
      <pingback:server>http://www.andrewwestgarth.co.uk/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=159ef88b-b299-424d-8dca-95f6f57bcbbb</pingback:target>
      <slash:comments>76</slash:comments>
      <trackback:ping>http://www.andrewwestgarth.co.uk/blog/trackback.axd?id=159ef88b-b299-424d-8dca-95f6f57bcbbb</trackback:ping>
      <wfw:comment>http://www.andrewwestgarth.co.uk/blog/post/2013/07/01/DDD-North-2013-Announced-and-Session-Submission-Open.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andrewwestgarth.co.uk/blog/syndication.axd?post=159ef88b-b299-424d-8dca-95f6f57bcbbb</wfw:commentRss>
    </item>
    <item>
      <title>Global Windows Azure Bootcamp April 27th 2013</title>
      <description>&lt;p&gt;&lt;a href="http://globalwindowsazure.azurewebsites.net/"&gt;&lt;img title="bootcamp" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin-left: auto; border-left: 0px; display: block; padding-right: 0px; margin-right: auto" border="0" alt="bootcamp" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=bootcamp.png" width="244" height="166" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Are you interested in getting started with &lt;a href="http://www.windowsazure.com"&gt;Windows Azure&lt;/a&gt; and have are free on Saturday April 27th 2013?&amp;#160; Then why not join me in Bradford at the &lt;a href="http://globalwindowsazure.azurewebsites.net/"&gt;Global Windows Azure Bootcamp&lt;/a&gt; being hosted by &lt;a href="http://www.blackmarble.co.uk/"&gt;Black Marble&lt;/a&gt;?&amp;#160; I’ll be joining Microsoft Integration MVP, &lt;a href="http://mvp.microsoft.com/en-US/findanmvp/Pages/profile.aspx?MVPID=ed6316ec-e817-4251-a21c-ee6f61869a40"&gt;Robert Hogg&lt;/a&gt;, Windows Azure MVP, &lt;a href="http://mvp.microsoft.com/en-US/findanmvp/Pages/profile.aspx?MVPID=66edbd17-9e84-4949-9d52-896585b628a8"&gt;Steve Spencer&lt;/a&gt; and Microsoft Alliance Manager, Linda Hogg to deliver a one day deep dive class which will help you get up to speed with developing for Windows Azure.&amp;#160; This is a great opportunity to get real hands on experience with developing on Windows Azure from professionals who are actively developing solutions on the Windows Azure platform.&amp;#160; Windows Azure is a fantastic platform to develop on and we hope to see many of you at the event getting up to speed with development.&lt;/p&gt;  &lt;p&gt;To register for the Bradford event please go to - &lt;a title="Click here to register for this event" href="http://www.blackmarble.co.uk/Register.aspx?Event=Global Windows Azure Boot Camp&amp;amp;Date=27-Apr-2013"&gt;http://www.blackmarble.co.uk/Register.aspx?Event=Global Windows Azure Boot Camp&amp;amp;Date=27-Apr-2013&lt;/a&gt; and make sure to check out the list of pre-requisites for the bootcamp - &lt;a title="http://globalwindowsazure.azurewebsites.net/?page_id=171" href="http://globalwindowsazure.azurewebsites.net/?page_id=171"&gt;http://globalwindowsazure.azurewebsites.net/?page_id=171&lt;/a&gt; – please arrived prepared as we hate for you to miss out on the good stuff and spend the day getting your laptop ready &lt;img class="wlEmoticon wlEmoticon-smile" style="border-top-style: none; border-left-style: none; border-bottom-style: none; border-right-style: none" alt="Smile" src="http://www.andrewwestgarth.co.uk/blog/image.axd?picture=wlEmoticon-smile_1.png" /&gt;.&lt;/p&gt;  &lt;p&gt;If you’re not able to get to Bradford but would still like to take part in the Global Windows Azure Bootcamp be sure to check out all the locations worldwide where other events are running -&lt;a title="http://globalwindowsazure.azurewebsites.net/?page_id=151" href="http://globalwindowsazure.azurewebsites.net/?page_id=151"&gt;http://globalwindowsazure.azurewebsites.net/?page_id=151&lt;/a&gt;&lt;/p&gt;</description>
      <link>http://www.andrewwestgarth.co.uk/blog/post/2013/03/11/Global-Windows-Azure-Bootcamp-April-27th-2013.aspx</link>
      <comments>http://www.andrewwestgarth.co.uk/blog/post/2013/03/11/Global-Windows-Azure-Bootcamp-April-27th-2013.aspx#comment</comments>
      <guid>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=66850df9-686f-4519-997d-3dda1c54e198</guid>
      <pubDate>Mon, 11 Mar 2013 13:05:02 +0000</pubDate>
      <category>Windows Azure</category>
      <category>Events</category>
      <category>Microsoft</category>
      <category>MVP</category>
      <dc:publisher>Andrew Westgarth</dc:publisher>
      <pingback:server>http://www.andrewwestgarth.co.uk/blog/pingback.axd</pingback:server>
      <pingback:target>http://www.andrewwestgarth.co.uk/blog/post.aspx?id=66850df9-686f-4519-997d-3dda1c54e198</pingback:target>
      <slash:comments>10</slash:comments>
      <trackback:ping>http://www.andrewwestgarth.co.uk/blog/trackback.axd?id=66850df9-686f-4519-997d-3dda1c54e198</trackback:ping>
      <wfw:comment>http://www.andrewwestgarth.co.uk/blog/post/2013/03/11/Global-Windows-Azure-Bootcamp-April-27th-2013.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.andrewwestgarth.co.uk/blog/syndication.axd?post=66850df9-686f-4519-997d-3dda1c54e198</wfw:commentRss>
    </item>
  </channel>
</rss>