<?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 &#187; Noteworthy</title>
	<atom:link href="http://www.jacktams.net/category/noteworthy/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jacktams.net</link>
	<description>Sweating Spinal Fluid.</description>
	<lastBuildDate>Tue, 07 Feb 2012 17:57:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Spotify Applescripts &#8211; 0.5.2</title>
		<link>http://www.jacktams.net/2011/07/21/spotify-applescripts-0-5-2/</link>
		<comments>http://www.jacktams.net/2011/07/21/spotify-applescripts-0-5-2/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 15:58:43 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[Noteworthy]]></category>

		<guid isPermaLink="false">http://www.jacktams.net/?p=1100</guid>
		<description><![CDATA[Its been a while since I updated the Applescripts for Spotify, it looks like Spotify now supports Applescript directly. So I present the new updated scripts here. Credit Aaron Lidman who first brought this to my attention. Play Pause &#160; tell application &#34;System Events&#34; set MyList to &#40;name of every process&#41; end tell if &#40;MyList [...]]]></description>
			<content:encoded><![CDATA[<p>Its been a while since I updated the <a href="http://www.jacktams.net/2010/04/28/spotify-applescripts-version-0-4-3/">Applescripts for Spotify</a>, it looks like Spotify now supports Applescript directly. So I present the new updated scripts here. Credit <a href="http://www.jacktams.net/2010/04/28/spotify-applescripts-version-0-4-3/comment-page-1/#comment-19963">Aaron Lidman</a> who first brought this to my attention. </p>
<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>
<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> playpause
<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">if</span>
&nbsp;</pre>
<p><strong>Next Track</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>
<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> next track
<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">if</span>
&nbsp;</pre>
<p><strong>Previous Track</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>
<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> previous track
<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">if</span>
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2011/07/21/spotify-applescripts-0-5-2/feed/</wfw:commentRss>
		<slash:comments>7</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>This week I was on the internet and found this&#8230;</title>
		<link>http://www.jacktams.net/2009/02/23/this-week-i-was-on-the-internet-and-found-this/</link>
		<comments>http://www.jacktams.net/2009/02/23/this-week-i-was-on-the-internet-and-found-this/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 18:14:54 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Juan Enriquez]]></category>
		<category><![CDATA[TED]]></category>
		<category><![CDATA[Ted Talk]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/?p=486</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="446" height="326" data="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent" /><param name="bgColor" value="#ffffff" /><param name="flashvars" value="vu=http://video.ted.com/talks/embed/JuanEnriquez_2009-embed_high.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/JuanEnriquez-2009.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=463" /><param name="src" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" /><param name="bgcolor" value="#ffffff" /><param name="allowfullscreen" value="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2009/02/23/this-week-i-was-on-the-internet-and-found-this/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Confessions of a Serial Soundtrack Collector</title>
		<link>http://www.jacktams.net/2008/05/17/confessions-of-a-serial-soundtrack-collector/</link>
		<comments>http://www.jacktams.net/2008/05/17/confessions-of-a-serial-soundtrack-collector/#comments</comments>
		<pubDate>Sat, 17 May 2008 20:57:05 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[ad music]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[bbc]]></category>
		<category><![CDATA[collector]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itv]]></category>
		<category><![CDATA[music collector]]></category>
		<category><![CDATA[music used in TV]]></category>
		<category><![CDATA[original score]]></category>
		<category><![CDATA[ost]]></category>
		<category><![CDATA[soundtrack]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/?p=330</guid>
		<description><![CDATA[It seems no matter how good a film is, the music that goes with the film is always under appreciated, while there are exceptions to the rule we really should pay more attention to the music, it will make or break a film. I don't really know hoe I ended up collecting soundtracks, but two [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #0000ee; text-decoration: underline;"><a href="http://www.jacktams.co.uk/wp-content/uploads/2008/05/31ikh0txlul_sl500_aa240_.jpg"><img class="alignright size-thumbnail wp-image-331" title="Meet Joe Black" src="http://www.jacktams.co.uk/wp-content/uploads/2008/05/31ikh0txlul_sl500_aa240_-150x150.jpg" alt="" width="150" height="150" /></a></span>It seems no matter how good a film is, the music that goes with the film is always under appreciated, while there are exceptions to the rule we really should pay more attention to the music, it will make or break a film.</p>
<p>I don't really know hoe I ended up collecting soundtracks, but two moments that really standout are; tracking down a piece of music used the in 2004 BAFTAs and another piece of music featured in the South Bank Show.</p>
<p>The music from the BAFTAs was probably the easiest to track down, I just emailed them. It took a couple of weeks but they emailed me back answer: Whisper of a Thrill - From Meet Joe Black - Thomas Newman. Within seconds the CD was bought and on its way. Its OK if you can email the people responsible and get them to tell you the music used but in the case of my second hunt, the emailing method wasn't so fruitful.</p>
<p><img class="alignleft size-thumbnail wp-image-332" title="Craig Armstrong" src="http://www.jacktams.co.uk/wp-content/uploads/2008/05/41xxjwt16fl_sl500_aa240_-150x150.jpg" alt="" width="150" height="150" />After watching the South Bank Show, I had the I must have that music moment and started on my merry way trying to track it down by google to no avail, I had some idea of who the composer could be Craig Armstrong or Thomas Newman, so I loaded the ITV website and sent them an email. I have found since then both ITV and the BBC hate these inquiries and just brush them off, Channel 5 usually give a better response. I got the typical response, "Due to the nature of the way we create our programming there is no record of the music for each program." I spent another few months searching, and had all but given up hope on finding the elusive piece of music, when i chanced upon a newly upload Craig Armstrong Album on iTunes. I had found it. <a href="http://www.last.fm/music/Craig+Armstrong/_/Finding+Beauty" target="_blank">Finding Beauty - Craig Armstrong</a> within a couple of seconds it was downloaded.</p>
<p>I am sure that there isn't just me who has these little quests, I am also sure that many people unlike me will give up on finding the song they were looking for. I wish the BBC and ITV would setup websites that listed all the music from each program. I think music companies should be actively encouraging the publishing of music in film and TV, it would earn them some points and make some money.</p>
<p><img class="alignright alignnone size-medium wp-image-333" style="float: right;" title="iTunes Count" src="http://www.jacktams.co.uk/wp-content/uploads/2008/05/picture-2.png" alt="" width="202" height="32" />Since my first encounter with the wonderful world of soundtracks my library has grown from a mere 5 hours to over 22 days (thats528 hours) So much so I now have so much music that the chances are that I hear a piece of music in a film or TV program, I will already have a copy in there somewhere.</p>
<p>The problem is finding it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2008/05/17/confessions-of-a-serial-soundtrack-collector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The problem with IT &#8211; More money Syndrome</title>
		<link>http://www.jacktams.net/2008/05/06/the-problem-with-it-more-money-syndrome/</link>
		<comments>http://www.jacktams.net/2008/05/06/the-problem-with-it-more-money-syndrome/#comments</comments>
		<pubDate>Tue, 06 May 2008 21:30:34 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Me]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[college]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[IT spending]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[more money]]></category>
		<category><![CDATA[more money syndrome]]></category>
		<category><![CDATA[school]]></category>
		<category><![CDATA[school college]]></category>
		<category><![CDATA[spending]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/?p=319</guid>
		<description><![CDATA[The more and more I deal with companies and managing networks and working with the wonderful world of windows server, the more and more I realise how poor many companies deal with IT. Q: "What is the problem?" A: "I don't really know, but we can solve it if we buy a new X " [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jacktams.co.uk/wp-content/uploads/2008/05/frizz3.jpg"><img class="alignnone size-thumbnail wp-image-320 alignright" style="float: right;" title="Computer Frustration" src="http://www.jacktams.co.uk/wp-content/uploads/2008/05/frizz3-150x150.jpg" alt="" width="150" height="150" /></a>The more and more I deal with companies and managing networks and working with the wonderful world of windows server, the more and more I realise how poor many companies deal with IT.</p>
<blockquote><p><strong>Q:</strong> "What is the problem?"<br />
<strong>A:</strong> "I don't really know, but we can solve it if we buy a new X "</p></blockquote>
<p>Here in lies the problem, there a number of companies that get this crap answer. There is very rarely a person in the company who will take responsibility and make sure their current system works properly before trying new things or upgrading, at the end of the day new hardware is meant to be better right?. Small to medium businesses have less of a problem with this because the amount spent on IT directly effects there bottom line, and don't have deep pockets for IT to begin with.</p>
<p>The problem becomes even more pronounced when you get to a school or college. There are obvious complexities with these system your dealing with a couple of hundred computers and about 10 times as many users, but when anything goes wrong more money 'must' be spent to solve the problem. Inevitably the systems breakdown within a couple of weeks or even days, because the real problem wasn't tackled or even attempted to find a fix.</p>
<p>For the average user this is a minor or major frustration depending on which way you spin it, but for anybody interested or working in tech like me, its like having burnt sticks buried into the back of my eyes. It can't be too difficult to get it set up right in the first place, I like buying new tech as much as the next man (probably even more) but you have to realise somewhere along the line what you are proposing is costing someone a shed load of money and that money could be used better elsewhere, especially in schools.</p>
<p><em>--Rant Over--</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2008/05/06/the-problem-with-it-more-money-syndrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Piracy: The Loss of Objectivity and Intelligence</title>
		<link>http://www.jacktams.net/2007/03/10/piracy-the-loss-of-objectivity-and-intelligence/</link>
		<comments>http://www.jacktams.net/2007/03/10/piracy-the-loss-of-objectivity-and-intelligence/#comments</comments>
		<pubDate>Sat, 10 Mar 2007 19:48:12 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[consumers]]></category>
		<category><![CDATA[consumer_product]]></category>
		<category><![CDATA[Howard-Berman]]></category>
		<category><![CDATA[illegal_downloading]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[movie_industry]]></category>
		<category><![CDATA[MPAA]]></category>
		<category><![CDATA[napster]]></category>
		<category><![CDATA[riaa]]></category>
		<category><![CDATA[universities]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/2007/03/10/piracy-the-loss-of-objectivity-and-intelligence/</guid>
		<description><![CDATA["Unfortunately, many schools have turned a blind eye to piracy," Berman said. "I don't doubt that there are legitimate issues that universities must grapple with, including privacy and cost concerns. However, when a university such as Purdue tells the AP that it rarely even notifies students accused by the RIAA because it is too much [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>"Unfortunately, many schools have turned a blind eye to piracy," Berman said. "I don't doubt that there are legitimate issues that universities must grapple with, including privacy and cost concerns. However, when a university such as Purdue tells the AP that it rarely even notifies students accused by the RIAA because it is too much trouble to track down alleged offenders—such inaction is unacceptable."<a href="http://arstechnica.com/news.ars/post/20070309-senator-hollywood-universities-a-wretched-hive-of-scum-and-villainy.html">Congressman Hollywood: Universities a wretched hive of scum and villainy</a></p></blockquote>
<p>This is what happens when a person in power, brains' get turned to jelly and is spat out by the cat. It never occurs to these people funding researching and going around screaming disaster and catastrophe from the hill tops, to actually look what is right in front of them.</p>
<p><strong>The Music/Movie Industries is Inherently, poor at adapting</strong><br />
So what exactly does this mean well its quite simple. When Napster came along the Music industry looked at it and said "We still good it will all blow over in a couple of months" Then a couple of months later they had a problem. The same goes for the Movie industry. They are arrogant enough to dimiss a technology that will quite clearly effect them in the money making department and try to place the sole blame on the cosumer. <strong>The consumers pay them money in the first Place</strong></p>
<p><strong>Solve not Sue</strong><br />
Anyone with a slight business interlect and brain cell(s) would look at the current situation within the Music/Movie industry and start working on solutions, put the money were it is well spent. The industry will <em>never </em>change the habits of the youth of today, they have spent to long in the courts increasing the resentment for that. They need to start working to give the consumer product they want in the form they want, this by no means free.</p>
<p>The idea that forcing your consumers to do something because the <strike>man</strike> companies say it should be is completly stupid and cause more illegal downloading, just so you as a consumer feel happy your pissing the said companies off. Everybody knows that downloading music and not paying for it is wrong, but when the labels offer no better alternatives, what else are your options.</p>
<p><strong>The Other Options</strong><br />
iTunes Store, has a big market share and a big catalog of major labels and indie music, look deeply at the  Store and you see just what a miracle it is, its there, and in the same moment why it doesn't give what a p2p client gives. The simple matter of choice is what it now starts to boil down to, what could be classed as the catalyst to this whole thing in the first place.</p>
<p>People want choice they want to choose how they consume media and where, iTunes limits you to the iPod and your PC/Mac, there is a simple solution get rid of DRM and completely and open the whole thing up, and I would never illegally download again.</p>
<p>However, there is one place that iTunes excells at apart from providing a seamless UI experience. Our friend the Longtail, p2p only really is a good distribution system for popular tracks, when you get to less popular tracks you quickly find nobody sharing things.</p>
<p>To cut a long story short we need a solution, that the consumer is happy with and we need it fast else we could see everybody going down to court.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2007/03/10/piracy-the-loss-of-objectivity-and-intelligence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Look, New Ideas</title>
		<link>http://www.jacktams.net/2007/02/13/new-look-new-ideas/</link>
		<comments>http://www.jacktams.net/2007/02/13/new-look-new-ideas/#comments</comments>
		<pubDate>Tue, 13 Feb 2007 20:04:49 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[One More Thing]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[hemingway]]></category>
		<category><![CDATA[new_theme]]></category>
		<category><![CDATA[One-More-Thing]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/2007/02/13/new-look-new-ideas/</guid>
		<description><![CDATA[I have been a bit low on the postings lately, hopefully I am about to change this. New theme new ideas (thats the idea) I now intend to keep content fresh and also make it easy to get to the content on the site. As you may know/see this new theme is based on hemingway [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" class="imagelink" href="http://www.jacktams.co.uk/wp-content/uploads/2007/02/logo.jpg" title="Jack Tams Blob"><img align="left" id="image172" src="http://www.jacktams.co.uk/wp-content/uploads/2007/02/logo.thumbnail.jpg" alt="Jack Tams Blob" /></a>I have been a bit low on the postings lately, hopefully I am about to change this. New theme new ideas (thats the idea) I now intend to keep content fresh and also make it easy to get to the content on the site. As you may know/see this new theme is based on hemingway and is a big contrast to the old website. The idea is to get all the content on the site is places were its easy to get to and easy to share and bookmark. Only time will tell if the theory will work out OK. I plan to post every other day or maybe more depending on what I feel Like.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2007/02/13/new-look-new-ideas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digg Users Create Next MySpace?</title>
		<link>http://www.jacktams.net/2007/01/22/can-digg-users-create-the-next-myspace/</link>
		<comments>http://www.jacktams.net/2007/01/22/can-digg-users-create-the-next-myspace/#comments</comments>
		<pubDate>Mon, 22 Jan 2007 18:09:39 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[beta_testers]]></category>
		<category><![CDATA[content_images]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[irrelevant]]></category>
		<category><![CDATA[keep_it_simple_stupid]]></category>
		<category><![CDATA[melting_pot]]></category>
		<category><![CDATA[menu_system]]></category>
		<category><![CDATA[myspace]]></category>
		<category><![CDATA[open_source_web]]></category>
		<category><![CDATA[phenomenon]]></category>
		<category><![CDATA[rapid_development]]></category>
		<category><![CDATA[social_news]]></category>
		<category><![CDATA[web2]]></category>
		<category><![CDATA[web_infrastructure]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/2007/01/22/can-digg-users-create-the-next-myspace/</guid>
		<description><![CDATA[From Digg :Inspired by Kevin Rose's $200 investment, and its success, I ask this: Can the collaborative social news phenomenon Digg.com inspire the rapid development of a MySpace-like social network created, collaboratively, by Digg users (designers, programmers, beta testers), using open source web infrastructure? read more &#124; digg story My answer : Why the hell [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox[MySpace]" class="imagelink" title="duggspace" href="http://www.jacktams.co.uk/wp-content/uploads/2007/01/duggspace.png"><img align="left" id="image160" alt="duggspace" src="http://www.jacktams.co.uk/wp-content/uploads/2007/01/duggspace.thumbnail.png" /></a>From Digg :Inspired by Kevin Rose's $200 investment, and its success, I ask this: Can the collaborative social news phenomenon Digg.com inspire the rapid development of a MySpace-like social network created, collaboratively, by Digg users (designers, programmers, beta testers), using open source web infrastructure?</p>
<p><a href="http://www.duggspace.com/">read more</a> | <a href="http://digg.com/programming/Can_Digg_Users_Create_the_Next_MySpace">digg story</a></p>
<p><strong>My answer : Why the hell not?</strong></p>
<p>But to create something that will challenge Myspace will be something abit special. MySpace is trying do what Microsoft does; be everything to everybody, but in MySpace's case it seems to be a working formula.</p>
<p><strong>What exactly is wrong with MySpace?</strong><br />
<a rel="lightbox[MySpace]" class="imagelink" title="MySpace UK Home" href="http://www.jacktams.co.uk/wp-content/uploads/2007/01/myspacehome.jpg"><img align="left" id="image164" alt="MySpace UK Home" src="http://www.jacktams.co.uk/wp-content/uploads/2007/01/myspacehome.thumbnail.jpg" /></a></p>
<p>As much as MySpace is trying to be everything to everybody its still not being the be all and end all in web 2.0 to me and many others, I still don't have a MySpace and will probably never get one.</p>
<p>I aren't denying that MySpace can be a powerful tool but it is a melting pot for extremes, People with 3000+ friends (its physically impossible without the web to have a group of friends that big the maximum is about 100 for an average person) and then theres all the bad press it gets because of children being exploited through the network. If they'd have thought of that when they started out they could have put some policies even some code to help prevent it.<br />
<a rel="lightbox[MySpace]" class="imagelink" title="MySpace Music" href="http://www.jacktams.co.uk/wp-content/uploads/2007/01/myspacemusic.jpg"><img align="right" id="image165" alt="MySpace Music" src="http://www.jacktams.co.uk/wp-content/uploads/2007/01/myspacemusic.thumbnail.jpg" /> </a><br />
Then there is the fact the whole site is just messy, theres ads all the place and theres little in the way of easily accesible content. Why do all these so called "web2.0" sites, use very "web 1" ads, subtle ads win the day. Apart from the ads mucking up the design they just are irrelevant and people are so used to them they are ignored so why even bother putting them in? find another way to make money.</p>
<p><strong>Keep It Simple Stupid <em>~ KISS</em></strong><br />
Why is it so complicated to find what you want on myspace apart from the ads, and why do they feel the need to replicate links and content images all over, A simple Menu system, maybe with a bit of AJAX magic would make it so much more bearable. Also the music player on peoples profile gets on my nerves why does it insist on playing on load, let the user on the end to decide. </p>
<p>Whilst I think that personalizing web-pages is good, personalizing MySpace pages is all wrong, MySpace should give the ability to this within there system that way they can keep everything cohesive and understandable no matter what page your on. </p>
<p><strong>So That's What I Think</strong><br />
I tried to be objective and it looks as if a manage it a bit but not enough. It may seem like I am just taking MySpace simply because I don't like it, but it's not that at all I think MySpace is successful at what it does and should inspire people to see what they can do with an idea and some coding knowledge, but as with all thing I seriously think that it can be done a lot better, and the real question is why can't we do it better and be creative with it too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2007/01/22/can-digg-users-create-the-next-myspace/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cyber Laws &#8211; Are there any that work?</title>
		<link>http://www.jacktams.net/2006/12/11/cyber-laws-are-there-any-that-work/</link>
		<comments>http://www.jacktams.net/2006/12/11/cyber-laws-are-there-any-that-work/#comments</comments>
		<pubDate>Mon, 11 Dec 2006 18:53:27 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[administrator_account]]></category>
		<category><![CDATA[apocalyptic]]></category>
		<category><![CDATA[cyber_laws]]></category>
		<category><![CDATA[dpa]]></category>
		<category><![CDATA[ebay]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[fair_enough]]></category>
		<category><![CDATA[fair_game]]></category>
		<category><![CDATA[global_warming]]></category>
		<category><![CDATA[governing_the_net]]></category>
		<category><![CDATA[home_hub]]></category>
		<category><![CDATA[internet_banking]]></category>
		<category><![CDATA[internet_shopping]]></category>
		<category><![CDATA[paypal]]></category>
		<category><![CDATA[single_thing]]></category>
		<category><![CDATA[wi_fi]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/2006/12/11/cyber-laws-are-there-any-that-work/</guid>
		<description><![CDATA[We are entering a time were computers run our lives, we put blind faith into them (do you take a regular backup?) and also are starting to increase the amount of transactions we take online, with the populisation of internet shopping and internet banking in no small contributed by eBay and PayPal. We (depending were [...]]]></description>
			<content:encoded><![CDATA[<p>We are entering a time were computers run our lives, we put blind faith into them (do you take a regular backup?) and also are starting to increase the amount of transactions we take online, with the populisation of internet shopping and internet banking in no small contributed by eBay and PayPal.</p>
<p>We (depending were you read this blog) live in countries with few or no laws on how to protect ourselves online, fair enough there's the DPA in the UK which goes somewhere near but there is no clear definition of what constitutes hacking or any other cyber-offence.</p>
<p>It stupidly simple to get access to a computer that you don't own that its scary. You can take a standard off the shelf USB stick, push it in a computer it will create you a Administrator account a remote user account and give you the password to anybody who logs into that machine. Many homes now are switching to wi-fi indeed BT offer there Home Hub which is wireless with all there packages, albeit with a very simple 64-bit encryption assigned to it, but who's responsibility is it to secure there wi-fi, I am firmly in the camp that if you leave it open its fair game to anybody, but just think about what you do online in a particular day and how much somebody could find about you it just a few hours on your network. Its enough to steal your Identity and rob you blind, yet many people just don't understand the scope of the problem.</p>
<p>It's all well and good knowing that these things are problems but how do we stop this from happening in the first place. As yet I haven't been able to come up with a single thing that could be feasibly enforced, or surrendering our own privacy to some higher power (which I don't think anybody in there right mind would be comfortable with. This is a problem that is almost as big as Global Warming if we manage to survive what ever apocalyptic event we make. Yet, we continue for the most part ignoring the fact it is a problem and how it would effect you if your identity was cloned and bank accounts cleaned, not a particularly nice thought.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2006/12/11/cyber-laws-are-there-any-that-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sorting the piracy mess</title>
		<link>http://www.jacktams.net/2006/11/30/sorting-the-piracy-mess/</link>
		<comments>http://www.jacktams.net/2006/11/30/sorting-the-piracy-mess/#comments</comments>
		<pubDate>Thu, 30 Nov 2006 22:30:30 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[buy_a_cd]]></category>
		<category><![CDATA[consumers]]></category>
		<category><![CDATA[dell_marketing]]></category>
		<category><![CDATA[downloading_music]]></category>
		<category><![CDATA[DRM]]></category>
		<category><![CDATA[greed]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[labels]]></category>
		<category><![CDATA[local_music_store]]></category>
		<category><![CDATA[make_money]]></category>
		<category><![CDATA[marketing_budget]]></category>
		<category><![CDATA[napster]]></category>
		<category><![CDATA[p2p_software]]></category>
		<category><![CDATA[piracy]]></category>
		<category><![CDATA[royalties]]></category>
		<category><![CDATA[stealth_tax]]></category>
		<category><![CDATA[undisputed_fact]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/2006/11/30/sorting-the-piracy-mess/</guid>
		<description><![CDATA[I though I would take a break and post something else that really gets me. We all know that piracy has ended up as a monumental PR mess for the record industry, and it is a undisputed fact that the industry in general were far too late and couldn't adopt the same model they do [...]]]></description>
			<content:encoded><![CDATA[<p>I though I would take a break and post something else that really gets me.</p>
<p>We all know that piracy has ended up as a monumental PR mess for the record industry, and it is a undisputed fact that the industry in general were far too late and couldn't adopt the same model they do in the shops so invented DRM (lets not go any further into this)</p>
<p>I love music as much as the next man, but when a consumer thinks their being ripped of they will always find a new way, the internet provides such a way. So when Napster and Kazaa came along the consumers went there instead of going to the local music store, by the time the industry realised just how big this was they had only one option left to sue everything and everybody related to this P2P software. As a resulting pissing off there next generation customers and the ones they already had, and along the way giving themselves and P2P developers bad press.</p>
<p><span id="more-135"></span><br />
As a knock on affect we see the labels only investing time and money and bands that they know will make money (yes the popular rubbish, usually based of Pachelbel's canon somewhere along the line)</p>
<p>I acknowledge the fact piracy is theft and I just think its too late for some people who are so used to just downloading music that its unlikely that even the Dell Marketing budget could change there minds. I also think DRM just locks you in the path of why buy it and have it locked down when I can download it for nothing. </p>
<p>As much as the labels may not be ripping us consumers off as much as we think, why do they need to get royalties from every iPod sold, this is greed and almost a stealth tax. There has to be better ways for the industry to still make money and let the cosumers get the media from wherever they like or at least get it for a good price, for example it is often cheaper for me to buy a CD then it is to buy from iTunes, how can this possibly work, it cost more to make a CD downloaded has no CD yet costs more (a sense a little greed here)</p>
<p>We then move on to how music is no distributed and listened to. Radio is taking a back seat, the associations wont license Podcasts, and only the popular blogs publish what people want to read and lets not even get into myspace. How do we discover really good new music?? Well there's a new section of my site (thats it check out the music pages when you've finished reading this) and then there is the IODA Alliance: <a href="http://www.iodalliance.com/">http://www.iodalliance.com/</a> and the Podsafe music network <a href="http://music.podshow.com">http://music.podshow.com</a> I also urge you to check out ReIgnition Records <a href="http://www.reignition.com">www.reignition.com</a></p>
<p>I will leave this post with a thought:</p>
<blockquote><p>You and some of your mates are a band just starting out, you produce a CD and put your music online in the iTMS, napster etc. You find that your Album is more illegally downloaded than it is bought and you get no money for these illegal downloads. Would you be pissed off? I know i certainly would be.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2006/11/30/sorting-the-piracy-mess/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What exactly is AI?</title>
		<link>http://www.jacktams.net/2006/11/26/what-exactly-is-ai/</link>
		<comments>http://www.jacktams.net/2006/11/26/what-exactly-is-ai/#comments</comments>
		<pubDate>Sun, 26 Nov 2006 16:35:03 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[artificial_intelligence]]></category>
		<category><![CDATA[asimov]]></category>
		<category><![CDATA[conflict]]></category>
		<category><![CDATA[general_purpose_computers]]></category>
		<category><![CDATA[human_beings]]></category>
		<category><![CDATA[machine_intelligence]]></category>
		<category><![CDATA[robot]]></category>
		<category><![CDATA[study_experience]]></category>
		<category><![CDATA[wiki]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/2006/11/26/what-exactly-is-ai/</guid>
		<description><![CDATA[I have been doing plenty of writing about AI and Artilects but have yet to explain what AI really is/what I thing AI really is. Artificial intelligence (also known as machine intelligence and often abbreviated as AI) is intelligence exhibited by any manufactured (i.e. ) system. The term is often applied to general purpose computers [...]]]></description>
			<content:encoded><![CDATA[<p>I have been doing plenty of writing about AI and Artilects but have yet to explain what AI really is/what I thing AI really is.</p>
<blockquote><p>Artificial intelligence (also known as machine intelligence and often abbreviated as AI) is intelligence exhibited by any manufactured (i.e. ) system. The term is often applied to general purpose computers and also in the field of scientific investigation into the theory and practical application of AI.<a href="http://en.wikipedia.org/wiki/Artificial_intelligence"> Wiki </a></p></blockquote>
<p>While this definition is valid I think it is far too compliated, AI is quite simply a program that learns nothing more nothing less. So what is learning exactly.<br />
<span id="more-133"></span></p>
<blockquote><p>Learning is the process of acquiring knowledge or skill through study, experience or teaching. It is a process that depends on experience and leads to long-term changes in behavior potential. Behavior potential describes the possible behavior of an individual (not actual behavior) in a given situation in order to achieve a goal. <a href="http://en.wikipedia.org/wiki/Learn">Wiki</a> </p></blockquote>
<p>This being a problem when it actually comes to creating AI seen as you have to leave a big gap in the code for the system to learn, which may not put the general public at ease. For it to truly be AI something along the lines of Asimov's Laws couldn't be programmed we would have to let the System learn and do what it may.</p>
<blockquote><p><strong>First Law:</strong></p>
<p>A robot may not injure a human being, or, through inaction, allow a human being to come to harm.</p>
<p><strong>Second Law:</strong></p>
<p>A robot must obey orders given it by human beings, except where such orders would conflict with the First Law.</p>
<p><strong>Third Law:</strong></p>
<p>A robot must protect its own existence as long as such protection does not conflict with the First or Second Law.</p>
<p>Asimov's Laws</p></blockquote>
<p>Having said all that why would the AI turn against us, it has only ever been programmed to learn, it is the fact we know the atrocities we have done within our small run of this planet means we fear something that would actually see what we have done and act upon this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2006/11/26/what-exactly-is-ai/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Future 2056</title>
		<link>http://www.jacktams.net/2006/11/18/the-future-2056/</link>
		<comments>http://www.jacktams.net/2006/11/18/the-future-2056/#comments</comments>
		<pubDate>Sat, 18 Nov 2006 18:17:09 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Noteworthy]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/2006/11/18/the-future-2056/</guid>
		<description><![CDATA[This is a continuation of <a href="http://www.jacktams.co.uk/2006/11/10/the-rise-of-the-artilects-part1/" alt="Part1">  "The Rise of the Artilects"</a>
<blockquote><a class="imagelink" href="http://www.jacktams.co.uk/wp-content/uploads/2006/11/hitachi_bmi.jpg" title="Brain Interface"><img rel="lightbox" align="left"  id="image130" src="http://www.jacktams.co.uk/wp-content/uploads/2006/11/hitachi_bmi.thumbnail.jpg" alt="Brain Interface" /></a><strong>Artilect: </strong>Artificial intelligence (also known as machine intelligence and often abbreviated as AI) is intelligence exhibited by any manufactured (i.e. ) system. The term is often applied to general purpose computers and also in the field of scientific investigation into the theory and practical application of AI. <em>Wikipedia</em></blockquote>

An Article that dropped into my feed reader at the beginning of the week, describes a system devised by Hitatchi which monitors the person haemoglobin levels in the Brain (Optical Typography) The use of this is very limited now but could have a large impact on the way we intereface with technology but also for people who are paralysed, a clear example of converging technologies.]]></description>
			<content:encoded><![CDATA[<p>This is a continuation of <a href="http://www.jacktams.co.uk/2006/11/10/the-rise-of-the-artilects-part1/" alt="Part1">  "The Rise of the Artilects"</a></p>
<blockquote><p><a class="imagelink" href="http://www.jacktams.co.uk/wp-content/uploads/2006/11/hitachi_bmi.jpg" title="Brain Interface"><img rel="lightbox" align="left"  id="image130" src="http://www.jacktams.co.uk/wp-content/uploads/2006/11/hitachi_bmi.thumbnail.jpg" alt="Brain Interface" /></a><strong>Artilect: </strong>Artificial intelligence (also known as machine intelligence and often abbreviated as AI) is intelligence exhibited by any manufactured (i.e. ) system. The term is often applied to general purpose computers and also in the field of scientific investigation into the theory and practical application of AI. <em>Wikipedia</em></p></blockquote>
<p>An Article that dropped into my feed reader at the beginning of the week, describes a system devised by Hitatchi which monitors the person haemoglobin levels in the Brain (Optical Typography) The use of this is very limited now but could have a large impact on the way we intereface with technology but also for people who are paralysed, a clear example of converging technologies.<br />
<span id="more-125"></span><br />
As part of New Scientists' 50 year aniversary there are a number of comments about what may/likely to happen in the next 50 years assuming we don't all Kill ourselves first (war or global warming).</p>
<blockquote><p>Talk of a scientific understanding of consciousness still evokes more sucking in of air than most other subjects. Sceptics are fond of saying that a "factor X" that cannot even be imagined at the moment is required. I would argue the opposite: it is here, and it will be commonplace by 2056<a href="http://www.newscientist.com/article/mg19225780.103-igor-aleksander-forecasts-the-future.html" alt="link to full Article">[...]</a></p></blockquote>
<p>The key for us to fully understand the ramifications of creating an 'artilect' (AI) is we first need to understand our own brains and how they work, and also the fact we are imperfect and no doubt what we create will also be imperfect (could this cause a problem? could we become so obsessed with perfection we end up some 'borg' like race; I couldn't resist throwing that in)</p>
<blockquote><p>Computation is the fire in our modern-day caves. By 2056, the computational revolution will be recognised as a transformation as significant as the industrial revolution. The evolution and widespread diffusion of computation and its analytical fruits will have major impacts on socioeconomics, science and culture.<br />
Within 50 years, lives will be significantly enhanced by automated reasoning systems that people will perceive as "intelligent".<a href="http://www.newscientist.com/article/mg19225780.121-eric-horvitz-forecasts-the-future.html" alt="Link To Full Article">[...]</a></p></blockquote>
<p>I personally would go one step further and say the above will happen in the next 20 years, and we will see the first true AI system by 2056. Why? because these prediction always seem like under-estimates, they never anticipate that one person who does a single thing, accelerating the field of research forward.</p>
<p>I also had a Computing Lesson in which the teacher posed the question:</p>
<blockquote><p>Prove To me that a human is nothing more than a biological operating system</p></blockquote>
<p>At first I thought we are, then I started to disagree. My Arguments against were based on the fact "Windows/Linux/{Insert Your Favourite OS Here} doesn't create something new in its likeness, it cannot learn (at the moment anyway), similarly it an OS cannot procreate with another OS (as silly as it sounds)Redhat can't go to Windows and say lets make a little OS called 'Widhat' but this could be possible with Cybernetics could it not?</p>
<p>The main counter argument being, if we can read the brain and interpret its code it is just infact an OS, the controlling of  things without physical movement (i.e. Brain Control) would seem to support this theory partly, but I am aren't entirely convinced.</p>
<p>Am Leaving this post open ended because I aren't sure were I want to go next and don't want to come to any conclusion.</p>
<p><strong>Links</strong></p>
<ul>
<li><a href="http://www.bbc.co.uk/sn/tvradio/programmes/horizon/broadband/tx/singularity/" alt="BBC Horizon Human Version 2">BBC Horizon - Human v2.0</a></li>
<li><a href="http://www.kurzweilai.net/index.html?flash=1" alt="Ray Kurzweil's Website">Ray Kurzweil Website</a></li>
<li><a href="http://www.iss.whu.edu.cn/degaris/" alt="Hugo De Garris's Website">Hugo De Garris Website</a></li>
<li><a href="http://www.newscientist.com/article.ns?id=dn4262" alt="NewScientist Article on Monkey's Brain Signals[..]">NewScientist Article on Brain Experiments</a></li>
<li><a href="http://www.nicolelislab.net/NLNet/Load/index.htm" alt="Miguel Nicolelis Website">Miguel Nicolelis Website</a></li>
<li><a href="http://www.pinktentacle.com/2006/11/model-train-controlled-via-brain-machine-interface/">Train Controlled by brain interface</a></li>
<li><a href="http://www.newscientist.com/channel/opinion/science-forecasts" alt="NewScientist">50 Year of the New Scientist</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2006/11/18/the-future-2056/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>The Rise Of The Artilects? (part1)</title>
		<link>http://www.jacktams.net/2006/11/10/the-rise-of-the-artilects-part1/</link>
		<comments>http://www.jacktams.net/2006/11/10/the-rise-of-the-artilects-part1/#comments</comments>
		<pubDate>Fri, 10 Nov 2006 11:33:38 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Noteworthy]]></category>

		<guid isPermaLink="false">http://www.jacktams.co.uk/2006/11/10/the-rise-of-the-artilects-part1/</guid>
		<description><![CDATA[<p><a rel="lightbox" class="imagelink" href="http://www.jacktams.co.uk/wp-content/uploads/2006/11/d1806st1.jpg" title="Quantum Computer Cartoon"><img align="Left" id="image122" src="http://www.jacktams.co.uk/wp-content/uploads/2006/11/d1806st1.thumbnail.jpg" alt="Quantum Computer Cartoon" /></a>This is something that falls squarely with in my field of "God that is cool/interesting" Catergory, but before I launch into some meaningful post, I may be helpful to have a bit of background information.<p><strong>The Concept</strong></p>
<blockquote><p>Artificial brain designer and theoretical physicist ~Prof. Hugo de Garis raised the issue of whether humanity should build godlike intelligent machines. Because of technological advances, he foresees a time in this century when artificial intelligence can be developed at the atomic level, and an object the size of an apple could surpass human brain capacity to the trillionth power. </p>
<p>At this point, he believes humanity will break into two groups. The Cosmists, who want to build these massively intelligent machines, and the Terrans who are against it. A third, smaller faction, he labeled as the Cyborgists, who want to merge with the artificial intelligence. Prof. de Garis believes the conflict between the Cosmists and the Terrans will be so extreme that wars could be fought over the issue. </p>
<p>The machines he called "artilects", may become so massively intelligent, said de Garis, that they would regard humanity, in the same way we look at insects, and they could be so powerful as to create their own universes. He boiled it down to the question: Do we build gods or do we build our potential exterminators? In an on-the-spot Fast Blast poll that was conducted, 56% sided with the Terrans, and 44% with the Cosmists. </p></blockquote>]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" class="imagelink" href="http://www.jacktams.co.uk/wp-content/uploads/2006/11/d1806st1.jpg" title="Quantum Computer Cartoon"><img align="Left" id="image122" src="http://www.jacktams.co.uk/wp-content/uploads/2006/11/d1806st1.thumbnail.jpg" alt="Quantum Computer Cartoon" /></a>This is something that falls squarely with in my field of "God that is cool/interesting" Catergory, but before I launch into some meaningful post, I may be helpful to have a bit of background information.
<p><strong>The Concept</strong></p>
<blockquote><p>Artificial brain designer and theoretical physicist ~Prof. Hugo de Garis raised the issue of whether humanity should build godlike intelligent machines. Because of technological advances, he foresees a time in this century when artificial intelligence can be developed at the atomic level, and an object the size of an apple could surpass human brain capacity to the trillionth power. </p>
<p>At this point, he believes humanity will break into two groups. The Cosmists, who want to build these massively intelligent machines, and the Terrans who are against it. A third, smaller faction, he labeled as the Cyborgists, who want to merge with the artificial intelligence. Prof. de Garis believes the conflict between the Cosmists and the Terrans will be so extreme that wars could be fought over the issue. </p>
<p>The machines he called "artilects", may become so massively intelligent, said de Garis, that they would regard humanity, in the same way we look at insects, and they could be so powerful as to create their own universes. He boiled it down to the question: Do we build gods or do we build our potential exterminators? In an on-the-spot Fast Blast poll that was conducted, 56% sided with the Terrans, and 44% with the Cosmists. </p>
</blockquote>
<p><span id="more-121"></span></p>
<p>Intruiged so I am I So lets have a bit more information on these so called 'Artilects', What could these artilects be, well essentially a massive computer with power many times greater than the faster super-computers. Currently IBMs' Blue Gene <a href="http://www.top500.org/system/7747" title="eServer Blue Gene Solution" http://www.top500.org/system/7747> Which Performs 280600</a> <a href="http://en.wikipedia.org/wiki/Gigaflop" title="What is a GigaFlop">GigaFlops</a>, To something that would have near infinitesimal processing power; the Quantum Computer.</p>
<p><strong>The Quantum Computer</strong></p>
<blockquote><p>
A quantum computer is any device for computation that makes direct use of distinctively quantum mechanical phenomena, such as superposition and entanglement, to perform operations on data. In a classical (or conventional) computer, the amount of data is measured by bits; in a quantum computer, the data is measured by qubits. The basic principle of quantum computation is that the quantum properties of particles can be used to represent and structure data, and that quantum mechanisms can be devised and built to perform operations with these data.<br />
<a href="http://en.wikipedia.org/wiki/Quantum_Computer" title="what is a quantum computer?">What is a quantum Computer</a>
</p>
</blockquote>
<p><a href="http://en.wikipedia.org/wiki/Timeline_of_quantum_computing" title="timeline to quantum computers">Timeline</a><br />
The Timeline reads with a unnerving sense not 'if' but 'when' a full usable quantum computer is available. A comparison can be drawn with the current state of technology; rapid development and advancement over a relatively short period of time. The Q-Computer Timeline has the same sort markers that the current computer timeline has. Making the Artilect dilemma/debate something more important than you might think, its not just the realms of science-fiction, its well and truly science-fact.</p>
<p><strong>The point of all this?</strong></p>
<p>Its the background to something that will become, a very real problem within my lifetime. I think it will be interesting to see just what we can predict now and compare this to what actually may happen. Apart from that this stuff just generally interests me a whole lot, and a will be following this post with some more in the future that go into the details of the research, arguments, concepts and ideologies based around the problem of Artilects / god computers and the effect that will have on our race.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacktams.net/2006/11/10/the-rise-of-the-artilects-part1/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

