<?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>Don MacLennan: High Tech Yankee in Prague</title>
	<atom:link href="http://donmaclennan.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://donmaclennan.com</link>
	<description>Musings on the absurdity and rewards of expatriate life. Don writes from Prague and Boston...</description>
	<lastBuildDate>Sun, 19 Feb 2012 10:06:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='donmaclennan.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/bd24859589fbb00ef0510c4621392516?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Don MacLennan: High Tech Yankee in Prague</title>
		<link>http://donmaclennan.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://donmaclennan.com/osd.xml" title="Don MacLennan: High Tech Yankee in Prague" />
	<atom:link rel='hub' href='http://donmaclennan.com/?pushpress=hub'/>
		<item>
		<title>My hero, the Software Architect</title>
		<link>http://donmaclennan.com/2012/02/18/my-hero-the-software-architect/</link>
		<comments>http://donmaclennan.com/2012/02/18/my-hero-the-software-architect/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 11:04:44 +0000</pubDate>
		<dc:creator>Don MacLennan</dc:creator>
				<category><![CDATA[On Product Management]]></category>
		<category><![CDATA[Technology trends]]></category>

		<guid isPermaLink="false">http://donmaclennan.com/?p=957</guid>
		<description><![CDATA[In my many years doing product management or managing the function, the number one blocker to getting the features I want (and the user needs) is&#8230;&#8230;software architecture. Reading Mike Driscoll&#8217;s recent blog on software craftspeople reminded me that this architecture &#8230; <a href="http://donmaclennan.com/2012/02/18/my-hero-the-software-architect/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=957&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://donmaclennan.files.wordpress.com/2012/02/istock_000003668350medium.jpg"><img class="alignnone size-large wp-image-985" title="" src="http://donmaclennan.files.wordpress.com/2012/02/istock_000003668350medium.jpg?w=1024&#038;h=682" alt="" width="1024" height="682" /></a>In my many years doing product management or managing the function, the number one blocker to getting the features I want (and the user needs) is&#8230;&#8230;software architecture.</p>
<p>Reading Mike Driscoll&#8217;s recent blog on <a href="http://medriscoll.com/post/9117396231/the-guild-of-silicon-valley" target="_blank">software craftspeople</a> reminded me that this architecture topic has been stewing in my brain for a while now.  Time to write about it.</p>
<p>&#8220;Too hard&#8221;, &#8220;too complex&#8221;, &#8220;too long&#8221; are the persistent reasons behind engineers&#8217; resistance to feature requests or major product pivots.  What I realized is that in every case, it was the software architecture holding us back.  More specifically, the lack of componentization and modularity.</p>
<p>And the pattern spans <strong>every experience I&#8217;ve had</strong>; across lots of different products, across lots of different market sectors, across lots of different architectures (from client-side tools to client/server apps to SaaS/cloud apps), and across lots of different company sizes (pre-revenue to behemoths like SAP and EMC).</p>
<p>Need a new UI presentation tier?  Sorry, that code is co-mingled with the underlying business logic.  Need a new data management tier?  Sorry, the file system is bound to the rest of the code.  Need new business objects to show up in the schema?  Sorry, we can&#8217;t split our giant table and it&#8217;s already too big to extend.</p>
<p>One can understand how this predicament arose.  When new products are built, what&#8217;s required is focus on solving the user problem at hand.  You don&#8217;t have time nor money to design for unknown needs and future flexibility.  So why pay for abstraction and modularity without any present-day reason?</p>
<p>The bigger problem is when products mature and the user needs outgrow or diverge from the capabilities of the original architecture.  What to do next?  Re-factor and modularize?  Re-build from scratch?  Limp along by stuffing new features into the code but with huge effort each time?</p>
<p>Nobody knows the magic formula for how to make these decisions.  Re-factoring scares the crap out of engineers lest they &#8220;break something&#8221;.  After all, by the time this discussion arises, you&#8217;ve got spaghetti for code.  And the folks who wrote it might not be around anymore.</p>
<p>Re-write scares the crap out of the business leaders, since it appears to be paying twice for the same product.  And there&#8217;s the inherent risk of missing deadlines.  Oh yeah, and you just put your legacy product version on life support so you can afford to staff the engineers on the re-write project.  And you&#8217;re losing ground to competitors along the way, since you&#8217;ve stopped new feature development to pay for a better architecture.</p>
<p>No wonder products whose architecture devolved to something bad, or started that way, never get fixed.</p>
<p>This vicious cycle is what creates the opportunity for &#8220;innovation&#8221; in the form of a start-up who has the benefit of a clean sheet of paper: fresh, elegant code using state-of-the art languages, components and tools.  That seems like a wasteful way to solve the problem.</p>
<p>Enter the architect.  If you have a great architect, every problem is reduced in magnitude.</p>
<p>With a great architect, new products have some modularity and flexibility designed in.  A little bit of future-proofing goes a long way. Existing products can be selectively modularized and modernized so the new functional capabilities are delivered without breakage.  And if the time comes for a re-write, you have confidence that all of the lessons learned from the legacy code base are applied to the new design.  Thus, a greater chance of success, especially in meeting a deadline.</p>
<p>So, what makes a great architect?  In many respects, a lot of the same characteristics that make a great product manager: curiosity, an ability to translate what users and salespeople need into technical terms, abstract thinking that enables one to imagine new possibilities, etc.  Of course, the architect also needs the deep technical experience too.</p>
<p>Back to the premise of Mike Driscoll&#8217;s article: the best software is being built by people with, dare I say it, <em><strong>experience</strong></em>.  Experience to avoid pitfalls because she messed something up before.  Experience to choose the right tools for the job, much like a fine craftsman that builds furniture, or houses, or bespoke clothing. Experience to know what degree of flexibility to design in, without paying for needless flexibility that feels more like insurance against every conceivable future requirement.</p>
<p>I&#8217;ve known some good architects and probably only one or two great ones.  With the great ones, we have had some huge debates thanks to the force of personality that seems to come with great ones.  But in the end, despite the strong personalities, great architects are worth having.  And the great product companies know this, which is why they spend a lot of money on great architects.</p>
<p>I say it&#8217;s money well spent.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donmaclennan.wordpress.com/957/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donmaclennan.wordpress.com/957/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donmaclennan.wordpress.com/957/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donmaclennan.wordpress.com/957/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/donmaclennan.wordpress.com/957/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/donmaclennan.wordpress.com/957/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/donmaclennan.wordpress.com/957/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/donmaclennan.wordpress.com/957/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donmaclennan.wordpress.com/957/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donmaclennan.wordpress.com/957/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donmaclennan.wordpress.com/957/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donmaclennan.wordpress.com/957/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donmaclennan.wordpress.com/957/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donmaclennan.wordpress.com/957/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=957&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://donmaclennan.com/2012/02/18/my-hero-the-software-architect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec7641ae87d12719fdfcdf97641fa79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmaclennan</media:title>
		</media:content>

		<media:content url="http://donmaclennan.files.wordpress.com/2012/02/istock_000003668350medium.jpg?w=1024" medium="image" />
	</item>
		<item>
		<title>Another big day for AVG</title>
		<link>http://donmaclennan.com/2012/02/02/another-big-day-for-avg/</link>
		<comments>http://donmaclennan.com/2012/02/02/another-big-day-for-avg/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 07:14:41 +0000</pubDate>
		<dc:creator>Don MacLennan</dc:creator>
				<category><![CDATA[Other stuff]]></category>

		<guid isPermaLink="false">http://donmaclennan.com/?p=950</guid>
		<description><![CDATA[Today, AVG&#8217;s IPO is complete.  We start trading on the New York Stock Exchange under the symbol &#8220;AVG&#8221;. I&#8217;m proud of those who have played such a big role in building the company to this point.  And I&#8217;m proud to &#8230; <a href="http://donmaclennan.com/2012/02/02/another-big-day-for-avg/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=950&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today, AVG&#8217;s IPO is complete.  We start trading on the New York Stock Exchange under the symbol &#8220;AVG&#8221;.</p>
<p>I&#8217;m proud of those who have played such a big role in building the company to this point.  And I&#8217;m proud to have played a small role too.</p>
<p>Time to sit back and watch the ticker with fingers crossed.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donmaclennan.wordpress.com/950/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donmaclennan.wordpress.com/950/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donmaclennan.wordpress.com/950/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donmaclennan.wordpress.com/950/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/donmaclennan.wordpress.com/950/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/donmaclennan.wordpress.com/950/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/donmaclennan.wordpress.com/950/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/donmaclennan.wordpress.com/950/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donmaclennan.wordpress.com/950/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donmaclennan.wordpress.com/950/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donmaclennan.wordpress.com/950/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donmaclennan.wordpress.com/950/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donmaclennan.wordpress.com/950/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donmaclennan.wordpress.com/950/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=950&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://donmaclennan.com/2012/02/02/another-big-day-for-avg/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec7641ae87d12719fdfcdf97641fa79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmaclennan</media:title>
		</media:content>
	</item>
		<item>
		<title>Republican rage explained?</title>
		<link>http://donmaclennan.com/2012/01/31/republican-rage-explained/</link>
		<comments>http://donmaclennan.com/2012/01/31/republican-rage-explained/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 09:50:34 +0000</pubDate>
		<dc:creator>Don MacLennan</dc:creator>
				<category><![CDATA[Other stuff]]></category>

		<guid isPermaLink="false">http://donmaclennan.com/?p=931</guid>
		<description><![CDATA[I saw this article on BBC&#8217;s web site about how liberals and conservatives in the United States have differing reactions to positive and negative images.  Conservatives tended to focus on, and have stronger reactions to, negative images than did liberals. Coincidentally, &#8230; <a href="http://donmaclennan.com/2012/01/31/republican-rage-explained/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=931&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I saw <a href="http://www.bbc.co.uk/news/magazine-16770593" target="_blank">this article</a> on BBC&#8217;s web site about how liberals and conservatives in the United States have differing reactions to positive and negative images.  Conservatives tended to focus on, and have stronger reactions to, negative images than did liberals.</p>
<p>Coincidentally, a couple weeks ago a long-time friend sent an email to numerous people in response to President Obama&#8217;s State of the Union address.  I don&#8217;t recall ever getting an unsolicited email from him about politics in the 15 years I&#8217;ve known him.  But it certainly was a rant.</p>
<p>Consider the emotions in some of the words and phrases from his email:</p>
<ul>
<li>&#8220;A brutally complex issue reduced to a nonsense issue&#8221;</li>
<li>&#8220;I want to barf&#8221;</li>
<li>&#8220;&#8230;it is the duty of everyone to work for his defeat in November&#8221;</li>
<li>&#8220;A 2nd Obama term, totally untethered from public opinion will be a total disaster.  I hope all of you can take some role in ensuring his defeat in November&#8221;</li>
</ul>
<p>Which drew the following response from someone else:</p>
<ul>
<li>&#8220;If we are now outnumbered by liberals, democrats with limited brain functionality, union workers, the uneducated, and young voters, then the chances are very real that the current “President” could win a second term&#8221;</li>
<li>&#8220;And if that happens, then the chances are very real for a second American Revolution – this time against our own Congress, which has nearly completely caved in and lost its backbone&#8221;</li>
<li>&#8220;If we do win, however, I believe we need to somehow change our system permanently so that Congress DOES WHAT WE SAY TO DO and nothing else, or we will vigorously prosecute them and send them to prison&#8221;</li>
<li>&#8220;I fear the continued existence of the USA is in doubt if we don’t! One answer is to decentralize our Federal government and send our representatives and senators back to the states, where they are closer to home and we can watch them more closely. Please think hard about this&#8221;</li>
</ul>
<p>Subjectively, it seems like a pattern.  Something has changed for these persons, and probably not for the better. Is it the stagnation of real income growth in the middle class?  The unrelenting pace of change driven by globalization and the strains of keeping pace?  I won&#8217;t speculate other than to say that these are very strong emotions, which begs the question why?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donmaclennan.wordpress.com/931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donmaclennan.wordpress.com/931/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donmaclennan.wordpress.com/931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donmaclennan.wordpress.com/931/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/donmaclennan.wordpress.com/931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/donmaclennan.wordpress.com/931/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/donmaclennan.wordpress.com/931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/donmaclennan.wordpress.com/931/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donmaclennan.wordpress.com/931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donmaclennan.wordpress.com/931/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donmaclennan.wordpress.com/931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donmaclennan.wordpress.com/931/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donmaclennan.wordpress.com/931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donmaclennan.wordpress.com/931/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=931&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://donmaclennan.com/2012/01/31/republican-rage-explained/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec7641ae87d12719fdfcdf97641fa79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmaclennan</media:title>
		</media:content>
	</item>
		<item>
		<title>A big day for AVG</title>
		<link>http://donmaclennan.com/2012/01/13/a-big-day-for-avg/</link>
		<comments>http://donmaclennan.com/2012/01/13/a-big-day-for-avg/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 17:33:33 +0000</pubDate>
		<dc:creator>Don MacLennan</dc:creator>
				<category><![CDATA[Other stuff]]></category>

		<guid isPermaLink="false">http://donmaclennan.com/?p=928</guid>
		<description><![CDATA[I&#8217;m proud to be part of a big milestone at AVG: its IPO filing which you can read here. It&#8217;s now the &#8220;quiet period&#8221; according to our friends at the regulators, so I won&#8217;t comment beyond that.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=928&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m proud to be part of a big milestone at AVG: its IPO filing which you can read <a href="http://www.avg.com/us-en/press-releases-news.ndi-3521" target="_blank">here</a>.</p>
<p>It&#8217;s now the &#8220;quiet period&#8221; according to our friends at the regulators, so I won&#8217;t comment beyond that.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donmaclennan.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donmaclennan.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donmaclennan.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donmaclennan.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/donmaclennan.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/donmaclennan.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/donmaclennan.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/donmaclennan.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donmaclennan.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donmaclennan.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donmaclennan.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donmaclennan.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donmaclennan.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donmaclennan.wordpress.com/928/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=928&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://donmaclennan.com/2012/01/13/a-big-day-for-avg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec7641ae87d12719fdfcdf97641fa79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmaclennan</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;Creative Destruction and Netflix&#8221;: Part Two</title>
		<link>http://donmaclennan.com/2011/12/12/creative-destruction-and-netflix-part-two/</link>
		<comments>http://donmaclennan.com/2011/12/12/creative-destruction-and-netflix-part-two/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 15:33:52 +0000</pubDate>
		<dc:creator>Don MacLennan</dc:creator>
				<category><![CDATA[Technology trends]]></category>

		<guid isPermaLink="false">http://donmaclennan.com/?p=831</guid>
		<description><![CDATA[I wrote a while ago in admiring terms about how Reed Hastings was trying to disrupt his own business before others did it to him.  As in, splitting the mail-order DVD business from the online streaming business at Netflix. The &#8230; <a href="http://donmaclennan.com/2011/12/12/creative-destruction-and-netflix-part-two/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=831&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I wrote a while ago in <a href="http://donmaclennan.com/2011/09/19/creative-destruction-netflix-gets-it/" target="_blank">admiring terms</a> about how Reed Hastings was trying to disrupt his own business before others did it to him.  As in, splitting the mail-order DVD business from the online streaming business at Netflix.</p>
<p>The backlash to this announcement was pretty huge.  To the point that Netflix had to &#8220;undo&#8221; the announcement.  Talk about a black eye.</p>
<p>The timing of the decision is certainly up for debate given how customers reacted.  So let&#8217;s say it was premature.  But how premature?</p>
<p>I still contend this is the right decision.  Eventually.  Just like the Pony Express was rendered obsolete by the telegraph, so too will mail-order media delivery be made obsolete by streaming delivery.  Who would believe otherwise?</p>
<p>It&#8217;s darned hard to time such changes, however.  Most companies never make the leap at all, hence books like The Innovator&#8217;s Dilemma.  For those who have the bravery to do so like Netflix, the timing is a perilous choice.  Too soon?  Investors punish you for cannibalizing current revenue and alienating happy, paying customers.  Too late?  You&#8217;ll probably never catch up.</p>
<p>If I knew the answer, I&#8217;d be a rich man.  My sense is that it&#8217;s impossible to make a formula.  Instead, it&#8217;s about getting the whole set of stakeholders on the same page.  So when it&#8217;s time to jump off the cliff, everyone is holding hands.  CEO, executive team, Board of Directors, large investors.  Not a small task.  At lest you&#8217;re trying, Reed.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donmaclennan.wordpress.com/831/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donmaclennan.wordpress.com/831/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donmaclennan.wordpress.com/831/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donmaclennan.wordpress.com/831/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/donmaclennan.wordpress.com/831/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/donmaclennan.wordpress.com/831/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/donmaclennan.wordpress.com/831/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/donmaclennan.wordpress.com/831/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donmaclennan.wordpress.com/831/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donmaclennan.wordpress.com/831/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donmaclennan.wordpress.com/831/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donmaclennan.wordpress.com/831/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donmaclennan.wordpress.com/831/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donmaclennan.wordpress.com/831/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=831&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://donmaclennan.com/2011/12/12/creative-destruction-and-netflix-part-two/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec7641ae87d12719fdfcdf97641fa79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmaclennan</media:title>
		</media:content>
	</item>
		<item>
		<title>Where do Product Managers come from?</title>
		<link>http://donmaclennan.com/2011/12/07/where-do-product-managers-come-from/</link>
		<comments>http://donmaclennan.com/2011/12/07/where-do-product-managers-come-from/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 14:59:50 +0000</pubDate>
		<dc:creator>Don MacLennan</dc:creator>
				<category><![CDATA[On Product Management]]></category>

		<guid isPermaLink="false">http://donmaclennan.com/?p=815</guid>
		<description><![CDATA[I was reading the interesting but flawed article on Techcrunch about &#8220;product guys&#8221;.  As in, Product Managers.  Let&#8217;s at least start with the right title.  Cripes. One of the author&#8217;s contentions was that good product managers must have coded in their &#8230; <a href="http://donmaclennan.com/2011/12/07/where-do-product-managers-come-from/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=815&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://donmaclennan.files.wordpress.com/2011/12/photo_1751_20060703.jpg"><img class="alignnone size-large wp-image-846" title="" src="http://donmaclennan.files.wordpress.com/2011/12/photo_1751_20060703.jpg?w=1024&#038;h=682" alt="" width="1024" height="682" /></a></p>
<p>I was reading the interesting but flawed article on <a href="http://techcrunch.com/2011/12/03/spare-me-from-product-guys/" target="_blank">Techcrunch</a> about &#8220;product guys&#8221;.  As in, Product Managers.  Let&#8217;s at least start with the right title.  Cripes.</p>
<p>One of the author&#8217;s contentions was that good product managers must have coded in their past, in order to properly collaborate and empathise with their engineer co-workers.</p>
<p>This assertion made me think about where good product managers came from.</p>
<p>The first answer is that product managers don&#8217;t come from product management.  As in, there is no university degree for product management that is a mainstream path into product management as a job.  (Yes, there are a handful of product design degrees, but sadly at present a tiny portion of product managers carry this pedigree.)</p>
<p>Therefore, product management is more of a trade, with the apprenticeship starting elsewhere.  Good product managers come from many places.</p>
<p>In enterprise software, pre-sales engineers are a common path to product management.  Why?  They spend all day demonstrating their products and even deploying them in customer environments.  Maybe pre-sales engineers get so frustrated with the product that they want to take it upon themselves to fix the issues.  It&#8217;s also the case that pre-sales travel can burn you out, for which a headquarters job can be appealing.</p>
<p>Product managers can also come from customer care.  People who spend all day troubleshooting users&#8217; issues can develop an acute sense of what product features work, don&#8217;t work, and why.</p>
<p>Product managers can also come from engineering, especially those who tend to interact with product managers such as architects.  Again, the motivation can be rooted in frustration and the sense that &#8220;I can do this job better&#8221;.  Or, the realization that coding products isn&#8217;t a long-term career goal.</p>
<p>I have also seen great product managers come from quality assurance.  The attention to detail that QA instills helps condition product managers to &#8220;sweat the details&#8221; of a great user experience.</p>
<p>Every path into product management &#8211; pre-sales, engineering, customer care, quality assurance &#8211; brings a valuable facet to the product manager job.  And experiences that product managers per se wouldn&#8217;t otherwise have to the same depth.</p>
<p>Which leads to my final point.  No matter what your heritage, you are only bringing one facet of the role based on past experience.  Thus, product management is a journey of curiosity, learning, collaboration, trial &amp; error, persistence, passion and so forth.  Product managers who demonstrate those traits tend to succeed.  And the rest probably less so.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donmaclennan.wordpress.com/815/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donmaclennan.wordpress.com/815/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donmaclennan.wordpress.com/815/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donmaclennan.wordpress.com/815/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/donmaclennan.wordpress.com/815/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/donmaclennan.wordpress.com/815/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/donmaclennan.wordpress.com/815/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/donmaclennan.wordpress.com/815/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donmaclennan.wordpress.com/815/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donmaclennan.wordpress.com/815/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donmaclennan.wordpress.com/815/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donmaclennan.wordpress.com/815/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donmaclennan.wordpress.com/815/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donmaclennan.wordpress.com/815/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=815&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://donmaclennan.com/2011/12/07/where-do-product-managers-come-from/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec7641ae87d12719fdfcdf97641fa79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmaclennan</media:title>
		</media:content>

		<media:content url="http://donmaclennan.files.wordpress.com/2011/12/photo_1751_20060703.jpg?w=1024" medium="image" />
	</item>
		<item>
		<title>The &#8220;Measurement Wars&#8221;</title>
		<link>http://donmaclennan.com/2011/12/04/the-measurement-wars/</link>
		<comments>http://donmaclennan.com/2011/12/04/the-measurement-wars/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 08:43:18 +0000</pubDate>
		<dc:creator>Don MacLennan</dc:creator>
				<category><![CDATA[Technology trends]]></category>

		<guid isPermaLink="false">http://donmaclennan.com/?p=581</guid>
		<description><![CDATA[This post is a bit long, but it ends with why your personal life will be spied upon by your company’s competitors.  Curious?  Read on. Information &#8211; data turned into meaning &#8211; is going to (further) disrupt just about every &#8230; <a href="http://donmaclennan.com/2011/12/04/the-measurement-wars/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=581&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://donmaclennan.files.wordpress.com/2011/12/photo_9997_20090418.jpg"><img class="alignnone size-large wp-image-842" title="" src="http://donmaclennan.files.wordpress.com/2011/12/photo_9997_20090418.jpg?w=1024&#038;h=682" alt="" width="1024" height="682" /></a></p>
<p><em>This post is a bit long, but it ends with why your personal life will be spied upon by your company’s competitors.  Curious?  Read on.</em></p>
<p>Information &#8211; data turned into meaning &#8211; is going to (further) disrupt just about every industry there is.  Many of the strong will become weak.  Tiny upstarts, like Davids, will topple Goliaths.  And this could all happen at the expense of your personal privacy.</p>
<p>I know, I know, the “information revolution” has been predicted for decades.  Except that like many predictions, exactly when &amp; how the predictions come true will differ from what’s first assumed.  “Video calling” has been predicted as inevitable since the 1950’s.  But nobody saw Skype as the inevitable means for it to come true.</p>
<p>To see the future, let’s look at what has happened on Wall Street and how the same is about to happen in other industries.</p>
<p><strong>What’s happened on Wall Street</strong></p>
<p>Fortunes on Wall Street are made through arbitrage.  Years ago, the winners were those who had better research teams: who had the better information about a company’s stock?  Currency arbitrage followed: who can spot temporary asymmetries in currency prices and execute a trade the fastest?</p>
<p>Across every tradable instrument, the arbitrage game on Wall Street has moved from high-latency (you know something I don’t, for days or weeks at a time) to near-zero-latency.  New fiber optic networks have been built to shave milliseconds from the average trade.  And entire data centers have been relocated to close proximity to these new networks.  Whatever advantage you have must now be exploited in real time.  Or it’s not an advantage.</p>
<p>As the arms race of zero-latency arbitrage has unfolded, two other trends have been its critical enablers.  The first is data acquisition.  Every trade on every exchange can be captured and analyzed, alongside reams of other data about the companies, markets and countries those pertain to those financial instruments.  The scope and scale is increasing by orders of magnitude.</p>
<ul>
<li>An example of scope: the latest algorithms even ingest Twitter feeds in real time to discern investor sentiment.  Including your latest Tweet about some stock you like</li>
<li>An example of scale: banks and securities firms store more information per company than any other industry (see this <a href="http://www.mckinsey.com/mgi/publications/big_data/pdfs/MGI_big_data_full_report.pdf" target="_blank">great report from McKinsey</a>)</li>
</ul>
<p>The second enabler is the ability to make sense of the collected data.  No longer do freshly-minted MBA’s toil into the night to build Excel models with quaint calculations like “EDITDA” or “Return on Invested Capital”.  Today, PhD statisticians build algorithms so complex that they themselves have trouble making sense of them in use.  Michael Lewis’ <a href="http://www.amazon.com/Big-Short-Inside-Doomsday-Machine/dp/0393338827/ref=sr_1_1?ie=UTF8&amp;qid=1322947922&amp;sr=8-1" target="_blank">“The Big Short”</a> is a great read on this topic.</p>
<p><strong>From Wall Street to Main Street?</strong></p>
<p>Wall Street started its journey by going on a data collection binge, from which it developed its algorithms, from which it automated its trading such that milliseconds mattered.</p>
<p>It’s happening now in online consumer businesses.  Wonder why Google, Facebook et al are under such scrutiny for collecting your data to the point of privacy invasion?  Because they understand that data is the raw material that feeds their statisticians, that feeds their algorithms, that feeds their money-making.</p>
<p>Except “money-making” in this case is the price they can charge an advertiser for an ad on one of their web pages.  The more relevant the ad to a consumer’s interests, the higher a premium the ad will command.  How to discern consumer interest?  Profile the heck out of them.</p>
<p>It’s happening elsewhere too.</p>
<p><strong>The “Measurement Wars”</strong></p>
<p>New companies, or ones that successfully reinvent themselves, will start their innovation and disruption journey by gathering reams of data, then finding the relationships between that data.</p>
<p>The forthcoming data acquisition binge is going to amplify online privacy issues.  Collecting competitive intelligence will border on spying on other companies’ employees.</p>
<p>It will also tempt companies to sell their internal data to others.  Could we see new “data merchants” emerge?  Would you like to know the kilowatt-per-hour energy consumption for every household in America?  Someone would, and would like an electric utility to sell them that data for some commercial advantage.</p>
<p><strong>Orwellian, or progress?</strong></p>
<p>Every boundary that separates individuals, companies, cultures and countries will be subject to elimination or reduction.  Our ability to learn, empathize and understand differences across these boundaries will be exponentially enhanced.  Which is good.</p>
<p>The ability to use that same understanding to exploit others will also increase exponentially.  Which is bad.</p>
<p>My take?  We have dealt with many past innovations that could be used to exploit someone or something.  Each time, a new equilibrium was established and humankind moved on.</p>
<p>But it was the period of rapid transition, and resulting destabilization, that was the most dangerous.  We are in such a period now, I reckon.</p>
<p>Governments must understand the coming hunger for massive data collection, and act to mitigate the risks, if we are to emerge on the other side unscathed.  Or even emerge better off.  But what are the risks, and what are the remedies?</p>
<p><strong>Spy vs. spy</strong></p>
<p>We’re seeing the privacy issue play out now in the consumer sector.  Facebook has been scolded by the Federal Trade Commission for its privacy abuses.  Politicians in the European Union search for ways to legislate much more stringent consumer protections.  I won’t cover this ground because the media has done so many times over.</p>
<p>But we have yet to come to grips with the implications of how companies will compete with each other in the Measurement Wars.  The old rules were about the theft of intellectual property.  But what about when a company profiles its competitors’ employees?  Such as their Tweets, Facebook activities or LinkedIn profiles?  Individual persons will be deeply profiled as part of compiling a dossier of competitive intelligence gathering.</p>
<p>This is where it gets creepy.  Heck, if you were imaginative, you might think that things I write about in my blog pertain to issues I experience at work.</p>
<p>And you wouldn’t be all wrong.</p>
<p><strong>Credits: </strong></p>
<p>I have borrowed from the great work done by others.  In particular, Michael Lewis and McKinsey as cited previously.  Also, <a href="http://oreilly.com/data/index.html" target="_blank">O’Reilly Media</a> for their extensive coverage of the underling technologies of “Big Data” and their Big Data’s use in consumer online businesses.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donmaclennan.wordpress.com/581/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donmaclennan.wordpress.com/581/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donmaclennan.wordpress.com/581/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donmaclennan.wordpress.com/581/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/donmaclennan.wordpress.com/581/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/donmaclennan.wordpress.com/581/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/donmaclennan.wordpress.com/581/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/donmaclennan.wordpress.com/581/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donmaclennan.wordpress.com/581/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donmaclennan.wordpress.com/581/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donmaclennan.wordpress.com/581/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donmaclennan.wordpress.com/581/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donmaclennan.wordpress.com/581/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donmaclennan.wordpress.com/581/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=581&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://donmaclennan.com/2011/12/04/the-measurement-wars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec7641ae87d12719fdfcdf97641fa79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmaclennan</media:title>
		</media:content>

		<media:content url="http://donmaclennan.files.wordpress.com/2011/12/photo_9997_20090418.jpg?w=1024" medium="image" />
	</item>
		<item>
		<title>The great privacy debate comes home to roost</title>
		<link>http://donmaclennan.com/2011/11/21/the-great-privacy-debate-comes-home-to-roost/</link>
		<comments>http://donmaclennan.com/2011/11/21/the-great-privacy-debate-comes-home-to-roost/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 10:32:32 +0000</pubDate>
		<dc:creator>Don MacLennan</dc:creator>
				<category><![CDATA[Technology trends]]></category>

		<guid isPermaLink="false">http://donmaclennan.com/?p=736</guid>
		<description><![CDATA[I recently came face-to-face with the murky issues of social media and hiring in the workplace. Days before the person’s interview, a candidate to join my organization started sending Twitter messages addressed to my username.  So I got a notification &#8230; <a href="http://donmaclennan.com/2011/11/21/the-great-privacy-debate-comes-home-to-roost/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=736&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://donmaclennan.files.wordpress.com/2011/11/photo_6329_200806152.jpg"><img class="alignnone size-large wp-image-840" title="Private Property" src="http://donmaclennan.files.wordpress.com/2011/11/photo_6329_200806152.jpg?w=1024&#038;h=682" alt="" width="1024" height="682" /></a></p>
<p>I recently came face-to-face with the murky issues of social media and hiring in the workplace.</p>
<p>Days before the person’s interview, a candidate to join my organization started sending Twitter messages addressed to my username.  So I got a notification from Twitter that I was “mentioned” in someone else’s Tweet (Twitter is designed in such a way that another user cannot contact me privately unless I choose to “follow” that user explicitly.  Which I wasn’t).</p>
<p>What was strange was that the person was addressing questions to me about the upcoming job interviews.  Asking something about my company’s job benefit package if I recall.  In other words, questions that could, and should, have been addressed in the setting of an interview.  Even more curious is that the person sent those same Tweets to another employee with the same questions.  And that other employee didn’t even work in my department.</p>
<p>A flood of questions came into my mind…..</p>
<ul>
<li>Could I read this person’s Tweets?</li>
<li>Should I read them?</li>
<li>Are somebody’s Tweets in the public domain?  With over 100 million users, and the ability of any user to see the Tweets of any other, one could argue yes</li>
<li>Are things in the public domain fair game for evaluation in a hiring process?  Beyond the obvious off-limits discriminators such as age, gender, sexual preference, etc.</li>
<li>Even if such information wasn’t in the public domain, was it still something I could, or should, use in my evaluation?  In many parts of the world, employers are entitled to collect information about an employee beyond what is offered by the employee him/herself</li>
</ul>
<p>I found that the answers to these questions were far from obvious.  I suspect it will be years before the law and business behavioral norms will catch up with these issues.</p>
<p>I won’t tell you what I did in answer to these questions, out of respect for the privacy of the individual and the fear of opening up a legal can of worms.</p>
<p>What I will say is that I approach online life as if everything I say can be read by others, and thus used by them to form some judgment of me: my blog, Facebook account, Twitter, LinkedIn, etc.  Is this a form of self-censorship?  Yes, to a degree.  I guess there’s still a role for offline communications and “antique” forms of online communication like email or SMS.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donmaclennan.wordpress.com/736/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donmaclennan.wordpress.com/736/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donmaclennan.wordpress.com/736/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donmaclennan.wordpress.com/736/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/donmaclennan.wordpress.com/736/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/donmaclennan.wordpress.com/736/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/donmaclennan.wordpress.com/736/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/donmaclennan.wordpress.com/736/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donmaclennan.wordpress.com/736/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donmaclennan.wordpress.com/736/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donmaclennan.wordpress.com/736/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donmaclennan.wordpress.com/736/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donmaclennan.wordpress.com/736/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donmaclennan.wordpress.com/736/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=736&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://donmaclennan.com/2011/11/21/the-great-privacy-debate-comes-home-to-roost/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec7641ae87d12719fdfcdf97641fa79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmaclennan</media:title>
		</media:content>

		<media:content url="http://donmaclennan.files.wordpress.com/2011/11/photo_6329_200806152.jpg?w=1024" medium="image">
			<media:title type="html">Private Property</media:title>
		</media:content>
	</item>
		<item>
		<title>Favorite restaurants in Prague</title>
		<link>http://donmaclennan.com/2011/11/17/favorite-restaurants-in-prague/</link>
		<comments>http://donmaclennan.com/2011/11/17/favorite-restaurants-in-prague/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 10:32:05 +0000</pubDate>
		<dc:creator>Don MacLennan</dc:creator>
				<category><![CDATA[Eating in Prague]]></category>
		<category><![CDATA[Living in Prague]]></category>

		<guid isPermaLink="false">http://donmaclennan.com/?p=778</guid>
		<description><![CDATA[Prague has some very active restaurant reviewers amongst the Expat and English-speaking community.  For example, Czech Please, Expats.cz and The Prague Post.  I won&#8217;t attempt to compete with their professionalism. There are also some very highly regarded places I have &#8230; <a href="http://donmaclennan.com/2011/11/17/favorite-restaurants-in-prague/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=778&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Prague has some very active restaurant reviewers amongst the Expat and English-speaking community.  For example, <a href="http://czechoutchannel.blogspot.com/" target="_blank">Czech Please</a>, <a href="http://www.expats.cz" target="_blank">Expats.cz</a> and <a href="http://www.praguepost.com" target="_blank">The Prague Post</a>.  I won&#8217;t attempt to compete with their professionalism.</p>
<p>There are also some very highly regarded places I have yet to visit, notably La Degustation Boheme Bourgeoise.</p>
<p>That said, here are the places I&#8217;ve been to and like, in no particular order:</p>
<p><strong>V Zatisi</strong>.  High-end, nice &#8220;design-your-own&#8221; tasting menu.  They match wines well with the courses.  Professional and attentive service.  A good place for a special night out.</p>
<p><strong>The Pind</strong>.  Quickly developing a reputation for the best Indian food in Prague.  I&#8217;ve liked every dish thus far, and have been exposed to a few selections on the menu I hadn&#8217;t seen before. Which is good, as the variety of food from India is infinite and worthy of constant exploration.</p>
<p><strong>Sokolovna</strong>.  Nicely done traditional Czech cuisine.  A really good chicken soup.  Warm decor.  Inexpensive.</p>
<p><strong>Las Adelitas</strong>.  The place to scratch the itch for Mexican cuisine and margaritas.  Anything &#8221;el pastor&#8221; there is very good.  The horchata is delicious if you don&#8217;t feel like an alcoholic beverage.</p>
<p><strong>Artisan</strong>.  A wonderful higher-end restaurant tucked away on a side street, far from any tourists. Very good service and value for money.  The outdoor patio in the summer is intimate and really pleasant.</p>
<p><strong>Sansho</strong>.  Creative southeastern Asia cuisine with some other influences thrown in.  A fixed price, set menu comprised of many bold flavors.  The staff is wonderfully accommodating and will tailor the menu to dietary needs or even diner preference. Not a hint of pretense in the place; probably by design.  Perhaps amongst the most expensive in Prague.  But satisfying nonetheless.</p>
<p><strong>Grosseto</strong> Marina and Vinohrady locations.  This small chain reminds me of Paparazzi in Boston: very consistent, decent Italian food with good value for money.  Tasty thin crust pizzas.  The Marina location has a great view of the castle.  The Vinohrady location has a nice summer garden.</p>
<p><strong>Noi</strong>.  Solid Thai food in a setting with nice decor.</p>
<p><strong>Sasazu</strong>.  Not unlike the cuisine at Sansho: pan-Southeast Asian influences.  But in every other respect quite different: dramatic decor inside a transformed warehouse, featuring huge light fixtures, bold colors and trendy music.  A place where the vibe is as much a reason to go as the food.  And the food is quite good.</p>
<p><strong>Mirellie</strong>.  Mediterranean cuisine with a bias toward Italian.  Good value for money.</p>
<p><strong>Sahara Cafe</strong>.  Wonderful decor and some strong North African/Middle Eastern food choices.  The hummus with all of its &#8220;enhancements&#8221; is my favorite.  A great outdoor terrace for summertime.</p>
<p><strong>El Barrio de Angel</strong>.  One of the better places for steaks.  The chimichurri sauce is really good paired with a medium-rare or medium-cooked steak.  Service and atmosphere are nothing special.  Nor is the wine list.  But definitely a place to satisfy the carnivore craving.</p>
<p><strong>Vytopna</strong>.  This one is my son&#8217;s vote for best restaurant.  Of course, he&#8217;s 4 years old and loves this restaurant because of the model trains that deliver drinks to your table.  If you have kids, well worth a visit.  The Czech cuisine is decent.</p>
<p>That&#8217;s all for now.  What do you think?</p>
<p>A future post: Prague watering holes.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donmaclennan.wordpress.com/778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donmaclennan.wordpress.com/778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donmaclennan.wordpress.com/778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donmaclennan.wordpress.com/778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/donmaclennan.wordpress.com/778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/donmaclennan.wordpress.com/778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/donmaclennan.wordpress.com/778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/donmaclennan.wordpress.com/778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donmaclennan.wordpress.com/778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donmaclennan.wordpress.com/778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donmaclennan.wordpress.com/778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donmaclennan.wordpress.com/778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donmaclennan.wordpress.com/778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donmaclennan.wordpress.com/778/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=778&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://donmaclennan.com/2011/11/17/favorite-restaurants-in-prague/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec7641ae87d12719fdfcdf97641fa79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmaclennan</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;Creative destruction&#8221;: Netflix gets it</title>
		<link>http://donmaclennan.com/2011/09/19/creative-destruction-netflix-gets-it/</link>
		<comments>http://donmaclennan.com/2011/09/19/creative-destruction-netflix-gets-it/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 07:59:32 +0000</pubDate>
		<dc:creator>Don MacLennan</dc:creator>
				<category><![CDATA[Technology trends]]></category>

		<guid isPermaLink="false">http://donmaclennan.com/?p=762</guid>
		<description><![CDATA[About 15 years ago (!) I worked for Reed Hastings.  He was not one for sitting pat.  At the time, he realized that the software category of Software Quality Assurance (SQA) was going to consolidate.  And that you could either embrace that &#8230; <a href="http://donmaclennan.com/2011/09/19/creative-destruction-netflix-gets-it/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=762&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>About 15 years ago (!) I worked for Reed Hastings.  He was not one for sitting pat.  At the time, he realized that the software category of Software Quality Assurance (SQA) was going to consolidate.  And that you could either embrace that eventuality,  or hold on to the past.</p>
<p>He embraced it, by seeking a merger between his baby Pure Software (he was the founder) and Atria.  Soon thereafter, the combined company was part of Rational and is now a product suite at IBM.</p>
<p>Reed is at it again.  Netflix is separating its DVD-by-mail service from its live streaming service.  I loved the <a href="http://www.engadget.com/2011/09/19/editorial-reed-hastings-netflix-spinoff-isnt-about-dvd-succes/" target="_blank">quote</a> from Engadget today:</p>
<p><em>What really happened here is quite simple: Reed Hastings just put a gun to the side of his DVD-by-mail business and pulled the trigger. Given that he aimed for the ankle, though, it&#8217;ll probably take a while for it to completely bleed out. But hey &#8212; proactively putting a fading business out of its misery sure beats bleeding for it on the balance sheet.</em></p>
<p>Joseph Schumpeter and more recently <a href="http://en.wikipedia.org/wiki/Disruptive_technology" target="_blank">Clayton Christensen</a> have written about creative destruction and disruptive technologies.  Reed is one a few high tech leaders that has the courage to implement what the rest of us know: do unto oneself before it&#8217;s done to you.</p>
<p>Here&#8217;s the bit that stops others from doing the same: Netflix&#8217;s share price, and perhaps even near-term revenue, could suffer.  For most of the industry, one can&#8217;t tolerate the thought of taking a step back to take two forward.  And hence the balk at such bold moves, fearing the reaction of others.  Like shareholders or pundits.</p>
<p>Perhaps the definition of &#8220;courage&#8221; is not fearing the reaction of others?  Game on, Reed.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/donmaclennan.wordpress.com/762/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/donmaclennan.wordpress.com/762/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/donmaclennan.wordpress.com/762/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/donmaclennan.wordpress.com/762/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/donmaclennan.wordpress.com/762/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/donmaclennan.wordpress.com/762/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/donmaclennan.wordpress.com/762/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/donmaclennan.wordpress.com/762/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/donmaclennan.wordpress.com/762/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/donmaclennan.wordpress.com/762/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/donmaclennan.wordpress.com/762/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/donmaclennan.wordpress.com/762/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/donmaclennan.wordpress.com/762/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/donmaclennan.wordpress.com/762/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=donmaclennan.com&amp;blog=12595843&amp;post=762&amp;subd=donmaclennan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://donmaclennan.com/2011/09/19/creative-destruction-netflix-gets-it/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3ec7641ae87d12719fdfcdf97641fa79?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmaclennan</media:title>
		</media:content>
	</item>
	</channel>
</rss>
