<?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>jacktams.co.uk</title>
	<atom:link href="http://www.jacktams.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jacktams.net</link>
	<description>Technology Simplified.</description>
	<lastBuildDate>Wed, 28 Apr 2010 15:03:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0-RC2-15172</generator>
		<item>
		<title>Spotify Applescripts Version 0.4.3</title>
		<link>http://www.jacktams.net/2010/04/28/spotify-applescripts-version-0-4-3/</link>
		<comments>http://www.jacktams.net/2010/04/28/spotify-applescripts-version-0-4-3/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 15:02:09 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/?p=778</guid>
		<description><![CDATA[With the new version of Spotify the menus have been moved around, so I have updated the Applescripts that you can use to control Spotify with Quicksilver. Play Next &#160; tell application &#34;System Events&#34; set MyList to &#40;name of every process&#41; end tell &#160; tell application &#34;System Events&#34; to set appList to ¬ name of [...]]]></description>
			<content:encoded><![CDATA[<p>With the new version of Spotify the menus have been moved around, so I have updated the Applescripts that you can use to control Spotify with Quicksilver.<br />
<strong>Play Next</strong></p>
<pre class="applescript">&nbsp;
<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
	<span style="color: #b1b100;">set</span> MyList <span style="color: #b1b100;">to</span> <span style="color: #66cc66;">&#40;</span>name <span style="color: #b1b100;">of</span> <span style="color: #000000; font-weight: bold;">every</span> process<span style="color: #66cc66;">&#41;</span>
<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
&nbsp;
<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span> <span style="color: #b1b100;">to</span> <span style="color: #b1b100;">set</span> appList <span style="color: #b1b100;">to</span> ¬
	name <span style="color: #b1b100;">of</span> application processes <span style="color: #000000; font-weight: bold;">whose</span> frontmost <span style="color: #b1b100;">is</span> <span style="color: #000066;">true</span>
&nbsp;
<span style="color: #b1b100;">set</span> activeApp <span style="color: #b1b100;">to</span> item <span style="color: #cc66cc;">1</span> <span style="color: #b1b100;">of</span> appList
<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span>MyList <span style="color: #000066;">contains</span> <span style="color: #ff0000;">&quot;Spotify&quot;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #b1b100;">is</span> <span style="color: #000066;">true</span> <span style="color: #b1b100;">then</span>
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;Spotify&quot;</span> <span style="color: #b1b100;">to</span> activate
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
		<span style="color: #b1b100;">tell</span> process <span style="color: #ff0000;">&quot;Spotify&quot;</span>
click menu item <span style="color: #cc66cc;">3</span> <span style="color: #b1b100;">of</span> menu <span style="color: #cc66cc;">1</span> <span style="color: #b1b100;">of</span> menu bar item <span style="color: #cc66cc;">6</span> <span style="color: #b1b100;">of</span> menu bar <span style="color: #cc66cc;">1</span>
		<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
	<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
		<span style="color: #b1b100;">set</span> visible <span style="color: #b1b100;">of</span> process <span style="color: #ff0000;">&quot;Spotify&quot;</span> <span style="color: #b1b100;">to</span> <span style="color: #000066;">false</span>
	<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">if</span>
&nbsp;</pre>
<p><strong>Play Previous</strong></p>
<pre class="applescript">&nbsp;
<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
	<span style="color: #b1b100;">set</span> MyList <span style="color: #b1b100;">to</span> <span style="color: #66cc66;">&#40;</span>name <span style="color: #b1b100;">of</span> <span style="color: #000000; font-weight: bold;">every</span> process<span style="color: #66cc66;">&#41;</span>
<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
&nbsp;
<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span> <span style="color: #b1b100;">to</span> <span style="color: #b1b100;">set</span> appList <span style="color: #b1b100;">to</span> ¬
	name <span style="color: #b1b100;">of</span> application processes <span style="color: #000000; font-weight: bold;">whose</span> frontmost <span style="color: #b1b100;">is</span> <span style="color: #000066;">true</span>
&nbsp;
<span style="color: #b1b100;">set</span> activeApp <span style="color: #b1b100;">to</span> item <span style="color: #cc66cc;">1</span> <span style="color: #b1b100;">of</span> appList
<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span>MyList <span style="color: #000066;">contains</span> <span style="color: #ff0000;">&quot;Spotify&quot;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #b1b100;">is</span> <span style="color: #000066;">true</span> <span style="color: #b1b100;">then</span>
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;Spotify&quot;</span> <span style="color: #b1b100;">to</span> activate
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
		<span style="color: #b1b100;">tell</span> process <span style="color: #ff0000;">&quot;Spotify&quot;</span>
click menu item <span style="color: #cc66cc;">4</span> <span style="color: #b1b100;">of</span> menu <span style="color: #cc66cc;">1</span> <span style="color: #b1b100;">of</span> menu bar item <span style="color: #cc66cc;">6</span> <span style="color: #b1b100;">of</span> menu bar <span style="color: #cc66cc;">1</span>
		<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
	<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
		<span style="color: #b1b100;">set</span> visible <span style="color: #b1b100;">of</span> process <span style="color: #ff0000;">&quot;Spotify&quot;</span> <span style="color: #b1b100;">to</span> <span style="color: #000066;">false</span>
	<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">if</span>
&nbsp;</pre>
<p><strong>Play/Pause</strong></p>
<pre class="applescript">&nbsp;
<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
	<span style="color: #b1b100;">set</span> MyList <span style="color: #b1b100;">to</span> <span style="color: #66cc66;">&#40;</span>name <span style="color: #b1b100;">of</span> <span style="color: #000000; font-weight: bold;">every</span> process<span style="color: #66cc66;">&#41;</span>
<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
&nbsp;
<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span> <span style="color: #b1b100;">to</span> <span style="color: #b1b100;">set</span> appList <span style="color: #b1b100;">to</span> ¬
	name <span style="color: #b1b100;">of</span> application processes <span style="color: #000000; font-weight: bold;">whose</span> frontmost <span style="color: #b1b100;">is</span> <span style="color: #000066;">true</span>
&nbsp;
<span style="color: #b1b100;">set</span> activeApp <span style="color: #b1b100;">to</span> item <span style="color: #cc66cc;">1</span> <span style="color: #b1b100;">of</span> appList
<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span>MyList <span style="color: #000066;">contains</span> <span style="color: #ff0000;">&quot;Spotify&quot;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #b1b100;">is</span> <span style="color: #000066;">true</span> <span style="color: #b1b100;">then</span>
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;Spotify&quot;</span> <span style="color: #b1b100;">to</span> activate
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
		<span style="color: #b1b100;">tell</span> process <span style="color: #ff0000;">&quot;Spotify&quot;</span>
click menu item <span style="color: #cc66cc;">1</span> <span style="color: #b1b100;">of</span> menu <span style="color: #cc66cc;">1</span> <span style="color: #b1b100;">of</span> menu bar item <span style="color: #cc66cc;">6</span> <span style="color: #b1b100;">of</span> menu bar <span style="color: #cc66cc;">1</span>
		<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
	<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
		<span style="color: #b1b100;">set</span> visible <span style="color: #b1b100;">of</span> process <span style="color: #ff0000;">&quot;Spotify&quot;</span> <span style="color: #b1b100;">to</span> <span style="color: #000066;">false</span>
	<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">if</span>
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2010/04/28/spotify-applescripts-version-0-4-3/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Postcards from New York</title>
		<link>http://www.jacktams.net/2010/04/05/postcards-from-new-york/</link>
		<comments>http://www.jacktams.net/2010/04/05/postcards-from-new-york/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 11:58:53 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[apple ipad steak]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/2010/04/05/postcards-from-new-york/</guid>
		<description><![CDATA[I never actually thought I would end up buying an iPad or for that matter really liking one if i did. However, sat at 32,000ft typing this review out on an iPad this thing makes absolute sense, and is just about the best gadget I have purchased to date. For the vegetarians amongst you, there [...]]]></description>
			<content:encoded><![CDATA[<p>I never actually thought I would end up buying an iPad or for that matter really liking one if i did. However, sat at 32,000ft typing this review out on an iPad this thing makes absolute sense, and is just about the best gadget I have purchased to date. </p>
<p>For the vegetarians amongst you, there is a very easy analogy the iPhone is a quorn burger, where as the iPad is a full blown New York strip steak with steak sauce, fries and whatever else you care to have on, or with your steak. Yes it doesn't multi-task, and yes you are limited to the apps that apple approve - but what you do get is a fantastic piece of hardware with some fantastic apps. </p>
<p>The ultimate role of the iPad is neither to be a laptop nor a giant iPhone, it is to be the device you goto on a morning to get your news fix, or when you are sat down and having an argument over who made the engines for the Blackbird. It's instantly on and instantly there, unlike any device I have ever used you click it happens.</p>
<p>The keyboard is surprisingly good and like the iPhone, it will learn your common mistakes and correct them. Unlike the iPhone however there is built in spell checker, which seems to be apart of the OS so is available to any application that supports it; it's the simple touches that make life easier.</p>
<p>As far as battery life goes I expect it to easily last the 6hour flight to San Francisco that I am on now, which will involve watching at least 3 episode of FlashForward, and multiple tweets. </p>
<p>All in all I think it may well turn out to be a good buy. </p>
<p><a href="http://www.jacktams.co.uk/wp-content/uploads/2010/04/p_1024_768_B6B81FAD-25CA-401C-80BA-DCB7516CD08C.jpeg"><img src="http://www.jacktams.co.uk/wp-content/uploads/2010/04/p_1024_768_B6B81FAD-25CA-401C-80BA-DCB7516CD08C.jpeg" alt="" class="alignnone size-full" /></a></p>
<p><a href="http://www.jacktams.co.uk/wp-content/uploads/2010/04/p_1024_768_FC967395-6102-4430-B28F-F4D0A49A49AC.jpeg"><img src="http://www.jacktams.co.uk/wp-content/uploads/2010/04/p_1024_768_FC967395-6102-4430-B28F-F4D0A49A49AC.jpeg" alt="" class="alignnone size-full" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2010/04/05/postcards-from-new-york/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In Search of Fake Bacon&#8230;</title>
		<link>http://www.jacktams.net/2010/01/24/in-search-of-fake-bacon/</link>
		<comments>http://www.jacktams.net/2010/01/24/in-search-of-fake-bacon/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 16:40:35 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Vegetarian]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/?p=759</guid>
		<description><![CDATA[As we all should now acknowledge vegetarian, vegan or otherwise love bacon. Whether they admit this is an entirely different matter, but usually you can have any vegetarian craving a bacon butty with a couple more drinks than he or she should really have had. So has the vegetarian cult found its saviour in the [...]]]></description>
			<content:encoded><![CDATA[<p>As we all should now acknowledge vegetarian, vegan or otherwise love bacon. Whether they admit this is an entirely different matter, but usually you can have any vegetarian craving a bacon butty with a couple more drinks than he or she should really have had. </p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/rphsZUdybuU&hl=en_US&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/rphsZUdybuU&hl=en_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="false" width="560" height="340"></embed></object></p>
<p>So has the vegetarian cult found its saviour in the most unlikely of places, Linda McCartney? Well not really, unlike the Cult of Qorn eaters who insist they are vegetarian but have to have meat substitutes that look and taste like meat. Linda McCartney's range of Super Substitute foods, offers the meat eater something that tastes good and more importantly doesn't pretend to be meat. Best of all they do taste rather good, even without a large dousing in HP sauce. </p>
<p>So ends Day 9, of my epic struggle with not eating meat till easter - so far so good, and don't forget I am suffering so you don't have to.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2010/01/24/in-search-of-fake-bacon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pseudo-Sausages &amp; Fake Bacon &#8211; What Have I Done&#8230;</title>
		<link>http://www.jacktams.net/2010/01/18/pseudo-sausages-fake-bacon-what-have-i-done/</link>
		<comments>http://www.jacktams.net/2010/01/18/pseudo-sausages-fake-bacon-what-have-i-done/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 22:31:12 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Vegetarian]]></category>
		<category><![CDATA[going vege]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/?p=742</guid>
		<description><![CDATA[You may not know, but during the cold snap over Britain at the beginning of this new decade - Hell Froze Over. Yes, thats right Hell Froze Over completely. How do I know this? Well its quite simple, I decided to disregard 19 years of teaching and go VEGETARIAN. Any rational human being such as [...]]]></description>
			<content:encoded><![CDATA[<p><center><a href="http://www.jacktams.co.uk/wp-content/uploads/2010/01/44749352.2GoVegetarian.jpg"><img class="aligncenter size-medium wp-image-743" title="44749352.2GoVegetarian" src="http://www.jacktams.co.uk/wp-content/uploads/2010/01/44749352.2GoVegetarian-234x300.jpg" alt="" width="234" height="300" /></a></center></p>
<p>You may not know, but during the cold snap over Britain at the beginning of this new decade - Hell Froze Over. Yes, thats right Hell Froze Over completely. How do I know this? Well its quite simple, I decided to disregard 19 years of teaching and go <strong>VEGETARIAN</strong>. Any rational human being such as Gregory House MD, would immediately declare me insane, and probably have me certified if I was to add I would keep the game up for 3 whole months. So a New Years Resolution was made. </p>
<p>So far so good I am already at Day 4, of what is sure to be a flatulent, green eating, tree hugging, hippy portion of my life. Observations are coming thick and fast:</p>
<p><strong>1) Vegetarians don't have a stereotype do they?</strong><br />
This is something that made me laugh at the supermarket, practically every vegetarian product has a "Save the {Insert Animal Here}" or some high moral statement. Way to go and dispelling the stereotype to the novice vege.<br />
<center><a href="http://www.jacktams.co.uk/wp-content/uploads/2010/01/photo-1.jpg"><img src="http://www.jacktams.co.uk/wp-content/uploads/2010/01/photo-1-300x225.jpg" alt="" title="photo-1" width="300" height="225" class="aligncenter size-medium wp-image-752" /></a></center></p>
<p><strong>2) Tesco Express is rubbish</strong><br />
Every little may help, but there is such a poor selection of vegetables and meat substitutes in even the biggest Central London Tesco's its a joke. Also involved me going under nourished on Day 3, because I really wanted some courgettes. </p>
<p><strong>3) "Captain, We appear to be detecting a gaseous anomaly on the starboard side"</strong><br />
Now we get to the toilet humor. I am guessing that everybody kind of guesses this one, but nobody really wants to talk about it. Well fear not jack is here, and let me tell you eating all that hey and lettuce makes you fart like you have never farted before, it also causes a small weather nexus of high pressure around you. I think this was the inspiration of the Travis Song - <a href="http://open.spotify.com/track/34DXxHppbu1Q0CjbbCDhKc">Why Does It Always Rain On Me</a>.</p>
<p><strong>Wait there is yet more to come.</strong><br />
In my next installment, I am going to cover Whole Foods, Dietary Balance, What on Earth to do with Tofu, and why does Linda McCartney make Vegetarian Pseudo-Sausages.</p>
<p>I am suffering so you don't have to people.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2010/01/18/pseudo-sausages-fake-bacon-what-have-i-done/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PIXAR Intro clip: The Truth</title>
		<link>http://www.jacktams.net/2009/10/19/pixar-intro-clip-the-truth/</link>
		<comments>http://www.jacktams.net/2009/10/19/pixar-intro-clip-the-truth/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 20:05:53 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/?p=730</guid>
		<description><![CDATA[See more funny videos and funny pictures at CollegeHumor.]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.collegehumor.com/moogaloop/moogaloop.swf?clip_id=1921845&fullscreen=1" width="440"><param name="allowfullscreen" value="true"/><param name="wmode" value="transparent"/><param name="allowScriptAccess" value="always"/><param name="movie" quality="best" value="http://www.collegehumor.com/moogaloop/moogaloop.swf?clip_id=1921845&fullscreen=1"/><embed src="http://www.collegehumor.com/moogaloop/moogaloop.swf?clip_id=1921845&fullscreen=1" type="application/x-shockwave-flash" wmode="transparent"  width="440" height="360"  allowScriptAccess="always"></embed></object>
<div style="padding:5px 0; text-align:center; width:440px;">See more <a href="http://www.collegehumor.com/videos">funny videos</a> and <a href="http://www.collegehumor.com/pictures">funny pictures</a> at <a href="http://www.collegehumor.com/">CollegeHumor</a>.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2009/10/19/pixar-intro-clip-the-truth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bricks and Mortar is Dead, Long Live Bricks and Mortar.</title>
		<link>http://www.jacktams.net/2009/10/19/bricks-and-mortar-is-dead-long-live-bricks-and-mortar/</link>
		<comments>http://www.jacktams.net/2009/10/19/bricks-and-mortar-is-dead-long-live-bricks-and-mortar/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 19:01:49 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[Retail]]></category>
		<category><![CDATA[music industry]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[trade]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/?p=703</guid>
		<description><![CDATA[Preface: This post is a direct result of a very heated discussion with the MI (Music Industry) on the following article at MI-Pro and as such is very MI centric and should be taken as such Problem MI Retail stores are fast failing in the UK, and its been happening for years not just because [...]]]></description>
			<content:encoded><![CDATA[<p><small><em>Preface: This post is a direct result of a very heated discussion with the MI (Music Industry) on the following article at <a href="http://www.mi-pro.co.uk/news/30586/Second-Reverb-store-folds">MI-Pro</a> and as such is very MI centric and should be taken as such</em></small><br />
<img src="http://www.jacktams.co.uk/wp-content/uploads/2009/10/highstreet.jpg" alt="highstreet" title="highstreet" width="440" height="75" class="aligncenter size-full wp-image-718" /></p>
<h1>Problem</h1>
<p>MI Retail stores are fast failing in the UK, and its been happening for years not just because of the 'recession'.  The common held wisdom that if you build a music store they will come and sample the wares and buy - bricks and mortar is good. However, as history is consistently showing the MI Retail sector isn't making much out of this philosophy. Maybe there are exceptions to the rule, but at large retails stores with their inherent overheads of staff and upkeep as well as stock - its a complete non-starter.<br />
<span id="more-703"></span></p>
<h3>Lifestyle Business</h3>
<p>These issues are further compounded by the shear number of 'lifestyle' business, where the owners have made their money elsewhere and have the music store as a play thing. At the end of the day the balance sheet doesn't matter its all about something todo. Therefore you have a market that fosters a race to the bottom, rather than quality. </p>
<h3>Aversion to new things.</h3>
<p>For an industry that is so often at the forefront of new technologies, such as the MOOG and the Roland V-Piano. We are also terrible bad at adopting new technologies into the industry. The internet is still seen as a threat (even though many wont admit it), as such many reputable retailers have little to no web convincing presence see <a href="http://www.jgwindows.com/">JG Windows</a>, <a href="http://www.reverb-store.co.uk/">Reverb</a> and even <a href="http://www.chappellofbondstreet.co.uk/">Chappels of Bond Street</a>. These are supposably some of the respected flag bearers of the industry. The trade has always had an arms length relationship with internet, leaving the market wide open for newcomers such as <a href="http://www.dolphinmusic.co.uk/">Dolphin Music</a>, and they have seen explosive growth.<br />
<img src="http://www.jacktams.co.uk/wp-content/uploads/2009/10/cart.jpg" alt="cart" title="cart" width="440" height="75" class="aligncenter size-full wp-image-720" /></p>
<h1>Solution?</h1>
<p>Taking the Dolphin Music model, they were an internet startup. The brain child of Rob Williams and Jason Tavaria <a href="http://www.dolphinmusic.co.uk/about-us/history">[more]</a> whilst still at university. They grew amazingly fast and basically dominant a huge chunk of the internet pie, not just because they were first to market and saw the value of online, but also because there is nobody else who can contend the market. </p>
<h3>What about Demos?</h3>
<p>The lack of a demonstration equipment I think is the motivation for Dolphins Music push into retail (Bricks and Mortar) you will see prominent links on all Dolphins pages that let you see if that item is in stock at your nearest store. Despite there prime locations Dolphins stores work, because of the user base it generated online. This is we the key under estimation of the internet comes, it isn't less personal but more personal.</p>
<p>I as a web developer can tailor search results and product recommendations uniquely to each of my visitors, I can also because the time taken on writing an email is much less than face-to-face contact write personal responses to each enquiry whether there be one or a 1,000. You can easily build a rapport with a customer and a community online that reaches a much larger audience online than you can simply with a small local store or even a chain.<br />
<img src="http://www.jacktams.co.uk/wp-content/uploads/2009/10/online_cart.jpg" alt="online_cart" title="online_cart" width="440" height="75" class="aligncenter size-full wp-image-722" /></p>
<h3>So where do Bricks and Mortar Sit</h3>
<p>Bricks and mortar stores, sit in the sweet spot. Much of a catalog of instruments/accessories can easily be served online with fast delivery and good service. However you do have the items such as Pro-Keyboards and Guitars that do need demoing before you can decide that is perfect for me. However, traditionally and especially for stores without a reasonable web presence, you quickly find that a potential customer will come into a store and demo a guitar for a considerable amount of time, not buy and buy online later.  By having an online store something amazing happens, you can filter customers. Easily decide between sales leads that have a good potential and leave the ones that don't. </p>
<p>Even if you have no contact between you and  customer before they enter the store, they can know whether you have stock where you are when you open. So the chances of converting that business is extremely high as they have already chosen you. You already have a connection with the customer and you have effectively done nothing for it, as such even a relatively small company can appear as a large trading enterprise and also carry the expertise that would imply for a fraction of the cost. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2009/10/19/bricks-and-mortar-is-dead-long-live-bricks-and-mortar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toy Story 3 Trailer</title>
		<link>http://www.jacktams.net/2009/10/10/toy-story-3-trailer/</link>
		<comments>http://www.jacktams.net/2009/10/10/toy-story-3-trailer/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 12:15:35 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[toy story 3]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/?p=696</guid>
		<description><![CDATA[Trailer Tracks: Randy Newman – Losing You]]></description>
			<content:encoded><![CDATA[<p><object width="420"><param name="movie" value="http://www.traileraddict.com/emd/14881"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.traileraddict.com/emd/14881" type="application/x-shockwave-flash" allowscriptaccess="always" wmode="transparent" width="450" height="303" allowFullScreen="true"></embed></object></p>
<p><strong>Trailer Tracks:</strong><br />
<a href="http://open.spotify.com/track/2KR2jnxdT35Zedt03Sk9jH">Randy Newman – Losing You</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2009/10/10/toy-story-3-trailer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spotify Applescripts &#8211; Updated</title>
		<link>http://www.jacktams.net/2009/10/09/spotify-applescripts-updated/</link>
		<comments>http://www.jacktams.net/2009/10/09/spotify-applescripts-updated/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 10:39:55 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/?p=669</guid>
		<description><![CDATA[New Version Here As with all good things there comes a time when a little update and a refresh is needed. Sometime ago a released several little Applescript helpers that let you control spotify through Quicksilver triggers. However they had a little tendency to make spotify the front and therefore active app when you used [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.jacktams.co.uk/2010/04/28/spotify-applescripts-version-0-4-3/">New Version Here</a></strong><br />
<img src="http://www.jacktams.co.uk/wp-content/uploads/2009/05/picture-2-150x150.png" alt="picture-2" title="picture-2" width="150" height="150" class="alignright size-thumbnail wp-image-589" />As with all good things there comes a time when a little update and a refresh is needed. Sometime ago a released several little Applescript helpers that let you control <a href="http://www.jacktams.co.uk/2009/05/15/controlling-spotify-through-applescript-quicksilver/">spotify through Quicksilver triggers</a>. However they had a little tendency to make spotify the front and therefore active app when you used them. The new and improved scripts will return you back to the app you where using before the script was triggered, fun eh!</p>
<p><span id="more-669"></span><br />
<strong>Play Next</strong></p>
<pre class="applescript">&nbsp;
<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
	<span style="color: #b1b100;">set</span> MyList <span style="color: #b1b100;">to</span> <span style="color: #66cc66;">&#40;</span>name <span style="color: #b1b100;">of</span> <span style="color: #000000; font-weight: bold;">every</span> process<span style="color: #66cc66;">&#41;</span>
<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
&nbsp;
<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span> <span style="color: #b1b100;">to</span> <span style="color: #b1b100;">set</span> appList <span style="color: #b1b100;">to</span> ¬
	name <span style="color: #b1b100;">of</span> application processes <span style="color: #000000; font-weight: bold;">whose</span> frontmost <span style="color: #b1b100;">is</span> <span style="color: #000066;">true</span>
&nbsp;
<span style="color: #b1b100;">set</span> activeApp <span style="color: #b1b100;">to</span> item <span style="color: #cc66cc;">1</span> <span style="color: #b1b100;">of</span> appList
<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span>MyList <span style="color: #000066;">contains</span> <span style="color: #ff0000;">&quot;Spotify&quot;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #b1b100;">is</span> <span style="color: #000066;">true</span> <span style="color: #b1b100;">then</span>
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;Spotify&quot;</span> <span style="color: #b1b100;">to</span> activate
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
		<span style="color: #b1b100;">tell</span> process <span style="color: #ff0000;">&quot;Spotify&quot;</span>
click menu item <span style="color: #cc66cc;">3</span> <span style="color: #b1b100;">of</span> menu <span style="color: #cc66cc;">1</span> <span style="color: #b1b100;">of</span> menu bar item <span style="color: #cc66cc;">5</span> <span style="color: #b1b100;">of</span> menu bar <span style="color: #cc66cc;">1</span>
		<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
	<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
		<span style="color: #b1b100;">set</span> visible <span style="color: #b1b100;">of</span> process <span style="color: #ff0000;">&quot;Spotify&quot;</span> <span style="color: #b1b100;">to</span> <span style="color: #000066;">false</span>
	<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">if</span>
&nbsp;</pre>
<p><strong>Play Previous</strong></p>
<pre class="applescript">&nbsp;
<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
	<span style="color: #b1b100;">set</span> MyList <span style="color: #b1b100;">to</span> <span style="color: #66cc66;">&#40;</span>name <span style="color: #b1b100;">of</span> <span style="color: #000000; font-weight: bold;">every</span> process<span style="color: #66cc66;">&#41;</span>
<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
&nbsp;
<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span> <span style="color: #b1b100;">to</span> <span style="color: #b1b100;">set</span> appList <span style="color: #b1b100;">to</span> ¬
	name <span style="color: #b1b100;">of</span> application processes <span style="color: #000000; font-weight: bold;">whose</span> frontmost <span style="color: #b1b100;">is</span> <span style="color: #000066;">true</span>
&nbsp;
<span style="color: #b1b100;">set</span> activeApp <span style="color: #b1b100;">to</span> item <span style="color: #cc66cc;">1</span> <span style="color: #b1b100;">of</span> appList
<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span>MyList <span style="color: #000066;">contains</span> <span style="color: #ff0000;">&quot;Spotify&quot;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #b1b100;">is</span> <span style="color: #000066;">true</span> <span style="color: #b1b100;">then</span>
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;Spotify&quot;</span> <span style="color: #b1b100;">to</span> activate
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
		<span style="color: #b1b100;">tell</span> process <span style="color: #ff0000;">&quot;Spotify&quot;</span>
click menu item <span style="color: #cc66cc;">4</span> <span style="color: #b1b100;">of</span> menu <span style="color: #cc66cc;">1</span> <span style="color: #b1b100;">of</span> menu bar item <span style="color: #cc66cc;">5</span> <span style="color: #b1b100;">of</span> menu bar <span style="color: #cc66cc;">1</span>
		<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
	<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
		<span style="color: #b1b100;">set</span> visible <span style="color: #b1b100;">of</span> process <span style="color: #ff0000;">&quot;Spotify&quot;</span> <span style="color: #b1b100;">to</span> <span style="color: #000066;">false</span>
	<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">if</span>
&nbsp;</pre>
<p><strong>Play/Pause</strong></p>
<pre class="applescript">&nbsp;
<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
	<span style="color: #b1b100;">set</span> MyList <span style="color: #b1b100;">to</span> <span style="color: #66cc66;">&#40;</span>name <span style="color: #b1b100;">of</span> <span style="color: #000000; font-weight: bold;">every</span> process<span style="color: #66cc66;">&#41;</span>
<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
&nbsp;
<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span> <span style="color: #b1b100;">to</span> <span style="color: #b1b100;">set</span> appList <span style="color: #b1b100;">to</span> ¬
	name <span style="color: #b1b100;">of</span> application processes <span style="color: #000000; font-weight: bold;">whose</span> frontmost <span style="color: #b1b100;">is</span> <span style="color: #000066;">true</span>
&nbsp;
<span style="color: #b1b100;">set</span> activeApp <span style="color: #b1b100;">to</span> item <span style="color: #cc66cc;">1</span> <span style="color: #b1b100;">of</span> appList
<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span>MyList <span style="color: #000066;">contains</span> <span style="color: #ff0000;">&quot;Spotify&quot;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #b1b100;">is</span> <span style="color: #000066;">true</span> <span style="color: #b1b100;">then</span>
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;Spotify&quot;</span> <span style="color: #b1b100;">to</span> activate
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
		<span style="color: #b1b100;">tell</span> process <span style="color: #ff0000;">&quot;Spotify&quot;</span>
click menu item <span style="color: #cc66cc;">1</span> <span style="color: #b1b100;">of</span> menu <span style="color: #cc66cc;">1</span> <span style="color: #b1b100;">of</span> menu bar item <span style="color: #cc66cc;">5</span> <span style="color: #b1b100;">of</span> menu bar <span style="color: #cc66cc;">1</span>
		<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
	<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
		<span style="color: #b1b100;">set</span> visible <span style="color: #b1b100;">of</span> process <span style="color: #ff0000;">&quot;Spotify&quot;</span> <span style="color: #b1b100;">to</span> <span style="color: #000066;">false</span>
	<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">if</span>
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2009/10/09/spotify-applescripts-updated/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Royal Mail &#8211; Doomed! I Tell You.</title>
		<link>http://www.jacktams.net/2009/10/09/royal-mail-doomed-i-tell-you/</link>
		<comments>http://www.jacktams.net/2009/10/09/royal-mail-doomed-i-tell-you/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 08:42:42 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Ideas]]></category>
		<category><![CDATA[CWU]]></category>
		<category><![CDATA[Royal Mail]]></category>
		<category><![CDATA[unions]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/?p=647</guid>
		<description><![CDATA[Lets not lose sight of the reason why these public spirited workers are taking action, they are being asked to "work the hours they are paid for". Commentor Guardian Website The end of an era is finally here, Labour tried to Privatise the Royal Mail and failed because of Union opposition. Now out of greed [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.jacktams.co.uk/wp-content/uploads/2009/10/pa_rmlogo-1.gif" alt="pa_rmlogo-1" title="pa_rmlogo-1" width="140" height="103" class="alignright size-full wp-image-650" /><br />
<blockquote>Lets not lose sight of the reason why these public spirited workers are taking action, they are being asked to "work the hours they are paid for".</p>
<p><cite>Commentor Guardian <a href="http://www.guardian.co.uk/commentisfree/2009/oct/08/cwu-postal-workers-strike-royal-mail?commentid=480c5292-dcef-4ca7-82b7-af5b0c495790">Website</a></cite></p></blockquote>
<p>The end of an era is finally here, Labour tried to Privatise the Royal Mail and failed because of Union opposition. Now out of greed and short sightedness the very same union are painting themselves into a corner the business will never recover from. </p>
<p>Amazon, Argos & eBay, The life blood of what is left of the Royal Mail are setting up to drop them like a stone on the back of any industrial action. Small businesses are up in arms and there is even a <a href="http://petitions.number10.gov.uk/MailStrike/">petition</a>.<br />
<span id="more-647"></span><br />
<a href="http://www.guardian.co.uk/business/cartoon/2009/oct/09/kipper-williams-royal-mail"><img src="http://www.jacktams.co.uk/wp-content/uploads/2009/10/Kipper-Williams-Royal-Mai-003-273x300.jpg" alt="Kipper-Williams-Royal-Mai-003" title="Kipper-Williams-Royal-Mai-003" width="273" height="300" class="alignright size-medium wp-image-656" /></a><strong>We are fighting for fairness and job security...  </strong></p>
<p>Well fairness is about as broad as it is long, so you can justify just about anything there. I was forced to wear the company uniform and walk around posting things through doors - it's just unfair. Jobs at the Royal Mail are now about as secure as the crew on the Mary Celeste, they were more secure before the CWU started bleating about unfair conditions and rushed modernisation. </p>
<p>The unions seem not to realise that if the modernisation isn't pushed through quickly enough (whether or not it is the correct course of action) there will be little of the business to save. Being that it currently continues to be in business, due to being owned by the government and heavily subsidised by the tax payer.</p>
<p>The Royal Mail is a business it isn't there for the social benefit of its workers. If a business makes insufficient money to make payroll well sadly some workers have to go. If there is duplication of workers duties well thats wasted money, either re-train or move on. </p>
<p>There is only one thing left to say - The Royal Mail is Doomed! Not because of the business itself even if the letters being shipped via the royal mail decline 10% each year. No, it will fail because once again the Unions put the big foot in the mix. Lions leading Lambs anyone?</p>
<p>PS: I really wish I was a stakeholder in any alternative shipping company, its going to be a bumper christmas. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2009/10/09/royal-mail-doomed-i-tell-you/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Protecting Media from Pirates&#8230;</title>
		<link>http://www.jacktams.net/2009/06/07/protecting-media-from-pirates/</link>
		<comments>http://www.jacktams.net/2009/06/07/protecting-media-from-pirates/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 09:58:11 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[charles dunstone]]></category>
		<category><![CDATA[howard stringer]]></category>
		<category><![CDATA[net neutrality]]></category>
		<category><![CDATA[open networks]]></category>
		<category><![CDATA[piracy]]></category>
		<category><![CDATA[pirate]]></category>
		<category><![CDATA[pracy]]></category>
		<category><![CDATA[sony]]></category>
		<category><![CDATA[sony corp]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/?p=602</guid>
		<description><![CDATA[Web pirates placed in 'slow lane' The government has all but ruled out using a "three strikes" law to tackle persistent net pirates. Using warnings and disconnection to tackle pirates was thought to be in the final Digital Britain report due to be published on 16 June. bbc.co.uk/news After years and years fighting the Music [...]]]></description>
			<content:encoded><![CDATA[<blockquote>
<h3>Web pirates placed in 'slow lane'</h3>
<p><img src="http://www.jacktams.co.uk/wp-content/uploads/2009/06/1197434308818557515anonymous_pirate_flag_-_jack_rackhamsvghi-150x150.png" alt="1197434308818557515anonymous_pirate_flag_-_jack_rackhamsvghi" title="Pirate Flag" width="150" height="150" class="alignright size-thumbnail wp-image-623" /><br />
<strong>The government has all but ruled out using a "three strikes" law to tackle persistent net pirates.</strong><br />
Using warnings and disconnection to tackle pirates was thought to be in the final Digital Britain report due to be published on 16 June.<br />
<a href="http://news.bbc.co.uk/1/hi/technology/8083866.stm">bbc.co.uk/news<br />
</a></p></blockquote>
<p>After years and years fighting the Music and Movie industries, still seem reluctant to change there business models. Still trying to convince government and ISP the only solution is to kick pirates off their respective networks, or divulge the users browsing habits so they can be sued.</p>
<p>The fact still remains that the industry in general still doesn't get it, see the pirate bay trial, and repeatedly shady operations for so-called piracy prevention. See</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/2005_Sony_BMG_CD_copy_protection_scandal">Sony Rootkit (2005)</a></li>
<li><a href="http://torrentfreak.com/mpaas-hacking-past-comes-back-to-hunt-090412/">MPAA Hire Hackers</a></li>
</ul>
<p>There have been more problems caused by the industry completely and utter refusal to get with the times and stick to their, pay at every point model. Than if they had simply said lets follow the path of least resistance.</p>
<p><span id="more-602"></span><br />
We live in a world were everything is online, the vast majority of people follow the path of least resistance to what ever they are searching for. For example if I was to search online for a movie for example something that may be quite old, you look on iTunes you find nothing, you look on LoveFilm.co.uk see they have it but you want it now, you have very few remaining options - Pirate.</p>
<p>On the flip side you may find the film you are looking for on iTunes, yet its priced at the same as the DVD or in some cases more than the DVD. This immeadiately makes no sense even to a technophobe, they already know that you can make a video clip and put it only for free on YouTube, BBC iPlayer also almost free (You still have to pay the license fee) but the fact still remains the user knows that it costs nothing (or very little) to distribute a film online, so therefore why doesn't the price reflect this - pirate.</p>
<blockquote><h3>Sony Corporation</h3>
<p><img src="http://www.jacktams.co.uk/wp-content/uploads/2009/06/data-150x150.jpg" alt="Howard Stringer - CEO Sony Corp" title="Howard Stringer - CEO Sony Corp" width="150" height="150" class="alignright size-thumbnail wp-image-614" />"I'm a guy who doesn't see anything good having come from the Internet...(The Internet) created this notion that anyone can have whatever they want at any given time. It's as if the stores on Madison Avenue were open 24 hours a day. They feel entitled. They say, 'Give it to me now,' and if you don't give it to them for free, they'll steal it." - <a href="http://en.wikipedia.org/wiki/Howard_Stringer">Howard Stringer</a> CEO Sony Corp</p></blockquote>
<p>Rather than embracing the technology that could see the Music & Film Industries revenues rise dramatically they are putting up road blocks at every turn, and don't seem to get that the vast majority of users will pay for content if its trivial and cheap to get to. However, by letting the piracy world fester and grow they are setting themselves up for a long term problem, the perceived value of content is dropping by the day, respect for the content producers and distributors is also dropping. So by the time that they really do acknowledge and start using the web the way it should have been in the first place, the price that they can charge for the content is not viable as a business</p>
<blockquote><h3>TalkTalk ISP</h3>
<p><img src="http://www.jacktams.co.uk/wp-content/uploads/2009/06/dunstone-talktalk-150x150.jpg" alt="dunstone-talktalk" title="dunstone-talktalk" width="75" height="75" class="alignleft size-thumbnail wp-image-606" />"It is more about education and allowing people to get content easily and cheaply that will make a difference. This idea that it is all peer to peer and somehow the ISPs can just stop it is very naive" - <a href="http://www.guardian.co.uk/business/2009/jun/05/dunstone-carphone-warehouse-results-pirates">Charles Dunstone - TalkTalk</a></p></blockquote>
<p>ISPs for the most part seem to get the role that they play in this system, they provide the pipe. As long as they can charge you for the data that you consume it is not their concern what you do with it. Nor, should it be.</p>
<p>BT, SKY, and Virgin have already started capitalising on the on-demand nature we now live, but they also make it difficult to get to, BT you need an extra subscription and a new Set-Top Box, similarly for Virgin Media and SKY you need a whole other subscription and a set top box. This is at an extra cost to the user and to the business would it not be easier, due to the growing number of people who use their PC as their TV to offer the content through a Hulu or BBC iPlayer like service and cut the cost of the set-top boxes.</p>
<p>When you boil it down to its very bare details the facts are this, the Media Producing Industries are damned if they do and damned if they don't. However if they don't act soon and make a good decision, long term they will never recover. They need to become smaller more agile companies that can easily cope with change and more important embrace it. If Sony and Universal had embraced the technology when it first appeared they would not be facing any problems now, in-fact I would guess they would be making obscene amounts of money, thats not to say they are now anyway. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2009/06/07/protecting-media-from-pirates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
