<?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/"
	>

<channel>
	<title>The Devign Path&#187; General</title>
	<atom:link href="http://thedevignpath.com/archives/category/general/feed" rel="self" type="application/rss+xml" />
	<link>http://thedevignpath.com</link>
	<description>design + development = devign</description>
	<lastBuildDate>Sat, 21 Jan 2012 14:29:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Forbidden words in JavaScript</title>
		<link>http://thedevignpath.com/archives/168</link>
		<comments>http://thedevignpath.com/archives/168#comments</comments>
		<pubDate>Thu, 05 May 2011 22:17:35 +0000</pubDate>
		<dc:creator>iampeterbanjo</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thedevignpath.com/archives/168</guid>
		<description><![CDATA[JavaScript has 3 forbidden words - With In Eval Eval is generally understood to perform poorly and to be unsafe. But what&#8217;s so bad about &#8216;with&#8217; and &#8216;in&#8217;? With It is sort of a quirk with JavaScript where the scope (&#8230;)</p><p><a href="http://thedevignpath.com/archives/168">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>JavaScript has 3 forbidden words -</p>
<ul>
<li>With </li>
<li>In </li>
<li>Eval </li>
</ul>
<p>Eval is generally understood to perform poorly and to be unsafe. But what&#8217;s so bad about &#8216;with&#8217; and &#8216;in&#8217;?</p>
<h2>With</h2>
<p>It is sort of a quirk with JavaScript where the scope of an operation changes when you use “with”. As with a few things in programming it is not that they can’t be used but they are often used badly. In JavaScript we are accustomed to the scope of “global” and functions. So a variable used in one function can’t be accessed by another function, right? Well when you use “with” you’re in ANOTHER scope, the scope of the thing you’re using. Let me explain.</p>
<p>Imagine you create a wipe function. It takes a cloth object and wipes a table. After you wipe a dirty table the cloth sadly becomes dirty. In JavaScript you could say –</p>
<p> <script src="https://gist.github.com/958078.js?file=with-example.js"></script>
<p>You can run this code in a browser console to see the results. If you look at this simple program at the end the cloth is clean but it is not blue, what happened? We were supposed to be in the scope of the “cloth” object which is how we set its property to clean but something weird happened and we couldn’t set the cloth’s colour. Uh oh! We ran into problems because the colour property was defined but JavaScript usually lets us define properties on the fly. </p>
<p>As you can see, there are some cases where you might want to use “with” but it can also lead to bugs which are unexpected and so difficult to debug. There’s a thread on <a href="http://stackoverflow.com/questions/61552/are-there-legitimate-uses-for-javascripts-with-statement">Stackoverflow</a> about it. My point of view is along the lines of what Alan Storm says.</p>
<h2>In</h2>
<p>My opinion is as a result of coming across a bug a long while ago. I remember trying to use “in” to iterate over some DOM nodes because I thought it was cool but strange things kept happening and I was lost as to why so I used another method. Much later I read about how it walks up the prototype chain (with respect to DOM nodes it’s a bit more complicated than that). That’s why it’s evil. Again, not because it is “wrong” but it causes more problems than it solves so it is better to avoid it and do what I know is going to work the way I want it to work.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fthedevignpath.com%2Farchives%2F168&amp;title=Forbidden%20words%20in%20JavaScript"><img src="http://thedevignpath.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://thedevignpath.com/archives/168/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yet Another X-Platform Framework &#8230;from your mobile service provider</title>
		<link>http://thedevignpath.com/archives/101</link>
		<comments>http://thedevignpath.com/archives/101#comments</comments>
		<pubDate>Fri, 29 Oct 2010 23:49:59 +0000</pubDate>
		<dc:creator>iampeterbanjo</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thedevignpath.com/?p=101</guid>
		<description><![CDATA[Unify (Dun dun dun!) combines Adobe Air, Phone Gap, Sass and QooxDoo. http://unify.github.com/unify/ The most interesting thing for me is that it’s written by Deutsche Telekom (T-Mobile. Yes, how many T-Mobiles do you know?) And Vodafone have come up with (&#8230;)</p><p><a href="http://thedevignpath.com/archives/101">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Unify (Dun dun dun!) combines Adobe Air, Phone Gap, Sass and QooxDoo.</p>
<p><a href="http://unify.github.com/unify/">http://unify.github.com/unify/</a></p>
<p>The most interesting thing for me is that it’s written by <a href="http://www.telekom.com/dtag/cms/content/dt/en/6908">Deutsche Telekom</a> (T-Mobile. Yes, how many T-Mobiles do you know?) And <a href="https://developer.vodafone.com/">Vodafone</a> have come up with a widget library called <a href="https://developer.vodafone.com/web-apps/getting-started/compatibility-notes-vodafone-360-phones/packaging-issues-jil-and-current-widget-sdks/">JIL</a> also based on open standards. I heard about Vodafone’s offering at the <a href="http://www.meetup.com/londonajax/">AJAX meet-up in London</a> 2 weeks ago. Vodafone’s special sauce add to the mix is the ability to do cross-platform testing via <a href="https://vf.perfectomobile.com/widgets/">Perfecto Mobile</a>. I am told it’s like logging into a video camera looking at a mobile device running your app. That sounds cool right?</p>
<p>Both Deutsche Telecom and Vodafone are members of the <a href="http://www.wholesaleappcommunity.com/default.aspx">Wholesale Application Community</a> (WAC – I kid you not, the truth is better than fiction) that includes NTT DoCoMo and China Mobile among others. Unfortunately Google has not joined yet <img src='http://thedevignpath.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>So, would you use a framework built by your mobile service provider?</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fthedevignpath.com%2Farchives%2F101&amp;title=Yet%20Another%20X-Platform%20Framework%20%26%238230%3Bfrom%20your%20mobile%20service%20provider"><img src="http://thedevignpath.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://thedevignpath.com/archives/101/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How buildings learn</title>
		<link>http://thedevignpath.com/archives/84</link>
		<comments>http://thedevignpath.com/archives/84#comments</comments>
		<pubDate>Sun, 15 Aug 2010 19:31:41 +0000</pubDate>
		<dc:creator>iampeterbanjo</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thedevignpath.com/?p=84</guid>
		<description><![CDATA[I was listening to a podcast a few weeks ago (I think it&#8217;s this one) when someone gave a shout-out to this BBC series now on Google video. Apart from being interesting in it&#8217;s own right, the reason I was (&#8230;)</p><p><a href="http://thedevignpath.com/archives/84">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I was listening to a podcast a few weeks ago (I think it&#8217;s this one) when someone gave a shout-out to this BBC series now on <a href="http://www.google.com/search?q=how+buildings+learn&amp;tbo=p&amp;tbs=vid:1&amp;source=vgc&amp;aq=f&amp;qscrl=1">Google video</a>.</p>
<p>Apart from being interesting in it&#8217;s own right, the reason I was watching it was to see what design principles I could apply to my code practice. On a side note, I agree with <a href="http://oreilly.com/catalog/9780596154790/">Effective UI</a> that software design is more like warfare than building construction. Anyway, here&#8217;s what made sense to me.</p>
<p>The best buildings are -</p>
<ul>
<li>Built to change &#8211; by the user for the user because not all use cases can be predicted before hand. Write code looking ahead to make it easier for someone else to understand and change.</li>
<li>Valuable because they are disposable &#8211; can be re-purposed easily and therefore develop a rich history. Disposable code? Umm. . how about making better interfaces so modifications don&#8217;t break things.</li>
<li>Make problems visible &#8211; easier to maintain. Less fancy designs.</li>
</ul>
<p>What I found insightful is that (if the narrative is to be believed) architects are reluctant to learn from their mistakes e.g. flat roofs are notorious for leakage but are popular and that a lot of problems can be solved by adopting a user focused design approach. It looks  suspiciously agile! <a href="http://video.google.com/videoplay?docid=6141960341438553915#">Go to time stamp 16:20</a>. I&#8217;ve become quite keen on user centred design and usability in general recently. More on that later.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fthedevignpath.com%2Farchives%2F84&amp;title=How%20buildings%20learn"><img src="http://thedevignpath.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://thedevignpath.com/archives/84/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using python IRB generates this error &quot;ImportError settings cannot be imported because environment variable %s is undefined&quot;</title>
		<link>http://thedevignpath.com/archives/79</link>
		<comments>http://thedevignpath.com/archives/79#comments</comments>
		<pubDate>Fri, 02 Jul 2010 21:13:20 +0000</pubDate>
		<dc:creator>iampeterbanjo</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thedevignpath.com/archives/79</guid>
		<description><![CDATA[This is being caused because &#34;Unfortunately, the tagging module&#8217;s __init__.py file globally imports some models which rely on the rest of Django&#8217;s infrastructure to be up and running (hence the need for settings).&#34; Option 1: launch the python IRB by (&#8230;)</p><p><a href="http://thedevignpath.com/archives/79">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>This is being caused because &quot;Unfortunately, the tagging module&#8217;s __init__.py file globally imports some models which rely on the rest of Django&#8217;s infrastructure to be up and running (hence the need for settings).&quot;</p>
<ul>
<li>Option 1: launch the python IRB by using &quot;python manage.py shell&quot;</li>
<li>Option 2: in python IRB enter &quot;from django.conf import settings; settings.configure()&quot;</li>
</ul>
<p><a href="http://goo.gl/YtZJ">http://goo.gl/YtZJ</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fthedevignpath.com%2Farchives%2F79&amp;title=Using%20python%20IRB%20generates%20this%20error%20%26quot%3BImportError%20settings%20cannot%20be%20imported%20because%20environment%20variable%20%25s%20is%20undefined%26quot%3B"><img src="http://thedevignpath.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://thedevignpath.com/archives/79/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to run multiple versions of Firefox simultaneously</title>
		<link>http://thedevignpath.com/archives/78</link>
		<comments>http://thedevignpath.com/archives/78#comments</comments>
		<pubDate>Fri, 02 Jul 2010 21:11:06 +0000</pubDate>
		<dc:creator>iampeterbanjo</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thedevignpath.com/archives/78</guid>
		<description><![CDATA[Install two versions of Firefox. Version A and B in separate folders. Launch Firefox profile managment by running &#34;firefox -P&#34; in Run window (Window + R). Create a new profile. It&#8217;s sensible to name the&#160; profile the version of Firefox (&#8230;)</p><p><a href="http://thedevignpath.com/archives/78">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<ul>
<li>Install two versions of Firefox. Version A and B in separate folders.</li>
<li>Launch Firefox profile managment by running &quot;firefox -P&quot; in Run window (Window + R).</li>
<li>Create a new profile. It&#8217;s sensible to name the&#160; profile the version of Firefox that you wish to run &quot;firefox_A&quot;.</li>
<li>Click on &quot;Choose folder&quot; to set where the profile will be stored. In this folder is where profile information such as add-ons will be stored. Again it is sensible to use the target Firefox version number.</li>
<li>Create a shortcut to Version A of Firefox.</li>
<li>Right click and select the properties of the shortcut.</li>
<li>In the target field specify which Firefox profile should be used by appending at the end of the field &quot;-P firefox_A -no-remote&quot;. Include a space between the closing quote. e.g. &quot;C:\Program Files\Mozilla Firefox 3.6\firefox.exe&quot; -P firefox_A -no-remote.</li>
<li>Done!</li>
<li>Do the same for Version B of Firefox.</li>
</ul>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fthedevignpath.com%2Farchives%2F78&amp;title=How%20to%20run%20multiple%20versions%20of%20Firefox%20simultaneously"><img src="http://thedevignpath.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://thedevignpath.com/archives/78/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brave New World of HTML5: The &quot;No, I&#8217;m not Bruce Lawson&quot; Edition by Patrick Lauke</title>
		<link>http://thedevignpath.com/archives/77</link>
		<comments>http://thedevignpath.com/archives/77#comments</comments>
		<pubDate>Fri, 02 Jul 2010 21:07:50 +0000</pubDate>
		<dc:creator>iampeterbanjo</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thedevignpath.com/archives/77</guid>
		<description><![CDATA[@WebDirections London 2010 What it is: HTML5 is anything but Opera started it in reaction to XHTML 2.0 via Web Application 1.0 with WHAT-WG. Joined forces with Mozilla, Apple, Microsoft and Google. HTML5 supports existing standards with additional features Features: (&#8230;)</p><p><a href="http://thedevignpath.com/archives/77">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<h2>@WebDirections London 2010</h2>
<p>What it is:</p>
<ul>
<li>HTML5 is anything but Opera started it in reaction to XHTML 2.0 via Web Application 1.0 with WHAT-WG. Joined forces with Mozilla, Apple, Microsoft and Google.</li>
<li>HTML5 supports existing standards with additional features </li>
</ul>
<p>Features:</p>
<ul>
<li>&lt;!dochtml /&gt; is used to kick browser into standards mode     <br />Mark-up is loose but browser behaviour is strict. Mark-up is not case-sensitive, you don&#8217;t need quote marks but browser behaviour relative to mark-up is well defined.</li>
<li>New elements &#8211; header, nav, article, footer, section etc. machine readable and in older browsers it is styled as in-line elements. To render as block level elements use CSS and IE use document.createElement(&#8216;header&#8217;);</li>
<li>Canvas</li>
<li>Audio (mp3, ogg vorbis, WAV) [not that accessible]</li>
<li>Video &#8211; API controls plays nice with the rest of the page and it&#8217;s accessible (H.264 [Apple] vs. Ogg Theora vs WebM [Google]). Browser will check source of video element in cascading order &#8211; top to bottom. </li>
</ul>
<p>NB: Chrome prefers WebM. There&#8217;s a bug in Safari iPad that causes it to only check the first .mp4 file source.    <br />Web forms &#8211; use built in&#160; validation and new input types. Use feature detection.    <br />Anchor elements can be used around block level elements. </p>
<p>Questions</p>
<ul>
<li>Is it a flash killer? Not really, there is a valid place for flash.</li>
<li>How were the new elements chosen? Scooby Doo algorithm. Google made a short list from the most used identifiers and then made decisions based on those. </li>
</ul>
<p>You can start using it today!</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fthedevignpath.com%2Farchives%2F77&amp;title=Brave%20New%20World%20of%20HTML5%3A%20The%20%26quot%3BNo%2C%20I%26%238217%3Bm%20not%20Bruce%20Lawson%26quot%3B%20Edition%20by%20Patrick%20Lauke"><img src="http://thedevignpath.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://thedevignpath.com/archives/77/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Register a nick name on IRC</title>
		<link>http://thedevignpath.com/archives/75</link>
		<comments>http://thedevignpath.com/archives/75#comments</comments>
		<pubDate>Tue, 01 Jun 2010 21:51:46 +0000</pubDate>
		<dc:creator>iampeterbanjo</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[nick name]]></category>
		<category><![CDATA[pidgin]]></category>
		<category><![CDATA[setup]]></category>

		<guid isPermaLink="false">http://thedevignpath.com/archives/75</guid>
		<description><![CDATA[Maybe you want to get involved on an open-source project and want to open up some lines of communication via IRC. It wasn’t as straight forward as I hoped so here’s the 411 (how-to). Install Pidgin Add account. Select server (&#8230;)</p><p><a href="http://thedevignpath.com/archives/75">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Maybe you want to get involved on an open-source project and want to open up some lines of communication via IRC. It wasn’t as straight forward as I hoped so here’s the 411 (how-to).</p>
<ul>
<li>Install <a href="http://pidgin.im/download/">Pidgin</a></li>
<li>Add account. </li>
<li>Select server e.g. IRC freenode enter username and password</li>
<li>Tick checkbox next to account name to connect to server</li>
<li>Nick server window will open a window with the message that your username &quot;is not a registered nickname.&quot;</li>
<li>In the input area at the bottom of window enter &#8211; </li>
</ul>
<pre class="csharpcode">/msg nickserv register your_password your_email_address</pre>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<ul>
<li>An email will be sent to your email accout to verify it.</li>
<li>Copy the command from verification email and paste it into the input window.</li>
</ul>
<p>Why make it easy when it can be hard? (sarcasm).</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fthedevignpath.com%2Farchives%2F75&amp;title=Register%20a%20nick%20name%20on%20IRC"><img src="http://thedevignpath.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://thedevignpath.com/archives/75/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Book review: Outliers by Malcom Gladwell</title>
		<link>http://thedevignpath.com/archives/62</link>
		<comments>http://thedevignpath.com/archives/62#comments</comments>
		<pubDate>Sun, 25 Oct 2009 21:37:05 +0000</pubDate>
		<dc:creator>iampeterbanjo</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[innovation]]></category>
		<category><![CDATA[society]]></category>
		<category><![CDATA[success]]></category>

		<guid isPermaLink="false">http://thedevignpath.com/archives/62</guid>
		<description><![CDATA[Oops, I did it again. This is not a book review in the purest sense of the written word. It is more of an audiobook review to be more exact. I had to read, I mean listen, to this book. (&#8230;)</p><p><a href="http://thedevignpath.com/archives/62">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Oops, I did it again. This is not a book review in the purest sense of the written word. It is more of an <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=295301869&amp;s=143441">audiobook</a> review to be more exact.</p>
<p>I had to read, I mean listen, to this book. My brother was raving about it, it was being mentioned everywhere, I saw a <a href="http://www.aiga.org/content.cfm/video-gain-2008-gladwell">presentation by Malcom Gladwell at an AIGA conference</a> . .&#160; I had no choice.</p>
<p>The big idea in this book is that really successful people, like really successful, are not products of chance but of systems that are selectively biased to favour certain individuals over others. The best example, given at the start, is that of hockey and football (soccer, hello Americans <img src='http://thedevignpath.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  ) players. By setting eligibility dates for admission the scales are tipped to favour those who are the most mature by those cut-off dates.</p>
<p>Another noteworthy example is Bill Gates who was fortunate enough to go to a high school that happened to have mothers who raised money to invest in the science department, who happened to have a pupil whose father donated advanced computing equipment, and also happened to go to a college with some more computing facilities . . etc. etc. etc. And now we have one of the richest men in the world.</p>
<p>Now instead of crying over all the opportunities I didn’t know I didn’t have till I read this book, I want to try something out. A point Gladwell makes is that if we identify areas in which we are disadvantaged we are able to systematically overcome them. If it takes 10,000 hours to become an expert at something, then I better start counting those 10,000 hours, shouldn’t you?</p>
<p>&#160;</p>
<p> <iframe style="width: 120px; height: 240px" marginheight="0" src="http://rcm-uk.amazon.co.uk/e/cm?t=thedevpat-21&amp;o=2&amp;p=8&amp;l=as1&amp;asins=0141036257&amp;fc1=000000&amp;IS2=1&amp;lt1=_blank&amp;m=amazon&amp;lc1=0000FF&amp;bc1=000000&amp;bg1=FFFFFF&amp;f=ifr" frameborder="0" marginwidth="0" scrolling="no"></iframe></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fthedevignpath.com%2Farchives%2F62&amp;title=Book%20review%3A%20Outliers%20by%20Malcom%20Gladwell"><img src="http://thedevignpath.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://thedevignpath.com/archives/62/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Book review: Made in Japan by Akio Morita</title>
		<link>http://thedevignpath.com/archives/61</link>
		<comments>http://thedevignpath.com/archives/61#comments</comments>
		<pubDate>Sun, 25 Oct 2009 21:13:35 +0000</pubDate>
		<dc:creator>iampeterbanjo</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[economy]]></category>
		<category><![CDATA[innovation]]></category>
		<category><![CDATA[knowledge]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://thedevignpath.com/archives/61</guid>
		<description><![CDATA[You know, after reading this book I fell in love with Sony. It’s so hard to resist the human element of Sony’s history. From the humble beginnings in a devastated city after the second world war and the ambition Morita (&#8230;)</p><p><a href="http://thedevignpath.com/archives/61">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>You know, after reading this book I fell in love with Sony. It’s so hard to resist the human element of Sony’s history. From the humble beginnings in a devastated city after the second world war and the ambition Morita showed to pursue his dreams with a trusted mentor and friend, Professor Ibuka. It is a classic rags to riches story, what is there not to love?</p>
<p>But just as important were the ideas with which they shaped this new company. How do you build an innovation machine? Allow researchers to pursue personal interests that may not have short term goals but may be of long term strategic importance.</p>
<p>Giving colour and insight to this story are Morita’s reflections on Japanese history, work culture and the future. If you want to understand a little bit of where “life-time employment” came from then read this book.</p>
<p>The book meanders in some places and has personal opinions mixed in with factual information but it is was an easy read.</p>
<p>I will leave you with this quote of Morita speaking about his colleague Professor Ibuka -</p>
<blockquote><p>&#8220;Ibuka is a great person with great leadership qualities &#8211; he attracts people to him and they invariably want to work with him. In fact, the history of our company is the story of a group of people trying to help Ibuka make his dreams come true. He never believed in one-man management. It was not only Ibuka&#8217;s genius and originality in technology fields or his ability to look in the future and accurately forecast for us accurately that struck everyone so forcefully, but his ability to take this group of young and cocky engineers and mold them into a management team that could cooperate in an atmosphere where everybody was encouraged to speak out.&#8221;</p></blockquote>
<p>I might have overstated things when I said it was a rag to riches story. Morita’s family had a successful family business and he had been groomed, as the first son, to take over. <a href="http://thedevignpath.com/archives/62">Which brings us to …</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fthedevignpath.com%2Farchives%2F61&amp;title=Book%20review%3A%20Made%20in%20Japan%20by%20Akio%20Morita"><img src="http://thedevignpath.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://thedevignpath.com/archives/61/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Book review: Samsung vs. Sony</title>
		<link>http://thedevignpath.com/archives/58</link>
		<comments>http://thedevignpath.com/archives/58#comments</comments>
		<pubDate>Sun, 25 Oct 2009 20:53:29 +0000</pubDate>
		<dc:creator>iampeterbanjo</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[economy]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://thedevignpath.com/archives/58</guid>
		<description><![CDATA[The book begins with an open question, in 2002 the market capitalization of Samsung surpassed that of Sony, how did this happen? The author thoroughly explores the differences between these two companies – one a well respected icon in electronics (&#8230;)</p><p><a href="http://thedevignpath.com/archives/58">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>The book begins with an open question, in 2002 the market capitalization of Samsung surpassed that of Sony, how did this happen?</p>
<p>The author thoroughly explores the differences between these two companies – one a well respected icon in electronics and the other a young upstart with a coloured past. And comes to rest on the conclusion that it is the companies deep seated structures, processes and environments which have allowed Samsung to not only catch up but to overtake Sony.</p>
<p>In a summary that will not do justice to the book, Samsung has a strong command and control structure that has allowed them to make strong profits from building parts for other companies, mainly memory chips, at the best price. They invested aggressively in their business and by some clever strategic thinking positioned themselves to become a quality brand to escape the harsh realities of always trying to be the cheapest bidder.</p>
<p>Sony because of their charismatic founders <a href="http://en.wikipedia.org/wiki/Akio_Morita">Akio Morita</a> and <a href="http://en.wikipedia.org/wiki/Masaru_Ibuka">Masaru Ibuka</a> embraced an open culture that allowed creativity to flourish. They focused their attention on premium products and creating markets. That worked well in the beginning but managing a global enterprise has been a challenge for their successors.</p>
<p>It is like reading a book of modern warfare but nobody has to die. In fact, for a while neither of these companies were in direct competition with each other. </p>
<p>What is in it for you? Are you in an industry where you are trying to make more for less or you want to create something so cool everybody will pay you just to look at it? I find myself leaning towards the latter and this is a history lesson that will be good to learn from – if you don’t want to be overtaken like Sony has been. But the story isn’t over because Samsung is struggling with innovation and Sony have the oppotunity to learn from their mistakes</p>
<p>At the same time I was reading this book I was also reading…</p>
<p>&#160;</p>
<p><iframe style="width: 120px; height: 240px" marginheight="0" src="http://rcm-uk.amazon.co.uk/e/cm?t=thedevpat-21&amp;o=2&amp;p=8&amp;l=as1&amp;asins=0470823712&amp;fc1=000000&amp;IS2=1&amp;lt1=_blank&amp;m=amazon&amp;lc1=0000FF&amp;bc1=000000&amp;bg1=FFFFFF&amp;f=ifr" frameborder="0" marginwidth="0" scrolling="no"></iframe></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fthedevignpath.com%2Farchives%2F58&amp;title=Book%20review%3A%20Samsung%20vs.%20Sony"><img src="http://thedevignpath.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://thedevignpath.com/archives/58/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

