<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Coding Out Loud</title>
	<atom:link href="http://blog.codingoutloud.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.codingoutloud.com</link>
	<description>Yes, another noisy coder...</description>
	<lastBuildDate>Fri, 12 Mar 2010 03:23:30 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='blog.codingoutloud.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/2ea73c22ec01f16063d01a441d968815?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>Coding Out Loud</title>
		<link>http://blog.codingoutloud.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.codingoutloud.com/osd.xml" title="Coding Out Loud" />
	<atom:link rel='hub' href='http://blog.codingoutloud.com/?pushpress=hub'/>
		<item>
		<title>BostonAzure.org &#8220;Subscribe to Email List&#8221; Form gets UX make-over</title>
		<link>http://blog.codingoutloud.com/2010/03/11/bostonazure-org-subscribe-to-email-list-form-gets-ux-make-over/</link>
		<comments>http://blog.codingoutloud.com/2010/03/11/bostonazure-org-subscribe-to-email-list-form-gets-ux-make-over/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 03:21:00 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[UX]]></category>
		<category><![CDATA[Web development on bostonazure.org]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=644</guid>
		<description><![CDATA[There is a &#8220;subscribe&#8221; form on the Boston Azure web site from which people can ask to be added to  the group&#8217;s email list.
I just made some updates to improve the user experience (UX). Here are the changes I made, and I list the handy web resources I used to help me decide (where applicable).
For [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=644&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>There is a <a href="http://bostonazure.org/Announcements/Subscribe">&#8220;subscribe&#8221; form on the Boston Azure web site</a> from which people can ask to be added to  the group&#8217;s email list.</p>
<p>I just made some updates to improve the user experience (UX). Here are the changes I made, and I list the handy web resources I used to help me decide (where applicable).</p>
<p>For field labels, I place the label directly above the field it describes. I use &lt;fieldset&gt; and &lt;label&gt; to describe my markup, presumably making it friendly to screen readers. (Credit to templates provided with <a href="http://asp.net/mvc">ASP.NET MVC</a> for making this part easy.) This is the layout that <a href="http://www.lukew.com/">Luke Wroblewski</a> (author of <a href="http://www.amazon.com/Web-Form-Design-Filling-Blanks/dp/1933820241">Web Form Design: Filling in the Blanks</a>) recommends in his <a href="http://www.lukew.com/resources/articles/WebForms_LukeW.pdf">Best Practices for Web Form Design</a> for scenarios where you want to maximize speed, and the user is likely familiar with the data being requested.</p>
<blockquote><p>Luke&#8217;s work is packed with clear, actionable, useful guidance that is easily applied and backed by user research. A gold mine&#8230;</p></blockquote>
<p>Other recommendations I adopted from LukeW include:</p>
<ul>
<li>Since I have two required fields and three optional ones, I removed the (Required) labels, and stuck with the (optional) ones only.</li>
<li>Added field length for optional Notes field.</li>
<li>Made the Primary Action of the form (the Subscribe button) green, just like Apple Store (got the idea from UIE mailing).</li>
</ul>
<p>Also from LukeW, but from a different source (<a href="http://www.lukew.com/ff/entry.asp?968">The Apple Store&#8217;s Checkout Form Redesign</a>, which I learned of from a <a href="http://www.uie.com/uietips/">UIE</a> mailing):</p>
<ul>
<li>After the form is submitted, the user does not get an immediate email. I made that clear in the resulting text.</li>
</ul>
<p>More improvements I can make in the future, also based on LukeW, include:</p>
<ul>
<li>Validate the data entered. In my case, this is currently only that a well-formed email address is provided.</li>
<li>Provide more context on why data is being requested.</li>
<li>Disable the Submit (Subscribe) button after it is clicked to avoid double clicks.</li>
</ul>
<p>Other changes, outside of LukeW&#8217;s guidance:</p>
<ul>
<li>Mentioned &#8220;low volume&#8221; and &#8220;will not spam you&#8221; &#8211; though also need a privacy policy. Will get to that eventually..</li>
<li>Programmatically set focus to the first field in the form when the page is loaded. I used the jQuery technique described <a href="http://stackoverflow.com/questions/277544/how-to-set-the-focus-to-the-first-input-element-in-an-html-form-independent-from/279153">here</a>.</li>
<li>Dropped &#8220;:&#8221; (colons) at end of labels while also changing labels text from leading caps style to mixed case (&#8220;Job title&#8221; instead of &#8220;Job Title:&#8221;). While not decisive for me, I found <a href="http://www.ixda.org/discuss.php?post=38531">an interesting discussion around whether to use a colon in form labels</a>.</li>
<li>Made sure users could press Enter at any time to submit &#8211; but this will only work if they are not in the single multi-line field on my form. Need to consider removing that field &#8230; Need to consult with <a href="http://ria.meetup.com/15/members/8337713/">Joan</a> on that one. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ul>
<p>Used semantic mark-up to implement the green Submit (Subscribe) button mentioned above:</p>
<div id="attachment_546" class="wp-caption alignleft" style="width: 121px"><a href="http://codingoutloud.files.wordpress.com/2010/02/green-subscribe-button.png"><img class="size-full wp-image-546" title="Green Submit (Subscribe) Button for Form" src="http://codingoutloud.files.wordpress.com/2010/02/green-subscribe-button.png?w=111&#038;h=36" alt="Green button that is visually distinctive" width="111" height="36" /></a><p class="wp-caption-text">Submit (Subscribe) Button</p></div>
<p>HTML:</p>
<pre style="padding-left:30px;">&lt;input type="submit" id="primaryaction" value="Subscribe" /&gt;</pre>
<p>CSS:</p>
<pre style="padding-left:30px;">#primaryaction
{
 padding: 5px;
 color: #FFFFFF;
 background-color: #267C18;
 font-weight: bolder;
}</pre>
<p>Old form:</p>
<div id="attachment_635" class="wp-caption alignnone" style="width: 310px"><a href="http://codingoutloud.files.wordpress.com/2010/03/baug-subscribe-before-populated.png"><img class="size-medium wp-image-635" title="baug-subscribe-before-populated" src="http://codingoutloud.files.wordpress.com/2010/03/baug-subscribe-before-populated.png?w=300&#038;h=251" alt="" width="300" height="251" /></a><p class="wp-caption-text">sign-up form BEFORE the make-over</p></div>
<p>New form:</p>
<div id="attachment_643" class="wp-caption alignnone" style="width: 310px"><a href="http://codingoutloud.files.wordpress.com/2010/03/boston-azure-subscribe-improved.png"><img class="size-medium wp-image-643" title="boston-azure-subscribe-improved" src="http://codingoutloud.files.wordpress.com/2010/03/boston-azure-subscribe-improved.png?w=300&#038;h=213" alt="The subscribe form AFTER IMPROVEMENT" width="300" height="213" /></a><p class="wp-caption-text">The AFTER screen shot</p></div>
<br />Filed under: <a href='http://blog.codingoutloud.com/category/software-engineering/ux/'>UX</a>, <a href='http://blog.codingoutloud.com/category/programming/web-development-on-bostonazure-org/'>Web development on bostonazure.org</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/644/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/644/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/644/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/644/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/644/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/644/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/644/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/644/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/644/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/644/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=644&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2010/03/11/bostonazure-org-subscribe-to-email-list-form-gets-ux-make-over/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2010/02/green-subscribe-button.png" medium="image">
			<media:title type="html">Green Submit (Subscribe) Button for Form</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2010/03/baug-subscribe-before-populated.png?w=300" medium="image">
			<media:title type="html">baug-subscribe-before-populated</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2010/03/boston-azure-subscribe-improved.png?w=300" medium="image">
			<media:title type="html">boston-azure-subscribe-improved</media:title>
		</media:content>
	</item>
		<item>
		<title>The Project Location is not Trusted &#8211; Dealing with the Dreaded Unblock</title>
		<link>http://blog.codingoutloud.com/2010/03/05/the-project-location-is-not-trusted-dealing-with-the-dreaded-unblock/</link>
		<comments>http://blog.codingoutloud.com/2010/03/05/the-project-location-is-not-trusted-dealing-with-the-dreaded-unblock/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 13:13:50 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Step-by-Step]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=593</guid>
		<description><![CDATA[The Project Location is not Trusted
Dealing with the dreaded blocked files problem
Quickly Unblocking files marked as Unsafe
Ever download a Zip (or other files) and have to manually &#8220;Unblock&#8221; one or more files through Windows Explorer&#8217;s Properties dialog, like this?

Perhaps you been mystified by a message like this one from Visual Studio?
Read on to understand what&#8217;s [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=593&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<h1>The Project Location is not Trusted</h1>
<h2><em>Dealing with the dreaded blocked files problem</em></h2>
<h2>Quickly Unblocking files marked as Unsafe</h2>
<p>Ever download a Zip (or other files) and have to manually &#8220;Unblock&#8221; one or more files through Windows Explorer&#8217;s <em>Properties </em>dialog, like this?</p>
<p><a href="http://codingoutloud.files.wordpress.com/2010/02/dreaded-unblock.png"><img class="alignnone size-full wp-image-596" title="Unblock button appears at bottom of Properties dialog" src="http://codingoutloud.files.wordpress.com/2010/02/dreaded-unblock.png?w=377&#038;h=515" alt="" width="377" height="515" /></a></p>
<p>Perhaps you been mystified by a message like this one from Visual Studio?</p>
<div id="attachment_594" class="wp-caption alignnone" style="width: 502px"><a href="http://codingoutloud.files.wordpress.com/2010/02/visual-studio-mysterious-error-due-to-untrusted-file-needing-unblock1.png"><img class="alignnone size-full wp-image-595" title="visual-studio-mysterious-error-due-to-untrusted-file-needing-unblock" src="http://codingoutloud.files.wordpress.com/2010/02/visual-studio-mysterious-error-due-to-untrusted-file-needing-unblock1.png?w=492&#038;h=263" alt="" width="492" height="263" /></a><p class="wp-caption-text">Mysterious Visual Studio error message</p></div>
<p>Read on to understand what&#8217;s happening and to learn how to more easily deal with Unblocking such downloaded files on Windows 7, Vista, and XP.</p>
<h3>Why does this happen? Why do files become &#8220;Blocked&#8221;?</h3>
<p>It appears that Internet Explorer (versions 7 and  8, maybe late patches in IE 6) applies the &#8220;block&#8221; in a stream (see below for more on streams). Some programs handle these &#8220;blocked&#8221; files more gracefully than others (looks like the latest Adobe PDF reader can read files like this w/o error).</p>
<p>I&#8217;ve seen blocking happen when downloading Visual Studio solutions from the web or from an email. I&#8217;ve also seen it when downloading documents to disk for use later. You can view the file&#8217;s properties in Windows Explorer to see if the block is there (look for the &#8220;Unblock&#8221; option, as seen above). </p>
<p>Another option is to use Notepad as illustrated in <a href="http://blog.colinmackay.net/archive/2009/03/23/Tip-of-the-Day-9-The-Project-Location-Is-Not.aspx">Colin Mackay&#8217;s Tip of the Day</a> from nearly a year ago:</p>
<p><code style="padding-left:30px;">notepad MyDownloadedFile.zip:zone.identifier</code></p>
<p>Of course, substitute your filename in instead of <strong>BostonAzureSite.zip</strong>, but keep everything else identical. You will see the external zone stream:</p>
<p><code style="padding-left:30px;">[ZoneTransfer]</code><br />
<code style="padding-left:30px;">ZoneId=3</code></p>
<p>Windows is protecting us from ourselves. I guess if you don&#8217;t know what you are doing, you could hurt yourself; you&#8217;ve downloaded something &#8220;untrusted&#8221; from the interweb. This &#8220;protection&#8221; is in Windows 7 and Windows Vista, and apparently can even appear in Windows XP if certain Microsoft software updates are installed. I assume this has some benefits to someone!</p>
<p><em><strong>But if you are a programmer / hacker / techie, and are comfortable hacking and generally know what you are doing, read on&#8230;</strong></em></p>
<h3>Easily Unblock downloaded files marked by IE as Unsafe</h3>
<p>Normally, to Unblock files, you need to visit them one at a time with Windows Explorer, pop up the properties, and click on the Unblock button. This is tedious. If you want to be able to Unblock files more quickly, including whole directory trees at once, then consider doing the following.</p>
<p>Go get <strong><a href="http://technet.microsoft.com/en-us/sysinternals/bb897440.aspx">streams.exe</a></strong> from the big brains at Systinternals (which is part of Microsoft) and copy the executable to <strong>c:\bin\streams.exe</strong>. (If you put it somewhere else, make a compensating adjustment in the next step.)</p>
<p>Use Notepad to save the following into a text file named <strong>unblock-menu.reg</strong> and save it to disk:</p>
<p><code style="padding-left:30px;">Windows Registry Editor Version 5.00</code></p>
<p><code style="padding-left:30px;">[HKEY_CLASSES_ROOT\Directory\shell\UnBlock]</code></p>
<p><code style="padding-left:30px;">[HKEY_CLASSES_ROOT\Directory\shell\UnBlock\command]</code><br />
<code style="padding-left:30px;">@="c:\\bin\\streams.exe -d -s \"%1\""</code></p>
<p><code style="padding-left:30px;">[HKEY_CLASSES_ROOT\*\shell\UnBlock]</code></p>
<p><code style="padding-left:30px;">[HKEY_CLASSES_ROOT\*\shell\UnBlock\command]</code><br />
<code style="padding-left:30px;">@="c:\\bin\\streams.exe -d \"%1\""</code></p>
<h3>What do these Registry Settings do?</h3>
<p>This file lists some registry settings that will allow you to invoke <strong>streams.exe</strong> from the right-click context menu in Windows Explorer. Depending on whether you right-click on a folder or a file, the context menu will vary, as will the action. For a folder (directory), the registry setting says &#8220;call the program streams.exe with the parameters &#8216;-d -s&#8217; and name-of-whatever-folder-i-clicked-on&#8221; which will cause streams.exe to visit each file in that directory tree and remove its streams information. If you right-click on just one file, the command is similar, except does not use the &#8220;-s&#8221; flag (which says to recurse into subdirectories).</p>
<p>Now install these registry settings by executing this file, probably by double-clicking on <strong>unblock-menu.reg</strong> from Windows Explorer. You will probably get a warning from Windows saying you must be nuts to attempt to modify the registry. However, if you are a programmer you are probably cool with it (and may also be nuts).</p>
<p>Now you are ready for the next time Windows protects you from yourself by blocking content you didn&#8217;t want marked as unsafe in the first place. You can right-click on any file or directory on your computer and select &#8220;Unblock&#8221; and that will apply the Unblock process. If you apply it to a file, it will only impact that file. If you apply it to a directory (aka folder) then it will recursively apply to all files and directories below that folder.</p>
<p>Here&#8217;s what you will see when you right-click on a directory / folder from Windows Explorer &#8211; note the new option:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2010/03/unblock-this-directory-tree-popup.png"><img class="alignnone size-medium wp-image-620" title="unblock-this-directory-tree-popup" src="http://codingoutloud.files.wordpress.com/2010/03/unblock-this-directory-tree-popup.png?w=300&#038;h=176" alt="" width="300" height="176" /></a></p>
<p>And here&#8217;s what you will see when you right-click on a file:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2010/03/unblock-this-file-popup.png"><img class="alignnone size-medium wp-image-619" title="unblock-this-file-popup" src="http://codingoutloud.files.wordpress.com/2010/03/unblock-this-file-popup.png?w=300&#038;h=134" alt="" width="300" height="134" /></a></p>
<h3>Other Options</h3>
<p>I learned about the streams.exe utility from a handy post about <a href="http://www.petri.co.il/unblock-files-windows-vista.htm">unblocking files for Vista</a>. In that same post, they describe how to turn the feature off altogether using the Policy Editor.</p>
<h2>Caveat Emptor</h2>
<p><strong><em>With great power comes great responsiblility.</em></strong></p>
<p>I do not advise applying streams.exe to C:\ as I have no idea whether it is ever a good idea to remove all streams from all files. This may in fact be a very bad thing to do. I just don&#8217;t know.  I am personally comfortable doing it with Visual Studio projects and various documents I&#8217;ve downloaded, and have not run into any trouble, but be careful out there&#8230;</p>
<p>Note that the streams utility will nuke *all* the streams. So if your files contain <strong><em>useful</em></strong> additionals streams, this is probably not going to be a helpful strategy. I expect this is not likely to be a problem for the vast majority of people.</p>
<p>Interesting write-up on <a href="http://www.wikistc.org/wiki/Alternate_data_streams">Alternate Data Streams, which are a feature of NTFS file system</a>. Even some <a href="http://windowssecrets.com/2007/12/06/01-Hide-sensitive-files-with-Alternate-Data-Streams">interesting streams hacks</a> out there.</p>
<br />Filed under: <a href='http://blog.codingoutloud.com/category/programming/'>Programming</a>, <a href='http://blog.codingoutloud.com/category/step-by-step/'>Step-by-Step</a> Tagged: <a href='http://blog.codingoutloud.com/tag/windows-7/'>windows 7</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/593/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/593/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/593/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/593/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/593/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/593/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/593/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/593/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/593/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/593/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=593&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2010/03/05/the-project-location-is-not-trusted-dealing-with-the-dreaded-unblock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2010/02/dreaded-unblock.png" medium="image">
			<media:title type="html">Unblock button appears at bottom of Properties dialog</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2010/02/visual-studio-mysterious-error-due-to-untrusted-file-needing-unblock1.png" medium="image">
			<media:title type="html">visual-studio-mysterious-error-due-to-untrusted-file-needing-unblock</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2010/03/unblock-this-directory-tree-popup.png?w=300" medium="image">
			<media:title type="html">unblock-this-directory-tree-popup</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2010/03/unblock-this-file-popup.png?w=300" medium="image">
			<media:title type="html">unblock-this-file-popup</media:title>
		</media:content>
	</item>
		<item>
		<title>ASP.NET MVC 1.0 Visual Studio 2008 project will not open in Visual Studio 2010 RC or Beta</title>
		<link>http://blog.codingoutloud.com/2010/03/02/asp-net-mvc-1-0-visual-studio-2008-project-will-not-open-in-visual-studio-2010-rc-or-beta/</link>
		<comments>http://blog.codingoutloud.com/2010/03/02/asp-net-mvc-1-0-visual-studio-2008-project-will-not-open-in-visual-studio-2010-rc-or-beta/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 12:10:50 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=602</guid>
		<description><![CDATA[Errors Opening ASP.NET MVC 1.0 Sites in Visual Studio 2010 RC, Beta
If you try to use Visual Studio 2010 RC to open an existing ASP.NET MVC web site that was built on ASP.NET MVC 1.0 under Visual Studio 2008, you might expect it to be converted and to open successfully. That&#8217;s what I expected, but [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=602&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<h2>Errors Opening ASP.NET MVC 1.0 Sites in Visual Studio 2010 RC, Beta</h2>
<p>If you try to use Visual Studio 2010 RC to open an existing ASP.NET MVC web site that was built on ASP.NET MVC 1.0 under Visual Studio 2008, you might expect it to be converted and to open successfully. That&#8217;s what I expected, but that did not happen. Visual Studio 2010 gave me conversion errors.</p>
<p>But.. there is a straight-forward way to migrate your ASP.NET MVC project from Visual Studio 2008 to Visual Studio 2010 RC.</p>
<p>Here&#8217;s what you need to do:</p>
<p>1. <a href="http://haacked.com/archive/2010/02/10/installing-asp-net-mvc-2-rc-2-on-visual-studio.aspx">Uninstall the MVC 2.0 RC</a> (or RC 1) bits that ship with the RC if you&#8217;ve already installed Visual Studio 2010 (and you probably have if you are reading this blob post &#8211; but refer to Phil Haack&#8217;s post for full details)</p>
<p>2. <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7aba081a-19b9-44c4-a247-3882c8f749e3&amp;displaylang=en">Download the latest MVC 2.0 <strong>RC 2</strong> bits</a> and install them into Visual Studio 2010</p>
<p><a href="http://codingoutloud.files.wordpress.com/2010/03/asp-net-mvc-rc-installer.png"><img class="alignnone size-thumbnail wp-image-603" title="asp.net-mvc-rc-installer" src="http://codingoutloud.files.wordpress.com/2010/03/asp-net-mvc-rc-installer.png?w=150" alt="" /></a></p>
<p>3. <a href="http://weblogs.asp.net/leftslipper/archive/2009/11/23/migrating-asp-net-mvc-1-0-applications-to-asp-net-mvc-2-beta-updated.aspx">Download the work-in-progress MVC converter tool</a> and run it on your project</p>
<p><a href="http://codingoutloud.files.wordpress.com/2010/03/asp-net-mvc-solution-converter.png"><img class="alignnone size-thumbnail wp-image-604" title="asp.net mvc-solution-converter" src="http://codingoutloud.files.wordpress.com/2010/03/asp-net-mvc-solution-converter.png?w=150" alt="" /></a></p>
<p>4. Open your project in Visual Studio 2010 and it will now be able to complete the conversion</p>
<p><a href="http://codingoutloud.files.wordpress.com/2010/03/visual-studio-2010-rc-conversion-wizard.png"><img class="alignnone size-thumbnail wp-image-605" title="visual-studio-2010-rc-conversion-wizard" src="http://codingoutloud.files.wordpress.com/2010/03/visual-studio-2010-rc-conversion-wizard.png?w=150" alt="" /></a></p>
<p>One step in the conversion to Visual Studio 2010 will also ask you if you wish to convert to .NET 4.0:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2010/03/offer-to-upgrade-asp-net-mvc-to-net-framework-4-0.png"><img class="alignnone size-medium wp-image-607" title="offer-to-upgrade-asp.net-mvc-to-.net-framework-4.0" src="http://codingoutloud.files.wordpress.com/2010/03/offer-to-upgrade-asp-net-mvc-to-net-framework-4-0.png?w=300" alt="" /></a></p>
<p>Since I wish to deploy this site back to a host with .NET 3.5 SP1, I chose <strong>No</strong>. I am willing to live with deploying the ASP.NET MVC RC 2 bits, but not so with .NET 4.0 as I don&#8217;t have control over that (I deploy onto a shared server).</p>
<p>Presumably this will all be integrated and seamless in the final release of Visual Studio. But it worked for me&#8230;</p>
<br />Filed under: <a href='http://blog.codingoutloud.com/category/programming/'>Programming</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/602/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/602/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/602/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/602/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/602/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=602&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2010/03/02/asp-net-mvc-1-0-visual-studio-2008-project-will-not-open-in-visual-studio-2010-rc-or-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2010/03/asp-net-mvc-rc-installer.png?w=150" medium="image">
			<media:title type="html">asp.net-mvc-rc-installer</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2010/03/asp-net-mvc-solution-converter.png?w=150" medium="image">
			<media:title type="html">asp.net mvc-solution-converter</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2010/03/visual-studio-2010-rc-conversion-wizard.png?w=150" medium="image">
			<media:title type="html">visual-studio-2010-rc-conversion-wizard</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2010/03/offer-to-upgrade-asp-net-mvc-to-net-framework-4-0.png?w=300" medium="image">
			<media:title type="html">offer-to-upgrade-asp.net-mvc-to-.net-framework-4.0</media:title>
		</media:content>
	</item>
		<item>
		<title>Notes from Curt Devlin on Identity, Claims, and Azure Geneva from 4th Boston Azure Meeting Feb 2010</title>
		<link>http://blog.codingoutloud.com/2010/02/25/notes-from-curt-devlin-on-identity-claims-and-azure-geneva-from-4th-boston-azure-meeting-feb-2010/</link>
		<comments>http://blog.codingoutloud.com/2010/02/25/notes-from-curt-devlin-on-identity-claims-and-azure-geneva-from-4th-boston-azure-meeting-feb-2010/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 04:11:39 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Boston Azure User Group]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=582</guid>
		<description><![CDATA[Curt Devlin keynotes 4th Boston Azure User Group meeting
Identity, Claims, Geneva, and Trust in the Cloud
This was Boston Azure meeting #4, Feb 25, 2010
(Curt&#8217;s slide deck will be made is now available (PPT 2003 format))
Some notes from Curt&#8217;s talk:

Azure devs need to care about claims-based-identity and federated identity
Geneva is Microsoft&#8217;s solution in this space
Perfect storm of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=582&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<h1>Curt Devlin keynotes 4th Boston Azure User Group meeting</h1>
<h2>Identity, Claims, Geneva, and Trust in the Cloud</h2>
<h2>This was Boston Azure meeting #4, Feb 25, 2010</h2>
<p>(Curt&#8217;s slide deck <del datetime="2010-03-08T23:58:53+00:00">will be made</del> <strong><a href="http://codingoutloud.files.wordpress.com/2010/03/azureandgeneva-curtdevlin-bostonazure-feb2010.ppt">is now available (PPT 2003 format)</a></strong>)</p>
<p>Some notes from Curt&#8217;s talk:</p>
<ul>
<li>Azure devs need to care about claims-based-identity and federated identity</li>
<li>Geneva is Microsoft&#8217;s solution in this space</li>
<li>Perfect storm of paradigm shifts</li>
<li>Caution: Geneva is not a panacea for &#8220;Identity in the Cloud&#8221;</li>
</ul>
<blockquote><p><em><strong>&#8220;The most important thing Microsoft has done in identity since they came out with ActiveDirectory&#8221; &#8211; and think about how much we rely on AD for enterprise-class apps &#8211; &#8220;it&#8217;s like air&#8221;</strong></em></p></blockquote>
<p>First two lines of every program (with nod to Kim Cameron):</p>
<ol>
<li>Who are you?</li>
<li>What are you allowed to do?</li>
</ol>
<ul>
<li>The answer to the second generally depends on the answer to the first. &#8220;Identity&#8221; is an input.</li>
</ul>
<p>Big architectural problem: the &#8216;net was built w/o any way of knowing who you are connecting to (http has no identity)</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Role-Based_Access_Control">RBAC</a> (role-based access control) is not as flexible or powerful as claims</li>
<li>Any statement that can be validated can be a claim</li>
</ul>
<p>Microsoft&#8217;s Federated Identity Group very focused on standards. To be serious also about Azure, you need to pay deep attention to the key standards.</p>
<blockquote><p><strong><em>Azure is only cloud solution REALLY solving the SSO problem in the cloud &#8211; and into your data center. Identity must flow&#8230;</em></strong></p></blockquote>
<p>Geneva Technology stack:</p>
<ul>
<li>Microsoft Federation Gateway (&#8220;ADS 2.0 in the sky&#8221;)</li>
<li>Windows Identity Foundation (some .NET namespaces)</li>
<li>Active Directory Federation Services 2.0</li>
<li>Windows CardSpace 2.0</li>
</ul>
<p>Curt will focus for a while in his talk on Windows Identity Foundation&#8230;</p>
<p>Consider three parties &#8211; Security Token Service, Your App, End User</p>
<ol>
<li>Secure Token Service &lt;=&gt; Your App &#8211; Initial handshake uses WS-Federation (metadata, X-509 cert)</li>
<li>End User &lt;=&gt; Your App &#8211; claims via WS-Policy (which Security Token Service(s) I trust)</li>
<li>End User &lt;=&gt; Security Token Service &#8211; verify policy</li>
<li>End User &lt;=&gt; Security Token Service &#8211; WS-Trust</li>
<li>End User &lt;=&gt; Your App &#8211; lots of interactions &#8211; signed tokens, claims</li>
</ol>
<p>ADF 2.0 &#8211; same programming model across web and desktop</p>
<p>RP = relying party &#8211; someone that consumes tokens</p>
<p><a href="http://www.pingidentity.com/">PingIdentity.com</a></p>
<p><a href="http://openid.net/what/">OpenID</a> cannot help with Man-in-the-middle attacks</p>
<p>&#8220;Shred the token&#8221; is lingo meaning to decrypt a token.</p>
<p>Coded example showing implementation of Passive Federation.</p>
<ul>
<li>Showed the 8 (!) prerequisites</li>
<li>Create full-trust app (Since runtime not fully baked in Azure yet &#8211; and certainly not yet in GAC)</li>
<li>Add a reference to <strong>Microsoft.IdentityModel</strong> (which is a stronger programming model than older System.IdentityModel)</li>
<li>using Microsoft.IdentityModel.Claims;</li>
<li>using System.Threading;</li>
<li>Then write like 5 lines of code&#8230;</li>
<li>Subclasses from <a href="http://msdn.microsoft.com/en-us/library/system.security.principal.iidentity.aspx">IIdentity</a>, <a href="IClaimsIdentity">IClaimsIdentity</a>, <a href="http://msdn.microsoft.com/en-us/library/microsoft.identitymodel.claims.iclaimsprincipal.aspx">IClaimsPrincipal</a> (same ones used in other .NET apps)</li>
<li>WIF ASP.NET Processing Pipeline does a lot of behind-the-scenes work for us</li>
<li>IsInRole method is key</li>
<li>Then in the ASP.NET app, there is some 10 lines of key code for X-509 cert &#8211; which contains the URL (or domain, really) of the web site that the cert applies to &#8211; a problem with &#8220;localhost&#8221; and &#8220;stage.foo.com&#8221; etc. due to mismatch &#8211; this goes in Global.asax &#8211; plus several other blocks of code&#8230;</li>
</ul>
<p>Now for the STS (which you don&#8217;t need if you have ADFS 2.0)</p>
<ul>
<li>There is a Token Service for ASP.NET visual studio template with Geneva install</li>
<li>Many coding steps here (see slides)</li>
<li>Use <strong>FedUtil</strong> (which comes with Geneva and VS 2008, VS 2010) to create a trust between your application and your STS</li>
<li>There is a lab to create your own STS</li>
</ul>
<blockquote><p><strong><em>Claims-based systems externalized the work of AuthZ, AuthN to your STS &#8211; not stuck in your code.</em></strong></p></blockquote>
<p>Geneva supports delegation &#8211; embedding one token within another&#8230;</p>
<p>(21 people at the meeting)</p>
<br />Filed under: <a href='http://blog.codingoutloud.com/category/cloud-computing/azure-cloud-computing/'>Azure</a>, <a href='http://blog.codingoutloud.com/category/cloud-computing/azure-cloud-computing/boston-azure-user-group/'>Boston Azure User Group</a>, <a href='http://blog.codingoutloud.com/category/cloud-computing/'>Cloud Computing</a>, <a href='http://blog.codingoutloud.com/category/programming/'>Programming</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/582/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=582&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2010/02/25/notes-from-curt-devlin-on-identity-claims-and-azure-geneva-from-4th-boston-azure-meeting-feb-2010/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Curt Devlin to Speak about Identity in the Cloud at Boston Azure Meeting</title>
		<link>http://blog.codingoutloud.com/2010/02/21/curt-devlin-to-speak-about-identity-in-the-cloud-at-boston-azure-meeting/</link>
		<comments>http://blog.codingoutloud.com/2010/02/21/curt-devlin-to-speak-about-identity-in-the-cloud-at-boston-azure-meeting/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 13:31:40 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Boston Azure User Group]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=550</guid>
		<description><![CDATA[Boston Azure meeting to feature Microsoft&#8217;s Curt Devlin on Identity in the Cloud
Thursday February 25, 2010 at NERD in Cambridge, MA
The following is an update to the agenda for the upcoming Boston Azure User Group meeting this coming Thursday.

To RSVP for the meeting (helps you breeze through security and helps us have enough pizza on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=550&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<h1>Boston Azure meeting to feature Microsoft&#8217;s Curt Devlin on Identity in the Cloud</h1>
<h2>Thursday February 25, 2010 at NERD in Cambridge, MA</h2>
<p><strong><em>The following is an update to the agenda for the upcoming Boston Azure User Group meeting this coming Thursday.</em></strong></p>
<p style="text-align:left;padding-left:30px;"><em><a href="http://bostonazure.org/"><em><img title="Boston Azure user group" src="http://bostonazure.org/Content/bostonazure-logo.png" alt="logo for BostonAzure.org" /></em></a></em></p>
<p style="text-align:left;padding-left:30px;"><em>To <strong>RSVP</strong> for the meeting (helps you breeze through security and helps us have enough pizza on hand), for <strong>directions</strong>, and <strong>more details about the group</strong>, please check out <a href="http://BostonAzure.org/"><strong>http://BostonAzure.org</strong></a>.</em></p>
<p style="text-align:left;padding-left:30px;"><em>To get on the Boston Azure <strong>email list</strong>, please visit <a href="http://bostonazure.org/Announcements/Subscribe"><strong>http://bostonazure.org/Announcements/Subscribe</strong></a>.</em></p>
<h2>[6:00-6:30 PM] Boston Azure Theater</h2>
<p>The meeting activities begin at 6:00 PM with Boston Azure Theater, which is an informal viewing of some Azure-related video. This month will feature the first half of<br />
<a href="http://microsoftpdc.com/Speakers/Matthew-Kerner">Matthew Kerner</a>&#8217;s talk on <a title="Video of Matthew Kerner's talk on Azure Management APIs" href="http://microsoftpdc.com/Sessions/SVC15">Windows Azure Monitoring, Logging, and Management APIs</a> from the November 2009 <a href="http://microsoftpdc.com">Microsoft PDC conference</a>.</p>
<h2>[6:30-7:00 PM] Upcoming Boston Azure Events and Firestarter</h2>
<p>Around 6:30, Bill Wilder (that&#8217;s me) will first show off an interesting CodeProject contest, then will lead a discussion about the future of the Boston Azure user group and the upcoming All-Day-Saturday-May-8th event.</p>
<p>Curt Devlin will take the stage at 7:00 PM.</p>
<p>Before the meeting, if you want a little more context, you may wish to read Kim Cameron&#8217;s essay <a href="http://www.identityblog.com/?p=352">The Laws of Identity</a>, which is an insightful analysis of challenges around Identity.</p>
<h2>[7:00-8:15] Featured speaker: <a href="http://blogs.msdn.com/curtd/">Curt Devlin</a> of Microsoft</h2>
<p><img title="Curt Devlin" src="http://bostonazure.org/blobs/curt_devlin_microsoft_thumb.jpg" alt="Photo of Curt Devlin, Architect at Microsoft" /></p>
<h3>Abstract</h3>
<p>The Azure platform presents new challenges for identity management. As developers and architects, we will still have to answer the same two perennial questions: 1) Who are you? 2) And what are you allowed to do? But the traditional on-premise approaches to authentication, authorization and identity lifecycle control are not adequate to meet these new challenges. The Geneva suite of technologies for claims-based identity management can be help because cloud computing can be thought of as a &#8220;special case&#8221; of federation, with many similar requirements. Together these two paradigms appear to be converging to create the perfect storm of paradigm shifts. However, even WIF, ADFS 2.0 and CardSpace 2.0, will only take us part way to a complete solution in the near term. This session will provide a simple recipe for claims-based identity management in Azure using Geneva, discuss some of the most important reasons why this is necessary, and finally some of the shortcomings we will still have to contend with on the road ahead. The aim is to educate, motivate, and caution.</p>
<h3>About Curt Devlin</h3>
<p>Curt Devlin is currently an architect in Microsoft DPE (Developer &amp; Platform Evangelism) focusing on distributed solutions across many industries and customer segments. Curt is a Microsoft veteran of many technology wars, with more than 20 years of experience developing solutions on the Windows and .NET. platforms. He is also a dyed-in-the-wool New Englander with avid interests in sailing, skiing and nearly everything else.</p>
<p>Curt blogs as <a href="http://blogs.msdn.com/curtd/">the philosophical architect</a>, plus you can check out his MSDN articles <a href="http://msdn.microsoft.com/en-us/library/bb417064.aspx">Enterprise Authorization Strategy</a> and <a href="http://msdn.microsoft.com/en-us/library/cc261632.aspx">SaaS Capacity Planning: Transaction Cost Analysis Revisited</a>.</p>
<p>Curt&#8217;s blog post announcing his participation in this meeting: <a href="http://blogs.msdn.com/curtd/archive/2010/02/23/an-evening-with-identity-in-the-clouds-and-the-boston-azure-user-group.aspx">http://blogs.msdn.com/curtd/archive/2010/02/23/an-evening-with-identity-in-the-clouds-and-the-boston-azure-user-group.aspx</a></p>
<br />Filed under: <a href='http://blog.codingoutloud.com/category/cloud-computing/azure-cloud-computing/boston-azure-user-group/'>Boston Azure User Group</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/550/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/550/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/550/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/550/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/550/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/550/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/550/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/550/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/550/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/550/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=550&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2010/02/21/curt-devlin-to-speak-about-identity-in-the-cloud-at-boston-azure-meeting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>

		<media:content url="http://bostonazure.org/Content/bostonazure-logo.png" medium="image">
			<media:title type="html">Boston Azure user group</media:title>
		</media:content>

		<media:content url="http://bostonazure.org/blobs/curt_devlin_microsoft_thumb.jpg" medium="image">
			<media:title type="html">Curt Devlin</media:title>
		</media:content>
	</item>
		<item>
		<title>Steve Krug on Rocket Surgery Made Easy from Dec 2010 BostonCHI Meeting</title>
		<link>http://blog.codingoutloud.com/2010/02/07/steve-krug-rocket-surgery-made-easy-bostonchi/</link>
		<comments>http://blog.codingoutloud.com/2010/02/07/steve-krug-rocket-surgery-made-easy-bostonchi/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 03:17:20 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Trip Report]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=143</guid>
		<description><![CDATA[Rocket Surgery Made Easy
Steve Krug speaks at BostonCHI
Notes from 08-Dec-2009 meeting

Steve&#8217;s new book - Rocket Surgery Made Easy - due in bookstores in a couple of weeks – material from this talk will be in his book…
Passed a copy of his book around through the audience for quick peek
150 or so people in attendance

Writing process

writing process: collect [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=143&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<h1>Rocket Surgery Made Easy</h1>
<h2><a href="http://www.sensible.com/about.html">Steve Krug</a> speaks at <a href="http://bostonchi.org">BostonCHI</a></h2>
<h3>Notes from 08-Dec-2009 meeting</h3>
<ul>
<li>Steve&#8217;s new book - <a href="http://www.amazon.com/Rocket-Surgery-Made-Easy-Yourself/dp/0321657292">Rocket Surgery Made Easy</a> - due in bookstores in a couple of weeks – material from this talk will be in his book…</li>
<li>Passed a copy of his book around through the audience for quick peek</li>
<li>150 or so people in attendance</li>
</ul>
<p>Writing process</p>
<ol>
<li>writing process: collect years of notes</li>
<li>need deadlines to force you to write (and finish)</li>
<li>collect relevant articles for each chapter and post them all on a wall</li>
<li>once you’ve begun to panic, start throwing things overboard</li>
<li>Outline, write, iterate</li>
<li>get help</li>
<li>throw things overboard (save for next book?)</li>
<li>FAQ at the end of every chapter – good idea</li>
<li>Doing usability (vs How to Think About Usability)</li>
</ol>
<p>Doing Usability</p>
<ol>
<li><strong>A morning a month – that’s all we ask</strong></li>
<li>Run tests – with whole team – at our site – scheduled monthly and well ahead of time – and debrief immediately after over lunch
<ol>
<li>maybe do right before iteration planning</li>
<li>company-sponsored lunch</li>
</ol>
</li>
<li><strong>Start earlier than you think makes sense</strong></li>
<li>The sooner you get information, the better use you can make of that information</li>
<li>Don’t wait until the site is “finished” – test it as soon as it is testable</li>
<li>Don’t worry that “you already know about the problems”</li>
<li>If you have nothing built, test other people’s sites</li>
<li><em>Are you working on the site? –&gt; Yes ==&gt; test now!</em></li>
<li><strong>Recruit loosely and grade on a curve</strong></li>
<li>Beware implied domain knowledge</li>
<li>Some testing can be done w/o your target audience</li>
<li>Usability testers say many things that are similar to what therapists say &#8211; “what did you expect to happen when you did that?”</li>
<li>Keep yourself out of it! It is about the user and what the user being tested is thinking.</li>
<li><strong>Make it a spectator sport</strong></li>
<li>Get everyone to come and watch the test – frequently the observers suddenly just “get it” that they are not their users</li>
<li>Have high quality snacks. Keep the sessions short and compact. Do them on site. <em>Make it easy for everyone to join in, hard to have a good reason to skip it.</em></li>
<li>Record sessions with Camtasia ($300). Get a good USB desktop microphone ($25). Don’t record user’s face (“useless and distracting”). Use a screen sharing service (like GotoMeeting, $40/month?) to control the UI. High quality audio is important, and should be channeled to the observation room via GotoMeeting or Skype.</li>
<li><strong>Focus ruthlessly on a small number of the most important problems</strong></li>
<li>Serious because <em>everyone</em> will come across them, or serious because for those who do encounter them will be <em>seriously impeded</em>.</li>
<li>Don’t feel you need to come up with the “perfect” fix</li>
<li>Ask everyone in the observation room to write down the <em>three most important issues </em>they observed. These are raised at the debriefing session over lunch.</li>
<li><strong>When fixing problems, always do the least you can do &#8482;</strong></li>
<li>Prioritize the list, then work your way down the list until you run out of time/resources</li>
<li>Sometimes a tweak is better than a redesign – don’t get <em>suckered</em> into a redesign – <em>the perfect is the enemy of the good!</em></li>
<li>Focus on <em>the smallest change we think we can make</em> to address <em>the problem we observed</em></li>
<li><strong>Q&amp;A</strong></li>
<li>Remote Testing?</li>
<li>Remote testing is handy – saves travel time, recruiting pool grows, … do over skype or GotoMeeting.</li>
<li><strong>How to get it off the ground?</strong> Try a group usability test of competitor’s site – everyone can get behind that. Do one and hope people get enthused about it. Make the cost of swinging by to watch the testing really small.</li>
<li>Be very cautious about asking users how to fix the problems they’ve encountered. “Users are not designers.” “Hopefully you know a lot more than they do about design.” Listen to them, but be careful that they’re ideas are not well thought out. The purpose of testing is to “inform your design intelligence”.</li>
</ol>
<br />Filed under: <a href='http://blog.codingoutloud.com/category/events/trip-report/'>Trip Report</a>, <a href='http://blog.codingoutloud.com/category/software-engineering/ux/'>UX</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=143&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2010/02/07/steve-krug-rocket-surgery-made-easy-bostonchi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>January 2010 Boston Azure User Group Meeting Notes</title>
		<link>http://blog.codingoutloud.com/2010/01/29/january-2010-boston-azure-user-group-meeting-notes/</link>
		<comments>http://blog.codingoutloud.com/2010/01/29/january-2010-boston-azure-user-group-meeting-notes/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 22:50:27 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Boston Azure User Group]]></category>

		<guid isPermaLink="false">http://codingoutloud.wordpress.com/2010/01/29/january-2010-boston-azure-user-group-meeting-notes/</guid>
		<description><![CDATA[This was the third meeting of the Boston Azure User Group! (You can get on the group mailing list here.)
We watched a clip from the first day of PDC where Ray Ozzie and others talk Azure in the keynote …
Discussed idea of an Azure Firestarter event – possibly for May 8, 2010 – and this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=493&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>This was the third meeting of the <a href="http://bostonazure.org/">Boston Azure</a> User Group! (You can get on the group mailing list <a href="http://bostonazure.org/Announcements/Subscribe">here</a>.)</p>
<p>We watched a clip from the first day of PDC where <a href="http://microsoftpdc.com/Sessions/KEY01">Ray Ozzie and others talk Azure in the keynote</a> …</p>
<p>Discussed idea of an Azure Firestarter event – possibly for May 8, 2010 – and this seems to flow nicely from our scheduled April meeting where Jason Haley is scheduled to talk about getting started programming in Azure, such as with the Azure SDK.</p>
<p><a href="http://www.benday.com">Ben Day</a> spoke on Windows Azure storage. Some quick notes / points from his talk:</p>
<ul>
<li>Relational databases have a schema – all rows in a table have same columns, structure is defined before pouring in any data, data is not repeated (third-normal form breaks out data to appear only once – no redundancy)</li>
<li>… database will manage transactions across tables</li>
<li>… though mixed with replication can provide performance challenges</li>
<li>This changes for Azure Table Storage!</li>
<li>… though Azure Table Storage can scale way better – horizontally (“out”) whereas traditional SQL RDBMs tend to scale best vertically (“up”) – to larger boxes &#8211; which is more limiting and tends to be more expensive.</li>
<li>Do we need to rethink what needs to be transactional? Can we use a simplified transactional model – such as just within one table – or one <strong>instance</strong> of one table…</li>
<li>… compensating transactions are another approach</li>
<li>Securely storing data
<ul>
<li>Encrypt (compute is cheap)</li>
<li>If you encrypt a key, it won’t work for indexing</li>
<li>Search is harder if you encrypt</li>
</ul>
</li>
<li>String columns have a 64KB size limit for Table Storage – so reference larger objects in a Blob</li>
<li>Unit testability
<ul>
<li>Abstract away you r persistent store, such as with Repository pattern – so you can unit test</li>
<li>Encapsulate business logic, such as with Service Layer and Domain Model patterns</li>
<li>Extract logic from UI using MVP (Model View Presenter)</li>
<li>Use Mock objects</li>
</ul>
</li>
<li>Ben will come back to finish the story!</li>
</ul>
<p>Around 23 attended.</p>
<br />Filed under: <a href='http://blog.codingoutloud.com/category/cloud-computing/azure-cloud-computing/boston-azure-user-group/'>Boston Azure User Group</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/493/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/493/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/493/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/493/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/493/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=493&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2010/01/29/january-2010-boston-azure-user-group-meeting-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Since Software is a Business, Architects need to be More than Technologists</title>
		<link>http://blog.codingoutloud.com/2010/01/27/since-software-is-a-business-architects-need-to-be-more-than-technologists/</link>
		<comments>http://blog.codingoutloud.com/2010/01/27/since-software-is-a-business-architects-need-to-be-more-than-technologists/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 23:07:35 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Bill gave a talk]]></category>
		<category><![CDATA[Soft Skills]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=483</guid>
		<description><![CDATA[Gave talk at Architect Factory, Part Deux today titled Since Software is a Business, Architects need to be More than Technologists. The slide deck can be downloaded here. The most prominent concept/slide follows:
The overall event was excellent. It was organized primarily by Bryan Tuttle of CodeRight, a Consulting/Training company. Many thanks to Bryan for a job [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=483&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Gave talk at <a title="Architect Factory, Part Deux - 27-Jan-2010" href="http://blogs.msdn.com/cbowen/archive/2010/01/25/schedule-for-wednesday-s-1-27-10-architect-factory.aspx">Architect Factory, Part Deux</a> today titled <em><strong>Since Software is a Business, Architects need to be More than Technologists</strong></em>. The slide deck can be downloaded <a href="http://codingoutloud.files.wordpress.com/2010/01/architects-more-than-technologists-27-jan-2010.ppt">here</a>. The most prominent concept/slide follows:</p>
<div id="attachment_484" class="wp-caption alignleft" style="width: 310px"><a href="http://codingoutloud.files.wordpress.com/2010/01/tech-business-communication.png"><img class="size-medium wp-image-484" title="tech-business-communication" src="http://codingoutloud.files.wordpress.com/2010/01/tech-business-communication.png?w=300&#038;h=225" alt="Technology Skills" width="300" height="225" /></a><p class="wp-caption-text">Technology + Communications + Business-Awareness = Influential Architect </p></div>
<p>The overall event was excellent. It was organized primarily by Bryan Tuttle of <a href="http://coderight.com/">CodeRight</a>, a Consulting/Training company. Many thanks to Bryan for a job well done!</p>
<br />Posted in Bill gave a talk, Soft Skills  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/483/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/483/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/483/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/483/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/483/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=483&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2010/01/27/since-software-is-a-business-architects-need-to-be-more-than-technologists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2010/01/tech-business-communication.png?w=300" medium="image">
			<media:title type="html">tech-business-communication</media:title>
		</media:content>
	</item>
		<item>
		<title>December 2010 Boston Azure User Group Meeting Notes</title>
		<link>http://blog.codingoutloud.com/2010/01/27/december-2010-boston-azure-user-group-meeting-notes/</link>
		<comments>http://blog.codingoutloud.com/2010/01/27/december-2010-boston-azure-user-group-meeting-notes/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 22:40:04 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Boston Azure User Group]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=482</guid>
		<description><![CDATA[Second meeting of Boston Azure User Group
Guest speakers were Michael Stiefel and Mark Eisenberg
Meeting was held December 3, 2009 at the Microsoft NERD
We opened with Boston Azure Theater, kicking off a few minutes after 6:00.  For around 45 minutes we watched a video of Microsoft Director Manuvir Das&#8217; PDC talk A Lap Around the Windows [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=482&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<h1>Second meeting of Boston Azure User Group</h1>
<h2>Guest speakers were Michael Stiefel and Mark Eisenberg</h2>
<h3>Meeting was held December 3, 2009 at the Microsoft NERD</h3>
<p>We opened with Boston Azure Theater, kicking off a few minutes after 6:00.  For around 45 minutes we watched a video of Microsoft Director Manuvir Das&#8217; PDC talk <a href="http://microsoftpdc.com/Sessions/P09-03">A Lap Around the Windows Azure Platform</a>.</p>
<p>From there, Microsoft&#8217;s Mark Eisenberg walked us through a summary of key Windows Azure announcements made at (or right before) the <a href="http://microsoftpdc.com">Microsoft PDC</a> in November. The deck Mark used is available <a href="http://codingoutloud.files.wordpress.com/2010/01/baug_pdchighlights.pptx">BAUG_PDCHighlights</a>. There was a lot of interest in the announcement details and in the pricing model.</p>
<p>Our keynote speaker, <a href="http://reliablesoftware.com/bio.html">Michael Stiefel</a>, followed with a detailed look into the project &#8220;<a href="http://www.microsoft.com/windowsazure/dallas/">Dallas</a>&#8221; announcement, showcasing the Dallas &#8220;Data as a Service&#8221; platform, working through sample apps, a custom mashup &#8211; with code, demonstrating the straight-forward programming model (ATOM feeds), and showing use of the data directly within Excel. Michael wrapped up by reviewing the business model &#8211; and discussing the interesting possibilities (publishers can publish &#8211; and others can consume &#8211; data <em>so much more easily</em> than today since Microsoft will have eliminated the &#8220;contract friction&#8221; we&#8217;d have if every consumer had to strike a deal with every publisher).</p>
<br />Posted in Boston Azure User Group, Programming, XML  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/482/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/482/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/482/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/482/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/482/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=482&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2010/01/27/december-2010-boston-azure-user-group-meeting-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Silverlight exceeds 50% penetration</title>
		<link>http://blog.codingoutloud.com/2010/01/14/silverlight-exceeds-50-percent-penetration/</link>
		<comments>http://blog.codingoutloud.com/2010/01/14/silverlight-exceeds-50-percent-penetration/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 01:55:57 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://codingoutloud.wordpress.com/?p=478</guid>
		<description><![CDATA[According to RIAStats, a version of Silverlight is now detected on more than half of the browsers sampled! This is a telling milestone as installations of Silverlight continue to grow &#8211; drawing inexorably closer to that of Adobe Flash which currently enjoys installations on around 97% of browsers.
If you look at the graphic, and you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=478&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>According to <a href="http://riastats.com">RIAStats</a>, a version of Silverlight is now detected on more than half of the browsers sampled! This is a telling milestone as installations of Silverlight continue to grow &#8211; drawing inexorably closer to that of Adobe Flash which currently enjoys installations on around 97% of browsers.</p>
<p>If you look at the graphic, and you consider the “not detected” section, it reads 49.99%, which means that the sum of those detected is better than half.</p>
<p><a href="http://codingoutloud.files.wordpress.com/2010/01/silverlightexceeds50percent.jpg"><img style="display:inline;border:0;" title="silverlight-exceeds-50-percent" src="http://codingoutloud.files.wordpress.com/2010/01/silverlightexceeds50percent_thumb.jpg?w=244&#038;h=184" border="0" alt="silverlight-exceeds-50-percent" width="244" height="184" /></a></p>
<p>At PDC 2009 in November, Scott Guthrie announced that <a href="http://fragiledevelopment.wordpress.com/2009/12/03/silverlight-market-penetration/">Silverlight penetration was up to around 45%, up from around 30% in the summer</a>. These RIAStats numbers feel in line with that.</p>
<p>Of course, I know this doesn’t “prove” Silverlight is really on more than 50% of browsers, as RIAStats are not a perfect reflection of the web as a whole, but it seems an interesting milestone nonetheless.</p>
<p>Silverlight has been in the wild for 863 days: Silverlight was released for real (RTW, or “released to web”) on 05-Sep-2007, followed thirteen months later by Silverlight 2 RTW 14-Oct-2008, then less than nine months later we saw Silverlight 3 on 09-July-2009. Silverlight 4 is in beta – maybe Microsoft will announce its release at MIX10 in mid-March? If they do, that would be on a similar release rhythm as from Silverlight 2 to Silverlight 3.</p>
<p>Silverlight’s installed base will also get another boost from the <a href="http://www.nbcolympics.com/">2010 Winter Olympics</a> next month as well. (And Silverlight 2 shipped shortly after the 2008 Summer Olympics.)</p>
<p>It is interesting to note that another tracking site – <a title="statowl's Silverlight plug-in stats" href="http://www.statowl.com/silverlight.php">StatOwl.com</a> – not only shows the penetration lower – and doesn’t agree on <em>any</em> of the numbers – but also doesn’t even agree on relative installed base across versions [EDIT: after Comment from Travis Collins, added in Silverlight 4 = 0.04 for RIAStats]:</p>
<table border="1" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td width="141" valign="top"> </td>
<td width="125" valign="top">RIAStats</td>
<td width="133" valign="top">StatOwl</td>
</tr>
<tr>
<td width="141" valign="top">Silverlight 1</td>
<td width="125" valign="top">0.62</td>
<td width="133" valign="top">1.39</td>
</tr>
<tr>
<td width="141" valign="top">Silverlight 2</td>
<td width="125" valign="top">1.91</td>
<td width="133" valign="top">9.73</td>
</tr>
<tr>
<td width="141" valign="top">Silverlight 3</td>
<td width="125" valign="top">47.44</td>
<td width="133" valign="top">23.85</td>
</tr>
<tr>
<td width="141" valign="top">Silverlight 4 (beta)</td>
<td width="125" valign="top">0.04 (&lt;1 pixel)</td>
<td width="133" valign="top"><em>not shown, or 0%</em></td>
</tr>
<tr>
<td width="141" valign="top">Undetected (reported)</td>
<td width="125" valign="top"><strong>49.99</strong></td>
<td width="133" valign="top">65.03%</td>
</tr>
</tbody>
</table>
<p> I’m not sure why they don’t agree – perhaps differences in sample sizes, sampling methodology, or due to different audiences being sampled.</p>
<p>Also, if you check the math yourself, you&#8217;ll see the values shown don’t tie down perfectly for RIAStats (though they do for StatOwl); if you add up the individual Silverlight versions along with the Undetected, you won&#8217;t get exactly 100%. Some sort of rounding errors I assume. [EDIT: See explanation in Comment from Travis Collins, RIAStats creator.] But I also assume that the <strong>Undetected = 49.99%</strong> is most likely right (at least not wrong due to a rounding error, since it is harder to round wrong there).</p>
<p>EDIT 01-Feb-2010: Found an interesting, relevant post on <a href="http://www.uxpassion.com/2009/06/cool-facts-about-silverlight-penetration-market-share/">Cool facts about Silverlight penetration / mindshare</a> from <a href="http://uxpassion.com/">UXPassion.com</a>.</p>
<p><iframe src='http://digg.com/api/diggthis.php?u=http%3A%2F%2Fdigg.com%2Fmicrosoft%2FSilverlight_exceeds_50_penetration' height='82' width='55' frameborder='0' scrolling='no' style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'></iframe></p>
<br />Posted in Programming  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/478/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/478/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/478/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/478/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/478/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/478/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/478/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/478/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/478/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/478/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=478&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2010/01/14/silverlight-exceeds-50-percent-penetration/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2010/01/silverlightexceeds50percent_thumb.jpg" medium="image">
			<media:title type="html">silverlight-exceeds-50-percent</media:title>
		</media:content>
	</item>
		<item>
		<title>NEJUG ~ JSR-299 &#8211; 08-Oct-2009</title>
		<link>http://blog.codingoutloud.com/2009/12/01/java-jsr-299-at-nejug-meeting-08-oct-2009/</link>
		<comments>http://blog.codingoutloud.com/2009/12/01/java-jsr-299-at-nejug-meeting-08-oct-2009/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 19:26:13 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Trip Report]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://codingoutloud.wordpress.com/?p=468</guid>
		<description><![CDATA[Very rough notes on JSR-299 by Gavin King from NEJUG Meeting of 08-Oct-2009
Profiles

Will enable deployment with subset of JEE feature set – so can leave out parts you don’t use – thinner footprint, less complexity?

Theme = Loose Coupling

decouple server and client via well-defined types and “qualifiers” (beyond Interfaces)
decouple lifecycle of collaborating components via

server-side lifecycle management [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=468&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Very rough notes on JSR-299 by Gavin King from <a href="http://www.nejug.org/events/show/104">NEJUG Meeting of 08-Oct-2009</a></p>
<p>Profiles</p>
<ol>
<li>Will enable deployment with subset of JEE feature set – so can leave out parts you don’t use – thinner footprint, less complexity?</li>
</ol>
<p>Theme = Loose Coupling</p>
<ol>
<li>decouple server and client via well-defined types and “qualifiers” (beyond Interfaces)</li>
<li>decouple lifecycle of collaborating components via
<ol>
<li>server-side lifecycle management by Container</li>
<li>allow stateful components to interact like services via message-passing</li>
</ol>
</li>
<li>decouple orthogonal concerns via Interceptors</li>
<li>decouple msg producer from consumer via Events</li>
</ol>
<p>Theme = Strong Typing</p>
<ol>
<li>eliminate lookup using string-based names
<ol>
<li>enables smarter auto-complete, more power in compiler type checking</li>
</ol>
</li>
</ol>
<p>What’s unique?</p>
<ol>
<li>implementations of a type may vary at deployment time – without need for central list of available implementations
<ol>
<li>no need to explicityl list beans (e.g., Spring) or use Java-based DSL (Guice)</li>
</ol>
</li>
</ol>
<p>What kinds of things can be injected and how?</p>
<ol>
<li>Most java classes</li>
<li>EJB session beans</li>
<li>Objects returned by producer methods</li>
<li>Java EE resources (e.g., JMS topics/queues)</li>
<li>Persistence contexts (JPE EntityManager)</li>
<li>Web service references</li>
<li>Remote EJB references</li>
<li>anything else can be supported through SPI (flexible extensibility via metamodel)</li>
<li>Can define business-sensible attributes to specify injection types (e.g., InformalGreeting extends Greeting class, then have an @Informal attribute)</li>
<li>Can use injected object in a JSF or JSP page – e.g., container will instantiate the right objects (construct as needed, etc.) and pass it is such as in: &lt;h:commandButton value=”Say Hello” action=”#{printer.greet}”/&gt;</li>
<li>Beans may need to be stateful – this is supported too – handled as lifecycle attributes such as @RequestScoped for per-request or</li>
</ol>
<p>Scopes and Contexts</p>
<ol>
<li>Extensible context model</li>
<li>Dependent scope, @Dependent</li>
<li>Built-in scopes
<ol>
<li>@ApplicationScoped, @RequestScoped, for servlet we have @SessionScoped [e.g., Login state object may store username in a member variable], for JSF requests @ConversationScoped</li>
</ol>
</li>
<li>Custom scopes – third party frameworks can support via SPI</li>
<li>KEY POINT: Client does NOT know anything about the lifecycle of the session-scoped object</li>
<li>Conversation context is scoped INSIDE OF (DOES IT NEED TO BE WITHIN, or is it just defined as more granular a SCOPE than) a session – can have more than one Concersation that don’t know about each other – supports multiple tabs, wizards, AJAX and other multi-step sub-tasks</li>
<li><strong>Better abstracts some concepts – a set of mappings can be defined such that a class can <em>loosely reference (my term)</em>, say, a value from another object (like the user’s first name, from the Login object), and the container will take care of all the heavy lifting and just insert that value – nicely separates lookup logic so your business logic code can stay cleaner and refer to (as in example above) their “first name”, not the Login object directly </strong></li>
</ol>
<p>Interceptors</p>
<ol>
<li>ANOTHER APPROACH FOR WHAT ASPECTS ARE USED FOR TODAY
<ol>
<li>Perceived to be more flexible, more generally useful (there are very few uses for Aspects now – nothing new in 5-10 years!)</li>
</ol>
</li>
<li>Should be decoupled from implementation via semantic annotations</li>
<li>Should be deployment-specific – e.g., can turn off my transaction support during testing</li>
<li>Ordering of interceptors matters – so do this centrally so you can manage/understand it – don’t bing interceptors directly to components</li>
</ol>
<p>Stereotypes</p>
<ol>
<li>Reuse patters – not just Interceptor bindings!</li>
<li>Capture roles of components using stereotypes</li>
<li>A Stereotype packages up:
<ol>
<li>a default scope</li>
<li>a set of interceptor bindings</li>
<li>the ability to specify that beans have names by defaults</li>
<li>(more)</li>
</ol>
</li>
<li>Uses @Stereotype annotation</li>
</ol>
<p>Events</p>
<ol>
<li>Can be injected – as in void Login(<strong>@Observes</strong> LoggedIn loggedin)…</li>
</ol>
<p>Proposed final draft of JSR-299: <a href="http://www.jcp.org/en/jsr/detail?id=299">http://www.jcp.org/en/jsr/detail?id=299</a></p>
<p>Seam Framework reference implementation: <a href="http://seamframework.org/WebBeans">http://seamframework.org/WebBeans</a></p>
<p>JBoss doc: <a href="http://docs.jboss.org/webbeans/reference/current/en-US/html/">http://docs.jboss.org/webbeans/reference/current/en-US/html/</a></p>
<p>Blog: <a href="http://in.relation.to/Bloggers/Everyone/Tag/Web+Beans">http://in.relation.to/Bloggers/Everyone/Tag/Web+Beans</a></p>
<p>&#8212;-</p>
<p>Value of more Type Safety in a world where Dynamic Languages are gaining traction</p>
<p>Debugging might be more challenging</p>
<p>Performance issues?</p>
<p>Complexity / tooling issues?</p>
<p>How is this different / better / worse than Spring?</p>
<br />Posted in Programming, Trip Report Tagged: Java <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/468/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/468/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/468/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/468/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/468/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/468/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/468/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/468/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/468/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/468/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=468&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/12/01/java-jsr-299-at-nejug-meeting-08-oct-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Cure for Phantom Mouse Clicks on Acer Netbook Laptop Tablet from Microsoft PDC</title>
		<link>http://blog.codingoutloud.com/2009/12/01/cure-for-phantom-mouse-clicks-on-pdc-acer-netbook-laptop-tablet/</link>
		<comments>http://blog.codingoutloud.com/2009/12/01/cure-for-phantom-mouse-clicks-on-pdc-acer-netbook-laptop-tablet/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 19:24:30 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Trip Report]]></category>
		<category><![CDATA[PDC]]></category>

		<guid isPermaLink="false">http://codingoutloud.wordpress.com/?p=462</guid>
		<description><![CDATA[If you attended the Microsoft PDC in 2009, you received what appeared to be an Acer Netbook, but in fact is technically an Acer Laptop (that&#8217;s what Acer support insists), though apparently is also a considered a Tablet - the Acer Aspire 1420P Convertible Tablet PC. But a Convertible Tablet at that&#8230; 
Talk about an identity crisis. Maybe [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=462&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>If you attended the <a href="http://microsoftpdc.com">Microsoft PDC</a> in 2009, you received what appeared to be an Acer <a href="http://en.wikipedia.org/wiki/Netbook">Netbook</a>, but in fact is technically an Acer Laptop (that&#8217;s what Acer support insists), though apparently is also a considered a <a href="http://microsoftpdc.com/tablet">Tablet</a> - the <em>Acer Aspire 1420P Convertible Tablet PC</em>. But a Convertible Tablet at that&#8230; </p>
<p>Talk about an identity crisis. Maybe we should just call it, more simply, the PDC Netabletible Convertilizer? </p>
<p>If yours has trouble with &#8220;phantom mouse clicks&#8221; &#8211; where you are typing away, and it seems that somehow the left mouse button was just clicked, but you <em>know</em> you didn&#8217;t click it &#8211; that can be fixed with the simple act of installing the <a href="http://www.synaptics.com/support/drivers">Synaptics driver</a> for this machine that, weirdly, will not ever show up in Windows Update.  But since this is a pretty useful update, consider doing it the old fashioned way. </p>
<p>Or at least it worked for me. Though belated, this blog post may save someone the challenge of finding the cure, which I thought more difficult than it oughta be. </p>
<p>The PDC Netabletible Convertilizer <a href="http://social.answers.microsoft.com/Forums/en-IE/w7hardware/thread/cfbf2ec1-0626-4690-8547-ed25fc9843d5">may not be the only one out there with this problem</a>.</p>
<p>As an aside, my PDC Netabletible Convertilizer also became more usable once I recalibrated the touch screen (type into search field in the Start menu &#8220;calibrate touch&#8221; for a link to the right part of Control Panel to make this happen&#8230;</p>
<br />Posted in Trip Report Tagged: PDC <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/462/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/462/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/462/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/462/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/462/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/462/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/462/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/462/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/462/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/462/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=462&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/12/01/cure-for-phantom-mouse-clicks-on-pdc-acer-netbook-laptop-tablet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>October 2009 Boston Azure User Group Meeting Notes</title>
		<link>http://blog.codingoutloud.com/2009/12/01/boston-azure-user-group-has-successful-first-meeting/</link>
		<comments>http://blog.codingoutloud.com/2009/12/01/boston-azure-user-group-has-successful-first-meeting/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 18:41:13 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Boston Azure User Group]]></category>

		<guid isPermaLink="false">http://codingoutloud.wordpress.com/?p=446</guid>
		<description><![CDATA[Meeting #1 of Boston Azure User Group!
Keynote speaker: Brian Lambert of Microsoft
Meeting was held Thursday October 22, 2009 at Microsoft NERD in Cambridge, MA
Mike Werner (Microsoft evangelist for Azure in the Northeast) introduced the user group at this innaugural meeting, plugged the upcoming Microsoft PDC, then introduced Bill Wilder, the guy who started the Boston Azure [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=446&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<h1>Meeting #1 of Boston Azure User Group!</h1>
<h2>Keynote speaker: Brian Lambert of Microsoft</h2>
<h3>Meeting was held Thursday October 22, 2009 at Microsoft NERD in Cambridge, MA</h3>
<p>Mike Werner (Microsoft evangelist for Azure in the Northeast) introduced the user group at this innaugural meeting, plugged the upcoming <a href="http://microsoftpdc.com">Microsoft PDC</a>, then introduced <a href="http://bostonazure.org/Home/About">Bill Wilder, the guy who started the Boston Azure User Group</a>.</p>
<p>Bill Wilder provided an overview of the group (<a href="http://codingoutloud.files.wordpress.com/2009/12/bostonazure-meeting-on-22-oct-2009.ppt">powerpoint slides</a>):</p>
<ul>
<li>All meetings will have Windows Azure focus</li>
<li>Any technology or business concept &#8211; cloud models, Microsoft dev technologies, tools, and so forth - is fair game, but must be presented with appropriate Azure slant: they need to be related back to Azure or else they are not appropriate for Boston Azure User Group meetings</li>
</ul>
<p>Brian Lambert spoke on how to build applications for Windows Azure.</p>
<h3>Bill&#8217;s raw notes from Brian&#8217;s talk:</h3>
<ul>
<li>Can call unmanaged DLLs through Full Trust</li>
<li>“Fabric Controller worries about the “shape” of your app”</li>
</ul>
<p>Worker Roles</p>
<ul>
<li>Background processing – utility computing</li>
<li>May communicate with outside services</li>
<li>Not externally visible to client</li>
<li>Queues ~ how we communicate to a Worker Role ~ since both Worker Roles and Web Roles can talk to storage (like Queues), this is a good medium</li>
</ul>
<p>There are public and private containers in blog storage. Public is the only accessible to clients (w/o keys that is).</p>
<p>Partitioned for scale</p>
<p>Blobs = ? “cloud files”</p>
<ul>
<li>Up to 50 GB / blob + 8k of metadata</li>
</ul>
<p>Azure Dev Workflow:</p>
<ul>
<li>Add some Web Role(s)</li>
<li>Add 0+ Worker roles</li>
<li>Add Service  Configuration</li>
<li>Add Service Package</li>
<li>Upload to Windows Azure Management Portal</li>
<li>Deploy to Windows Azure Fabric Controller</li>
<li>Provision / Run the roles and storage needs; monitors the health</li>
</ul>
<p>Sticky Storage ?</p>
<p>….</p>
<p>Azure Tools + Azure SDK</p>
<p>….</p>
<p>For “dev” + “test” + “etc.” – may want to use REAL azure accounts – not just the “other account” you have in your main production account</p>
<p>….</p>
<p>Need to handle the “at least one worker role will work on it” contract – your application needs to be designed for this…</p>
<p>“poison message” – due to bug or oversight or bad data, a message from the queue will NEVER be successfully handled. App needs to handle this currently.</p>
<p>Queue timeouts can have different values – could be, say, different for different message types.</p>
<p>….</p>
<p>Worker Role =&gt; a class that inherits from WorkerRoleMain (what was this class name??)</p>
<p>Fabric occassionally calls GetHealthStatus() which returns a RoleStatus. If you tell the Fabric you are Unhealthy, the Fabric may slay you? Maybe your NIC card is flakey, so your performance to external web services is too slow?</p>
<p>….</p>
<p>Public container for blob – for actual image (full size) linked to from the thumb.</p>
<p>“Fiddler is your friend when you’re working … watch your requests.”</p>
<p>Dev Fabric + Cloud Storage is an excellent mode to run in for effective debugging – can watch the message traffic with Fiddler.</p>
<p>“There is no debugging in the cloud. There’s logging.”</p>
<p>RoleManager can also write to “local storage” [[more interesting access / features coming soon!]] – then can go to Portal and use “configuration” button to update your config file to “copy logs” (did they move it?)</p>
<p>===========</p>
<p>can even bring web site up with <a href="http://localhost:8020"><strong>http://localhost:</strong>8020</a> </p>
<p>WorkerRole is very simple to just run it in a process</p>
<p>Use Test Running to fire up a WorkerRole</p>
<ul>
<li>Tight dev cycle</li>
<li>Can also now run a performance profile</li>
</ul>
<p>Tricks: log in “real fabric”, write to console in “dev fabric”</p>
<br />Posted in Boston Azure User Group  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/446/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/446/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/446/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/446/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/446/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/446/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/446/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/446/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/446/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/446/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=446&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/12/01/boston-azure-user-group-has-successful-first-meeting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Intuit as a Service</title>
		<link>http://blog.codingoutloud.com/2009/12/01/intuit-as-a-service/</link>
		<comments>http://blog.codingoutloud.com/2009/12/01/intuit-as-a-service/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 17:54:41 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Trip Report]]></category>

		<guid isPermaLink="false">http://codingoutloud.wordpress.com/?p=443</guid>
		<description><![CDATA[My notes from Intuit talk at Boston Cloud Meetup on Nov 3, 2009.
Per Alex Barnett of Intuit – only 12% of 4m Small Businesses not willing to use hosted data with SaaS.
Webware 100 finalists… best software solutions.
How do cloud-based apps Integrate?

Finance system know the project in Basecamp is done
Calendar know about CRM

Simplify by mapping services [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=443&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>My notes from Intuit talk at <a href="http://www.meetup.com/Boston-cloud-services/calendar/11640857/">Boston Cloud Meetup on Nov 3, 2009</a>.</p>
<p>Per <a href="http://alexbarnett.net/blog/">Alex Barnett</a> of Intuit – only 12% of 4m Small Businesses not willing to use hosted data with SaaS.</p>
<p>Webware 100 finalists… best software solutions.</p>
<p>How do cloud-based apps Integrate?</p>
<ul>
<li>Finance system know the project in Basecamp is done</li>
<li>Calendar know about CRM</li>
</ul>
<p>Simplify by mapping services to a COMMON DATA MODEL (this is a REALLY big deal, IMHO).</p>
<p>QuickBooks have 4 m customers who have effectively agreed on a database schema… exposed an API to this data store. Nice…</p>
<p>The “Small Business Data Cloud” – available today from Intuit – as the Intuit Partner Platform.</p>
<p><strong>native apps</strong></p>
<ul>
<li>Flex applications hold the logic</li>
<li>Server-side Java coming in development</li>
</ul>
<p><strong>federated apps</strong></p>
<ul>
<li>identity</li>
<li>data</li>
<li>billing</li>
<li>most of the action is over here (rather than native apps)</li>
</ul>
<p>They expect to ship 1.7 m units of QB 10 over next 6-12 months – this will really launch the platform.</p>
<p>4 m users spending 4 b hours per year of screen time</p>
<p>25 million users within these Small Businesses</p>
<p>FAST TIME TO VALUE through SaaS solutions.</p>
<p>Intuit keeps 20% of the rate, rest goes to developers</p>
<p>Can have trial-periods, entitlements (monthly-charged extra features), more options coming next year.</p>
<p>Developers support the apps – Intuit supports everything else.</p>
<p><a href="http://code.intuit.com">http://code.intuit.com</a> – some Open Source in here</p>
<ul>
<li>some code uses SAML</li>
<li>support Java, Python, Ruby, PHP, and .NET versions of code, such as SAML gateway</li>
</ul>
<p><a href="http://developer.intuit.com">http://developer.intuit.com</a></p>
<p>Intuit – SMB, 4m customers</p>
<p>Salesforce – Enterprises, 25k customers</p>
<p>Is it a per-user, or per-customer license? Intuit end-users don’t need a license.</p>
<p>Don’t need to license QuickBooks to use the overall platform – but there may be some synergies.</p>
<p>Intuit certifies apps for use in their marketplace. Federated apps go through a third-party security assessment – on Intuit’s dime today, though that may change in the future.</p>
<br />Posted in Cloud Computing, Trip Report  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/443/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=443&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/12/01/intuit-as-a-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Top 10 Presentation Tips from Presentation Camp Boston</title>
		<link>http://blog.codingoutloud.com/2009/10/26/top-10-presentation-tips-from-presentation-camp-boston/</link>
		<comments>http://blog.codingoutloud.com/2009/10/26/top-10-presentation-tips-from-presentation-camp-boston/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 10:57:44 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Presenting]]></category>
		<category><![CDATA[Trip Report]]></category>
		<category><![CDATA[presentation camp]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=418</guid>
		<description><![CDATA[I attended Presentation Camp Boston, a bar-camp style conference, on 24-Oct-2009. There were many good ideas and presentation tips. Among them, these are my favorites.
Top 10 Presentation Tips
The top 10 presentation tips I took away from Presentation Camp Boston
From Kenny Raskin&#8217;s keynote:
1. “Have a Passionate Purpose”
When you are speaking, it is not only about the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=418&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I attended <a href="http://PresentationCampBoston.org">Presentation Camp Boston</a>, a bar-camp style conference, on 24-Oct-2009. There were many good ideas and presentation tips. Among them, these are my favorites.</p>
<h1>Top 10 Presentation Tips</h1>
<p><em><strong>The top 10 presentation tips I took away from Presentation Camp Boston</strong></em></p>
<h2>From <a title="Kenny Raskin's web site" href="http://kennyraskin.com/">Kenny Raskin</a>&#8217;s keynote:</h2>
<h4>1. “Have a Passionate Purpose”</h4>
<p>When you are speaking, it is not only about the content. If you mean what you say &#8211; you really believe in it &#8211; (which I believe Dale Carnegie refers to as <em>conviction</em>) - then you are more likely to be successful at conveying your message and persuading your audience.</p>
<p>Kenny shared a quote which was something like the following:</p>
<blockquote><p>Who you are being when you are saying what you are saying says more about what you are saying that what you are saying.</p></blockquote>
<p>Not just <em><strong>sell it</strong></em> &#8211; it was <em><strong>believe it + sell it</strong></em> both at once. This tip resonates with me and is consistent with a lesson from studying and performing <a href="http://improvboston.com">improv</a>; one of my instructors, <a href="http://improvforlife.net/">Erik Volkert</a>, really got across the difference between <em>acting it out </em>and <em>really committing</em> &#8211; and the impact that has on stage.</p>
<h3>2. “The presentation starts before you are even in the room”</h3>
<ul>
<li>Find out who the audience is and what you want to say to them. What do you want them to FEEL. (“Know your passionate purpose!”)</li>
<li>As you are preparing to enter as a speaker, take a breath. Focus. Clear your mind.</li>
<li>As you enter, look your audience in the eyes. Before you say a word. Greet the audience. Pause… and let them respond.</li>
</ul>
<h3>3. Genuine eye contact != scanning</h3>
<p>Eye contact is important. Don&#8217;t scan the audience and think that&#8217;s eye contact &#8211; you need to pause and connect with individuals one at a time &#8211; this may be for the duration of a thought or statement &#8211; or just until you feel you&#8217;ve connected. Some of your eye contact moments will be during pauses and are your opportunity to re-energize by breathing.</p>
<h2>From <a href="http://effectivenetworking.com/">Diane Darling</a>&#8217;s Talk about <em>Networking</em>:</h2>
<p>Not about presenting to large groups, but focused on presenting to very small groups of one or a few other folks in a social / networking situation.</p>
<h3>4. Business Cards from A-Z</h3>
<p>Some wisdom on business cards:</p>
<ul>
<li>You need business cards. And they don&#8217;t need to be plain and boring&#8230; Diane&#8217;s cards have a list of tips on one side &#8211; useful and &#8220;<a href="http://www.amazon.com/Made-Stick-Ideas-Survive-Others/dp/1400064287/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1256734198&amp;tag=devpartners-20&amp;sr=8-1">sticky</a>&#8220;.</li>
<li>She advises to keep <em>your</em> business cards in one pocket, and <em>the ones you collect</em> in another pocket &#8211; just have a simple system to avoid fumbling.</li>
<li>Write on the business cards &#8211; you may forget later otherwise that this card is from someone you offered to send a link to an interesting paper, or perhaps they might be a future business partner. Handy, easy hack.</li>
<li>If you do give a talk to a group, be sure to have a stack of cards handy to share at the end.</li>
</ul>
<h3>5. “Own the room”</h3>
<blockquote><p>I am a highly functional introvert<br />
~ Diane Darling, author of <a href="http://www.amazon.com/exec/obidos/ASIN/0071409998/effectivenetw-20"><em>The Networking Survival Guide: Get the Success You Want By Tapping Into the People You Know</em></a></p></blockquote>
<p>I love that quote! As a fellow introvert, that&#8217;s how I want to be. Diane builds a case for being highly functioning with a plethora of straight-forward tips on how to handle lots of business social situations. A couple of examples:</p>
<ul>
<li>Prepare several generic ice breaker questions you can use when you meet someone new. A good format for such questions is &#8220;Tell me about ______.&#8221; You fill in the blank with &#8220;your job&#8221; or &#8220;how you got into this line of work&#8221; or &#8220;how you ended up at this conference&#8221; etc.</li>
<li>Wear your name tag close to your RIGHT shoulder (since that&#8217;s where the eye most naturally is directed during a hand-shake.</li>
<li>Don&#8217;t start with your name! Introduce yourself by saying something about yourself, and <em>end with your name</em> – it is easier to remember there.</li>
<li>Saturday Night “Live” != Saturday Night “Unrehearsed” &#8212; you will be more successful if you practice some of what you will say &#8212; like what is your brief introduction of yourself (your elevator pitch), ending with your name, of course!</li>
</ul>
<h3>6. Connect with the Gatekeepers</h3>
<p>If you want to get access to key people who may be hard to get to, consider connecting with those people who control access &#8211; such as a personal assistant to the CEO.</p>
<h2>From <a href="http://edvangelist.spaces.live.com/">Edwin Guarin</a>&#8217;s talk, <em>The Killer Presentation</em>:</h2>
<p>Edwin is an <a title="Edwin Guarin's twitter address" href="http://twitter.com/edvangelist">Academic Evangelist for Microsoft</a>. His talk was called <em>The Killer Presentation &#8211; Gettting to Point B</em>.</p>
<h3>7. Distributing Your PowerPoint Deck</h3>
<p>Suppose you&#8217;ve given a talk, but now your audience wants a copy. Here&#8217;s how to do it, plus a couple of important benefits:</p>
<ul>
<li>File &gt; Save As&#8230; and choose either <strong>PDF</strong> or <strong>PowerPoint Show</strong>.</li>
<li>If you have Hidden slides &#8211; perhaps because you want &#8220;single source&#8221; for a slide deck that you use in multiple circumstances, but don&#8217;t want to maintain the bulk of the slides more than once &#8211; this will drop all those marked as hidden at the time you Save As.</li>
<li>If you have Notes, they are not included either. Sometimes your Notes are just speaking points, but perhaps they are not something you want everyone to see.</li>
</ul>
<h3>8. Spruce Up Your Talk with Images</h3>
<p>You are preparing a deck, and you want to be memorable. You want that &#8220;just right&#8221; image or text effect.</p>
<ul>
<li>Edwin recommends the use of royaty-free photos from <a href="http://sxc.hu/">http://sxc.hu</a>.  You need to create an account to access them, then are free to use them in your PowerPoint slides.</li>
<li>Note that you are not licensed to subsequently redistribute these images if they are embedded in your PowerPoint deck. I registered an account on sxc.hu web site asking for clarification &#8211; and there was a tad bit of ambiguity around the licensing (the license text seem to both suggest it was fine and also say it wasn&#8217;t) &#8211; so I sent in a specific question on this scenario. The response from sxc.hu support was that the PowerPoint cannot be posted for redistribution. I am not a lawyer. And I do not even play a lawyer on TV.</li>
<li>[In <a href="http://blog.codingoutloud.com/2009/10/25/better-tech-talks-session-from-presentation-camp-boston/">my talk</a>, I advocate searching through <a href="http://images.google.com/advanced_image_search">Google Images advanced search</a> and filtering by <strong>Usage Rights</strong> to only include images <strong>labeled for reuse</strong> (usually through <a href="http://creativecommons.org">Creative Commons</a>).]</li>
<li>To embed an image that is too bright, overlay it with a rectangle &#8211; and set the transparency to accordinly to fade it a bit so that text can be seen on top of it.</li>
<li>Use SmartArt to snazz up your text… transform a bullet list into a ring, or horizontal property or other eye-candy fanciness.</li>
</ul>
<h2>From <a href="http:/brainshark.com/">Brainshark</a> demo:</h2>
<h3>9. Sharing Your Presentation After the Fact</h3>
<p>Brainshark has a cool way for you to post your slide-deck to their free <a href="http://my.brainshare.com/">http://my.brainshare.com</a> hosted service: you can upload both the deck *and* an audio track.</p>
<p>This is way better than just distributing the PowerPoint deck, which may not be of any use for people who didn&#8217;t attend the talk. Of course, you do need to create (or record) an audio track.</p>
<p>I am not sure how the slides and the audio are sync&#8217;d &#8211; like when in the audio track should slide 7 pop in &#8211; but my guess is that you are expected to record your voice while delivering the talk &#8211; and some agent on your desktop keeps an eye on when you transition between slides. If so, I wonder if it can also capture screen shots of non-PowerPoint activities &#8211; like if I pop up a web browers, or use Visual Studio.</p>
<h2>From Bill Wilder&#8217;s talk on <a href="http://blog.codingoutloud.com/2009/10/25/better-tech-talks-session-from-presentation-camp-boston/">Better Tech Talks</a>:</h2>
<p>Yes, I am recommending a tip from my own talk. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h3>10. “It is a Talk, not a Read”</h3>
<p>Don&#8217;t even thing of reading your slides to your audience.</p>
<ul>
<li>If you cram all the text for your talk into your deck , you will be guilty of promulgating support for <strong><em>Death By PowerPoint</em></strong>.</li>
<li>Your audience can read faster than you can talk anyway &#8211; they will be done before you. And they won&#8217;t be listening to you while they read; they can&#8217;t do both at once.</li>
<li>Your audience will resent being read to. As Jack Welch is reputed to have said to a presenter reading him the slides: if everything is on the slides, then we don&#8217;t need you.</li>
<li>There are better tools for a stand-alone document &#8211; like blog posts, or word-processors. PowerPoint is a poor substitute when writing a document that is being prepared for general reading.</li>
<li>If you do need to capture more info than belongs in the slides, consider putting it into the Notes section, and then using dual-monitor capabilities to have your laptop display different content than the projector, and configure PowerPoint to know about this via:  Slide Show &gt; Set Up Show &gt; Multiple Monitors.</li>
</ul>
<br />Posted in Presenting, Trip Report Tagged: presentation camp <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/418/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/418/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/418/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/418/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/418/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=418&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/10/26/top-10-presentation-tips-from-presentation-camp-boston/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Better Tech Talks session from Presentation Camp Boston</title>
		<link>http://blog.codingoutloud.com/2009/10/25/better-tech-talks-session-from-presentation-camp-boston/</link>
		<comments>http://blog.codingoutloud.com/2009/10/25/better-tech-talks-session-from-presentation-camp-boston/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 03:05:18 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Bill gave a talk]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Presenting]]></category>
		<category><![CDATA[presentation camp]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=403</guid>
		<description><![CDATA[I attended Presentation Camp Boston on Saturday 24-Oct-2009. I sat in on several excellent talks, plus led a session myself called Better Tech Talks. which was a presentation &#38; discussion on giving technical talks to technical people.
I&#8217;ve been thinking a lot about how to give code-centric talks to software engineers, plus the general problem of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=403&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I attended Presentation Camp Boston on Saturday 24-Oct-2009. I sat in on several excellent talks, plus led a session myself called <em><strong>Better Tech Talks</strong></em>. which was a presentation &amp; discussion on giving technical talks to technical people.</p>
<p>I&#8217;ve been thinking a lot about how to give code-centric talks to software engineers, plus the general problem of clear communication through presentations. Those in my session will recognize that my slides (<a href="http://codingoutloud.files.wordpress.com/2009/10/better-tech-talks-24-oct-2009.ppt">Better Tech Talks &#8211; 24-Oct-2009</a>) do not stand alone well! &#8211; but should serve as a good reminder for those who participated in the session.</p>
<p>Feel free to follow-up with me to continue the discussion!</p>
<br />Posted in Bill gave a talk, Events, Presenting Tagged: presentation camp <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/403/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/403/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/403/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/403/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/403/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/403/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/403/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/403/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/403/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/403/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=403&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/10/25/better-tech-talks-session-from-presentation-camp-boston/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Boston Azure User Group Now on the Map!</title>
		<link>http://blog.codingoutloud.com/2009/10/20/boston-azure-user-group-now-on-the-map/</link>
		<comments>http://blog.codingoutloud.com/2009/10/20/boston-azure-user-group-now-on-the-map/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 15:44:03 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Boston Azure User Group]]></category>
		<category><![CDATA[azure]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=387</guid>
		<description><![CDATA[The Boston Azure User Group is a Cloud Computing community group focusing on Windows Azure, Microsoft&#8217;s Cloud platform, and &#8230;
The Boston Azure User Group is now on the map &#8211; literally!
Check out Jim O&#8217;Neil&#8217;s user group map. Zoom in on Cambridge, MA and you will see us waving from the NERD center. Thanks Jim!
While not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=387&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>The <a title="Boston Azure User Group" href="http://bostonazure.org">Boston Azure User Group</a> is a Cloud Computing community group focusing on Windows Azure, Microsoft&#8217;s Cloud platform, and &#8230;</p>
<h2>The Boston Azure User Group is now on the map &#8211; literally!</h2>
<p>Check out <a href="http://blogs.msdn.com/jimoneil/pages/area-user-groups.aspx">Jim O&#8217;Neil&#8217;s user group map</a>. Zoom in on Cambridge, MA and you will see us waving from the NERD center. Thanks Jim!</p>
<p>While not as awesomely interactive and visual as a Bing map, we do appreciate other people plugging the user group:</p>
<ul>
<li><a href="http://www.bostonusergroups.org/Lists/Events/DispForm.aspx?ID=136">Boston User Groups</a></li>
<li><a href="http://bugc.org">The Boston-area User Group Calendar</a></li>
<li>Our friends at <a href="//www.nhdn.com/DNN/">New Hampshire .NET</a></li>
<li><a href="http://www.communitymegaphone.com/ShowEvent.aspx?EventID=2149">Community Megaphone</a></li>
<li>Chris Bowen&#8217;s Blog : <a href="http://blogs.msdn.com/cbowen/archive/2009/09/27/announcing-the-boston-azure-user-group.aspx">Announcing the <em>Boston Azure User Group</em></a> (might be the earliest mention ~ thanks Chris!)</li>
<li>From ASP Scribe: <a href="http://www.aspscribe.com/?p=10937">User Group Happenings East and West and in Between</a></li>
<li>And a mention or two from <a href="http://oakleafblog.blogspot.com/2009/10/windows-azure-and-cloud-computing-posts_08.html">Roger Jenning&#8217;s blog</a></li>
</ul>
<p>Speaking of <a href="http://www.blogger.com/profile/01700526164060680385">Roger Jennings</a>&#8230; at the first <a href="http://bostonazure.org">Boston Azure meeting</a> this Thursday night (Thu 22-Oct-2009 @ 6:30), we&#8217;ll give away copy of his hot-off-the-presses book <a href="http://www.amazon.com/Cloud-Computing-Windows-Azure-Platform/dp/0470506385/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1256088991&amp;sr=8-1">Cloud Computing with the Windows Azure Platform</a>!</p>
<p>I found Roger Jennings&#8217; book chock full of useful information &#8211; from context to detail to practical code samples. I stopped at Barnes &amp; Noble after a user group meeting in Burlington and picked up my own personal copy &#8211; why no Kindle version!? &#8211; and quickly plowed through it. Now I want to go back and play around with the abundant code samples. And in case you are wondering &#8211; no, this isn&#8217;t the copy we&#8217;ll be giving away&#8230;we have a new one.</p>
<div id="_mcePaste" style="overflow:hidden;position:absolute;left:-10000px;top:0;width:1px;height:1px;">
<h1>The <span style="color:blue;font-size:xx-large;">B</span>oston-area <span style="color:blue;font-size:xx-large;">U</span>ser <span style="color:blue;font-size:xx-large;">G</span>roup <span style="color:blue;font-size:xx-large;">C</span>alendar</h1>
</div>
<br />Posted in Boston Azure User Group Tagged: azure <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/387/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=387&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/10/20/boston-azure-user-group-now-on-the-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Gary Chin Presents SketchFlow at Code Camp 12 in Boston</title>
		<link>http://blog.codingoutloud.com/2009/10/18/gary-chin-presents-sketchflow-at-code-camp/</link>
		<comments>http://blog.codingoutloud.com/2009/10/18/gary-chin-presents-sketchflow-at-code-camp/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 14:26:54 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=371</guid>
		<description><![CDATA[Gary Chin on SketchFlow for Silverlight
Gary Chin spoke at Boston Code Camp 12 (on Oct 17, 2009) &#8211; his talk was all about using SketchFlow for Silverlight.
I heard from various folks that the talk went really well. Unfortunately, I wasn&#8217;t able to make it since I was presenting at the same time (actually presenting on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=371&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<h2>Gary Chin on SketchFlow for Silverlight</h2>
<p><a title="Gary Y. Chin" href="http://www.thedevcommunity.org/Speakers/ProfileSummary.aspx?id=110">Gary Chin</a> spoke at<a href="http://thedevcommunity.org/Events/PresentationList.aspx?id=13"> Boston Code Camp 12</a> (on Oct 17, 2009) &#8211; his talk was all about <a href="http://thedevcommunity.org/Events/PresentationSummary.aspx?id=426&amp;pid=516">using SketchFlow for Silverlight</a>.</p>
<p>I heard from various folks that the talk went really well. Unfortunately, I wasn&#8217;t able to make it since I was presenting at the same time (actually <a href="http://thedevcommunity.org/Events/PresentationSummary.aspx?id=422&amp;pid=512">presenting on presenting</a>.)</p>
<p>Gary was kind enough to send me his slides which I have attached to this post: <a href="http://codingoutloud.files.wordpress.com/2009/10/sketchflow-garychin-oct2009.pptx">SketchFlow-GaryChin-Oct2009</a></p>
<p>See you at the next Code Camp! (Though will probably also see many of you before then &#8211; this Thursday night at the first meeting of the <a href="http://bostonazure.org">Boston Azure User Group</a>!)</p>
<br />Posted in Programming  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/371/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=371&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/10/18/gary-chin-presents-sketchflow-at-code-camp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Boston West Toastmasters Scholarship and Open House</title>
		<link>http://blog.codingoutloud.com/2009/10/18/boston-west-toastmasters-scholarship-and-open-house/</link>
		<comments>http://blog.codingoutloud.com/2009/10/18/boston-west-toastmasters-scholarship-and-open-house/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 11:58:59 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Presenting]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=379</guid>
		<description><![CDATA[Boston West Toastmasters Reaching Out
I&#8217;ve been a member of Toastmasters for the past couple of years. While Toastmasters has many clubs around the world, I belong to Boston West Toastmasters which meets in Needham, MA on the second and fourth Monday evenings.
While at Boston West Toastmasters, I&#8217;ve made friends with some really cool people (several [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=379&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<h2>Boston West Toastmasters Reaching Out</h2>
<p>I&#8217;ve been a member of <a title="Toastmasters International" href="http://toastmasters.org">Toastmasters</a> for the past couple of years. While <a href="http://reports.toastmasters.org/findaclub/">Toastmasters has many clubs around the world</a>, I belong to <a href="http://bwtoastmasters.com/">Boston West Toastmasters</a> which meets in <a href="http://www.google.com/maps?q=1153+Highland+Ave,+Needham+Heights,+MA+02494&amp;sa=X&amp;oi=map&amp;ct=title">Needham, MA</a> on the second and fourth Monday evenings.</p>
<p>While at Boston West Toastmasters, I&#8217;ve made friends with some really cool people (several of whom provided ideas for my <a title="So, You Want to Give Your First Code Camp Talk?" href="http://thedevcommunity.org/Events/PresentationSummary.aspx?id=422&amp;pid=512">Code Camp talk on giving technical presentations</a>) and have been working to improve my speaking skills <a href="http://freakonomics.blogs.nytimes.com/2008/03/11/how-did-a-rod-get-so-good/">through</a> <a href="http://money.cnn.com/magazines/fortune/fortune_archive/2006/10/30/8391794/index.htm">application</a> of <a title="From the lead author of the study" href="http://projects.ict.usc.edu/itw/gel/EricssonDeliberatePracticePR93.pdf">Deliberate Practice</a> (where the feedback, ideas, analysis, expert critique and encouragement all come from fellow Toastmaster members).</p>
<p>Now my club is reaching out to the community to help the unemployed, holding an open house encourage the general community to get a glimpse of what Toastmasters is all about&#8230; and not to mention taking part in a really fun social event.</p>
<div id="attachment_381" class="wp-caption alignright" style="width: 310px"><a href="http://codingoutloud.files.wordpress.com/2009/10/bwtoastmasters-002.jpg"><img class="size-medium wp-image-381" title="Photo of some Boston West Toastmaster members" src="http://codingoutloud.files.wordpress.com/2009/10/bwtoastmasters-002.jpg?w=300&#038;h=225" alt="Some Boston West Toastmaster members from 28-Sept-2009 meeting" width="300" height="225" /></a><p class="wp-caption-text">Some Boston West Toastmaster members from 28-Sept-2009 meeting</p></div>
<h3>Scholarship offer for Unemployed</h3>
<p>Full details are in the attached <a href="http://codingoutloud.files.wordpress.com/2009/10/toastmastersscholarshippressrelease10_5.doc">Boston West Toastmasters Scholarship Press Release from 5-Oct-2009</a>, but here&#8217;s the teaser:</p>
<blockquote><p><span style="font-family:Times New Roman;font-size:small;"><a href="http://bwtoastmasters.com">Boston West Toastmasters</a> is offering five scholarships to the unemployed who want to improve their speaking and leadership skills.  These scholarships, underwritten by <a href="http://www.partnerpromotionsinc.com/">Robin Samora, owner and president of Partner Promotions</a>, cover the annual membership dues for the winners.</span></p></blockquote>
<h3>Bring a Friend, Meet a Friend &#8211; Open House at Nov 9 Meeting</h3>
<p><span style="font-size:10pt;font-family:Symbol;color:black;"></span><span style="font-size:10pt;color:black;">Our meeting on 9-Nov-2009 will have a social hour before this meeting which is an Open House for Boston West Toastmaster. Anyone is welcome to attend this meeting &#8211; at no cost, no obligation. (The &#8220;no cost, no obligation&#8221; is actually true generally &#8211; feel free to check us out at any meeting &#8211; you won&#8217;t get a hard sell &#8211; just the information you might be interested in. For most people, Toastmasters sells itself.)</span></p>
<p><span style="font-size:10pt;color:black;">Here are the details: </span></p>
<blockquote><p><em><strong>Bring a friend, meet a friend at the Boston West Toastmasters Open House on Monday, November 9, 2009</strong></em>:</p>
<p>Mark your calendar for this important OPEN HOUSE.  It is a great opportunity to share your Toastmaster experience with friends, relatives and co-workers.  Invite them to attend the meeting.  We will have an informal start to greet guests and answer questions @ 6:30 p.m.  Robin Samora is our Toastmaster for this and we will have special snacks that evening during our Opening reception 6:30 &#8211; 7 for new members (and our team if possible).  Send an email to people inviting them to attend our OPEN HOUSE.  It will be a memorable event!!!</p></blockquote>
<p>You don&#8217;t need to let me know &#8211; thought would appreciate a heads-up so I can look for you &#8211; but just showing up is the key.</p>
<h3>Soiree in Back Bay &#8211; Social Night &#8211; Co-Sponsored by Boston West Toastmasters</h3>
<p>This looks like a really fun event: <a href="http://codingoutloud.files.wordpress.com/2009/10/soiree-in-back-bay-10_22-flyer.pdf">Soiree in Back Bay on 22-Oct-2009</a>, co-sponsored by Boston West Toastmasters.</p>
<p>[Unfortunately, you won't see me there - I will be at the kick-off meeting for my <a href="http://bostonazure.org/">Boston Azure User Group</a> that same night.]</p>
<br />Posted in Presenting  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/379/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=379&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/10/18/boston-west-toastmasters-scholarship-and-open-house/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/10/bwtoastmasters-002.jpg?w=300" medium="image">
			<media:title type="html">Photo of some Boston West Toastmaster members</media:title>
		</media:content>
	</item>
		<item>
		<title>So, You Want to Give Your First Code Camp Talk?</title>
		<link>http://blog.codingoutloud.com/2009/10/18/so-you-want-to-give-your-first-code-camp-talk/</link>
		<comments>http://blog.codingoutloud.com/2009/10/18/so-you-want-to-give-your-first-code-camp-talk/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 11:33:49 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Bill gave a talk]]></category>
		<category><![CDATA[Presenting]]></category>
		<category><![CDATA[Code Camp]]></category>
		<category><![CDATA[Giving Tech Talks]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=370</guid>
		<description><![CDATA[Gave a talk 17-Sat-at Boston Code Camp 12 called So, You Want to Give a Code Camp Talk?.
How to Give Your First Code Camp Talk &#8211; 17-Oct-2009
If you attended my talk, you learned than I don&#8217;t advocate ensuring the slide deck makes sense stand-alone (since it is a framework for a talk, with purpose different [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=370&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Gave a talk 17-Sat-at <a href="http://thedevcommunity.org/Events/PresentationList.aspx?id=13">Boston Code Camp 12</a> called <a title="Have you thought about giving a Code Camp talk but just can't get over the hump? Join this session for a discussion of how one guy went about it, for some tips on public speaking in a technical environment, and more resources for you to tune up your own speaking and presenting skills. If there is interest we can also chat about the technical talk YOU want to give in an upcoming Code Camp. NOTE: Does this topic appeal to you, either because you have something to add - or because you are the target audience member - I would really like to hear from you offline ahead of time. Please hop over to this blog post and leave a comment or email me (email info in the blog post): &lt;a href=&quot;http://blog.codingoutloud.com/2009/09/23/your-first-code-camp-talk/&quot;&gt;Your First Code Camp Talk&lt;/a&gt;" href="http://thedevcommunity.org/Events/PresentationSummary.aspx?id=422&amp;pid=512" target="_blank">So, You Want to Give a Code Camp Talk?</a>.</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/10/how-to-give-your-first-code-camp-talk-17-oct-20091.ppt">How to Give Your First Code Camp Talk &#8211; 17-Oct-2009</a></p>
<p>If you attended my talk, you learned than I don&#8217;t advocate ensuring the slide deck makes sense stand-alone (since it is a framework for a talk, with purpose different than that of an article or blog post). You&#8217;ve been warned. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<br />Posted in Bill gave a talk, Presenting Tagged: Code Camp, Giving Tech Talks <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/370/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=370&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/10/18/so-you-want-to-give-your-first-code-camp-talk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>First Boston Azure User Group meeting next week</title>
		<link>http://blog.codingoutloud.com/2009/10/12/first-boston-azure-user-group-meeting-next-week/</link>
		<comments>http://blog.codingoutloud.com/2009/10/12/first-boston-azure-user-group-meeting-next-week/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 11:24:08 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Boston Azure User Group]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[User Group]]></category>
		<category><![CDATA[Windows Azure]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=359</guid>
		<description><![CDATA[We are getting close to the kick-off meeting of the Boston Azure User Group &#8211; next week, on Thursday October 22, 2009 starting with pizza at 6:30 at the NERD in Kendall Square. Microsoft&#8217;s Brian Lambert is the featured speaker.
We have a couple of behind-the-scenes planning meetings this week then will finalize the information on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=359&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>We are getting close to the kick-off meeting of the <a href="http://bostonazure.org">Boston Azure User Group</a> &#8211; next week, on Thursday October 22, 2009 starting with pizza at 6:30 at the NERD in Kendall Square. Microsoft&#8217;s Brian Lambert is the featured speaker.</p>
<p>We have a couple of behind-the-scenes planning meetings this week then will finalize the information on the bostonazure.org web site.</p>
<p>Have you joined the <a title="Boston Azure User Group - Join the Mailing list" href="http://bostonazure.org/JoinMailingList.aspx">Boston Azure User Group mailing list</a>?</p>
<br />Posted in Boston Azure User Group, Programming Tagged: Boston Azure User Group, User Group, Windows Azure <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/359/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/359/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/359/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/359/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/359/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/359/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/359/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/359/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/359/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/359/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=359&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/10/12/first-boston-azure-user-group-meeting-next-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Demystifying Prism &#8211; talk at New Hampshire .NET User Group 17-Jun-2009</title>
		<link>http://blog.codingoutloud.com/2009/10/09/demystifying-prism-talk-at-new-hampshire-net-user-group-17-jun-2009/</link>
		<comments>http://blog.codingoutloud.com/2009/10/09/demystifying-prism-talk-at-new-hampshire-net-user-group-17-jun-2009/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 01:53:10 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Bill gave a talk]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[Code Camp]]></category>
		<category><![CDATA[Prism]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Talks]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=355</guid>
		<description><![CDATA[Spoke at New Hampshire .NET User Group back on June 17, 2009. Talked about Prism (focusing mostly on Silverlight, a little homage to WPF), showed some code, shared a slide deck.
I will be giving an updated version of this talk at the upcoming Code Camp 12 in Waltham (Boston area) on Sat Oct 17, 2009.
Posted [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=355&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Spoke at <a href="http://www.nhdn.com/">New Hampshire .NET User Group</a> back on June 17, 2009. Talked about Prism (focusing mostly on Silverlight, a little homage to WPF), showed some code, <a href="http://codingoutloud.files.wordpress.com/2009/09/demystifying-prism-new-hampshire-net-user-group-17-jun-2009.ppt">shared a slide deck</a>.</p>
<p>I will be giving an <a href="http://thedevcommunity.org/Events/PresentationSummary.aspx?id=380&amp;pid=466">updated version of this talk</a> at the upcoming <a title="Code Camp 12 - Boston" href="http://thedevcommunity.org/Events/PresentationList.aspx?id=13">Code Camp 12 in Waltham (Boston area) on Sat Oct 17, 2009</a>.</p>
<br />Posted in Bill gave a talk, Programming Tagged: .net, Code Camp, Prism, Silverlight, Talks <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/355/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=355&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/10/09/demystifying-prism-talk-at-new-hampshire-net-user-group-17-jun-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Supporting two domains in one ASP.NET MVC site &#8211; A Poor Man&#8217;s Approach</title>
		<link>http://blog.codingoutloud.com/2009/09/27/supporting-two-domains-in-one-asp-net-mvc-site-a-poor-mans-approach/</link>
		<comments>http://blog.codingoutloud.com/2009/09/27/supporting-two-domains-in-one-asp-net-mvc-site-a-poor-mans-approach/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 16:20:04 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://codingoutloud.wordpress.com/2009/09/27/supporting-two-domains-in-one-asp-net-mvc-site-a-poor-mans-approach/</guid>
		<description><![CDATA[Hosting Two Different Domains in Same ASP.NET MVC Site
Motivation – I am Cheap!
I have a hosting account at DiscountASP.NET that I have used as a playground for anything I want to host on the web. My personal Coding Out Loud site is hosted there (with a few directories that are not linked, for example). Since [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=343&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<h2>Hosting Two Different Domains in Same ASP.NET MVC Site</h2>
<h4>Motivation – I am Cheap!</h4>
<p>I have a hosting account at <a href="http://discountasp.net/">DiscountASP.NET</a> that I have used as a playground for anything I want to host on the web. My personal <a href="http://codingoutloud.com/">Coding Out Loud</a> site is hosted there (with a few directories that are not linked, for example). Since starting the Boston Azure User Group, I need a place to host a page. While I would eventually like to host the user group site on Azure itself, for now I have produced a simple ASP.NET MVC site. To avoid paying for two hosting accounts, I am reusing my existing account – sharing the hosting across bostonazureusergroup.org and codingoutloud.com – but still maintaining their distinct identities.</p>
<p>We can consider the <a href="http://bostonazureusergroup.org">Boston Azure User Group</a> the main site, and <a href="http://codingoutloud.com">Coding Out Loud</a> the secondary site.</p>
<h4>Requirements</h4>
<p>The approach I take makes sense to me since I want a solution that is:</p>
<ul>
<li>Very simple</li>
<li>Inexpensive</li>
<li>Easy to manage once implemented</li>
<li>Treats bostonazureusergroup.org as the main site, but “tolerates” codingoutloud.com being around (in other words, maintainability/risk of errors for codingoutloud.com is less important)</li>
</ul>
<h4>Solution</h4>
<p>In order to host two sites with a single hosting account, you have a few steps:</p>
<ol>
<li>Add a Domain Pointer with your ISP. If, like me, your site is hosted on a shared IP address, this step is necessary so that the site’s IIS web server knows which top-level directory your domain is associated with. In my case, this tells both codingoutloud.com and bostonazureusergroup.org to go to the same site.</li>
<li>Configure your DNS. This is easier than it sounds. Your ISP will tell which DNS servers your should point to. You could also deal with Godaddy’s Domain Forwarding and cloaking, but for a one-time cost of $15 with my ISP (DiscountASP.NET) I just added the pointer – a cleaner solution, and possible more search-engine-friendly.</li>
<li>Note that the following changes to the code are only necessary if you want different results dependent on which domain is used to access the site – in other words, I don’t want my bostonazureusergroup.org visitors to be stumbling across any codingoutloud.com artifacts, and vice versa. The following screen shot includes the <span style="text-decoration:line-through;">hack</span> simple code modifications – they are circled – a private method with a little dirty work, invoke the method in the right place, and display a specific View. Note that the view is specified in a different file – and under a folder that is specific to your secondary site – CodingOutLoud in my case.</li>
</ol>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/poormandomainpointermvc.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="Poor Man's Domain sharing in ASP.NET MVC" src="http://codingoutloud.files.wordpress.com/2009/09/poormandomainpointermvc_thumb.png?w=484&#038;h=202" border="0" alt="Poor Man's Domain sharing in ASP.NET MVC" width="484" height="202" /></a></p>
<p>To create the …/Views/CodingOutLoud/Index.aspx view shown in the right-hand pane in the screen shown above, you would do the following:</p>
<ol>
<li>Right-Click on <strong>Views </strong>folder and choose <strong>Add &gt; New Folder</strong> from the pop-up. I called mine “CodingOutLoud” and it is shown above.</li>
<li>Right-Click on the newly created <strong>Views/CodingOutLoud</strong> folder, this time choose <strong>Add &gt; View…</strong> from the pop-up, as shown below. I called my View “Index” (and since it lives under CodingOutLoud folder it does not clash with other Views with that name, given the default routing rules).</li>
</ol>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image30.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb31.png?w=186&#038;h=244" border="0" alt="image" width="186" height="244" /></a> </p>
<p>Name your view – and I also chose not to use the master page, so I unchecked it:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image31.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb32.png?w=227&#038;h=244" border="0" alt="image" width="227" height="244" /></a></p>
<p>Once created, …/Views/CodingOutLoud/Index.aspx can contain any code you like – even plain old HTML.</p>
<p>This is all it took to get this simple approach to work. Now when users visit via “codingoutloud.com” they are diverted to …/Views/CodingOutLoud/Index.aspx, and otherwise the usual machinery of ASP.NET MVC takes over.</p>
<h4>Other Potential Approaches</h4>
<p>I considered, but did not adopt, some other approaches – mostly since I wanted to do something very simple. Here are some of the other approaches:</p>
<ul>
<li><a href="http://blogs.securancy.com/post/ASPNET-MVC-Subdomain-Routing.aspx">ASP.NET MVC Subdomain Routing</a></li>
<li><a href="http://blog.maartenballiauw.be/post/2009/05/20/ASPNET-MVC-Domain-Routing.aspx">ASP.NET MVC Domain Routing</a></li>
<li><a href="http://blog.lukesampson.com/2009/07/subdomains-for-single-application-with.html">Subdomains for a single application with ASP.NET MVC</a></li>
<li><a href="http://www.wduffy.co.uk/blog/aspnet-mvc-root-urls-with-generic-routing/">ASP.NET MVC root url’s with generic routing</a></li>
</ul>
<br />Posted in Programming  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/343/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/343/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/343/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/343/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/343/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=343&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/09/27/supporting-two-domains-in-one-asp-net-mvc-site-a-poor-mans-approach/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/poormandomainpointermvc_thumb.png" medium="image">
			<media:title type="html">Poor Man's Domain sharing in ASP.NET MVC</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb31.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb32.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Cloud Security &#8211; A Business Tradeoff?</title>
		<link>http://blog.codingoutloud.com/2009/09/23/cloud-security-a-business-tradeoff/</link>
		<comments>http://blog.codingoutloud.com/2009/09/23/cloud-security-a-business-tradeoff/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 00:56:06 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Trip Report]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://codingoutloud.wordpress.com/2009/09/23/cloud-security-a-business-tradeoff/</guid>
		<description><![CDATA[I took notes during the Boston Cloud Computing Group Meetup 23-Sept-2009 &#8211; the raw notes are below, but a couple of more noteworthy highlights appear first with some of my views interspersed.
Executive Summary &#8211; Key Take-Aways &#38; Highlights
Notes from Javed Ikbal&#8217;s talk (http://10domains.blogspot.com) are in regular type. My editorial comments and thoughts are in italics [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=330&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><em>I took notes during the <a href="http://www.meetup.com/Boston-cloud-services/calendar/11059697/">Boston Cloud Computing Group Meetup 23-Sept-2009</a> &#8211; the raw notes are below, but a couple of more noteworthy highlights appear first with some of my views interspersed.</em></p>
<h4>Executive Summary &#8211; Key Take-Aways &amp; Highlights</h4>
<p>Notes from Javed Ikbal&#8217;s talk (<a href="http://10domains.blogspot.com/">http://10domains.blogspot.com</a>) are in regular type. <em>My editorial comments and thoughts are in italics or <strong>bold italics</strong> &#8211; so don&#8217;t blame these on Javed. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </em></p>
<ul>
<li><em><strong>Key take-away &#8211; going to the Cloud is waaaay more about Business Tradeoffs than it is about Technology.</strong></em></li>
<li>“There are 2 kinds of companies – those which <em>have had </em>a [data security]breach, and those which <em>are going to have</em> a [data security] breach” -Javed</li>
<li>Centralization of data makes insider threat a bigger risk -Javed</li>
<li>“On premise does not mean people are doing the right thing” –Javed – <em>right on! I bet the majority of the fortune five-million (as 37 Signals refers to the medium and small business market) have insufficient IT – they just don’t know it. Any stats?</em></li>
<li>Someone from the audience stated there are more breaches in on-premise data centers than in cloud. Therefore cloud is safer. <em>I don’t buy the logic. There could so many more publicized breaches in on-premise systems simply because there are so many more on premise data centers today. So this is easy to misinterpret. We can&#8217;t tell either way from the data. <strong>My personal prediction: today if there is a data breach for data stored in the cloud, people will not be able to believe you were reckless enough to store it in the cloud; 5 years from now, if there is a data breach for data stored on premise, people will not be able to believe you were reckless enough to store it locally instead of in the cloud which everyone will then believe is the safest place. </strong></em></li>
<li>Someone from audience commented that business value of losing data will be balanced against business cost of it being exposed. <em>This comment did not account for the PROBABILITY of there being a breach – how do you calculate this risk? I bet it is easier to calculate this risk on the cloud than on premise (though *I* don’t know how to do this)</em></li>
<li>Comment from Stefan: We can’t expect all cloud services to be up all the time (we were chatting about Google and Amazon downtime, which has been well documented). <em>I completely agree – And many businesses don’t have the data to fairly/accurately compare their own uptimes with those of the cloud vendors – and, further, if the cloud vendors did have 100% up-time, <strong>that may destroy the economies we are seeing on the cloud today</strong> (<strong>who cares if it is 100% reliable if it is 0% affordable</strong> &#8211; that&#8217;s too expensive to be interesting)</em></li>
<li>Off-premise security != in cloud – different security issues for different data &#8211; Javed <em>In other words, treat SSN and Credit Card data differently than which books I bought last year. But I can think of LOTS of data that is seemingly innocuous, but that SOME PEOPLE will balk at having it classified  as &#8220;non-sensitive&#8221; &#8211; might be my bookmarks, movie rentals, books purchased, travel plans/history, many more&#8230; not just those that support identity theft and/or direct monetary loss (bank account hacks). I think it would be a fine idea for data hosts to publicly declare their data classification scheme &#8211; shouldn&#8217;t we all have a right to know?<br />
</em></li>
<li><strong><em>I think IT generally &#8211; and The Cloud specifically &#8211; could benefit from the kind of thinking that went into <a href="http://goodguide.com">GoodGuide.com</a>.</em></strong></li>
</ul>
<h2>Raw Notes Follow</h2>
<p>The rest of these notes are a bit rough – and may or may not make sense – but here they are anyway…</p>
<h2>Intros</h2>
<ul>
<li>Pizza &amp; drinks, some social (sat next to Stefan Schueller from <a href="http://techdroid.com">TechDroid Sytems</a> and enjoyed chatting with him)</li>
<li>Went around the room introducing ourselves</li>
<li>People who were hiring / looking for work spoke up</li>
<li>Around 30 people in attendance</li>
<li>Meeting host: Aprigo &#8211; 460 Totten Pond rd, suite 660 &#8211; Waltham, MA  02451 – USA</li>
<li>Feisty audience! Lots of participation. This added to the meeting impact.</li>
</ul>
<h2>Twisted Storage talk</h2>
<p>From Meetup description: Charles Wegrzyn &#8211; CTO at TwistedStorage Inc. (Check actually built an Open source cloud storage system back in &#8216;05)</p>
<p>TwistedStorage is open source software that converts multiple storage<br />
repositories, legacy or green-field, into a single petabyte-scale cloud<br />
for unstructured data, digital media storage, and archiving. The Twisted<br />
Storage Enterprise Storage Cloud provides federated search, electronic<br />
data discovery with lock-down, and policy-driven file management<br />
including indexing, retention, security, encryption, format conversion,<br />
information lifecycle management, and automatic business continuity.</p>
<h4>History of Building Storage Management software</h4>
<ul>
<li>Open Source</li>
<li>Been downloaded 75k times</li>
<li>Re-wrote – now version 4 – in Python</li>
</ul>
<h4>Common anti-pattern observed in real world:</h4>
<ul>
<li>Users storing “stuff” in Exchange since that was a convenient place to store it</li>
<li>Results in a LOT of email storage (and add’l capacity is easy to keep adding on)</li>
<li>Can’t find your data (too much to logically manage)</li>
<li>Backups inadequate</li>
<li>Complexity, complexity, complexity</li>
</ul>
<h4>The Twisted Storage Way</h4>
<ul>
<li>Federated storage silos w/ adaptors/agents</li>
<li>Provide enterprise capabilities spanning sites (access control, audits, search/indexing – including support for metadata, simplified administration and recovery)</li>
<li>Petabyte-scale</li>
<li>ILM = Information Lifecycle Management</li>
<li>Open Source</li>
<li>Work-flow (Python scripts, XML coming)</li>
<li>Policy-driven (“delete this after 2 years”, “encrypt me”) (Python scripts)</li>
</ul>
<h4>Twisted Storage Design Goals</h4>
<ul>
<li>Always available content (via replication)</li>
<li>No back-up or recovery needed (due to replication)</li>
<li>Linear scalability (scales out)</li>
<li>Able to trade off durability with performance</li>
<li>Supports old hardware</li>
<li>Minimal admin overhead</li>
<li>Support external storage systems and linkage</li>
<li>Portable – will run on Linux, Windows, (iPhone?) – due to portable Python implementation</li>
<li>Pricing: Enterprise Edition: $500 / TB up to 2 PB (annual), minimum $10k for first 20 TB (see <a href="http://www.twistedstorage.com">web site</a> for full story)</li>
<li>versus competition like Centera which charge $15k/Silo + Enterprise Edition</li>
<li><a href="http://www.twistedstorage.com">http://www.twistedstorage.com</a>, <a href="mailto:cwegrzyn@twistedstorage.com">cwegrzyn@twistedstorage.com</a></li>
</ul>
<h2>Info Security &amp; Cloud Computing Talk</h2>
<p>From Meetup description:  Javed Ikbal (principal and co-founder of zSquad LLC)- will talk about:   &#8220;Marketing, Uncertainty and Doubt: Information Security and Cloud Computing&#8221;</p>
<ul>
<li>What is the minimum security due diligence that a company needs to do before putting it&#8217;s data in the cloud?</li>
<li>Since 2007, Amazon has been telling us they are &#8220;.. working with a public accounting firm to &#8230; attain certifications such as SAS70 Type II&#8221;  but these have not happened in 2+ years.</li>
<li>On one side of the cloud security issue we have the marketing people, whohype up the existing security and gloss over the non-existing. On the other side we have security services vendors, who hawk their wares by hyping up the lack of security. The truth is, there is a class of data for every cloud out there, and there is also someone who will suffer a data breach because they did not secure it properly.</li>
<li>We will look at Amazon&#8217;s EC2, risk tolerance, and how to secure the data in the cloud.</li>
<li>Javed is a principal and co-founder of zSquad LLC, a Boston-based information security consulting practice.</li>
</ul>
<p>Javed is a Security Consultant</p>
<p>Also co-founded <a href="http://www.layoffsupportnetwork.com">http://www.layoffsupportnetwork.com</a></p>
<p>Formerly worked in Fidelity (in security area)</p>
<h4>Cloud Definition</h4>
<ul>
<li>Elastic – provision up/down on demand (technical)</li>
<li>Avail from anywhere (technical)</li>
<li>Pay-as-you-go (business model)</li>
</ul>
<h4>Cloud Challenges</h4>
<ul>
<li>Data stored in China – gov’t could get at it</li>
<li>We never have direct access</li>
<li>May be locked in? (for practical reasons)</li>
<li>March 7, 2009 from WSJ – Google disclosed that it exposed a “small number” of Google docs – users not supposed to be authorized were able to view them. Google estimated &lt; 0.05% of all stored Google docs were impacted – BUT! – this is a LOT of documents. <a href="http://blogs.wsj.com/digits/2009/03/08/1214/">http://blogs.wsj.com/digits/2009/03/08/1214/</a></li>
<li>Sept 18, 2009 from NYT – a recent bug in Google Apps allowed students at several colleges to read each other’s emails – this impacted only a “small handful” of colleges (like Brown University, for 3 days)<a href="http://www.nytimes.com/external/readwriteweb/2009/09/18/18/18readwriteweb-whoops-students-going-google-get-to-read-ea-12995.html">http://www.nytimes.com/external/readwriteweb/2009/09/18/18/18readwriteweb-whoops-students-going-google-get-to-read-ea-12995.html</a></li>
<li>Google’s official policy for paid customers states “at your sole risk” and no guarantee it will be uninterrupted, timely, secure, or free from errors</li>
<li>Amazon states it is not responsible for “deletioreach” &#8211; Javedn, destruction, loss” etc.</li>
<li>Google will not allow customers to audit Google’s cloud storage claims</li>
<li>Amazon says PCI level 2 compliance is possible with AWS, level 1 not possible</li>
<li>SAS 70 Type II reports not meaningful unless you can see which controls were evaluated</li>
<li>“on premise does not mean people are doing the right thing” –Javed</li>
<li>Perception of more breaches in on-premise systems – but there are so many more of them, it is easy to misinterpret</li>
<li>Business value of losing data will be balanced against business cost of it being exposed – but this does not account for the PROBABILITY of there being a breach – how do you calculate this risk? I bet it is easier to calculate this risk on the cloud than on premise (though *I* don’t know how to do this)</li>
<li>We can’t expect all cloud services to be up all the time – right, and many businesses don’t have the data to fairly/accurately compare their own uptimes with those of the cloud vendors – and, further, if the cloud vendors did have 100% up-time, that may destroy the economies we are seeing on the cloud today (it may be 100% reliable, but too expensive to be interesting)</li>
<li>Off-premise security != in cloud – different security issues for different data</li>
<li>“There are 2 kinds of companies – those which <em>have had </em>a [data security]breach, and those which <em>are going to have</em> a [data security] breach” -Javed</li>
<li>Centralization of data makes insider threat a bigger risk</li>
<li>Customers should perform on-site inspections of cloud provider facilities (but rare?)</li>
<li>Ask SaaS vendor to see 3rd party audit reports – SalesForce has one, Amazon does not (Google neither? What about Microsoft – not yet?)</li>
<li>Providers need to be clear about what you will NOT support – e.g., Amazon took 2 years to provide an answer… Amazon/AWS disclaimers are excellent models</li>
<li>Providers need to understand they may be subject to legal/regulatory discovery due to something a customer did</li>
<li>Unisys has ISO 27001-certified data centers (high cost, effort)</li>
</ul>
<h4>Creating Secure Software</h4>
<ul>
<li>Devs care about deadlines and meeting the requirements</li>
<li>If security is not in the requirements, it will not get done</li>
<li>if devs don’t know how to code securely, it will not get done right (if at all)</li>
<li>Train your devs and archs: one day will help with 90% of issues!</li>
<li>Build security into your software dev life-cycle</li>
<li>Let security experts, not necessarily developers, write the security requirements</li>
<li>Secure Code Review can be expensive –  bake in an application security audit into your schedule, to be done before going live</li>
<li>(high customer extensibility + low provider security responsibility) IaaS – PaaS – SaaS (low customer extensibility + high provider security responsibility)</li>
</ul>
<br />Posted in Cloud Computing, Trip Report Tagged: cloud, security <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/330/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/330/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/330/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/330/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/330/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=330&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/09/23/cloud-security-a-business-tradeoff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Your First Code Camp Talk</title>
		<link>http://blog.codingoutloud.com/2009/09/23/your-first-code-camp-talk/</link>
		<comments>http://blog.codingoutloud.com/2009/09/23/your-first-code-camp-talk/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 11:03:37 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Presenting]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=319</guid>
		<description><![CDATA[I gave my first Code Camp talk earlier this year &#8211; at the New Hampshire Code Camp in Feb  2009. Have you ever thought about giving a Code Camp talk yourself, but have had trouble getting over the hump from &#8220;want to do&#8221; to &#8220;have done&#8221;?
I am considering giving a talk at the upcoming Boston [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=319&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I gave my first Code Camp talk earlier this year &#8211; at the <a href="http://www.thedevcommunity.org/Events/PresentationSummary.aspx?id=322&amp;pid=401">New Hampshire Code Camp in Feb  2009</a>. Have you ever thought about giving a Code Camp talk yourself, but have had trouble getting over the hump from &#8220;want to do&#8221; to &#8220;have done&#8221;?</p>
<p>I am considering giving a talk at the upcoming Boston (Waltham) Code Camp 12 titled &#8220;So, You Want to Give Your First Code Camp Talk&#8221; which will address that. Would that be of interest to you? If so, I&#8217;d like to hear from you in advance. Please comment either via comments to this blog post, or email me directly (to codingoutloud at gmail dot com).</p>
<p>What is blocking you from presenting?</p>
<p>From those of you who have successfully presented, do you have pointers for the aspiring speakers among us?</p>
<p>Inquiring minds want to know!</p>
<br />Posted in Presenting, Programming  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/319/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=319&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/09/23/your-first-code-camp-talk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Azure Development Requirements</title>
		<link>http://blog.codingoutloud.com/2009/09/22/azure-development-requirements/</link>
		<comments>http://blog.codingoutloud.com/2009/09/22/azure-development-requirements/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 03:43:04 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://codingoutloud.wordpress.com/2009/09/22/azure-development-requirements/</guid>
		<description><![CDATA[Executive Summary
This post describes some key aspects of your development environment that need to be in place in order to to write and test code for Windows Azure.
Windows XP does not natively support Azure Development
For all the developers running Windows XP face an obstacle to writing code for Windows Azure:  developing for Azure requires Windows [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=317&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<h3>Executive Summary</h3>
<p>This post describes some key aspects of your development environment that need to be in place in order to to write and test code for Windows Azure.</p>
<h3>Windows XP does not natively support Azure Development</h3>
<p>For all the developers running Windows XP face an obstacle to writing code for Windows Azure:  developing for Azure requires Windows 7, Windows Vista, or Windows Server 2008. The fundamental dependency is that the Azure Fabric Controller (which runs on your desktop for development purposes, simulating cloud behavior) relies on IIS 7, which (you guessed it!) ships with Vista, Windows 7, and Windows Server 2008.</p>
<p>One option is to upgrade your operating system. If you are not quite ready to do that, you have another option – use Virtual PC to run Windows 7 from Windows XP. (This technique also works to run a virtualized Windows 7 image from Vista – or even Win 7 itself – since maybe you don’t want to foul your machine with beta software, like a sandbox for Visual Studio 2010 while it is still in beta (beta 1 as of this writing)).</p>
<h3>Essential Software to Develop for Azure</h3>
<p>The four essentials are:</p>
<ul>
<li>Have IIS 7.x on one of Windows Vista (Business or Ultimate, I believe) –or– Windows Server 2008 –or– Windows 7</li>
<li>Install Visual Studio 2010 – currently in beta (beta 1 as of this writing) – or Visual Studio 2008</li>
<li>Install Azure plug-in – currently in beta – to Visual Studio 2010 or Visual Studio 2008</li>
<li>Create an account on Azure hosting in order to deploy to/test on the cloud</li>
</ul>
<p>I wrote a separate, detailed post on <a title="Step-by-Step - Creating a Virtual Machine image using Microsoft Virtual PC 2007" href="http://blog.codingoutloud.com/2009/09/20/creating-a-windows-7-virtual-machine-image-using-microsoft-virtual-pc-2007/">creating a virtual machine image for Windows 7 using Virtual PC 2007</a>.</p>
<br />Posted in Azure, Programming  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/317/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=317&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/09/22/azure-development-requirements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating a Windows 7 Virtual Machine Image using Microsoft Virtual PC 2007</title>
		<link>http://blog.codingoutloud.com/2009/09/20/creating-a-windows-7-virtual-machine-image-using-microsoft-virtual-pc-2007/</link>
		<comments>http://blog.codingoutloud.com/2009/09/20/creating-a-windows-7-virtual-machine-image-using-microsoft-virtual-pc-2007/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 03:35:00 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Step-by-Step]]></category>
		<category><![CDATA[virtual pc]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://codingoutloud.wordpress.com/2009/09/20/creating-a-windows-7-virtual-machine-image-using-microsoft-virtual-pc-2007/</guid>
		<description><![CDATA[
Executive Summary
This post describes how to install Microsoft Virtual PC 2007, followed by a detailed walk-through of how to create a virtual machine image of a fresh Windows 7 installation using Virtual PC 2007.
In this post I concentrate on creating a Virtual PC image for Windows 7, but the steps for the other operating systems [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=314&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://codingoutloud.files.wordpress.com/2009/09/coolmonkeythinker.png"><img style="display:inline;border-width:0;margin:0 10px 5px 0;" title="cool-monkey-thinker" src="http://codingoutloud.files.wordpress.com/2009/09/coolmonkeythinker_thumb.png?w=157&#038;h=244" border="0" alt="cool-monkey-thinker" width="157" height="244" align="left" /></a></p>
<h2>Executive Summary</h2>
<p>This post describes how to install Microsoft Virtual PC 2007, followed by a detailed walk-through of how to create a virtual machine image of a fresh Windows 7 installation using Virtual PC 2007.</p>
<p>In this post I concentrate on creating a Virtual PC image for Windows 7, but the steps for the other operating systems are similar.</p>
<p>Note this post deals with concerns for Developers. This post does not cover use of (related) virtualization techniques which are very popular today on the server-side.</p>
<h3>Why Use Virtual Machines?</h3>
<p>There are several reasons to use a Virtual PC-managed virtual machine for development:</p>
<p><strong>You don’t want to install Pre-Release software (like a CTP &#8211; Community Technology Preview, which means &#8220;very rough&#8221;) or beta software directly on your development machine.</strong> A virtual machine environment makes it easy to manage these without risking your real machine.</p>
<p><strong>You want to experiment.</strong> You may want to try out some testing with 4 GB or RAM, then maybe with 1/2 GB or RAM – so you know what to expect. Or you to keep testing something that changes your machine – and need to “start from scratch” frequently.</p>
<p><strong>You want to run multiple operating systems.</strong> You may want to run Windows 7 to make sure your apps run fine on it – but you also don’t want to give up XP quite yet. You can run Windows 7 within a Windows XP host.</p>
<p><strong>You want to set up a machine configuration and reuse it.</strong> You go through a lot of trouble to get your configuration “just so” and now want to share that with colleagues – or with yourself (on your home machine).</p>
<h3>Are there other Virtualization options?</h3>
<p><em>If you are a developer running XP -or- are running Win 7 on hardware that does not support hardware virtualization, Virtual PC 2007 is very likely what you want.</em></p>
<p>If you are running Windows 7, you can look into <a href="http://www.microsoft.com/windows/virtual-pc/get-started.aspx">Virtual PC (sometimes seen as Virtual PC 7)</a> (which includes XP Mode). Unlike Virtual PC 2007 which will work regardless of whether you have hardware virtualization, Virtual PC will work ONLY WHEN your computer supports hardware virtualization. <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0ee2a17f-8538-4619-8d1c-05d27e11adb2&amp;displaylang=en">Does my PC support hardware virtualization</a> (or <a href="http://www.microsoft.com/windows/virtual-pc/support/configure-bios.aspx">XP Mode</a>)?</p>
<p>Unlike Virtual PC <strong>2007</strong>, Virtual PC is for Windows 7 will not work on XP (but will work on the Windows 7 beta, sometimes known as Vista <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
<p>Only one of Virtual PC -or- Virtual PC 2007 can be installed concurrently on any given machine.</p>
<p>From Microsoft, other vendors, and open source, there are <a href="http://en.wikipedia.org/wiki/Comparison_of_platform_virtual_machines">other sources of virtualization technology</a>, and <a href="http://en.wikipedia.org/wiki/Xensource#MS_Windows_systems_as_guests">some might even be compatible with Virtual PC</a> or <a href="http://www.crn.com/software/184425640">VHD</a>. [Did you know <a href="http://en.wikipedia.org/wiki/VHD_(file_format)">VHD formal is an open standard</a>?]. Though, consider that Virtual PC 2007 does not cost anything beyond the Windows license you (presumably) already have. Microsoft has many virtualization solutions, some with different purposes, such as App-V which is more for enterprise roll-out of apps (get it? <em><strong>App</strong></em>-V) to minimize incompatibilities due to other apps or environmental changes.</p>
<p><em>For developers, let&#8217;s assume (for reasons stated above in prior section) that you want a parallel universe to run other software within &#8211; safely &#8211; like an early beta&#8230; Virtual Machine images make these scenarios possible and easy! Let’s get down to business and walk through how to install &amp; configure these virtual images.</em></p>
<h3>Installing Virtual PC 2007</h3>
<p>Visit the <span style="text-decoration:line-through;"><a href="http://www.microsoft.com/Downloads/details.aspx?familyid=04D26402-3199-48A3-AFA2-2DC0B40A73B6&amp;displaylang=en">download page for Microsoft Virtual PC 2007</a></span> <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=28C97D22-6EB8-4A09-A7F7-F6C7A1F000B5&amp;displaylang=en">download page for Microsoft Virtual PC <strong>2007 sp1</strong></a> and then select the appropriate version for your system (that is, 32- or 64-bit version).</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb.png?w=244&#038;h=79" border="0" alt="image" width="244" height="79" /></a></p>
<p>Once downloaded, install it.</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image1.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb1.png?w=244&#038;h=113" border="0" alt="image" width="244" height="113" /></a></p>
<p>If you already have an earlier version of Virtual PC installed, you will likely see this self-explanatory message to uninstall the older version. If you are upgrading to Virtual PC 2007 <strong>sp1 </strong>from Virtual PC 2007, the installer will handle it for you.</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image2.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb2.png?w=244&#038;h=72" border="0" alt="image" width="244" height="72" /></a></p>
<p>Go to your trusty Add or Remove Programs applet and remove any remnants of old Virtual PC installs and proceed.</p>
<p>You can run Virtual PC 2007 and look in Help &gt; About to see which version you are running. Version &#8220;Microsoft Virtual PC 6.0.192.0&#8243; is Virtual PC 2007 <strong>sp1</strong>, which is the one expected by the rest of this post.</p>
<h2>Installing Microsoft Virtual PC 2007</h2>
<p>Run Virtual PC 2007 installer <strong>&#8230;</strong></p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image3.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb3.png?w=244&#038;h=185" border="0" alt="image" width="244" height="185" /></a></p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image4.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb4.png?w=244&#038;h=185" border="0" alt="image" width="244" height="185" /></a></p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image5.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb5.png?w=244&#038;h=102" border="0" alt="image" width="244" height="102" /></a></p>
<p>.. fill in your own info here, of course.</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image6.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb6.png?w=244&#038;h=185" border="0" alt="image" width="244" height="185" /></a></p>
<p>I kept the default installation location and let it rip. It completed around 2 minutes later.</p>
<p><strong>NOW GET DOWN TO BUSINESS!<br />
</strong></p>
<h2>Create fresh Windows 7 virtual machine environment using Microsoft Virtual PC 2007</h2>
<p>You may wish to <a href="http://www.microsoft.com/downloads/thankyou.aspx?familyId=1b544e90-7659-4bd9-9e51-2497c146af15&amp;displayLang=en">run the Windows 7 Upgrade Advisor</a> on your machine to make sure Windows 7 will be happy (as of this writing, the upgrade advisor tool is in beta). Assuming that goes well..</p>
<p>Run Microsoft Virtual PC 2007. From the opening screen, click the “New…” button:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image7.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb7.png?w=244&#038;h=168" border="0" alt="image" width="244" height="168" /></a></p>
<p>The wizard will start. Click the “Next &gt;” button:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image8.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb8.png?w=244&#038;h=188" border="0" alt="image" width="244" height="188" /></a></p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image9.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb9.png?w=244&#038;h=188" border="0" alt="image" width="244" height="188" /></a></p>
<p>Select “Create a virtual machine” and click “Next &gt;” button…</p>
<p>Give your new Virtual Machine an appropriate name:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image10.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb10.png?w=244&#038;h=188" border="0" alt="image" width="244" height="188" /></a></p>
<p>I also changed my location:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image11.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb11.png?w=244&#038;h=188" border="0" alt="image" width="244" height="188" /></a></p>
<p>Select “Other” as Operating system and click “Next &gt;” …</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image12.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb12.png?w=244&#038;h=188" border="0" alt="image" width="244" height="188" /></a></p>
<p>The recommended RAM will likely not be sufficient, so click “Adjusting the RAM” option:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image13.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb13.png?w=244&#038;h=188" border="0" alt="image" width="244" height="188" /></a></p>
<p>How much memory is right? Considering <a href="http://www.microsoft.com/windows/windows-7/get/system-requirements.aspx">Windows 7 system requirements</a> (which call for at least 1 GB in the 32-bit version) and <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=255fc5f1-15af-4fe7-be4d-263a2621144b&amp;displaylang=en#Requirements">Visual Studio 2010 (beta 1) system requirements</a> (which also calls for 1 GB (though <em>not an additional 1 GB</em>), you will hopefully be able to allocate at least 1 GB. I have 3 GB on my host machine, so I allocated 1.5 GB (1024 MB + 512 MB = 1536 MB). These values can also be tweaked later using Virtual PC.</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image14.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb14.png?w=244&#038;h=188" border="0" alt="image" width="244" height="188" /></a></p>
<p>I chose to create a new virtual disk:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/new-virt-hard-disk1.png"><img class="alignnone size-full wp-image-566" title="new-virt-hard-disk" src="http://codingoutloud.files.wordpress.com/2009/09/new-virt-hard-disk1.png?w=510&#038;h=396" alt="" width="510" height="396" /></a></p>
<p>For disk space, you have another set of decisions – Windows 7 wants 15 GB, Visual Studio 2010 wants 3 GB, so I rounded up to a nice even 18.5 GB (since I don’t have an abundance of space here):</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image15.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb15.png?w=244&#038;h=188" border="0" alt="image" width="244" height="188" /></a></p>
<p>Click “Next &gt;” and you are almost done with this step.</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image16.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb16.png?w=244&#038;h=188" border="0" alt="image" width="244" height="188" /></a></p>
<p>Click “Finish” and now we are in business within Virtual PC:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image17.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb17.png?w=244&#038;h=168" border="0" alt="image" width="244" height="168" /></a></p>
<p>Click on “Azure Dev” (or whatever you called your image) and click “Start” button to proceed:</p>
<p>If you have trouble starting your virtual machine due to not enough memory available, as in the following message, you either need to adjust its memory requirements of free up some memory.</p>
<p>You might consider throttling back your Anti-Virus software which could be a big consumer of memory (I disabled the on-the-fly file-system protection). Also, of course, close all unnecessary processes. The long-term solution is to buy a 64-bit machine with oodles of memory and be happy with that.</p>
<p>Once you have enough memory available, you will see the virtual machine complain very soon as it craps out after spinning up and thinking for a couple of minutes:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image18.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb18.png?w=244&#038;h=177" border="0" alt="image" width="244" height="177" /></a></p>
<p><strong><em>This is expected.</em></strong> You still need to install Windows 7 to move this along. To do this, make sure you have a ready-to-go image of Windows 7 as an ISO file (as you might download from MSDN) or physical media. You have two menu options, one for each of these cases:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image19.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb19.png?w=242&#038;h=154" border="0" alt="image" width="242" height="154" /></a></p>
<p>In my case, I selected “Capture ISO Image…” and installed from there. Note that you navigate your host file-system for the ISO image to capture – not the file-system on your virtual machine, since that does not yet exist.</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image20.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb20.png?w=244&#038;h=180" border="0" alt="image" width="244" height="180" /></a></p>
<p>Click “Open” and notice how the CD menu on the virtual machine has been updated:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image21.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb21.png?w=244&#038;h=87" border="0" alt="image" width="244" height="87" /></a></p>
<p>Now you can reboot your virtual machine to let the installation on the captured ISO image run (as if it was auto-starting to install on a physical machine). To reboot, choose Reset from the Action menu:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image22.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb22.png?w=244&#038;h=144" border="0" alt="image" width="244" height="144" /></a></p>
<p>You will be warned:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image23.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb23.png?w=244&#038;h=101" border="0" alt="image" width="244" height="101" /></a></p>
<p>But since you don’t have any unsaved changes to worry about, select the Reset button and proceed with the reset. (You have saved some information, you may be thinking, like memory and hard disk configuration; but that is all metadata about your image – not changes within the virtual machine itself – so there is no problem here.)</p>
<p>The reset begins…</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image24.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb24.png?w=244&#038;h=167" border="0" alt="image" width="244" height="167" /></a></p>
<p>Here is a warning which we will come back to. Dismiss this for now:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image25.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb26.png?w=244&#038;h=178" border="0" alt="image" width="244" height="178" /></a></p>
<p>The system will chug and chug for a looong time – mine took around two hours to run (the good news is I let this run while I was watching the New England Patriots game this Sunday; the bad news is the Patriots fell to the Jets):</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image26.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb27.png?w=244&#038;h=202" border="0" alt="image" width="244" height="202" /></a></p>
<p>You will then proceed to install Windows 7 … mostly you will be just moving along without much fanfare, though you will need to name your “computer”, come up with a username (and optionally a password), and will need your Activation Key for Windows 7. Here is a <a href="http://www.ehow.com/how_5092643_install-windows-virtual-pc.html">good guide for installing Windows 7</a> on Virtual PC 2007. (And <a href="http://www.shivaranjan.com/2009/05/14/how-to-install-windows-7-in-windows-vista-or-windows-xp-using-virtual-pc-2007/">another</a>.)</p>
<p>Don&#8217;t that forget the magic key/mouse combo to un-capture your mouse from the Virtual Machine is <strong>Right-Alt while dragging the mouse</strong>!!</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/magic-key-mouse-combo-to-uncapture-mouse-from-virtual-machine.png"><img class="alignnone size-full wp-image-568" title="magic-key-mouse-combo-to-uncapture-mouse-from-virtual-machine" src="http://codingoutloud.files.wordpress.com/2009/09/magic-key-mouse-combo-to-uncapture-mouse-from-virtual-machine.png?w=388&#038;h=256" alt="" width="388" height="256" /></a></p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image27.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb28.png?w=244&#038;h=204" border="0" alt="image" width="244" height="204" /></a></p>
<p>After you get Windows 7 all configured, you probably still want to come back and install some updates:</p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image28.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb29.png?w=244&#038;h=150" border="0" alt="image" width="244" height="150" /></a></p>
<p><a href="http://codingoutloud.files.wordpress.com/2009/09/image29.png"><img style="display:inline;border-width:0;" title="image" src="http://codingoutloud.files.wordpress.com/2009/09/image_thumb30.png?w=244&#038;h=158" border="0" alt="image" width="244" height="158" /></a></p>
<p>But that’s the end of the detailed tour. You should now have a usable baseline virtual machine image that you can reuse, share, play with, etc. Make sure you create a back-up copy! And have a look at the features which allow you to manage roll-backs.</p>
<p>Good luck!</p>
<br />Posted in Programming, Step-by-Step Tagged: virtual pc, virtualization, windows 7 <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/314/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=314&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/09/20/creating-a-windows-7-virtual-machine-image-using-microsoft-virtual-pc-2007/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/coolmonkeythinker_thumb.png" medium="image">
			<media:title type="html">cool-monkey-thinker</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb6.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb7.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb8.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb9.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb10.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb11.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb12.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb13.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb14.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/new-virt-hard-disk1.png" medium="image">
			<media:title type="html">new-virt-hard-disk</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb15.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb16.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb17.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb18.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb19.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb20.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb21.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb22.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb23.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb24.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb26.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb27.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/magic-key-mouse-combo-to-uncapture-mouse-from-virtual-machine.png" medium="image">
			<media:title type="html">magic-key-mouse-combo-to-uncapture-mouse-from-virtual-machine</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb28.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb29.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/image_thumb30.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Boston Azure User Group</title>
		<link>http://blog.codingoutloud.com/2009/09/18/boston-azure-user-group/</link>
		<comments>http://blog.codingoutloud.com/2009/09/18/boston-azure-user-group/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 16:23:08 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Boston Azure User Group]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[azure]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=242</guid>
		<description><![CDATA[Coming soon &#8211; a new user group for the Boston/Cambridge/Waltham area:
The Boston Azure User Group will focus on Cloud Computing, specifically as it relates to Microsoft&#8217;s Windows Azure platform.
This group will likely kick-off in October 2009 &#8211; exact date to be determined - exact dates have now been determined &#8211; now working on the times [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=242&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Coming soon &#8211; a new user group for the Boston/Cambridge/Waltham area:</p>
<p>The <a title="Boston Azure User Group" href="http://bostonazure.org"><strong>Boston Azure User Group</strong></a> will focus on Cloud Computing, specifically as it relates to Microsoft&#8217;s Windows Azure platform.</p>
<p>This group <strong>will </strong><span style="text-decoration:line-through;">likely</span> kick-off in October 2009 &#8211; <span style="text-decoration:line-through;">exact date to be determined -</span> <strong>exact dates have now been determined</strong> &#8211; now working on the times <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   &#8211; <strong>see the <a title="Boston Azure User Group" href="http://bostonazureusergroup.org">Boston Azure User Group</a> site for details and updates &#8211; and to join the mailing list</strong>.</p>
<p>What would YOU like to see covered in the meetings of the Boston Azure User Group? Please leave a comment with your thoughts / feedback.</p>
<p>And see you at the Boston Azure User Group!</p>
<br />Posted in Boston Azure User Group, Events, Programming Tagged: azure, Boston Azure User Group <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/242/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=242&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/09/18/boston-azure-user-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>The Fountainhead of Open Source</title>
		<link>http://blog.codingoutloud.com/2009/09/14/the-fountainhead-of-open-source/</link>
		<comments>http://blog.codingoutloud.com/2009/09/14/the-fountainhead-of-open-source/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 10:38:58 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Essay]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Silliness]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=224</guid>
		<description><![CDATA[Just watched the The Fountainhead movie from 1946 (yes, from netflix).
Here is the plot summary, brought up-to-date:

Open Source is represented by the protagonist, a brilliant architect named Howard Rourke. Rourke is idealistic, does his own thing, is uncompromising, and is not driven by money or recognition &#8211; and certainly not by Big Business.
Big Business is  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=224&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Just watched the <a href="http://en.wikipedia.org/wiki/The_Fountainhead_(film)">The Fountainhead</a> movie from 1946 (yes, from netflix).</p>
<div id="attachment_226" class="wp-caption alignleft" style="width: 232px"><a href="http://codingoutloud.files.wordpress.com/2009/09/fountainhead-of-open-source.png"><img class="size-medium wp-image-226" title="fountainhead-of-open-source" src="http://codingoutloud.files.wordpress.com/2009/09/fountainhead-of-open-source.png?w=222&#038;h=300" alt="Howard Rourke hacking Open Source code" width="222" height="300" /></a><p class="wp-caption-text">Howard Rourke hacking Open Source</p></div>
<p>Here is the plot summary, brought up-to-date:</p>
<ul>
<li>Open Source is represented by the protagonist, a brilliant architect named Howard Rourke. Rourke is idealistic, does his own thing, is uncompromising, and is not driven by money or recognition &#8211; and certainly not by Big Business.</li>
<li>Big Business is  represented by newspaper magnate Gail Wynand. Wynand wields substantial influence and is in perpetual pursuit of any means to incite the populace &#8211; an energized populace buys more product.</li>
<li>Consultants and Certified Vendor X Developers and Vendor Partners are represented by  architect Peter Keating. Keating goes with the flow, producing whatever the powers that be say is desirable. At one point, he mentions to Ms. Francon he&#8217;s polling folks on what they think of Rourke&#8217;s latest building to which she responds (with some disdain) &#8220;why, so you&#8217;ll know what <strong>you</strong> think of it?&#8221;</li>
</ul>
<p>Lessons:</p>
<ul>
<li>Talent != influence. Keating&#8217;s influence is limited to those who recognize his greatness. Most only recognize as great what they are told to recognize as great.</li>
<li>Passion can be directed constructively (Rourke pours his love into his life&#8217;s work) or destructively (Wynand devotes his career to controlling the masses through his newspaper).</li>
</ul>
<p>The movie is based <a href="http://en.wikipedia.org/wiki/The_Fountainhead#Gail_Wynand">a book of the same title</a>. The author, Ayn Rand, became well known for her <a href="http://en.wikipedia.org/wiki/Objectivism_(Ayn_Rand)">Objectivism</a> philosophy of life, exemplified in the movie by <a href="http://en.wikipedia.org/wiki/Gary_Cooper">Gary Cooper</a> who played the lead character, Howard Roark. [I wonder what <a href="http://stallman.org/">Richard Stallman</a> thinks of the book?]</p>
<p>I wonder how many professional software developers identify more with Howard Rourke or Peter Keating? And which is more desirable?</p>
<p>Any my clean analogies fall apart when one considers the combinations of Big  Business and Open Source. Microsoft just announced CodePlex.org and the CodePlex Foundation &#8220;to enable the exchange of code and understanding among software companies and open source communities.&#8221;</p>
<p>A dirty little secret of Eclipse, Linux, Apache and other high-profile projects is that they also have professional, full-time staff &#8211; sponsored by Big Business (like IBM) &#8211; since the success of these endeavors is strategic for their business.</p>
<p>Maybe Open Source isn&#8217;t as pure as the <a href="http://gnuwin.epfl.ch/articles/en/cathedralbazaar/cathedral-bazaar.pdf">romantic notion of developers from around the world contributing</a> since it was a nice thing to do. The world-wide altruistic contributions may still be there in some cases, just supplemented by Big Business. Which is okay with me, though might not be with Howard Rourke.</p>
<p><span id="more-224"></span></p>
<p>(The image above is a mashup of http://www.coverbrowser.com/image/bestselling-movies-2006/911-1.jpg and http://farm4.static.flickr.com/3045/2997960369_258313ab0a.jpg, both of which were found on the web with Creative Commons licenses allowing this use. I used Google&#8217;s Advanced Search for Images with a License filter to find these.)</p>
<br />Posted in Essay, Random, Silliness Tagged: open source <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/224/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=224&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/09/14/the-fountainhead-of-open-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/09/fountainhead-of-open-source.png?w=222" medium="image">
			<media:title type="html">fountainhead-of-open-source</media:title>
		</media:content>
	</item>
		<item>
		<title>A Podcast Mashup for Agile Development Practices (hosted on SpokenWord.org)</title>
		<link>http://blog.codingoutloud.com/2009/08/30/podcast-mashup-for-agile-dev-practices-hosted-on-spokenword-org/</link>
		<comments>http://blog.codingoutloud.com/2009/08/30/podcast-mashup-for-agile-dev-practices-hosted-on-spokenword-org/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 03:36:32 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Podcast Mashup]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=151</guid>
		<description><![CDATA[Agile Development Practices Podcast
Delivered as a Podcast Mashup
Executive Summary
I&#8217;ve created a Podcast Mashup on SpokenWord.org. This is a hand-picked collection of episodes selected from assorted Podcasts (from other, currently-available sources, nothing originated by me!) which provided particularly insightful coverage of topics important in Agile Development Practices.
The RSS feed is here: http://feeds.feedburner.com/AgileDevPractices (wrapped by Feedburner so I have [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=151&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<h1>Agile Development Practices Podcast</h1>
<h2><em>Delivered as a <strong>Podcast Mashup</strong></em></h2>
<h2>Executive Summary</h2>
<p>I&#8217;ve created a Podcast Mashup on SpokenWord.org. This is a hand-picked collection of episodes selected from assorted Podcasts (from other, currently-available sources, nothing originated by me!) which provided particularly insightful coverage of topics important in <a title="Main descriptive page" href="http://www.spokenword.org/playlist/2875">Agile Development Practices</a>.</p>
<p>The RSS feed is here: <a title="RSS feed for Agile Development Practices episodes" href="http://feeds.feedburner.com/AgileDevPractices">http://feeds.feedburner.com/AgileDevPractices</a> (wrapped by <a href="http://feedburner.google.com/">Feedburner</a> so I have some idea of how many folks are using it).</p>
<p>Be aware that subscribing to a feed containing more than one episode will often only download for you the latest episode, unless you specifically ask for others.</p>
<p>A longer, more detailed discussion follows.</p>
<h2>Motivation for Providing a Curated Feed</h2>
<p>Okay, I admit it: I have been a heavy user of Podcasts for a very long time. I&#8217;ve been using audio downloaded from the web since before <a href="http://en.wikipedia.org/wiki/Ipod">iPod</a>s existed and <a href="http://en.wikipedia.org/wiki/Rss">RSS feeds</a> were pervasive &#8211; and surely long before the term <a href="http://en.wikipedia.org/wiki/Podcast">Podcast</a> became part of our vocabulary.</p>
<div id="attachment_152" class="wp-caption alignleft" style="width: 209px"><a rel="attachment wp-att-152" href="http://blog.codingoutloud.com/2009/08/30/podcast-mashup-for-agile-dev-practices-hosted-on-spokenword-org/podcast-episode-count/"><img class="size-full wp-image-152" title="Bill's podcast episode count on iTunes" src="http://codingoutloud.files.wordpress.com/2009/08/podcast-episode-count.png?w=199&#038;h=73" alt="3,753 podcast episodes.. that'll keep me busy" width="199" height="73" /></a><p class="wp-caption-text">This screen clipping from iTunes is showing there are a whopping 3,754 podcast episodes sitting on my hard disk; good thing I have a spacious 160GB iPod Video Classic! </p></div>
<p>Yes, I have <em>several thousand episodes</em> from a wide-range of Podcasts &#8211; from 120 Podcast feeds &#8211; all sitting in iTunes on my hard disk, and being sync&#8217;d to my trusty iPod Video Classic, consuming around 75% of its 160 gigabytes. I suppose this makes me clinically addicted. But I&#8217;m okay with that.</p>
<p>Many (okay, most) of my podcasts are technical in nature &#8211; I take my profession (software development) very seriously and remain permanently paranoid about ever falling behind or getting stale. I listen to a lot of excellent material (while commuting, at gym, out walking, though not while sleeping).</p>
<p>It is rather easy for me to recognize a worthwhile episode on a topic of interest and mark it on my iPod for future reference. (I do this by setting the episode&#8217;s &#8220;rating&#8221; &#8211; 0-5 stars &#8211; taking advantage of one of the few updates one can make on an iPod that gets sync&#8217;d back to iTunes.)</p>
<p>Now I want to offer something back by spreading the word. So I figure, if I am identifying these for my own benefit anyway, why not share these back with the community. I don&#8217;t know of anyone else doing this sort of curation.</p>
<p>By the way, I think this matters because of the astounding number of podcasts available out in the wild. I could not find a definitive number, but Steve Jobs <a href="http://www.straightupsearch.com/archives/2007/09/apple_announces.html">announced back in 2007</a> &#8211; nearly exactly two years before this writing &#8211; that 125,000 podcasts were being published through iTunes. I believe there is value in helping each other navigate the resources available on a variety of topics &#8211; from software development to <a title="Knitting Podcast by Guido Stein" href="http://www.itsapurlman.com/">knitting</a>. We all have limited time and we want to spend it well.</p>
<h2>The SpokenWord.org Platform for Podcast Mashups</h2>
<p>The <a title="Doug Kaye's blog" href="http://www.blogarithms.com/">cool guys like Doug Kaye</a> who bring us the <a title="The Conversations Network (conversationsnetwork.org)" href="http://www.conversationsnetwork.org/">Conversations Network</a> &#8211; with channels for <a title="IT Conversations channel" href="http://itc.conversationsnetwork.org/">IT Conversations</a>, <a title="Social Innovation channel" href="http://sic.conversationsnetwork.org/">Social Innovation</a>, and the recently added Computer Human Interaction (CHI) channel <a title="CHI Conversations channel" href="http://chi.conversationsnetwork.org/">CHI Conversations</a> &#8211; have gone Web 2.0 on us and are working hard on a platform &#8211; <strong><a title="SpokenWord.org" href="http://SpokenWord.org">SpokenWord.org</a></strong> &#8211; which essentially lets individuals curate our own mini-channels, which SpokenWord calls <a title="FAQ entry on SpokenWord.org &quot;Collections&quot;" href="http://www.spokenword.org/faq-collectionsBasic">Collections</a>. We can share out our Collections via RSS feeds (plus other consumption options for those who <a title="Login for SpokenWord.org - using Facebook, OpenID, or other means" href="http://www.spokenword.org/login">create an account</a>), which of course is the interesting part.</p>
<p>SpokenWord is not actually hosting any audio &#8211; SpokenWord only references existing audio (individual files or whole feeds) visible already on the web. So&#8230; This makes a SpokenWord Collection close to the moral equivalent of a bunch of <a title="What is Twitter? (see also http://twitter.com)" href="http://en.wikipedia.org/wiki/Twitter">Twitter</a> <a title="What is a Twitter &quot;Retweet&quot;?" href="http://wiki.answers.com/Q/What_is_the_meaning_of_%27RT%27_in_Twitter">Retweets</a> &#8211; other people&#8217;s content re-disseminated. Or you could think about this as <a href="http://en.wikipedia.org/wiki/Cross-cutting_concern">cross-cutting concern</a> where the system is the <a title="What is the &quot;podosphere&quot;?" href="http://en.wiktionary.org/wiki/podosphere#Noun">podosphere</a> and this related set of podcast episodes from across many podcasts is included in one convenient place (like an XML config file in an application, though this config file is an RSS feed). Or it is just like a <a title="LibraryThing allows you to publicly post your book lists" href="http://www.librarything.com/">list of recommended books</a>; a useful list of recommended books is not just all the books from certain publishers; it is always more nuanced and far more focused than that or it just ain&#8217;t useful!</p>
<p>I like to think about this approach to curating &amp; republishing as a <strong>Podcast Mashup</strong>, which I am defining as follows..</p>
<blockquote><p>A <strong>Podcast Mashup</strong> is a <em><strong>curated</strong> </em>Podcast with a <strong><em>theme</em></strong>. A Podcast Mashup is built by selectively including <em><strong>episodes</strong> </em>from various sources &#8211; usually podcasts, but could even include an MP3 hanging out on the web &#8211; and combines these into a <strong><em>thematic whole</em></strong>.</p>
<p>This is in contrast to a feed that just aggregates other feeds; a Podcast Mashup is <em><strong>curated</strong></em> &#8211; it is selective &#8211; you want to tune in because it is &#8220;the best of&#8221; &#8211; not just &#8220;all of&#8221; &#8211; the topic. If there are two excellent episodes on the same topic, the curator may choose to just include one since there was not enough difference between the two.</p></blockquote>
<p>Using SpokenWord&#8217;s Collection feature, I created my first Podcast Mashup this weekend on a topic of great interest to me and presumably many others: my theme is <a title="Agile Development Practices description page" href="http://www.spokenword.org/playlist/2875">Agile Development Practices</a>.</p>
<p>The process was fairly straightforward.</p>
<ol>
<li>Identify the podcast episodes of interest &#8211; the best ones that match your theme. I did this by marking them on my iPod using the zero-to-five star rating system supported on my iPod. I collected these ratings over many months of listening.</li>
<li>The ratings are sync&#8217;d back to iTunes &#8211; so I created a Smart Playlist (filterted to only show 5-star-rated podcast episodes) to show them all at once.</li>
<li>Make sure the episodes are known to the SpokenWord system (only 4 of the initial 16 episodes in my collection were already in SpokenWord; I needed to add 12, which surprised me); see the <a title="FAQ entry on SpokenWord.org &quot;Collections&quot;" href="http://www.spokenword.org/faq-collectionsBasic">SpokenWord Collections FAQ</a> for instructions for doing this. Note that I added individual episodes &#8211; which SpokenWord refers to as a <em>program</em>.  I did not add the entire feeds so that I could curate at the episode (program) level; this is important!</li>
<li>Create a Collection to hold your Podcast Mashup episodes (I called mine &#8220;Agile Development Practices&#8221;)</li>
<li>Add each episode of interest to my &#8220;Agile Development Practices&#8221; Collection</li>
<li>Write a blog post about it <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  and share the feed: <a title="RSS feed for Agile Development Practices episodes" href="http://feeds.feedburner.com/AgileDevPractices">http://feeds.feedburner.com/AgileDevPractices</a></li>
</ol>
<p>[I encourage you to check out <a href="http://spokenword.org">SpokenWord.org</a> more generally to see what else is there - I am using it more and more - and may even play with the <a title="Documentation for the SpokenWord API" href="http://docs.google.com/View?id=dfstbcg_4djzxbkfd">SpokenWord API</a>.]</p>
<h2>What are &#8220;Agile Development Practices&#8221; anyway?</h2>
<p>I&#8217;m glad you asked. This is the theme of my first Podcast Mashup.</p>
<div id="attachment_188" class="wp-caption aligncenter" style="width: 330px"><a rel="attachment wp-att-188" href="http://blog.codingoutloud.com/2009/08/30/podcast-mashup-for-agile-dev-practices-hosted-on-spokenword-org/agiledev-podcast-mashup-feed-logo/"><img class="size-full wp-image-188" title="agiledev-podcast-mashup-feed-logo" src="http://codingoutloud.files.wordpress.com/2009/08/agiledev-podcast-mashup-feed-logo.png?w=320&#038;h=189" alt="Agile Developer Practices - a Podcast Mashup" width="320" height="189" /></a><p class="wp-caption-text">Agile Developer Practices - a Podcast Mashup</p></div>
<p>Basically I am thinking about modern tactics used on the ground by today&#8217;s agile developers and development teams that just make them better. Unit Testing. Test-Driven-Development (TDD). Behavior-Driven-Development (BDD). Inversion of Control (IoC) containers. Continuous Integration. Philosophies around how to structure code (e.g., SOLID principles, Law of Demeter). Agile. Lean. Metrics (e.g., Cyclomatic Complexity &#8211; did you know it can help you know whether you have sufficient unit test coverage?). The unifying theme is those practices that some of the most successful developers are adopting. Stuff you may want to be processing so you can start to use, increase your use, improve your use, or help decide whether to use.</p>
<p>The content of each episode deals with one or more aspect. Usually the episodes are technology-agnostic, applicable to a Java, C#, Ruby, or Python developer, for example. (Some patterns may be deemed less applicable to some languages, especially Ruby and Python, but I won&#8217;t get into that here.)</p>
<h2>Getting this to work in iTunes</h2>
<p>Making this work in iTunes &#8211; or your favorite Podcatcher &#8211; ought to be straight-forward. In iTunes, simply add the podcast using the <a title="RSS Feed for curated podcast episodes on the topic &quot;Agile Development Practices&quot;" href="http://feeds.feedburner.com/AgileDevPractices">Agile Development Practices RSS feed</a> (<a title="RSS feed url " href="http://feeds.feedburner.com/AgileDevPractices">http://feeds.feedburner.com/AgileDevPractices<img src="/Users/DAD-IT%7E1/AppData/Local/Temp/moz-screenshot-1.jpg" alt="" /><img src="/Users/DAD-IT%7E1/AppData/Local/Temp/moz-screenshot-2.jpg" alt="" /></a>). In iTunes, this is accessed under the &#8220;Advanced&#8221; menu, via the &#8220;Subscribe to Podcast&#8230;&#8221; option and will look something like this:</p>
<div id="attachment_161" class="wp-caption aligncenter" style="width: 347px"><a rel="attachment wp-att-161" href="http://blog.codingoutloud.com/2009/08/30/podcast-mashup-for-agile-dev-practices-hosted-on-spokenword-org/itunes-subscribe-to-podcast/"><img class="size-full wp-image-161" title="itunes-subscribe-to-podcast" src="http://codingoutloud.files.wordpress.com/2009/08/itunes-subscribe-to-podcast.png?w=337&#038;h=166" alt="Under &quot;Options&quot; menu, choose &quot;Subscribe to Podcast...&quot; option to get this dialog" width="337" height="166" /></a><p class="wp-caption-text">Under &quot;Options&quot; menu, choose &quot;Subscribe to Podcast...&quot; then provide an RSS feeed URL in this dialog</p></div>
<h3>iTunes Only Includes First Episode</h3>
<p>When you first add a Podcast feed to iTunes (or other Podcatchers), if there is more than one episode, only the latest episode will be included. This may or may not be what you want generally, but in the case of a Podcast Mashup, you probably will want to manually add more episodes to your download list.</p>
<div id="attachment_153" class="wp-caption aligncenter" style="width: 310px"><a rel="attachment wp-att-153" href="http://blog.codingoutloud.com/2009/08/30/podcast-mashup-for-agile-dev-practices-hosted-on-spokenword-org/spokenword-itunes-feed/"><img class="size-medium wp-image-153" title="spokenword-itunes-feed" src="http://codingoutloud.files.wordpress.com/2009/08/spokenword-itunes-feed.png?w=300&#038;h=87" alt="A feed with many existing episodes treated passively by iTunes" width="300" height="87" /></a><p class="wp-caption-text">A feed with many existing episodes is treated passively by iTunes; you need to click &quot;Get All&quot; or click specific &quot;Get&quot; buttons to include others (Click on the image to zoom in)</p></div>
<p>If you want to include all of the episodes in the Podcast the first time you load it up, you can click on the &#8220;GET ALL&#8221; button.</p>
<p>Alternatively, you can expand the Podcast feed in iTunes (by clicking the triangle to the left of the Podcast title) and then clicking individual &#8220;GET&#8221; buttons.</p>
<h2>What other Podcast Mashups ought to exist?</h2>
<p>Do you find this idea useful? Is this the right granularity? Or would, say, separate Podcast Mashups for TDD, BDD, DI, and Unit Testing make sense? Or some other cut at it&#8230;</p>
<p>What other Podcast Mashup topics would you find useful? Which ones might <strong>you </strong>offer?</p>
<p>Your feedback is welcome.</p>
<br />Posted in Podcast Mashup, Programming  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/151/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=151&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/08/30/podcast-mashup-for-agile-dev-practices-hosted-on-spokenword-org/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/08/podcast-episode-count.png" medium="image">
			<media:title type="html">Bill's podcast episode count on iTunes</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/08/agiledev-podcast-mashup-feed-logo.png" medium="image">
			<media:title type="html">agiledev-podcast-mashup-feed-logo</media:title>
		</media:content>

		<media:content url="/Users/DAD-IT%7E1/AppData/Local/Temp/moz-screenshot-1.jpg" medium="image" />

		<media:content url="/Users/DAD-IT%7E1/AppData/Local/Temp/moz-screenshot-2.jpg" medium="image" />

		<media:content url="http://codingoutloud.files.wordpress.com/2009/08/itunes-subscribe-to-podcast.png" medium="image">
			<media:title type="html">itunes-subscribe-to-podcast</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2009/08/spokenword-itunes-feed.png?w=300" medium="image">
			<media:title type="html">spokenword-itunes-feed</media:title>
		</media:content>
	</item>
		<item>
		<title>Jared Spool on what makes a UI Intuitive</title>
		<link>http://blog.codingoutloud.com/2009/05/30/jared-spool-on-what-makes-a-ui-intuitive/</link>
		<comments>http://blog.codingoutloud.com/2009/05/30/jared-spool-on-what-makes-a-ui-intuitive/#comments</comments>
		<pubDate>Sat, 30 May 2009 13:52:33 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Trip Report]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=80</guid>
		<description><![CDATA[Jared Spool spoke at a Refresh Boston user group meeting on Thu May 28 in Cambridge, MA. During his talk, which was titled What Makes a Design Seem Intuitive?, Spool delved into some common ways User Experience (UX) goes wrong and some ways to make sure this doesn&#8217;t happen to you. My personal notes/interpretations follow; if you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=80&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.facebook.com/people/Jared-Spool/501107695">Jared Spool</a> <a href="http://www.speakerrate.com/talks/1108-what-makes-a-design-seem-intuitive">spoke</a> at a <a href="http://refreshboston.org/">Refresh Boston</a> user group <a href="http://upcoming.yahoo.com/event/2632950/">meeting</a> on Thu May 28 in Cambridge, MA. During his talk, which was titled <em>What Makes a Design Seem Intuitive?</em>, Spool delved into some common ways User Experience (<a href="http://en.wikipedia.org/wiki/User_experience_design">UX</a>) goes wrong and some ways to make sure this doesn&#8217;t happen to you. My personal notes/interpretations follow; if you think I got it wrong or want to offer alternative interpretations, feel free to comment.</p>
<h3>Executive Summary</h3>
<ul>
<li>Understand your users and their levels of skill/knowledge </li>
<li>Understand the skill level needed by users of your software</li>
<li>Identify any gaps between the actual and needed skills (see two points above)</li>
<li>Design the software to bridge these skill gaps (which may vary from one user to the next)</li>
<li>Test your assumptions with real users to make sure you did everything right (<a href="http://en.wikipedia.org/wiki/Yogi_berra">Yogi Berra</a> was right when he said <span><a href="http://www.amazon.com/You-Can-Observe-Lot-Watching/dp/0470454040">You Can Observe A Lot By Watching</a>!)</span></li>
</ul>
<h3>How to Create Non-Intuitive User Interfaces</h3>
<p>First, some counter-examples &#8211; easy paths to UX Failure &#8211; how to be Non-Intuitive:</p>
<ul>
<li><strong>Do the unexpected: </strong>Spool showed an example of a site that used * (asterisk) to indicated those field &#8220;not required&#8221; which is opposite of popular convention. UX Fail.</li>
<li><strong>Implement non-standard &amp; sub-substandard behaviour: </strong>Spool showed a beautifully designed (visually appealing) site  with custom scrollbar that didn&#8217;t work right (pretty but not functional). They had implemented their own scrollbar functionality to get the look they wanted &#8211; but a fully-functional scrollbar is really hard to do well &#8211; theirs was jerky and unpredictable. UX Fail. (Plus a bonus <a href="http://en.wikipedia.org/wiki/Form_follows_function">Form Follows Function</a> Fail.)</li>
<li><strong>Be non-intuitive: </strong>Spool showed &#8220;Hay Net&#8221; - a very simple site to help sellers and buyers of hay find each other. This site had two main choices on the front page &#8211; &#8220;have hay&#8221;, &#8220;want hay&#8221; &#8211; but user testing showed that about half the time &#8220;have hay&#8221; was chosen <em>to find someone who has hay</em>, and the rest of the time chosen <em>when I am the one who has the hay</em>. (This might qualify as what my old friend Julianne would call &#8220;Escher words&#8221; &#8211; where the meaning flips back and forth in your mind between alternative viable interpretations much like certain of <a href="http://en.wikipedia.org/wiki/M._C._Escher">M. C. Escher</a>&#8217;s <a href="http://en.wikipedia.org/wiki/File:Escher%27s_Relativity.jpg">artwork</a>). Wording was not intuitive, even though it was very simple. UX Fail.</li>
<li><strong>Add non-core features until your application is large and complex: </strong>The larger and more complex an app, the harder it is to keep it intuitive. This was a general comment from the Q&amp;A, supported by examples in his talk [Wang dedicated word processors were very complex (requiring 1-2 weeks of training to use), supplanted by WordStar, supplanted in turn by simpler Word Perfect, later supplanted itself by simpler Word (after Word Perfect had grown more complex), and now Word is really complex - tens of toolbars, including one for editing 3D graphics]. But <em>simple does not imply intuitive </em>(see &#8220;Hay Net&#8221; example above). UX Fail, again and again.</li>
</ul>
<h3>Different Kinds of People</h3>
<ul>
<li>Key point: Intuitive is personal &#8211; maybe it works for me, not for you &#8212; it is unlikely that all possible users have identical knowledge</li>
<li>Prior experience of the user matters &#8211; where are the on the Knowledge Continuum?</li>
</ul>
<p>What is this Knowledge Continuum you speak of? Imagine a continuum where the left-most end is &#8220;No knowledge&#8221; and the right-most end is &#8220;Full knowledge&#8221; and your UI is designed for users somewhere on that continuum. If the user&#8217;s current level of knowledge is less than the level to which you target your design, your software has a problem &#8211; there is a gap that needs to be overcome.</p>
<p>A design is intuitive if the Current Level of Knowledge = Target Level of Knowledge, or if the gap is small enough such that it can be bridged with good UI design. If the gap is too large, you may need training (whether online on in-person).</p>
<h3>Two types of Knowledge</h3>
<ul>
<li>Tool Knowledge (for a specific tool &#8211; Word, Visual Studio, TurboTax)</li>
<li>Domain Knowledge (independent of this (or any specific) tool - writing, developing in C#, creating personal tax return with weak tax-code depth)</li>
</ul>
<h3>Techniques for Creating Intuitive Designs</h3>
<ul>
<li>Field Studies (watch your users in action)</li>
<li>Usability Studies</li>
<li>Personas</li>
<li>Patterns (reuse known good patterns)</li>
</ul>
<h3>Specific Examples for Creating Intuitive Designs</h3>
<ul>
<li>Bring Target closer to Current w/o resorting to training or help. This means your software needs to target the right knowledge level &#8211; find that target using the techniques listed above &#8211; remember: Developer/Designer does not have same knowledge level as User (at least mostly true).</li>
<li>Wizards can reduce target knowledge requirements (bridging that knowledge gap).</li>
<li>If your user base consists of very different Current Knowledge levels (e.g., home tax preparation vs. professional tax preparers) you can create two (or more?) specialized/targeted applications.</li>
<li>Every six weeks, every member of design team needs to watch users using the design for two hours.</li>
<li>Don&#8217;t hire an agency to design your experience. (Spool thought it was fine to have an agency <em>implement</em> your application, but you need to design it first if you want to be successful.)</li>
</ul>
<h3>Further Information</h3>
<p>Here is an older article by Jared Spool on the same topic as this talk: <a href="http://www.uie.com/articles/design_intuitive/">http://www.uie.com/articles/design_intuitive/</a> (thanks Joan).</p>
<h3>UIE Resources</h3>
<ul>
<li><a href="http://www.uie.com/uietips/">UIETips</a> &#8211; newsletter (free)</li>
<li>UIE <a href="http://www.uie.com/events/virtual_seminars/">Virtual Seminars</a> (looks like they are $129 each - about 30 of them)</li>
<li>Reports ($?)</li>
<li>Conferences</li>
<li>Blog: <a href="http://www.uie.com/brainsparks">www.uie.com/brainsparks</a></li>
<li>Site: <a href="http://www.uie.com">www.uie.com</a></li>
<li>I don&#8217; t recall Spool mentioning their podcast, but that&#8217;s another free resource: <a href="http://www.uie.com/podcast/">http://www.uie.com/podcast/</a> (I have it on my ipod)</li>
</ul>
<br />Posted in Events, Trip Report, UX Tagged: UX <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=80&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/05/30/jared-spool-on-what-makes-a-ui-intuitive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Is &#8220;UTF-8&#8243; case-sensitive in XML declaration?</title>
		<link>http://blog.codingoutloud.com/2009/04/08/is-utf-8-case-sensitive-in-xml-declaration/</link>
		<comments>http://blog.codingoutloud.com/2009/04/08/is-utf-8-case-sensitive-in-xml-declaration/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 11:01:43 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[XML]]></category>
		<category><![CDATA[utf]]></category>
		<category><![CDATA[UTF-8]]></category>

		<guid isPermaLink="false">http://codingoutloud.wordpress.com/2008/02/20/utf-8-utf-16-are-more-correct-as-upper-case-in-xml-declaration/</guid>
		<description><![CDATA[When declaring the encoding format for an XML document, all caps in the encoding is preferred over lowercase. Read full post for recommended approaches when reading and writing, as well as for the full background of relevant Internet-related standards.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=5&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>At the beginning of an XML document, the <a href="http://www.w3.org/TR/2006/REC-xml-20060816/#dt-xmldecl">XML declaration</a> can optionally declare the document&#8217;s <em>encoding format</em>. This typically looks something like this:<br />
<code><br />
&lt;?xml version="1.0" encoding="UTF-8"?&gt;<br />
</code></p>
<p>Sometimes you&#8217;ll see the encoding as &#8220;UTF-8&#8243; or &#8220;UTF-16&#8243; (all caps), sometimes as &#8220;utf-8&#8243; or &#8220;utf-16&#8243; (lowercase). Which is correct? Or are both correct? <strong>The short answer is that the uppercase variant is preferred</strong>, but both are allowed, though that does not ensure that both variants are widely <em>supported</em>. This suggests the following recommended approach:</p>
<p style="padding-left:30px;"><em><strong><span style="color:#0000ff;">Be forgiving when reading, strict when writing</span></strong>. When consuming XML, you are fully standards-compliant by supporting case-insensitive parsing of the encoding format. When producing XML, you are still standards-compliant </em><em>by generating an uppercase encoding format, while also</em><em> more likely to be readable by potential consumers.</em></p>
<p>Often the journey is more interesting than the destination when it comes to deciphering Internet standards; read on for the gory details.</p>
<div id="attachment_31" class="wp-caption alignleft" style="width: 233px"><img class="size-full wp-image-31" title="thinker-utf-8" src="http://codingoutloud.files.wordpress.com/2008/03/thinker-utf-8.jpg?w=223&#038;h=373" alt="Hmmm... is &quot;UTF-8&quot; in upper case, or lower case?" width="223" height="373" /><p class="wp-caption-text">Hmmm... should &quot;UTF-8&quot; be in uppercase, or is it lowercase?</p></div>
<p>At first blush, the lowercase usage appears consistent with XHTML (<a href="http://www.w3.org/TR/xhtml1/#h-4.2">which requires elements and attributes to be lowercase</a>) &#8211; but does this convention apply to an <a href="http://www.w3.org/TR/2006/REC-xml-20060816/#dt-xmldecl">XML </a><a href="http://www.w3.org/TR/REC-xml/#sec-pi">Processing Instruction</a> (which is <a href="http://www.http://en.wikipedia.org/wiki/Metadata">metadata</a>, not content)?</p>
<p>According to the W3C Recommendation for <a href="http://www.w3.org/TR/2006/REC-xml-20060816">Extensible Markup Language (XML) 1.0 (Fourth Edition)</a> section <a href="http://www.w3.org/TR/2006/REC-xml-20060816/#charencoding">4.3.3 Character Encoding in Entities</a>:</p>
<blockquote><p>&#8220;XML processors <em>SHOULD</em> match character encoding names in a case-insensitive way and <em>SHOULD</em> either interpret an IANA-registered name as the encoding registered at IANA for that name or treat it as unknown.&#8221;</p></blockquote>
<p>Looking up the values in the Internet Assigned Numbers Authority (IANA) <a href="http://www.iana.org/assignments/character-sets">registry</a> for the official spellings of the encoding values, you will find &#8220;UTF-8&#8243; and &#8220;UTF-16&#8243; &#8211; listed in uppercase. IANA also cross-references <a title="RFC 3629" href="http://www.faqs.org/rfcs/rfc3629.html">RFC-3629</a> which also goes with all caps. And all of the examples around the XML Recommendation seem to use uppercase exclusively.</p>
<p>So the uppercase versions appear to be the &#8220;right&#8221; ones.</p>
<p>But are the lowercase versions actually wrong? They <span style="font-style:italic;">might</span> be. The meaning of the word &#8220;SHOULD&#8221; in the above quoted text is governed by <a href="http://www.faqs.org/rfcs/rfc2119.html">RFC 2119</a> where it is defined to mean:</p>
<blockquote><p>&#8220;&#8230; that there may exist valid reasons in particular circumstances to ignore a particular item, but the full implications must be understood and carefully weighed before choosing a different course.&#8221;</p></blockquote>
<p>If the writers of the XML specification wanted to insist that processors always treat this in a case-insensitive manner, the word &#8220;MUST&#8221; would have been used from <a href="http://www.faqs.org/rfcs/rfc2119.html">RFC 2119</a>.</p>
<p>So a processor <em>can</em> choose to ignore the part of the XML Recommendation where case-insensitive processing is suggested, and still be within the standard. A processor <em>must always </em>support uppercase; further, a processor <em>only</em> supporting uppercase is perfectly legal. Even if an uppercase only processor seems unlikely, I&#8217;m going to standardize on all caps when I create XML files.</p>
<p><strong>What about other character encodings, or what if one is not specified?</strong></p>
<p>A character encoding need not be explicitly specified; if it is not specified,  UTF-8 is default.</p>
<p>UTF-8 and UTF-16 are “universally” supported by XML parsers (by standard requirement); ISO-8859-1 is also often supported, but that char set is less complete (e.g., euro symbol missing).</p>
<p><a title="according to the UTF-8 entry in wikipedia" href="http://en.wikipedia.org/wiki/UTF-8">Wikipedia says</a>:</p>
<blockquote><p>“The root element can be preceded by an optional XML declaration. This element states what version of XML is in use (normally 1.0); it may also contain information about character encoding and external dependencies.</p>
<p>The specification requires that processors of XML support the pan-Unicode character encodings UTF-8 and UTF-16 (UTF-32 is not mandatory). The use of more limited encodings, such as those based on ISO/IEC 8859, is acknowledged and is widely used and supported.”</p></blockquote>
<p><strong>These details and conventions are important to anyone generating XML </strong>files, such as for bloggers and podcasters publishing in the RSS and ATOM formats.</p>
<p><strong>In summary</strong>, if you are producing XML files, it is best to output uppercase &#8220;UTF-8&#8243; and &#8220;UTF-16&#8243; since that is always known to be supported. If you are consuming XML files, it is advisable to accept both uppercase and lowercase variants since both are permissible within a strict interpretation of the, uh, &#8220;letter&#8221; of the standards. And if you are consuming XML files, be sure to handle the case where the optional encoding is not specified at all; the default value is &#8220;UTF-8&#8243; if nothing else is specified.</p>
<p>Also of interest:</p>
<ul>
<li><a rel="nofollow" href="http://www.rfc-ref.org/RFC-TEXTS/3629/index.html">RFC 3629 </a></li>
<li><a href="http://en.wikipedia.org/wiki/UTF-8">http://en.wikipedia.org/wiki/UTF-8</a></li>
<li><a rel="nofollow" href="http://htmlpurifier.org/docs/enduser-utf8.html">http://htmlpurifier.org/docs/enduser-utf8.html</a></li>
<li><a rel="nofollow" href="http://www.joelonsoftware.com/articles/Unicode.html">http://www.joelonsoftware.com/articles/Unicode.html</a></li>
<li><a rel="nofollow" href="http://guru.multimedia.cx/utf-8/">http://guru.multimedia.cx/utf-8/</a></li>
<li><a rel="nofollow" href="http://lists.evolt.org/archive/Week-of-Mon-20070409/189381.html">http://lists.evolt.org/archive/Week-of-Mon-20070409/189381.html</a></li>
<li><a title="The importance of being UTF-8" href="http://www.hanselman.com/blog/TheImportanceOfBeingUTF8.aspx">http://www.hanselman.com/blog/TheImportanceOfBeingUTF8.aspx</a></li>
</ul>
<p style="text-align:right;font-size:8px;">Blogged with <a title="Flock" href="http://www.flock.com/blogged-with-flock" target="_new">Flock</a></p>
<p><!-- technorati tags begin --></p>
<p style="font-size:10px;text-align:right;">Tags: <a rel="tag" href="http://technorati.com/tag/xmlencoding">xmlencoding</a>, <a rel="tag" href="http://technorati.com/tag/%20creating%20podcast%20feeds">creating podcast feeds</a></p>
<p><!-- technorati tags end --></p>
<br />Posted in XML Tagged: utf, UTF-8, XML <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=5&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/04/08/is-utf-8-case-sensitive-in-xml-declaration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>

		<media:content url="http://codingoutloud.files.wordpress.com/2008/03/thinker-utf-8.jpg" medium="image">
			<media:title type="html">thinker-utf-8</media:title>
		</media:content>
	</item>
		<item>
		<title>Prism Talk &#8211; Slides and Code</title>
		<link>http://blog.codingoutloud.com/2009/04/05/prism-talk-slides-and-code/</link>
		<comments>http://blog.codingoutloud.com/2009/04/05/prism-talk-slides-and-code/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 23:07:38 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.codingoutloud.com/?p=22</guid>
		<description><![CDATA[Slides and sample code have been posted from Bill Wilder's February and March 2009 talks on building composite Silverlight and WPF applications using Prism (which is officially known as Composite Application Guidance for WPF and Silverlight).<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=22&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I have spoken a few times recently (<a title="First NH Code Camp" href="http://thedevcommunity.org/Events/PresentationList.aspx?id=10">NH Code Camp 1</a> on 28-Feb-2009, <a title="Boston Beantown .NET INETA user group" href="http://beantowndotnet.org/">Beantown .NET User Group</a> on <a title="March 2009 Beantown .NET user group meeting" href="http://blog.benday.com/archive/2009/03/02/23213.aspx">05-Mar-2009</a>, and <a title="the 11th Boston Code Camp" href="http://thedevcommunity.org/Events/PresentationList.aspx?id=11">Boston Code Camp 11</a> on 28-Mar-2009) on building composite applications for Silverlight and WPF using Prism (which is officially known as <strong>Composite Application Guidance for WPF and Silverlight</strong>). The slide deck and sample code are essentially the same in all cases, so I am only posting them once.</p>
<ul>
<li><a title="Powerpoint slides for talk on Building Composite Applications with Prism" href="http://codingoutloud.s3.amazonaws.com/Prism v2 - Intro to Composite Application Guidance and Library - Feb-Mar 2009.ppt">Building Composite Application for Silverlight and WFP using Prism &#8211; Slides</a></li>
<li><a title="Save As Podcast sample code" href="http://codingoutloud.s3.amazonaws.com/HelloWorld.Desktop.SaveAsPodcast.zip">Sample application &#8211; Save As Podcast code</a></li>
</ul>
<p>Recall from the talk that the Save As Podcast code was a (partial) demonstration of moving from &#8220;old school&#8221; code-behind WinForm pattern into Silverlight and WPF using a newer, cleaner pattern called Model-View-ViewModel and going on to leverage functionality specific to Prism. This code is a partial transformation of that code. To compile, you should first <a href="http://msdn.microsoft.com/en-us/library/dd458809.aspx">install Prism (aka Composite Application Guidance for WPF and Silverlight)</a> and then essentially replace the &#8220;Hello World&#8221; QuickStart with this code &#8211; that will make your life easier since the projects will retain the relative links to other libraries.</p>
<br />Posted in Programming  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=22&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2009/04/05/prism-talk-slides-and-code/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>A generic error occurred in GDI+ when reading from MemoryStream</title>
		<link>http://blog.codingoutloud.com/2008/03/21/a-generic-error-occurred-in-gdi-when-reading-from-memorystream/</link>
		<comments>http://blog.codingoutloud.com/2008/03/21/a-generic-error-occurred-in-gdi-when-reading-from-memorystream/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 22:53:29 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[bitmap]]></category>
		<category><![CDATA[generic error occurred in gdi+]]></category>
		<category><![CDATA[id3]]></category>
		<category><![CDATA[taglib]]></category>

		<guid isPermaLink="false">http://codingoutloud.wordpress.com/?p=11</guid>
		<description><![CDATA[I am playing with TagLib#, an Open Source library that supports reading and updating ID3 metadata from MP3 files. I ran across the following error &#8212; &#8220;a generic error occurred in gdi+&#8221; &#8212; displaying a bitmap image I pulled from the MP3 file.
   TagLib.File file = TagLib.File.Create(@"foo.mp3");
   int pictureCount = file.Tag.Pictures.Length;
 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=11&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I am playing with <a href="http://www.taglib-sharp.com/">TagLib#</a>, an Open Source library that supports reading and updating <a href="http://en.wikipedia.org/wiki/ID3">ID3</a> metadata from MP3 files. I ran across the following error &#8212; &#8220;a generic error occurred in gdi+&#8221; &#8212; displaying a bitmap image I pulled from the MP3 file.</p>
<pre>   TagLib.File file = TagLib.File.Create(@"foo.mp3");
   int pictureCount = file.Tag.Pictures.Length;
   System.Drawing.Bitmap bmp = null;
   if (pictureCount &gt; 0)
   {
      System.IO.MemoryStream pictureBitstream = new System.IO.MemoryStream(
                                                    file.Tag.Pictures[0].Data.Data);
      bmp = new System.Drawing.Bitmap(pictureBitstream);
      pictureBitstream.Close();

      string fn = "foo.jpg";

      // create thumbnail
      using (System.Drawing.Image thumb =
                      bmp.GetThumbnailImage(10, 10,
                               new System.Drawing.Image.GetThumbnailImageAbort(
                                        delegate { return false; }),
                               IntPtr.Zero))
      {
         thumb.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
      }
   }</pre>
<p>The &#8220;a generic error occurred in gdi+&#8221; message is not very helpful. I did some <a href="http://www.google.com/search?q=A+generic+error+occurred+in+GDI%2B.&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=FlockInc.:en-US:official&amp;client=firefox">googling</a> and came up with a few helpful posts on the matter, including several that appeared to <a href="http://www.dotnetcharting.com/kb/article.aspx?id=11335&amp;cNode=5Q6I1P">be</a> <a href="http://blog.vishalon.net/Post/70.aspx">different</a> <a href="http://support.microsoft.com/?id=814675">problems</a>. Looks like <a href="http://aspnet.4guysfromrolla.com/articles/012203-1.aspx">4 Guys from Rolla</a> have functional code.</p>
<p>My problem was in closing the stream too soon, which was not obvious to me at first, though makes some sense. The fix is to defer</p>
<pre>      pictureBitstream.Close();</pre>
<p>until after the Bitmap object is done with its work. I was initially under the illusion that once I&#8217;d <em>created</em> the stream for the image it read the whole image; of course that&#8217;s not true &#8211; it is not read in until it is read in.</p>
<p>I would submit this is a confusing UI design. Developers deserve better affordances. Good thing an exception was thrown; otherwise, this may have blown up later in a less obvious manner or at a less convenient time.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/codingoutloud.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/codingoutloud.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=11&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2008/03/21/a-generic-error-occurred-in-gdi-when-reading-from-memorystream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
		<item>
		<title>Coding Out Loud begins</title>
		<link>http://blog.codingoutloud.com/2008/02/18/coding-out-loud-begins/</link>
		<comments>http://blog.codingoutloud.com/2008/02/18/coding-out-loud-begins/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 02:27:57 +0000</pubDate>
		<dc:creator>Bill Wilder</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://codingoutloud.wordpress.com/?p=4</guid>
		<description><![CDATA[“If one advances confidently in the direction of his dreams,
and endeavors to live the life which he has imagined,
he will meet with a success unexpected in common hours.”
Henry David Thoreau from Walden
I am embarking on a coding adventure &#8211; and I plan to blog as I go. In effect, Coding Out Loud &#8211; thus the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=4&subd=codingoutloud&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<blockquote><p>“If one advances confidently in the direction of his dreams,<br />
and endeavors to live the life which he has imagined,<br />
he will meet with a success unexpected in common hours.”<a title="Henry David Thoreau on Wikipedia" href="http://en.wikipedia.org/wiki/Thoreau"><br />
Henry David Thoreau</a> from <em><a href="http://en.wikiquote.org/wiki/Henry_David_Thoreau#Walden_.281854.29">Walden</a></em></p></blockquote>
<p>I am embarking on a coding adventure &#8211; and I plan to blog as I go. In effect, Coding Out Loud &#8211; thus the name of this blog. I do not know whether anyone will read this blog or follow my adventures, but I will give it a try anyway. I expect many of my posts will be the kind I would personally like to find &#8211; the kind I may even refer back to from time to time for reference &#8211; because it will in part be a repository of useful information, hard-won insights, interesting approaches, and documentation of thought processes for making trade-offs. My technology orientation right now is ASP.NET 2.0.</p>
<p>I have been a blog reader for a long time and a big fan of podcasting since its early years. For podcast listening, since September 2007 I have owned a <a href="http://en.wikipedia.org/wiki/IPod_classic#Sixth_generation">sixth-generation iPod Video</a> with 160 GB of space (bigger than hard drives on most of my computers &#8211; including my work computer &#8211; and I am a professional developer!); I do watch some video on this (e.g., <a href="http://www.ted.com/index.php/talks">TED</a>), but I do like me some big hard drive (my older iPod nano constantly ran out of space from too many podcasts).</p>
<p>Since I am now embarking on blogging for myself the first time, I will try to make sense of features of WordPress (categories or tags?), technorati, feedburner, and others of the many technologies &amp; services out there. Which should I care about &#8211; and why. This process may spawn blog posts.</p>
<p>I also do have a day job but I will not blog on it. So my adventures will be &#8220;off hours&#8221; &#8211; mornings, nights, weekends mostly &#8211; on my solo projects.</p>
<p>So, in summary, this blog will encompass my adventures coding + my adventures blogging (or podcasting someday..).</p>
<p>So the journey begins…</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/codingoutloud.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/codingoutloud.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codingoutloud.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codingoutloud.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codingoutloud.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codingoutloud.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codingoutloud.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codingoutloud.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codingoutloud.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codingoutloud.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codingoutloud.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codingoutloud.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.codingoutloud.com&blog=490667&post=4&subd=codingoutloud&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.codingoutloud.com/2008/02/18/coding-out-loud-begins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/baf1296780d2798c1072e65aed8652d9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codingoutloud</media:title>
		</media:content>
	</item>
	</channel>
</rss>