<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>Silverlighter's Blog &#60;beta/&#62;</title>
	<link>http://silverlighters.org/blog</link>
	<description>Everything Silverlight, and more!</description>
	<pubDate>Thu, 17 May 2012 21:35:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>Temporary Post Used For Theme Detection (a84966cb-f259-4c28-8597-923de13e50f1 - 3bfe001a-32de-4114-a6b4-4005b770f6d7)</title>
		<link>http://blogs.msdn.com/b/publicsector/archive/2012/05/17/temporary-post-used-for-theme-detection-a84966cb-f259-4c28-8597-923de13e50f1-3bfe001a-32de-4114-a6b4-4005b770f6d7.aspx</link>
		<comments>http://blogs.msdn.com/b/publicsector/archive/2012/05/17/temporary-post-used-for-theme-detection-a84966cb-f259-4c28-8597-923de13e50f1-3bfe001a-32de-4114-a6b4-4005b770f6d7.aspx#comments</comments>
		<pubDate>Thu, 17 May 2012 21:35:43 +0000</pubDate>
		<dc:creator>PubSec</dc:creator>
		
		<category><![CDATA[silverlighters.org (Syndicated Content)]]></category>

		<guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10306478</guid>
		<description><![CDATA[<p>This is a temporary post that was not deleted. Please delete this manually. (8f3a1dd0-ae49-4d33-84d2-d47e0239aa60 - 3bfe001a-32de-4114-a6b4-4005b770f6d7)</p><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10306478" width="1" height="1">]]></description>
			<content:encoded><![CDATA[<p>This is a temporary post that was not deleted. Please delete this manually. (8f3a1dd0-ae49-4d33-84d2-d47e0239aa60 - 3bfe001a-32de-4114-a6b4-4005b770f6d7)</p><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10306478" width="1" height="1">]]></content:encoded>
			<wfw:commentRss>http://blogs.msdn.com/b/publicsector/archive/2012/05/17/temporary-post-used-for-theme-detection-a84966cb-f259-4c28-8597-923de13e50f1-3bfe001a-32de-4114-a6b4-4005b770f6d7.aspx/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using RequireJS with CRM 2011 forms</title>
		<link>http://blogs.msdn.com/b/publicsector/archive/2012/05/16/using-requirejs-with-crm-2011-forms.aspx</link>
		<comments>http://blogs.msdn.com/b/publicsector/archive/2012/05/16/using-requirejs-with-crm-2011-forms.aspx#comments</comments>
		<pubDate>Thu, 17 May 2012 00:14:33 +0000</pubDate>
		<dc:creator>PubSec</dc:creator>
		
		<category><![CDATA[silverlighters.org (Syndicated Content)]]></category>

		<guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10306089</guid>
		<description><![CDATA[<p>GOAL: Simplify referencing JavaScript libraries from CRM forms for code-centric developer types like me.</p>  <p>I have always been a fan of “code beside” JavaScript files that contain all my main code for a corresponding HTML page.&#160; For example, if I have a page called <strong>hello.htm</strong>, then I will have a file called <strong>hello.htm.js</strong> that is the main code file for that page.&#160; One of the things I have always been a bit frustrated with when using this approach is that all the JavaScript libraries my <strong>hello.htm.js</strong> page uses are actually referenced in the HTML page.&#160; This leads to a lot of switching back and forth between the files when you need to add script references.&#160; It also becomes a burden when you are reviewing code you haven’t worked with in a while.&#160; You inevitably have to switch to the <strong>hello.htm</strong> page to familiarize yourself with what other js files the page references.&#160; My brain has challenges with this context switch.&#160; Coming from a .NET development background, I am used to namespaces at the top of my C# files that help me with this.&#160; I’ve recently gotten hip to <a href="http://dkdt.me/Jx0UyU">RequireJS</a> which is a library that makes it <strong>really easy</strong> to add JavaScript references to a page right from JavaScript.&#160; While you can technically do this without RequireJS, the library wraps the verbose code and all the cross browser nuances plus adds some nice features.&#160; Check it out!</p>  <p>Ok, now to the CRM 2011 context…</p>    <p><a href="http://dkdt.me/J8WdKk">… read more …</a></p><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10306089" width="1" height="1">]]></description>
			<content:encoded><![CDATA[<p>GOAL: Simplify referencing JavaScript libraries from CRM forms for code-centric developer types like me.</p>  <p>I have always been a fan of “code beside” JavaScript files that contain all my main code for a corresponding HTML page.&#160; For example, if I have a page called <strong>hello.htm</strong>, then I will have a file called <strong>hello.htm.js</strong> that is the main code file for that page.&#160; One of the things I have always been a bit frustrated with when using this approach is that all the JavaScript libraries my <strong>hello.htm.js</strong> page uses are actually referenced in the HTML page.&#160; This leads to a lot of switching back and forth between the files when you need to add script references.&#160; It also becomes a burden when you are reviewing code you haven’t worked with in a while.&#160; You inevitably have to switch to the <strong>hello.htm</strong> page to familiarize yourself with what other js files the page references.&#160; My brain has challenges with this context switch.&#160; Coming from a .NET development background, I am used to namespaces at the top of my C# files that help me with this.&#160; I’ve recently gotten hip to <a href="http://dkdt.me/Jx0UyU">RequireJS</a> which is a library that makes it <strong>really easy</strong> to add JavaScript references to a page right from JavaScript.&#160; While you can technically do this without RequireJS, the library wraps the verbose code and all the cross browser nuances plus adds some nice features.&#160; Check it out!</p>  <p>Ok, now to the CRM 2011 context…</p>    <p><a href="http://dkdt.me/J8WdKk">… read more …</a></p><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10306089" width="1" height="1">]]></content:encoded>
			<wfw:commentRss>http://blogs.msdn.com/b/publicsector/archive/2012/05/16/using-requirejs-with-crm-2011-forms.aspx/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Register Now to Attend a May 24th Windows 8 Developer Camp in Chevy Chase, MD!</title>
		<link>http://blogs.msdn.com/b/publicsector/archive/2012/05/16/register-now-to-attend-a-may-24th-windows-8-developer-camp-in-chevy-chase-md.aspx</link>
		<comments>http://blogs.msdn.com/b/publicsector/archive/2012/05/16/register-now-to-attend-a-may-24th-windows-8-developer-camp-in-chevy-chase-md.aspx#comments</comments>
		<pubDate>Wed, 16 May 2012 17:53:18 +0000</pubDate>
		<dc:creator>PubSec</dc:creator>
		
		<category><![CDATA[silverlighters.org (Syndicated Content)]]></category>

		<guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10305931</guid>
		<description><![CDATA[<table border="0" cellspacing="0" cellpadding="0"><tbody>     <tr>       <td>         <p><a href="http://www.microsoft.com/click/services/Redirect2.ashx?CR_CC=200099466&#38;CR_EAC=300043011"><strong><font size="4">REGISTER TODAY!</font></strong></a></p>          <p><b>Event location: </b>Microsoft Chevy Chase Office, 5404 Wisconsin Avenue, Suite 700, Chevy Chase, MD 20815</p>          <p><b>Registration</b> opens at 8:30 A.M.&#160; <b>Event</b> starts at 9:00 A.M. </p>          <p><strong>Windows 8 Changes Everything</strong> </p>       </td>     </tr>      <tr>       <td>         <p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/6138.clip_5F00_image002_5F00_1A49FC97.gif"><img border="0" alt="clip_image002" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/3005.clip_5F00_image002_5F00_thumb_5F00_079502E0.gif" width="2" height="20" /></a></p>       </td>     </tr>      <tr>       <td>         <p>Combining the broad reach of Windows, best-in-class developer tools, a reimagined user experience, support for new chipsets, and a built-in store with industry-leading business terms—Windows 8 is the largest developer opportunity, ever. </p>       </td>     </tr>      <tr>       <td>         <p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/3482.clip_5F00_image003_5F00_190563B8.gif"><img border="0" alt="clip_image003" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/4578.clip_5F00_image003_5F00_thumb_5F00_5458C976.gif" width="2" height="16" /></a></p>       </td>     </tr>      <tr>       <td>         <p>Join us for this <b>free, full-day event</b> designed to share all the knowledge you need to start building Metro-style applications for Windows 8—today. We'll begin by showing you how to use Microsoft Visual Studio to code fast, fluid, immersive, and beautiful Metro-style applications in HTML5/JavaScript, XAML/C#, and C/C++. Your existing investments in these languages carry forward, making Windows a no-compromise platform for developers. </p>       </td>     </tr>      <tr>       <td>         <p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/8688.clip_5F00_image0031_5F00_33D189C4.gif"><img border="0" alt="clip_image003[1]" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/8765.clip_5F00_image0031_5F00_thumb_5F00_4541EA9C.gif" width="2" height="16" /></a></p>       </td>     </tr>      <tr>       <td>         <p>Whatever language you choose, your app gets deep integration with the Windows shell, including notifications, live tiles, deep links, and contracts with other apps. And now you can build once and support all Windows customers, no matter what type of PC they have—from tablets to laptops to convertibles to desktops. </p>       </td>     </tr>      <tr>       <td>         <p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/4666.clip_5F00_image0032_5F00_24BAAAEA.gif"><img border="0" alt="clip_image003[2]" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/1348.clip_5F00_image0032_5F00_thumb_5F00_4B1C8E35.gif" width="2" height="16" /></a></p>       </td>     </tr>      <tr>       <td>         <p>We'll cap the day off with an open, <b>hands-on lab</b> session. It's the perfect opportunity to get your dream application under way, or finish that app you've already started—with Windows 8 experts available to guide you through every step. Bring your laptop or tablet to join in the fun, and show off your skills while getting started on developing your company's first Metro application. </p>       </td>     </tr>      <tr>       <td>         <p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/6786.clip_5F00_image0021_5F00_2A954E83.gif"><img border="0" alt="clip_image002[1]" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/4478.clip_5F00_image0021_5F00_thumb_5F00_751C8C5D.gif" width="2" height="20" /></a></p>       </td>     </tr>      <tr>       <td>         <p>Prerequisites </p>       </td>     </tr>      <tr>       <td>         <p>Please bring a laptop or tablet and your personal identification. Also, we recommend you check out the Windows Dev Center, and <a href="http://msdn.microsoft.com/en-us/windows/apps">download the Windows 8 Consumer Preview</a> before you come so you can be prepared for the hands-on portion of the event. </p>       </td>     </tr>      <tr>       <td>         <p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/8360.clip_5F00_image0022_5F00_02829F64.gif"><img border="0" alt="clip_image002[2]" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/0456.clip_5F00_image0022_5F00_thumb_5F00_28E482AF.gif" width="2" height="20" /></a></p>       </td>     </tr>      <tr>       <td>         <p>Notes </p>       </td>     </tr>      <tr>       <td>         <p>This free event is brought to you by Microsoft; however, you are responsible for booking and funding your own travel and accommodations. <strong>Please note</strong> that there is limited space available for this event, so be sure to register early at a location near you.</p>       </td>     </tr>   </tbody></table><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10305931" width="1" height="1">]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="0"><tbody>     <tr>       <td>         <p><a href="http://www.microsoft.com/click/services/Redirect2.ashx?CR_CC=200099466&amp;CR_EAC=300043011"><strong><font size="4">REGISTER TODAY!</font></strong></a></p>          <p><b>Event location: </b>Microsoft Chevy Chase Office, 5404 Wisconsin Avenue, Suite 700, Chevy Chase, MD 20815</p>          <p><b>Registration</b> opens at 8:30 A.M.&#160; <b>Event</b> starts at 9:00 A.M. </p>          <p><strong>Windows 8 Changes Everything</strong> </p>       </td>     </tr>      <tr>       <td>         <p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/6138.clip_5F00_image002_5F00_1A49FC97.gif"><img border="0" alt="clip_image002" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/3005.clip_5F00_image002_5F00_thumb_5F00_079502E0.gif" width="2" height="20" /></a></p>       </td>     </tr>      <tr>       <td>         <p>Combining the broad reach of Windows, best-in-class developer tools, a reimagined user experience, support for new chipsets, and a built-in store with industry-leading business terms—Windows 8 is the largest developer opportunity, ever. </p>       </td>     </tr>      <tr>       <td>         <p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/3482.clip_5F00_image003_5F00_190563B8.gif"><img border="0" alt="clip_image003" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/4578.clip_5F00_image003_5F00_thumb_5F00_5458C976.gif" width="2" height="16" /></a></p>       </td>     </tr>      <tr>       <td>         <p>Join us for this <b>free, full-day event</b> designed to share all the knowledge you need to start building Metro-style applications for Windows 8—today. We'll begin by showing you how to use Microsoft Visual Studio to code fast, fluid, immersive, and beautiful Metro-style applications in HTML5/JavaScript, XAML/C#, and C/C++. Your existing investments in these languages carry forward, making Windows a no-compromise platform for developers. </p>       </td>     </tr>      <tr>       <td>         <p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/8688.clip_5F00_image0031_5F00_33D189C4.gif"><img border="0" alt="clip_image003[1]" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/8765.clip_5F00_image0031_5F00_thumb_5F00_4541EA9C.gif" width="2" height="16" /></a></p>       </td>     </tr>      <tr>       <td>         <p>Whatever language you choose, your app gets deep integration with the Windows shell, including notifications, live tiles, deep links, and contracts with other apps. And now you can build once and support all Windows customers, no matter what type of PC they have—from tablets to laptops to convertibles to desktops. </p>       </td>     </tr>      <tr>       <td>         <p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/4666.clip_5F00_image0032_5F00_24BAAAEA.gif"><img border="0" alt="clip_image003[2]" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/1348.clip_5F00_image0032_5F00_thumb_5F00_4B1C8E35.gif" width="2" height="16" /></a></p>       </td>     </tr>      <tr>       <td>         <p>We'll cap the day off with an open, <b>hands-on lab</b> session. It's the perfect opportunity to get your dream application under way, or finish that app you've already started—with Windows 8 experts available to guide you through every step. Bring your laptop or tablet to join in the fun, and show off your skills while getting started on developing your company's first Metro application. </p>       </td>     </tr>      <tr>       <td>         <p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/6786.clip_5F00_image0021_5F00_2A954E83.gif"><img border="0" alt="clip_image002[1]" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/4478.clip_5F00_image0021_5F00_thumb_5F00_751C8C5D.gif" width="2" height="20" /></a></p>       </td>     </tr>      <tr>       <td>         <p>Prerequisites </p>       </td>     </tr>      <tr>       <td>         <p>Please bring a laptop or tablet and your personal identification. Also, we recommend you check out the Windows Dev Center, and <a href="http://msdn.microsoft.com/en-us/windows/apps">download the Windows 8 Consumer Preview</a> before you come so you can be prepared for the hands-on portion of the event. </p>       </td>     </tr>      <tr>       <td>         <p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/8360.clip_5F00_image0022_5F00_02829F64.gif"><img border="0" alt="clip_image002[2]" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/0456.clip_5F00_image0022_5F00_thumb_5F00_28E482AF.gif" width="2" height="20" /></a></p>       </td>     </tr>      <tr>       <td>         <p>Notes </p>       </td>     </tr>      <tr>       <td>         <p>This free event is brought to you by Microsoft; however, you are responsible for booking and funding your own travel and accommodations. <strong>Please note</strong> that there is limited space available for this event, so be sure to register early at a location near you.</p>       </td>     </tr>   </tbody></table><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10305931" width="1" height="1">]]></content:encoded>
			<wfw:commentRss>http://blogs.msdn.com/b/publicsector/archive/2012/05/16/register-now-to-attend-a-may-24th-windows-8-developer-camp-in-chevy-chase-md.aspx/feed/</wfw:commentRss>
		</item>
		<item>
		<title>REGISTER TODAY for the 5/16 Legacy App Maintenance with Visual Studio &#38; TFS Webcast</title>
		<link>http://blogs.msdn.com/b/publicsector/archive/2012/05/16/register-today-for-the-5-16-legacy-app-maintenance-with-visual-studio-amp-tfs-webcast.aspx</link>
		<comments>http://blogs.msdn.com/b/publicsector/archive/2012/05/16/register-today-for-the-5-16-legacy-app-maintenance-with-visual-studio-amp-tfs-webcast.aspx#comments</comments>
		<pubDate>Wed, 16 May 2012 14:09:42 +0000</pubDate>
		<dc:creator>PubSec</dc:creator>
		
		<category><![CDATA[silverlighters.org (Syndicated Content)]]></category>

		<guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10305835</guid>
		<description><![CDATA[<p>&#160;</p>  <p><a href="http://www.microsoft.com/click/services/Redirect2.ashx?CR_CC=200099130&#38;CR_EAC=300042887">Register today for the Legacy App Maintenance with Visual Studio TFS Webcast</a>. at 2:00pm EST. </p>  <p>This webcast is intended for any individual involved in software development &#38; related processes, who would like to know more about leveraging Visual Studio &#38; MSDN Subscriptions to more effectively maintain &#38; advance legacy application projects. In this session, we will cover topics such as migrating legacy code (Best Practices &#38; partners that have great tooling), maintaining projects until they are retired, upgrading from Visual SourceSafe &#38; other SCCM products to Team Foundation Server and other related technologies. In the end, we hope this webcast will give you the information you need to make the best decisions in when to advance your development projects &#38; technologies, as well as how to move forward when the time is right.</p><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10305835" width="1" height="1">]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>  <p><a href="http://www.microsoft.com/click/services/Redirect2.ashx?CR_CC=200099130&amp;CR_EAC=300042887">Register today for the Legacy App Maintenance with Visual Studio TFS Webcast</a>. at 2:00pm EST. </p>  <p>This webcast is intended for any individual involved in software development &amp; related processes, who would like to know more about leveraging Visual Studio &amp; MSDN Subscriptions to more effectively maintain &amp; advance legacy application projects. In this session, we will cover topics such as migrating legacy code (Best Practices &amp; partners that have great tooling), maintaining projects until they are retired, upgrading from Visual SourceSafe &amp; other SCCM products to Team Foundation Server and other related technologies. In the end, we hope this webcast will give you the information you need to make the best decisions in when to advance your development projects &amp; technologies, as well as how to move forward when the time is right.</p><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10305835" width="1" height="1">]]></content:encoded>
			<wfw:commentRss>http://blogs.msdn.com/b/publicsector/archive/2012/05/16/register-today-for-the-5-16-legacy-app-maintenance-with-visual-studio-amp-tfs-webcast.aspx/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Join us on May 29th and May 31st for the Let&#8217;s Build Something Mobile Webcast Series!</title>
		<link>http://blogs.msdn.com/b/publicsector/archive/2012/05/14/join-us-on-may-29th-and-may-31st-for-the-let-s-build-something-mobile-webcast-series.aspx</link>
		<comments>http://blogs.msdn.com/b/publicsector/archive/2012/05/14/join-us-on-may-29th-and-may-31st-for-the-let-s-build-something-mobile-webcast-series.aspx#comments</comments>
		<pubDate>Mon, 14 May 2012 19:50:12 +0000</pubDate>
		<dc:creator>PubSec</dc:creator>
		
		<category><![CDATA[silverlighters.org (Syndicated Content)]]></category>

		<guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10305041</guid>
		<description><![CDATA[<h5><strong>REGISTER TODAY using the links below!</strong></h5>  <p><strong>Fast Track Your First App: </strong><b>     <br /></b>May 29, 2012 </p>  <p><a href="http://bit.ly/LBSMMay29AM">11am-12:30pm Eastern Time</a> <b>OR</b></p>  <p><a href="http://bit.ly/LBSMMay29PM">4pm-5:30pm Eastern Time</a></p>  <p><strong></strong></p>  <p><strong>Give Your App Some POP:</strong>    <br />May 31, 2012</p>  <p><a href="http://bit.ly/LBSMMay31AM">11am-12:30pm Eastern Time</a> <b>OR</b><u></u></p>  <p><a href="http://bit.ly/LBSMMay31PM">4pm-5:30pm Eastern Time</a></p>  <p>Government and citizen-oriented apps represent a huge emerging market for mobile developers. These “Let’s Build Something Mobile” Workshops will walk you through the basics of creating, testing and deploying a Public Sector app, so that <b><i>No Developer is Left Behind</i></b> <i>taking advantage of this new market</i>. As a participant you will have the opportunity to create your own unique Public Sector Windows Phone app that is ready to be deployed to the Windows Phone Marketplace. During each of the two sessions, experts from Microsoft and ComponentOne will be available to answer questions and offer guidance.</p>  <p><b>Session 1-Fast Track Your First App</b></p>  <p>During this workshop, you’ll be exposed to the basics of creating a Windows Phone App and deploying to the Marketplace. As an attendee, you will be given some time during the session to use what you’ve learned to develop your own apps which access freely-available Public Sector data. The presenter along with resources from Microsoft and ComponentOne will be available to support you along the way.</p>  <p><b>Session 2-Give Your App Some POP</b></p>  <p>Enhance the look and functionality of your existing Windows Phone app (or one created in the Fast Track Your First App session) by leveraging capabilities specific to the Windows Phone API and by using advanced UI controls. You’ll get a feel for Microsoft’s Expression Blend design tools too. As an attendee, you will be given some time during the session to use what you’ve learned in order to make improvements to your apps. The presenter along with resources from Microsoft and ComponentOne will be available to support you along the way.</p>  <p><i></i></p>  <p><i>*Attendees will receive a complimentary 1-year subscription for ComponentOne Studio® for Windows Phone</i></p>  <p><i></i></p>  <p>Pre-requisite: Download/Install </p>  <p>* <a href="http://www.microsoft.com/click/services/Redirect2.ashx?CR_CC=200085299">Visual Studio Express &#38; Tools</a></p>  <p>* ComponentOne Studio(r) for Windows Phone (Trial Edition) <a href="http://www.componentone.com/SuperProducts/StudioWindowsPhone/">http://www.componentone.com/SuperProducts/StudioWindowsPhone/</a></p>  <p><b>Notice to all Public Sector Employees:</b> Due to government gift and ethics laws and Microsoft policy, government employees (including military and employees of public education institutions) are not eligible to participate in any raffles that may be associated with these events. Further information on Microsoft compliance with U.S. government gift and ethics rules can be found <a href="http://www.microsoft.com/industry/government/GovGiftingCompliance.aspx">here</a>.</p><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10305041" width="1" height="1">]]></description>
			<content:encoded><![CDATA[<h5><strong>REGISTER TODAY using the links below!</strong></h5>  <p><strong>Fast Track Your First App: </strong><b>     <br /></b>May 29, 2012 </p>  <p><a href="http://bit.ly/LBSMMay29AM">11am-12:30pm Eastern Time</a> <b>OR</b></p>  <p><a href="http://bit.ly/LBSMMay29PM">4pm-5:30pm Eastern Time</a></p>  <p><strong></strong></p>  <p><strong>Give Your App Some POP:</strong>    <br />May 31, 2012</p>  <p><a href="http://bit.ly/LBSMMay31AM">11am-12:30pm Eastern Time</a> <b>OR</b><u></u></p>  <p><a href="http://bit.ly/LBSMMay31PM">4pm-5:30pm Eastern Time</a></p>  <p>Government and citizen-oriented apps represent a huge emerging market for mobile developers. These “Let’s Build Something Mobile” Workshops will walk you through the basics of creating, testing and deploying a Public Sector app, so that <b><i>No Developer is Left Behind</i></b> <i>taking advantage of this new market</i>. As a participant you will have the opportunity to create your own unique Public Sector Windows Phone app that is ready to be deployed to the Windows Phone Marketplace. During each of the two sessions, experts from Microsoft and ComponentOne will be available to answer questions and offer guidance.</p>  <p><b>Session 1-Fast Track Your First App</b></p>  <p>During this workshop, you’ll be exposed to the basics of creating a Windows Phone App and deploying to the Marketplace. As an attendee, you will be given some time during the session to use what you’ve learned to develop your own apps which access freely-available Public Sector data. The presenter along with resources from Microsoft and ComponentOne will be available to support you along the way.</p>  <p><b>Session 2-Give Your App Some POP</b></p>  <p>Enhance the look and functionality of your existing Windows Phone app (or one created in the Fast Track Your First App session) by leveraging capabilities specific to the Windows Phone API and by using advanced UI controls. You’ll get a feel for Microsoft’s Expression Blend design tools too. As an attendee, you will be given some time during the session to use what you’ve learned in order to make improvements to your apps. The presenter along with resources from Microsoft and ComponentOne will be available to support you along the way.</p>  <p><i></i></p>  <p><i>*Attendees will receive a complimentary 1-year subscription for ComponentOne Studio® for Windows Phone</i></p>  <p><i></i></p>  <p>Pre-requisite: Download/Install </p>  <p>* <a href="http://www.microsoft.com/click/services/Redirect2.ashx?CR_CC=200085299">Visual Studio Express &amp; Tools</a></p>  <p>* ComponentOne Studio(r) for Windows Phone (Trial Edition) <a href="http://www.componentone.com/SuperProducts/StudioWindowsPhone/">http://www.componentone.com/SuperProducts/StudioWindowsPhone/</a></p>  <p><b>Notice to all Public Sector Employees:</b> Due to government gift and ethics laws and Microsoft policy, government employees (including military and employees of public education institutions) are not eligible to participate in any raffles that may be associated with these events. Further information on Microsoft compliance with U.S. government gift and ethics rules can be found <a href="http://www.microsoft.com/industry/government/GovGiftingCompliance.aspx">here</a>.</p><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10305041" width="1" height="1">]]></content:encoded>
			<wfw:commentRss>http://blogs.msdn.com/b/publicsector/archive/2012/05/14/join-us-on-may-29th-and-may-31st-for-the-let-s-build-something-mobile-webcast-series.aspx/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ANNOUNCING MOBILE AMERICA - THE PEOPLE HACKATHON</title>
		<link>http://blogs.msdn.com/b/publicsector/archive/2012/05/14/announcing-mobile-america-the-people-hackathon.aspx</link>
		<comments>http://blogs.msdn.com/b/publicsector/archive/2012/05/14/announcing-mobile-america-the-people-hackathon.aspx#comments</comments>
		<pubDate>Mon, 14 May 2012 13:32:25 +0000</pubDate>
		<dc:creator>PubSec</dc:creator>
		
		<category><![CDATA[silverlighters.org (Syndicated Content)]]></category>

		<guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10304850</guid>
		<description><![CDATA[<p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/1754.clip_5F00_image001_5F00_2EA73D42.jpg"><img border="0" alt="clip_image001" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/4807.clip_5F00_image001_5F00_thumb_5F00_62DB6688.jpg" width="698" height="178" /></a></p>  <p>Microsoft Public Sector DPE announces the launch of a nationwide mobile application development campaign <b>today</b> to bring citizens and developers together to build MOBILE AMERICA. <b>Mobile </b><b>A</b><b>m</b><b>e</b><b>r</b><b>i</b><b>c</b><b>a</b><b> – the people hackathon</b> is inspired by America itself–an event for the people, by the people. </p>  <p>Are you a concerned citizen with ideas on how technology could <b>solve social problems</b>? A developer with the knowledge, technical skills, vision, and desire to <b>contribute to the future</b>? Here’s your opportunity to develop an app or app prototype that contributes to America, using Microsoft Windows Phone, Windows Azure or Windows 8, and win <b>prizes</b>!</p>  <p>Click <b><a href="http://www.microsoft.com/government/en-us/Products/windowsphone/Pages/DeveloperContest.aspx">here</a></b> <b>today</b> to learn more about the hackathon and how you can participate. </p>  <p>Please contact <a href="mailto:askdpeps@microsoft.com">askdpeps@microsoft.com</a> with questions.</p>  <p>-Nandita</p><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10304850" width="1" height="1">]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/1754.clip_5F00_image001_5F00_2EA73D42.jpg"><img border="0" alt="clip_image001" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/4807.clip_5F00_image001_5F00_thumb_5F00_62DB6688.jpg" width="698" height="178" /></a></p>  <p>Microsoft Public Sector DPE announces the launch of a nationwide mobile application development campaign <b>today</b> to bring citizens and developers together to build MOBILE AMERICA. <b>Mobile </b><b>A</b><b>m</b><b>e</b><b>r</b><b>i</b><b>c</b><b>a</b><b> – the people hackathon</b> is inspired by America itself–an event for the people, by the people. </p>  <p>Are you a concerned citizen with ideas on how technology could <b>solve social problems</b>? A developer with the knowledge, technical skills, vision, and desire to <b>contribute to the future</b>? Here’s your opportunity to develop an app or app prototype that contributes to America, using Microsoft Windows Phone, Windows Azure or Windows 8, and win <b>prizes</b>!</p>  <p>Click <b><a href="http://www.microsoft.com/government/en-us/Products/windowsphone/Pages/DeveloperContest.aspx">here</a></b> <b>today</b> to learn more about the hackathon and how you can participate. </p>  <p>Please contact <a href="mailto:askdpeps@microsoft.com">askdpeps@microsoft.com</a> with questions.</p>  <p>-Nandita</p><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10304850" width="1" height="1">]]></content:encoded>
			<wfw:commentRss>http://blogs.msdn.com/b/publicsector/archive/2012/05/14/announcing-mobile-america-the-people-hackathon.aspx/feed/</wfw:commentRss>
		</item>
		<item>
		<title>TEST DEVICES for Government, Education, and Healthcare APPS</title>
		<link>http://blogs.msdn.com/b/publicsector/archive/2012/05/13/test-devices-for-government-education-and-healthcare-apps.aspx</link>
		<comments>http://blogs.msdn.com/b/publicsector/archive/2012/05/13/test-devices-for-government-education-and-healthcare-apps.aspx#comments</comments>
		<pubDate>Sun, 13 May 2012 16:02:12 +0000</pubDate>
		<dc:creator>PubSec</dc:creator>
		
		<category><![CDATA[silverlighters.org (Syndicated Content)]]></category>

		<guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10304662</guid>
		<description><![CDATA[<p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-51-64-metablogapi/7345.image_5F00_02CCFD0F.png"><font size="3" face="Calibri"><img border="0" alt="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-51-64-metablogapi/4621.image_5F00_thumb_5F00_5643CD28.png" width="185" height="143" /></font></a><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-51-64-metablogapi/6864.image_5F00_1BE85747.png"><font size="3" face="Calibri"><img border="0" alt="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-51-64-metablogapi/4721.image_5F00_thumb_5F00_0BF91283.png" width="354" height="55" /></font></a><font face="Calibri"><font size="3">       <br /><strong><font color="#ff0000">Devices</font>, <font color="#9b00d3">Devices</font>, <font color="#f79646">Devices</font>, </strong><strong><font color="#00ff00">Devices</font>, <font color="#a5b592">Devices</font>, <font color="#ff0080">Devices</font>, <strong><font color="#4bacc6">Devices</font>, <font color="#d16349">Devices</font>, <font color="#0000ff">Devices</font>, </strong></strong></font></font><font face="Calibri"><font size="3"><strong><font color="#dd8484">Devices            <br /></font></strong>        <br /><strong><font>WHAT IS A <a href="http://blogs.msdn.com/b/publicsector/archive/2012/02/17/what-is-a-public-sector-windows-phone-app.aspx">PUBLIC SECTOR APP</a>? </font></strong></font></font></p>  <font size="3" face="Calibri"></font>  <p><strong><font size="5" face="Calibri">We Still Have Devices Ready To Test Your Apps!</font></strong></p>  <font size="3" face="Calibri"></font>  <p><font size="3" face="Calibri">This <u>Device Loan Program</u> consists of TWO simple options: </font></p>  <font size="3" face="Calibri"></font>  <ol><font size="3" face="Calibri"></font>    <li><font size="3" face="Calibri">For <strong><font color="#c0504d">Government Developer:</font></strong> You can request a device (<strong>as a loaner</strong>) for 30 days – after which you must return it. No exceptions!</font></li>   <font size="3" face="Calibri"></font>    <li><font size="3" face="Calibri">For <strong><font color="#9bbb59">non-Government Developer:</font> </strong>If you publish the Public Sector app to Marketplace we’ll let you keep the device longer to build more apps. Otherwise, option 1 applies.</font></li>   <font size="3" face="Calibri"></font></ol>  <font size="3" face="Calibri"></font>  <p><font face="Calibri"><font size="3"><strong>This program is available to <font color="#ff0000">United </font><font color="#ff0000">States Developers Only</font>…           <br /></strong>(<em>for non-US please install this app <a href="http://windowsphone.com/s?appid=a84f1740-0047-4408-b317-c2db01a70fb4">Find My Champ</a>, and find the Windows Phone Champ nearest you.</em>)</font></font></p>  <font size="3" face="Calibri"></font>  <p><font color="#ffffff" size="5" face="Calibri"><strong>Fill out this form and press submit… it is THAT EASY!!!</strong></font></p>  <font size="3" face="Calibri"></font>  <div> </div>  <font size="3" face="Calibri"></font>  <p><font size="3" face="Calibri">Don’t know where to start? NO PROBLEM! – Here are some pointers:</font><strong><font size="3" face="Calibri">       <br /></font></strong><a href="http://aka.ms/infokit"><font size="3" face="Calibri">Phone InfoKit</font></a><font size="3" face="Calibri">, </font><a href="http://aka.ms/getphone"><font size="3" face="Calibri">Phone SDK</font></a><font size="3" face="Calibri">, </font><a href="http://aka.ms/getazure"><font size="3" face="Calibri">Azure SDK</font></a><font size="3" face="Calibri">, </font><a href="http://aka.ms/azuretrial"><font size="3" face="Calibri">Azure Trial</font></a><font size="3" face="Calibri">, </font><a href="http://aka.ms/getwebmatrix"><font size="3" face="Calibri">WebMatrix,</font></a><font size="3" face="Calibri"> </font><a href="http://aka.ms/ideas"><font size="3" face="Calibri">Apps Ideas</font></a></p>  <font size="3" face="Calibri"></font>  <p><font size="3" face="Calibri">Joel Reyes – Windows Phone Champ      <br />DPE.Public Sector</font></p>  <font size="3" face="Calibri"></font><font size="3" face="Calibri">   <hr /> <b>Notice to all Public Sector Employees:</b> Due to government gift and ethics laws and Microsoft policy, government employees (including military and employees of public education institutions) are not eligible to participate in any give-away that may be associated with this program. Further information on Microsoft compliance with U.S. government gift and ethics rules can be found </font><a href="http://www.microsoft.com/industry/government/GovGiftingCompliance.aspx"><font size="3" face="Calibri">here</font></a><font size="3" face="Calibri">.</font>  <p><a href="http://www.twitter.com/joelcitizen"><img border="0" alt="clip_image0014" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/8446.clip_5F00_image0014_5F00_70B51F94.png" width="240" height="38" /></a>    <br /><b> <font color="#ff0000">G E T F-R-E-E</font>      <br /></b>Phone: <a href="http://aka.ms/getphone">Tools</a>, <a href="http://aka.ms/freedevices">Devices</a>    <br />Cloud: <a href="http://aka.ms/getazure">Tools</a>, <a href="http://aka.ms/azuretrial">Account</a>    <br />Client: <a href="http://aka.ms/getwebmatrix">WebMatrix</a>    <br />Resources: <a href="http://aka.ms/infokit">Infokit</a>    <br />Apps Ideas: <a href="http://www.citizenphoneappideas.com/forums/78813-general">Ideas</a></p><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10304662" width="1" height="1">]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-51-64-metablogapi/7345.image_5F00_02CCFD0F.png"><font size="3" face="Calibri"><img border="0" alt="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-51-64-metablogapi/4621.image_5F00_thumb_5F00_5643CD28.png" width="185" height="143" /></font></a><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-51-64-metablogapi/6864.image_5F00_1BE85747.png"><font size="3" face="Calibri"><img border="0" alt="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-51-64-metablogapi/4721.image_5F00_thumb_5F00_0BF91283.png" width="354" height="55" /></font></a><font face="Calibri"><font size="3">       <br /><strong><font color="#ff0000">Devices</font>, <font color="#9b00d3">Devices</font>, <font color="#f79646">Devices</font>, </strong><strong><font color="#00ff00">Devices</font>, <font color="#a5b592">Devices</font>, <font color="#ff0080">Devices</font>, <strong><font color="#4bacc6">Devices</font>, <font color="#d16349">Devices</font>, <font color="#0000ff">Devices</font>, </strong></strong></font></font><font face="Calibri"><font size="3"><strong><font color="#dd8484">Devices            <br /></font></strong>        <br /><strong><font>WHAT IS A <a href="http://blogs.msdn.com/b/publicsector/archive/2012/02/17/what-is-a-public-sector-windows-phone-app.aspx">PUBLIC SECTOR APP</a>? </font></strong></font></font></p>  <font size="3" face="Calibri"></font>  <p><strong><font size="5" face="Calibri">We Still Have Devices Ready To Test Your Apps!</font></strong></p>  <font size="3" face="Calibri"></font>  <p><font size="3" face="Calibri">This <u>Device Loan Program</u> consists of TWO simple options: </font></p>  <font size="3" face="Calibri"></font>  <ol><font size="3" face="Calibri"></font>    <li><font size="3" face="Calibri">For <strong><font color="#c0504d">Government Developer:</font></strong> You can request a device (<strong>as a loaner</strong>) for 30 days – after which you must return it. No exceptions!</font></li>   <font size="3" face="Calibri"></font>    <li><font size="3" face="Calibri">For <strong><font color="#9bbb59">non-Government Developer:</font> </strong>If you publish the Public Sector app to Marketplace we’ll let you keep the device longer to build more apps. Otherwise, option 1 applies.</font></li>   <font size="3" face="Calibri"></font></ol>  <font size="3" face="Calibri"></font>  <p><font face="Calibri"><font size="3"><strong>This program is available to <font color="#ff0000">United </font><font color="#ff0000">States Developers Only</font>…           <br /></strong>(<em>for non-US please install this app <a href="http://windowsphone.com/s?appid=a84f1740-0047-4408-b317-c2db01a70fb4">Find My Champ</a>, and find the Windows Phone Champ nearest you.</em>)</font></font></p>  <font size="3" face="Calibri"></font>  <p><font color="#ffffff" size="5" face="Calibri"><strong>Fill out this form and press submit… it is THAT EASY!!!</strong></font></p>  <font size="3" face="Calibri"></font>  <div> </div>  <font size="3" face="Calibri"></font>  <p><font size="3" face="Calibri">Don’t know where to start? NO PROBLEM! – Here are some pointers:</font><strong><font size="3" face="Calibri">       <br /></font></strong><a href="http://aka.ms/infokit"><font size="3" face="Calibri">Phone InfoKit</font></a><font size="3" face="Calibri">, </font><a href="http://aka.ms/getphone"><font size="3" face="Calibri">Phone SDK</font></a><font size="3" face="Calibri">, </font><a href="http://aka.ms/getazure"><font size="3" face="Calibri">Azure SDK</font></a><font size="3" face="Calibri">, </font><a href="http://aka.ms/azuretrial"><font size="3" face="Calibri">Azure Trial</font></a><font size="3" face="Calibri">, </font><a href="http://aka.ms/getwebmatrix"><font size="3" face="Calibri">WebMatrix,</font></a><font size="3" face="Calibri"> </font><a href="http://aka.ms/ideas"><font size="3" face="Calibri">Apps Ideas</font></a></p>  <font size="3" face="Calibri"></font>  <p><font size="3" face="Calibri">Joel Reyes – Windows Phone Champ      <br />DPE.Public Sector</font></p>  <font size="3" face="Calibri"></font><font size="3" face="Calibri">   <hr /> <b>Notice to all Public Sector Employees:</b> Due to government gift and ethics laws and Microsoft policy, government employees (including military and employees of public education institutions) are not eligible to participate in any give-away that may be associated with this program. Further information on Microsoft compliance with U.S. government gift and ethics rules can be found </font><a href="http://www.microsoft.com/industry/government/GovGiftingCompliance.aspx"><font size="3" face="Calibri">here</font></a><font size="3" face="Calibri">.</font>  <p><a href="http://www.twitter.com/joelcitizen"><img border="0" alt="clip_image0014" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-51-78-metablogapi/8446.clip_5F00_image0014_5F00_70B51F94.png" width="240" height="38" /></a>    <br /><b> <font color="#ff0000">G E T F-R-E-E</font>      <br /></b>Phone: <a href="http://aka.ms/getphone">Tools</a>, <a href="http://aka.ms/freedevices">Devices</a>    <br />Cloud: <a href="http://aka.ms/getazure">Tools</a>, <a href="http://aka.ms/azuretrial">Account</a>    <br />Client: <a href="http://aka.ms/getwebmatrix">WebMatrix</a>    <br />Resources: <a href="http://aka.ms/infokit">Infokit</a>    <br />Apps Ideas: <a href="http://www.citizenphoneappideas.com/forums/78813-general">Ideas</a></p><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10304662" width="1" height="1">]]></content:encoded>
			<wfw:commentRss>http://blogs.msdn.com/b/publicsector/archive/2012/05/13/test-devices-for-government-education-and-healthcare-apps.aspx/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Watching a father fight cancer.</title>
		<link>http://feedproxy.google.com/~r/MsMossyblog/~3/N1dVSMvylpU/910</link>
		<comments>http://feedproxy.google.com/~r/MsMossyblog/~3/N1dVSMvylpU/910#comments</comments>
		<pubDate>Sun, 13 May 2012 06:58:07 +0000</pubDate>
		<dc:creator>Scott Barnes</dc:creator>
		
		<category><![CDATA[silverlighters.org (Syndicated Content)]]></category>

		<guid isPermaLink="false">http://www.riagenic.com/?p=910</guid>
		<description><![CDATA[Its 11:30 PM on a Thursday night, my father is to my right in bed scared about one thing, drowning. He’s not afraid of dying; he made peace with the concept of what happens next long ago. He’s more concerned &#8230; <a href="http://www.riagenic.com/archives/910">Continue reading &#8594;</a>]]></description>
			<content:encoded><![CDATA[<p>Its 11:30 PM on a Thursday night, my father is to my right in bed scared about one thing, drowning. He’s not afraid of dying; he made peace with the concept of what happens next long ago. He’s more concerned about drowning in whatever is pooling inside his chest due to the cancer aggressively growing inside of him. The doctors have said plain and to the point, that what will eventually take my father from this earth will be via drowning on his own internal chest fluids (among other things).</p>
<p>In order to defeat this, he has decided to cheat his fears and up the dosage of morphine and another drug that I can never recall. This will let him pass in a peaceful sleep, much like those ones you have after pulling an all-nighter and crashing at the end of it (Deep dreamless sleep).</p>
<p>I’m not one for talking about death, for me it’s one of those subjects I like to keep at the dark corners of one’s mind, tucked behind the bad memories and stupid mistakes I often make. I don’t seek this subject out; it often seeks me in the form of a friend or relative of some sort dying.</p>
<p>The last time I saw someone die was on a train station platform, this overweight man was slumped on the ground with a railway staff worker performing CPR on his chest and for me it was the most unsettling sight of all. With each compression, his stomach would inflate like a bull frog croaking and what made me stare with shock wasn’t the sight of CPR. It was the scary and most profound thought of a man dying on his own, on a random train platform in the middle of the day with a stranger fighting to keep him alive.</p>
<p>Once the ambulance came and went with his still body, I gathered my thoughts and boarded the next train. I went to work and thought “well, that’s how life goes I guess?” hoping that this new found event in my life wouldn’t fester. Watching that man die has always stayed with me though, I did want to find out his name and offer some comfort to his family, telling them something positive about their loved ones last moments on this earth.</p>
<p>I didn’t, I chickened out and put it down to lack of information to follow up.  That’s a lie though, I could have found out as my old boss from many jobs ago is now the CEO of the Rail Company and I went to School with one of the cops that attended the scene, so getting that information was easy, all I had to do was ask.</p>
<p>I didn’t move, I just sat there staring at others fight to keep someone alive they have never met and put it all behind me.</p>
<p>Tonight, my father lies beside me in a hospital bed, fighting with each breathe to buy one more day, as that’s what his life has now come to – fighting for a day or hour from now.</p>
<p>Dad has put up a fight, he can be stubborn like that, as he was told he had hours to live before, and I think that pissed him off. So much so, he decided to rally, live a few more weeks, probably out of spite or his dislike at being told what to do?</p>
<p>This time, he’s exhausted, it’s the 10<sup>th</sup> round in a long and brutal battle with cancer, he’s weak and mentally he’s ready. He’s made his peace with god, he’s told his children and loved ones repeatedly how much he loves them and why he’s proud of us all.</p>
<p>Punching out though isn’t still something he will yield on, as despite his exhaustion and all the conditions for a peaceful death are before him, he won’t go. It’s like he needs to go around that corner just one more time to see what’s next, read that next chapter to get closure on the plot or wait to see what happens after the credits in a new Marvel movie for that last nugget of “what’s next”. Curiosity is what I think keeps him alive the most – what happens next?</p>
<p>This is what my dad does, he fights. When the odds are against him, he always seems to dig deep, hunker down and duke it out with whatever is front of him.</p>
<p>My dad all my life has been the guy who refused to let a bully push him/loved ones around him around. The amount of times I’ve seen him push back on this has always left me with a sense of pride. He has always taught my brother &amp; sister that you fight for those who can’t fight for themselves and thinking about all my child hood fights, turns out we did. I did get into a lot of trouble growing up, mostly for being a spoiled know it all brat but also for not letting someone push others around (teachers, school yard bullies etc.).</p>
<p>Yet again, dad sees a bully before him, its name is cancer and he’s simply saying “knock it off”. If he’s going to die, it’s now on his terms and despite the overwhelming amount of force cancer has over him, he’s still throwing some punches.</p>
<p>It’s hard to watch him fade like this, it’s not like the movies and it’s a lot more painful than hearing about a colleague or friend dying. Those are events to people that you are fond of but this is personal, this is your father.</p>
<p>It’s painful for a lot of reasons, as it feels like you’re the one who’s been given the diagnosis of an untimely end which would be easier as that means you’re in control. This however isn’t fair, as it’s the same feelings but you’re not in control, you can’t help them, all you can do is sit beside them, hoping for some Hollywood / Disney moment of a miracle to shine forth.</p>
<p>It won’t come, I get that and I’m not a religious guy to assume this is some “master plan”  &#8211; fuck that, there is no plan, there is just existence.</p>
<p>My father will die in the next few hours/days/weeks (hopefully), but he will die with his wife and children beside him, all in agreement that our lives where richer and thankful for his existence.</p>
<p>He won’t die like that stranger on a train platform, he will die on his own terms and surrounded by his loved ones and that for me is a rare gift. Not many of us can get that opportunity in life, to pass away with some forward notice whilst being surrounded by those you love the most.</p>
<p>Watching my father die is more of a gift than I had original realized. I get to say goodbye and tell him how proud and loved he will be..</p>
<p>Cancer you may have won the battle, but like all bullies you will eventually lose.</p>
<p>Filed under personal.</p>
<p>&nbsp;<br />
<h3>Related Posts:</h3>
<ul>
<li>No Related Posts</li>
</ul>

<p><a href="http://feedads.g.doubleclick.net/~a/RcUjsqo5Y7yFhpIdXXTUc2fmKj8/0/da"><img src="http://feedads.g.doubleclick.net/~a/RcUjsqo5Y7yFhpIdXXTUc2fmKj8/0/di" border="0"></img></a><br>
<a href="http://feedads.g.doubleclick.net/~a/RcUjsqo5Y7yFhpIdXXTUc2fmKj8/1/da"><img src="http://feedads.g.doubleclick.net/~a/RcUjsqo5Y7yFhpIdXXTUc2fmKj8/1/di" border="0"></img></a></p><div>
<a href="http://feeds.feedburner.com/~ff/MsMossyblog?a=N1dVSMvylpU:6q9l0gSDlg4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/MsMossyblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/MsMossyblog?a=N1dVSMvylpU:6q9l0gSDlg4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/MsMossyblog?i=N1dVSMvylpU:6q9l0gSDlg4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/MsMossyblog?a=N1dVSMvylpU:6q9l0gSDlg4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/MsMossyblog?i=N1dVSMvylpU:6q9l0gSDlg4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/MsMossyblog?a=N1dVSMvylpU:6q9l0gSDlg4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/MsMossyblog?i=N1dVSMvylpU:6q9l0gSDlg4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/MsMossyblog?a=N1dVSMvylpU:6q9l0gSDlg4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/MsMossyblog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/MsMossyblog?a=N1dVSMvylpU:6q9l0gSDlg4:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/MsMossyblog?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/MsMossyblog?a=N1dVSMvylpU:6q9l0gSDlg4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/MsMossyblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/MsMossyblog?a=N1dVSMvylpU:6q9l0gSDlg4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/MsMossyblog?i=N1dVSMvylpU:6q9l0gSDlg4:gIN9vFwOqvQ" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/MsMossyblog/~3/N1dVSMvylpU/910/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Join us on May 15th for a techcast on Porting your Government Apps from iPhone to Windows Phone!</title>
		<link>http://blogs.msdn.com/b/publicsector/archive/2012/05/11/join-us-on-may-15th-for-a-techcast-on-porting-your-government-apps-from-iphone-to-windows-phone.aspx</link>
		<comments>http://blogs.msdn.com/b/publicsector/archive/2012/05/11/join-us-on-may-15th-for-a-techcast-on-porting-your-government-apps-from-iphone-to-windows-phone.aspx#comments</comments>
		<pubDate>Fri, 11 May 2012 19:54:03 +0000</pubDate>
		<dc:creator>PubSec</dc:creator>
		
		<category><![CDATA[silverlighters.org (Syndicated Content)]]></category>

		<guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10304368</guid>
		<description><![CDATA[<p><b>MoDev Developer TechCast on May 15, 2012: Porting your Government Apps from iPhone to Windows Phone</b></p>  <p><a href="http://www.microsoft.com/click/services/Redirect2.ashx?CR_CC=200067190&#38;CR_EAC=300043139"><strong>REGISTER TODAY!</strong></a></p>  <p><strong></strong></p>  <p><strong>Event Time: </strong>2:00pm – 3:00pm Eastern Time</p>  <p><strong>Event ID: </strong>1032511183</p>  <p><b>Abstract: </b>You have successfully built your government app for iPhone and now you would like to further expand your customer base. The Windows Phone team has developed techniques, technology and best practices to make the process of porting your app much easier. This webcast will walk you through the process of taking your government iPhone app and successfully migrating it to Windows Phone. We will discuss existing open data sources, user experience, navigation, services, application life cycle, language considerations, tools and much more!</p>  <p>Join us for this webcast and you'll have a chance to win a brand new developer device to get you started in migrating your current iPhone solution.</p>  <p><b>Facilitator: <i>Pete Erickson, Founder, MoDev </i></b>Pete Erickson is the creative force behind MoDev and Disruptathon, two companies that have helped shape the DC technology scene over the past four years. MoDev has grown from a grass roots meetup group to one of the nation’s premier mobile development, design and business communities; hosting multiple free meetup events monthly and putting on premium conference events that attract world renowned speakers and cutting edge content. Pete is a speaker for O'Reilly's global webcast series and has appeared nationally on NPR, ABC and CBS News and is a regular guest on local TV affiliates in the DC area commenting on mobile and technology trends.</p>  <p><b>Presenter:</b> <b><i>Joel Reyes, Senior Developer Evangelist, Microsoft </i></b>Joel’s career expands 15 years over a multitude of industries from education, construction, banking, manufacturing, and now at Microsoft (financial services, retail, and government). As a Platform Developer Evangelist, Joel engages developers and architects promoting Microsoft’s next wave of emerging technology products for developers. Joel has a background in systems engineering and acquired a degree in computer science from Rochester Institute of Technology. He is located in the Charlotte metro area where he spends time with his three kids and wife; he is also heavily involved in his community helping those less fortunate. He enjoys reading technical magazines, keeping up with some world-news, and of course, trying anything beta that comes his way!&#160; You can follow his blog at <a href="http://joelcitizen.com/">http://joelcitizen.com/</a>.</p>  <p><b>Guest Panelist: <i>John Cromartie, Senior Mobile Developer and Technical Architect, Mobomo </i></b>Mr. Cromartie is a senior mobile developer and technical architect with 10+ years of software development experience. Mr. Cromartie is unique in that he is a “full stack” developer. He enjoys solving problems through a combination of knowing the right tool for the job and working at any level of abstraction necessary. He is comfortable with low-level native code, as well as high-level managed languages and APIs. He can design a UI, create graphics, write markup, style, back-end and front-end code to make it all come together. Mr. Cromartie has contributed to a number of mobile apps including Mobomo's Traffic Tweet, Tweeb, HexOut, and PocketBiz.</p>  <p><em><strong>Please also </strong><a href="http://www.microsoft.com/click/services/Redirect2.ashx?CR_CC=200067190&#38;CR_EAC=300043141"><strong>register</strong></a><strong> to join us for the next MoDev Developer TechCast: Porting your Government Apps from Android to Windows Phone on June 12, 2012!</strong></em></p><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10304368" width="1" height="1">]]></description>
			<content:encoded><![CDATA[<p><b>MoDev Developer TechCast on May 15, 2012: Porting your Government Apps from iPhone to Windows Phone</b></p>  <p><a href="http://www.microsoft.com/click/services/Redirect2.ashx?CR_CC=200067190&amp;CR_EAC=300043139"><strong>REGISTER TODAY!</strong></a></p>  <p><strong></strong></p>  <p><strong>Event Time: </strong>2:00pm – 3:00pm Eastern Time</p>  <p><strong>Event ID: </strong>1032511183</p>  <p><b>Abstract: </b>You have successfully built your government app for iPhone and now you would like to further expand your customer base. The Windows Phone team has developed techniques, technology and best practices to make the process of porting your app much easier. This webcast will walk you through the process of taking your government iPhone app and successfully migrating it to Windows Phone. We will discuss existing open data sources, user experience, navigation, services, application life cycle, language considerations, tools and much more!</p>  <p>Join us for this webcast and you'll have a chance to win a brand new developer device to get you started in migrating your current iPhone solution.</p>  <p><b>Facilitator: <i>Pete Erickson, Founder, MoDev </i></b>Pete Erickson is the creative force behind MoDev and Disruptathon, two companies that have helped shape the DC technology scene over the past four years. MoDev has grown from a grass roots meetup group to one of the nation’s premier mobile development, design and business communities; hosting multiple free meetup events monthly and putting on premium conference events that attract world renowned speakers and cutting edge content. Pete is a speaker for O'Reilly's global webcast series and has appeared nationally on NPR, ABC and CBS News and is a regular guest on local TV affiliates in the DC area commenting on mobile and technology trends.</p>  <p><b>Presenter:</b> <b><i>Joel Reyes, Senior Developer Evangelist, Microsoft </i></b>Joel’s career expands 15 years over a multitude of industries from education, construction, banking, manufacturing, and now at Microsoft (financial services, retail, and government). As a Platform Developer Evangelist, Joel engages developers and architects promoting Microsoft’s next wave of emerging technology products for developers. Joel has a background in systems engineering and acquired a degree in computer science from Rochester Institute of Technology. He is located in the Charlotte metro area where he spends time with his three kids and wife; he is also heavily involved in his community helping those less fortunate. He enjoys reading technical magazines, keeping up with some world-news, and of course, trying anything beta that comes his way!&#160; You can follow his blog at <a href="http://joelcitizen.com/">http://joelcitizen.com/</a>.</p>  <p><b>Guest Panelist: <i>John Cromartie, Senior Mobile Developer and Technical Architect, Mobomo </i></b>Mr. Cromartie is a senior mobile developer and technical architect with 10+ years of software development experience. Mr. Cromartie is unique in that he is a “full stack” developer. He enjoys solving problems through a combination of knowing the right tool for the job and working at any level of abstraction necessary. He is comfortable with low-level native code, as well as high-level managed languages and APIs. He can design a UI, create graphics, write markup, style, back-end and front-end code to make it all come together. Mr. Cromartie has contributed to a number of mobile apps including Mobomo's Traffic Tweet, Tweeb, HexOut, and PocketBiz.</p>  <p><em><strong>Please also </strong><a href="http://www.microsoft.com/click/services/Redirect2.ashx?CR_CC=200067190&amp;CR_EAC=300043141"><strong>register</strong></a><strong> to join us for the next MoDev Developer TechCast: Porting your Government Apps from Android to Windows Phone on June 12, 2012!</strong></em></p><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10304368" width="1" height="1">]]></content:encoded>
			<wfw:commentRss>http://blogs.msdn.com/b/publicsector/archive/2012/05/11/join-us-on-may-15th-for-a-techcast-on-porting-your-government-apps-from-iphone-to-windows-phone.aspx/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Join us on May 16th for a Microsoft Developer Tools Webcast!</title>
		<link>http://blogs.msdn.com/b/publicsector/archive/2012/05/11/join-us-on-may-16th-for-the-a-microsoft-developer-tools-webcast.aspx</link>
		<comments>http://blogs.msdn.com/b/publicsector/archive/2012/05/11/join-us-on-may-16th-for-the-a-microsoft-developer-tools-webcast.aspx#comments</comments>
		<pubDate>Fri, 11 May 2012 19:40:08 +0000</pubDate>
		<dc:creator>PubSec</dc:creator>
		
		<category><![CDATA[silverlighters.org (Syndicated Content)]]></category>

		<guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10304363</guid>
		<description><![CDATA[<p><b>Please join us for the Microsoft Developer Tools Webcast on May 16, 2012: </b><b>Legacy App Maintenance with Visual Studio &#38; TFS</b></p>  <p><b></b></p>  <p><a href="http://www.microsoft.com/click/services/Redirect2.ashx?CR_CC=200099130&#38;CR_EAC=300042887"><strong>REGISTER TODAY!</strong></a></p>  <p><b></b></p> <strong>Event Time: </strong>2:00 PM - 3:00 PM EDT   <p><strong>Event ID: </strong>1032510695</p>  <p><b>Topic: </b>This webcast is intended for any individual involved in software development &#38; related processes, who would like to know more about leveraging Visual Studio &#38; MSDN Subscriptions to more effectively maintain &#38; advance legacy application projects. In this session, we will cover topics such as migrating legacy code (Best Practices &#38; partners that have great tooling), maintaining projects until they are retired, upgrading from Visual SourceSafe &#38; other SCCM products to Team Foundation Server and other related technologies. In the end, we hope this webcast will give you the information you need to make the best decisions in when to advance your development projects &#38; technologies, as well as how to move forward when the time is right.</p>  <p><b></b></p>  <p><b></b></p>  <p><b>Presenter</b>: <b><i>David Baliles </i></b>is a Developer Technical Specialist for Microsoft working with US State and Local Government customers.</p>  <p><strong>Please register for our other upcoming Developer Tools Webcasts:</strong></p>  <ul>   <li>May 29th, 2-3pm EDT: <a href="http://www.microsoft.com/click/services/Redirect2.ashx?CR_CC=200099130&#38;CR_EAC=300042885">Developer Desktop Asset Management</a> </li>    <li>May 30th, 2-3pm EDT: <a href="http://www.microsoft.com/click/services/Redirect2.ashx?CR_CC=200099130&#38;CR_EAC=300042886">MSDN Administration via VLSC</a> </li> </ul><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10304363" width="1" height="1">]]></description>
			<content:encoded><![CDATA[<p><b>Please join us for the Microsoft Developer Tools Webcast on May 16, 2012: </b><b>Legacy App Maintenance with Visual Studio &amp; TFS</b></p>  <p><b></b></p>  <p><a href="http://www.microsoft.com/click/services/Redirect2.ashx?CR_CC=200099130&amp;CR_EAC=300042887"><strong>REGISTER TODAY!</strong></a></p>  <p><b></b></p> <strong>Event Time: </strong>2:00 PM - 3:00 PM EDT   <p><strong>Event ID: </strong>1032510695</p>  <p><b>Topic: </b>This webcast is intended for any individual involved in software development &amp; related processes, who would like to know more about leveraging Visual Studio &amp; MSDN Subscriptions to more effectively maintain &amp; advance legacy application projects. In this session, we will cover topics such as migrating legacy code (Best Practices &amp; partners that have great tooling), maintaining projects until they are retired, upgrading from Visual SourceSafe &amp; other SCCM products to Team Foundation Server and other related technologies. In the end, we hope this webcast will give you the information you need to make the best decisions in when to advance your development projects &amp; technologies, as well as how to move forward when the time is right.</p>  <p><b></b></p>  <p><b></b></p>  <p><b>Presenter</b>: <b><i>David Baliles </i></b>is a Developer Technical Specialist for Microsoft working with US State and Local Government customers.</p>  <p><strong>Please register for our other upcoming Developer Tools Webcasts:</strong></p>  <ul>   <li>May 29th, 2-3pm EDT: <a href="http://www.microsoft.com/click/services/Redirect2.ashx?CR_CC=200099130&amp;CR_EAC=300042885">Developer Desktop Asset Management</a> </li>    <li>May 30th, 2-3pm EDT: <a href="http://www.microsoft.com/click/services/Redirect2.ashx?CR_CC=200099130&amp;CR_EAC=300042886">MSDN Administration via VLSC</a> </li> </ul><div></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10304363" width="1" height="1">]]></content:encoded>
			<wfw:commentRss>http://blogs.msdn.com/b/publicsector/archive/2012/05/11/join-us-on-may-16th-for-the-a-microsoft-developer-tools-webcast.aspx/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

