<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Applying Web technology to business (and other ideas)</title>
	
	<link>http://www.brilliantthinking.net</link>
	<description>Keeping abreast of new developments on the Web - including everything from new advances, emerging technologies and new ideas - and looking at how we can apply them to real-world business situations. Mostly.</description>
	<lastBuildDate>Mon, 06 Sep 2010 16:38:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/BrilliantThinking" /><feedburner:info uri="brilliantthinking" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>51.37</geo:lat><geo:long>-0.46</geo:long><feedburner:emailServiceId>BrilliantThinking</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Addressing Flash Websites in the iPad generation</title>
		<link>http://feedproxy.google.com/~r/BrilliantThinking/~3/kKA2FL15j30/</link>
		<comments>http://www.brilliantthinking.net/2010/09/06/addressing-flash-websites-in-the-ipad-generation/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 15:32:48 +0000</pubDate>
		<dc:creator>Edward</dc:creator>
				<category><![CDATA[Strategy]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.brilliantthinking.net/?p=1149</guid>
		<description><![CDATA[I thought I would share some quick code I put in place for a client recently who had an exclusively 100% Flash website and needed a "quick fix" when their owner got an iPhone and suddenly couldn't see his website.]]></description>
			<content:encoded><![CDATA[<p>Flash &#8211; it&#8217;s like a legacy application on the Web these days.</p>
<p>There are millions of Web users out there with iPads, iPhones, iPod Touches, et al, all of whom cannot access Flash websites (me included) when using these devices. Yet there are still web development companies producing exclusively Flash content for websites which stops this very large and growing user base from the services offered by the website (for example restaurants, clubs, car showrooms, etc, etc).</p>
<p>The issue isn&#8217;t going to go away &#8211; more mobile users are coming online every day with no mechanism to view Flash websites. While it is true that older websites are very unlikely to ever be updated (some companies just don&#8217;t like spending money on the Web, which is another debate for another day), websites built today need to offer alternative, accessible content &#8211; even if it is just a map and contact details (these are the most commonly looked for items by mobile users, after all). There are even laws about it!</p>
<p>To remedy this, I thought I would share some quick code I put in place for a client recently who had an exclusively 100% Flash website (which we didn&#8217;t build by the way) and needed a &#8220;quick fix&#8221; when their owner got an iPhone and suddenly couldn&#8217;t see his website <img src='http://www.brilliantthinking.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Flash was important to this client, so the flow of the code detects if Flash is available and shows that content by default, otherwise it flips over to the static HTML for people without Flash &#8211; which includes the ubiquitous iPhone.</p>
<p>My solution was to take the published <a href="http://www.adobe.com/products/flashplayer/download/detection_kit/" target="_blank">Abode Flash Detection Kit</a> and modify it slightly to avoid breaking the existing Flash Application which was wrapped with <a href="http://www.asual.com/swfaddress/" target="_blank">SWFaddress</a> (which provides deep linking capabilities for Flash &amp; AJAX, so making each &#8220;page&#8221; in the Flash a separate URL and also better enabling SEO).</p>
<p>If you&#8217;re not familiar with Adobe&#8217;s Flash Detection Kit (or many similar alternatives), the code relies on JavaScript to detect if Flash is installed and then either displays the Flash content or alternative HTML content. The Adobe kit does this in-line by calling further JavaScript to either build the Flash object (a good mechanism which avoids other browser issues, notably for IE), or display the HTML content.</p>
<p>Here are the steps I took to wrap the existing Flash website with the detection system to prevent breaking the existing application:</p>
<ol>
<li>Created a new home page containing some static content (in this case, a small HTML website was produced and the home page was an introduction with contact details). This was named &#8220;index.php&#8221; (LAMP server) and uploaded next to the original index.html homepage which wrapped the Flash.</li>
<li>Included the <a href="http://www.adobe.com/products/flashplayer/download/detection_kit/" target="_blank">Adobe Flash Detection Kit</a> and wrapped it with some logic (used by step 5 below):
<pre class="brush: css;">&lt;?php
  $noflash = ( isset( $_GET['noflash'] ) ) ? $_GET['noflash'] : 0 ;
  if ( $noflash &lt;&gt; 1 )
  {
?&gt;
&lt;script src=&quot;/flash-detect/AC_OETags.js&quot; language=&quot;javascript&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;/flash-detect/detection.js&quot; language=&quot;javascript&quot;&gt;&lt;/script&gt;
&lt;?php
  }
?&gt;
</pre>
</li>
<li>Modified the detection.js code to provide a simple switch for Flash. This meant that if Flash was detected it simply redirected the browser to the Flash application wrapped in the existing index.html file:
<pre class="brush: css;">// -----------------------------------
// Globals
// Major version of Flash required
var requiredMajorVersion = 8;
// Minor version of Flash required
var requiredMinorVersion = 0;
// Minor version of Flash required
var requiredRevision = 0;
//-----------------------------------

// Version check based upon the values entered above in &quot;Globals&quot;
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

// Check to see if the version meets the requirements for playback
if (hasReqestedVersion) {
    // if we've detected an acceptable version
    // embed the Flash Content SWF when all tests are passed
    location.href = 'index.html' ;
}</pre>
</li>
<li>Added a line to the .htaccess file which redefined the home page of the website to look for index.php first:
<pre class="brush: css;">DirectoryIndex index.php index.html index.htm default.htm index.php3 index.phtml mwindex.phtml</pre>
</li>
<li>I also modified the index.html file to make the Flash an embedded object (making it a proper layer instead of floating to the top which happens with OBJECT tags; thank you <a href="http://uk.playstation.com/ps3/" target="_blank">PS3</a> website!), and added a layer allowing visitors to click through to the HTML if preferred (the noflash=1 flag ensures that when the index.php home page is called from the HTML that it doesn&#8217;t run the Flash detection and flip the visitor back to the Flash content!):
<pre class="brush: css;">&lt;body&gt;
  &lt;div id=&quot;flash_content&quot;&gt;
    &lt;embed id=&quot;mainFlashObj&quot; width=&quot;100%&quot; height=&quot;100%&quot; wmode=&quot;transparent&quot; quality=&quot;high&quot; bgcolor=&quot;#000000&quot; name=&quot;mainFlashObj&quot; src=&quot;website.swf&quot; type=&quot;application/x-shockwave-flash&quot;&gt;&lt;/embed&gt;
  &lt;/div&gt;
  &lt;div id='footer'&gt;
    &lt;a href=&quot;/index.php?noflash=1&quot;&gt;Non-Flash Version of the Website&lt;/a&gt;
  &lt;/div&gt;
&lt;/body&gt;</pre>
</li>
<li>Added some CSS to position the &#8216;footer&#8217; layer over the Flash (since the Flash was set to 100% of the viewport):
<pre class="brush: css;">#footer {
    text-align: center;
    top: 0px;
    z-index: 10;
    position: absolute;
    padding: 5px 0 0 0;
    overflow: hidden;
    width: 100%;
    height: 25px;
}</pre>
</li>
</ol>
<p>One benefit of this approach is also to make the static HTML content immediately visible to search engines. By changing the default home page of the website via the .htaccess file, we point search engines to this new content. Also, since search engines fail the Flash detection test, they are not redirected to the Flash content and only get the static HTML. A link is provided within the HTML site to the Flash content so that the content is still accessible by visitors and search engines alike.</p>
<p>The end result is a seamless experience which, while prioritising Flash (at the client&#8217;s request), presents a complete website without the need to introduce a splash page asking the user to choose Flash or HTML, which is a lazy choice in my book and not a good user experience.</p>
<p>I hope you find this approach useful to wrapping Flash sites with alternative content.</p>
<hr/>Copyright &copy; 2010 <strong><a href="http://www.brilliantthinking.net">Brilliant Thinking</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement.<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=kKA2FL15j30:ORO8YMDVdF0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=kKA2FL15j30:ORO8YMDVdF0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=kKA2FL15j30:ORO8YMDVdF0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=kKA2FL15j30:ORO8YMDVdF0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=kKA2FL15j30:ORO8YMDVdF0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=kKA2FL15j30:ORO8YMDVdF0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=kKA2FL15j30:ORO8YMDVdF0:CwztSlKEtHE"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=kKA2FL15j30:ORO8YMDVdF0:CwztSlKEtHE" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BrilliantThinking/~4/kKA2FL15j30" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brilliantthinking.net/2010/09/06/addressing-flash-websites-in-the-ipad-generation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.brilliantthinking.net/2010/09/06/addressing-flash-websites-in-the-ipad-generation/</feedburner:origLink></item>
		<item>
		<title>The iPad, Office and the Cloud (a plea)</title>
		<link>http://feedproxy.google.com/~r/BrilliantThinking/~3/YFNSgoqnvDo/</link>
		<comments>http://www.brilliantthinking.net/2010/09/01/the-ipad-office-and-the-cloud/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 18:38:56 +0000</pubDate>
		<dc:creator>Edward</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[cloud computing]]></category>

		<guid isPermaLink="false">http://www.brilliantthinking.net/?p=1143</guid>
		<description><![CDATA[I have been considering buying an iPad because it would make life much easier *if* it had the tools to become a mini-office machine where I could tap out letters and do some basic sorts of things. However, initial reviews suggested it couldn't do these things so I held off and then my partner bought one. So I had a play with iWork and this is what I found.]]></description>
			<content:encoded><![CDATA[<p>I watched the lead-up to the launch of the iPad with interest. It looked like a fabulous device but the main thing that I needed it for was to be able to replace Microsoft Office on my laptop. For general day-to-day working, a tablet that gives me web access, email and the ability to punch out letters and do some spreadsheets would be ideal. I wouldn&#8217;t need to power up the laptop every time &#8211; which also means finding a space to put it half of the time, and often plug it in.</p>
<p>However, initial reports said that trying to manage Office activities was difficult if not impractical. This is due to the iPad not offering any traditional style of filestore (like folders) which means you can&#8217;t easily drop something onto the iPad, work on it and then export it back to where it came from. True, there is some local storage embedded within iWork, but you need to connect the iPad to a computer to be able to really sync these documents &#8211; and if you&#8217;re going to do that why not just work on the computer!</p>
<p>The challenge for me comes from the choice of mediums I use, principally Jungledisk in the Cloud. Both my laptop and my base PC connect to a virtual drive located within Jungledisk on Cloud servers over at Rackspace. My PC backs up daily to this cloud also, and other computers we have in the office also back up to this cloud storage. This provides a perfect central repository which we can access from anywhere. For example, I was in a meeting at our accountant&#8217;s office recently and needed a file &#8211; I logged in to Jungledisk via the web access, downloaded the spreadsheet, opened it on the local machine and completed the work there and then. I did not need to go back to the office and email the file &#8211; I could just access it.</p>
<p>For the iPad to be effective for me, I would need to be able to do the same. Aside from the times when I am programming or designing, I don&#8217;t need a laptop &#8211; I could easily write this blog post on an iPad as it is written in a browser-based interface. I use email on the iPhone regularly (more than the laptop) and it would be great if the iPad could access those cloud-based files.</p>
<p>I held off buying an iPad because of the reports about the (MS) Office issues. I have looked for other applications that could solve the issue, but none really come up to the job &#8211; even the virtual/web-based office solutions aren&#8217;t great as they require me to change the way I work in order to use them; ie move my files out of my store and into &#8220;their&#8221; store. This creates complexity as my work files are split into two or more locations.</p>
<p>One thing I did discover was that I could browse my Jungledisk from the iPad and import documents into iWork Papers from there, edit them and save them locally. BUT, I couldn&#8217;t get them back to Jungledisk &#8211; I could only email them or send them to iWork.com. And I didn&#8217;t have any control over fonts (which is a pain when you&#8217;re using brand guidelines) or layout because Papers interpreted the tabs from MS Word differently.</p>
<p>The same issue is true of Microsoft Office on the Web. The web versions are suitable replacements for Office (sort of), but you have to move your files into Sky Drive in order to access them effectively (Microsoft&#8217;s version of iWork.com). Google Docs is much the same &#8211; you have to have your files in Google&#8217;s repository.</p>
<p>So, dear Curated Computing provider (Apple, Google &amp; Microsoft, et al), please provide me with an Office application that allows me to keep my documents and all other files (Photoshop, PHP, images, etc, etc) in one place in *my* virtual office cloud and edit/save them from there. Life would be so much simpler. And mobile.</p>
<p>Of course &#8211; if any of you reading this know of such a solution that can be used from an iPad (and other computers), please leave a message in the comments below. Thanks.</p>
<hr/>Copyright &copy; 2010 <strong><a href="http://www.brilliantthinking.net">Brilliant Thinking</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement.<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=YFNSgoqnvDo:i1MMIA4vc6Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=YFNSgoqnvDo:i1MMIA4vc6Y:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=YFNSgoqnvDo:i1MMIA4vc6Y:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=YFNSgoqnvDo:i1MMIA4vc6Y:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=YFNSgoqnvDo:i1MMIA4vc6Y:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=YFNSgoqnvDo:i1MMIA4vc6Y:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=YFNSgoqnvDo:i1MMIA4vc6Y:CwztSlKEtHE"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=YFNSgoqnvDo:i1MMIA4vc6Y:CwztSlKEtHE" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BrilliantThinking/~4/YFNSgoqnvDo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brilliantthinking.net/2010/09/01/the-ipad-office-and-the-cloud/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.brilliantthinking.net/2010/09/01/the-ipad-office-and-the-cloud/</feedburner:origLink></item>
		<item>
		<title>Louis Roederer Cristal Champagne Scam</title>
		<link>http://feedproxy.google.com/~r/BrilliantThinking/~3/LxitRS3b5TE/</link>
		<comments>http://www.brilliantthinking.net/2010/05/11/louis-roederer-cristal-champagne-scam/#comments</comments>
		<pubDate>Tue, 11 May 2010 09:12:14 +0000</pubDate>
		<dc:creator>Edward</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[scam]]></category>

		<guid isPermaLink="false">http://www.brilliantthinking.net/?p=838</guid>
		<description><![CDATA[Looks like there is a scam going round the email for this grand marque champagne. If you get an email like the one below, ignore it unless you want to lose a lot of money (Cristal 2002 is approx £175 per bottle).]]></description>
			<content:encoded><![CDATA[<p>Looks like there is a scam going round the email for this grand marque champagne. If you get an email like the one below, ignore it unless you want to lose a lot of money (Cristal 2002 is approx £175 per bottle):</p>
<blockquote><p>To: &lt;undisclosed recipients&gt;</p>
<p>Subject: Louis Reoderer Crystal Champagne Order</p>
<p>Hello ,</p>
<p>We are interested in ordering 24 bottles of Louis Reoderer Crystal Champagne 2002 vintage (In Gift Boxes if available) for an event On MAY 25th but we need them on hand before then .Let us know how soon you can get them . we will get back to you with the Credit Card number as soon as we get the total cost for the cases and we will arrange for the pick up at your location as soon as payment is clear</p>
<p>Looking forward to your kind reply</p>
<p>Thank You</p>
<p>James Miller</p></blockquote>
<p>Why is this obviously fake?</p>
<p>Firstly, it&#8217;s not addressed specifically to your company. Instead it has been sent to a hidden list of recipients. Next, there are numerous typographic errors (especially in the name of the champagne). And finally, I have had about 4 of them now, all from different people with the same text for &#8220;an event&#8221; in approximately 2 weeks time. Oh, and we don&#8217;t sell Cristal.</p>
<p>Or maybe you could arrange for the police to be there when they do come to pick them up? Though it wouldn&#8217;t surprise me if they used a random stranger to do the pick up to cover their tracks as does happen.</p>
<hr/>Copyright &copy; 2010 <strong><a href="http://www.brilliantthinking.net">Brilliant Thinking</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement.<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=LxitRS3b5TE:_KC-k5HDUv8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=LxitRS3b5TE:_KC-k5HDUv8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=LxitRS3b5TE:_KC-k5HDUv8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=LxitRS3b5TE:_KC-k5HDUv8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=LxitRS3b5TE:_KC-k5HDUv8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=LxitRS3b5TE:_KC-k5HDUv8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=LxitRS3b5TE:_KC-k5HDUv8:CwztSlKEtHE"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=LxitRS3b5TE:_KC-k5HDUv8:CwztSlKEtHE" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BrilliantThinking/~4/LxitRS3b5TE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brilliantthinking.net/2010/05/11/louis-roederer-cristal-champagne-scam/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.brilliantthinking.net/2010/05/11/louis-roederer-cristal-champagne-scam/</feedburner:origLink></item>
		<item>
		<title>The Digital Economy Bill vs Public Wi-Fi Hotspots</title>
		<link>http://feedproxy.google.com/~r/BrilliantThinking/~3/zakMDnOfrYE/</link>
		<comments>http://www.brilliantthinking.net/2010/04/09/the-digital-economy-bill-vs-public-wi-fi-hotspots/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 15:51:51 +0000</pubDate>
		<dc:creator>Edward</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[Digital Economy Bill]]></category>
		<category><![CDATA[law]]></category>
		<category><![CDATA[Wi-Fi]]></category>

		<guid isPermaLink="false">http://www.brilliantthinking.net/?p=833</guid>
		<description><![CDATA[Unless you have been living under a rock recently, you will have noticed the fervent debate and campaigning over the Digital Economy Bill which was made law today. Back in Q1 2009, the EU Data Retention Directive also became law in the UK, and it would appear that as long as you follow it, you mitigate the liability of operating a public hotspot. Here's how.]]></description>
			<content:encoded><![CDATA[<div>
<p>Unless you have been living under a rock recently, you will have noticed the fervent debate and campaigning over the <a title="Digital Economy Bill" rel="wikipedia" href="http://en.wikipedia.org/wiki/Digital_Economy_Bill" target="_blank">Digital Economy Bill</a> which was made law today. A quick Q&amp;A was published on the BBC site today and you can read it <a href="http://bit.ly/aH30Bh" target="_blank">here</a>.</p>
<p>One of the important issues is how this new law affects operators of public Wi Fi hotspots (like we have at <a href="http://www.meejana.co.uk" target="_blank">Meejana</a>). Here&#8217;s an excerpt from the BBC Q&amp;A:</p>
<blockquote><p>There are also concerns about how the file-sharing measures could affect public wi-fi services. Specifically, people are concerned that the owner of a connection could be held liable even if they are not personally responsible for downloading pirated material.</p>
<p>So, for instance, if someone used wireless connectivity in a cafe to download free content, the cafe owner would be held responsible. Universities and libraries are also concerned about this aspect.</p></blockquote>
<p>However, back in Q1 2009, the EU Data Retention Directive became law in the UK (more on this <a href="http://www.brilliantthinking.net/2008/09/12/eu-legislation-turns-uk-plc-into-big-brother/" target="_self">here</a>). Under this directive the following is required for &#8220;business purpose&#8221; Wi-Fi: That a business securely capture, protect and retain traffic data for up to two years including:</p>
<ul>
<li>details of connections made to the Internet;</li>
<li>details, but not the content, of internet e-mail and internet telephony services;</li>
<li>name, address of the source and destination of the communication (IP &amp; Mac addresses as opposed to physical ones);</li>
<li>analyse traffic and location data related to fixed and mobile telephony initially with Internet access, e-mail and telephony later;</li>
<li>segregate data for compliant investigation rather than for business use;</li>
<li>extract pertinent records for law enforcement enquiries “without undue delay”</li>
</ul>
<p>Any self-configured Wi-Fi service provided to the public (customers) is considered illegal under the EU Data Retention Directive (DRD) and will be penalised.</p>
<p>IANAL (I am not a lawyer) and I am sure there will be further clarification on the subject over time. However, having spoken to <a href="http://www.free-hotspot.com" target="_blank">free-hotspot.com</a>(our hotspot infrastructure provider at the restaurant) they have stated that <strong>the EU DRD mitigates the new UK law</strong>. The reason is that by recording the traffic over the network, the business operator is able to provide mitigating proof that they themselves are not responsible for the copyright infringement. The information provided by the operator under the EU directive provides the accusing party (copyright holder) with information to pursue the actual culprit.</p>
<p>Free-hotspot.com provide the infrastructure to meet the EU DRD. Furthermore, when a user of the hotspot connects to the Internet they are required to agree to a legally binding set of terms which clearly state that the user of the hotspot is liable for their own activities and not the operator (the cafe or restaurant).</p>
<p>It will be interesting to see if the cynic in me will be proven right or wrong over time, or if the EU DRD holds up and mitigates the liability should that letter drop through the door from a copyright holder who believes their copyright has been infringed.</p>
<p>What are your thoughts? Are you a lawyer? Do you know how these two laws (the digital economy bill and the EU DRD) will play out against each other and if the operator of a public Wi Fi hotspot will actually be held accountable despite the EU DRD?</p>
<div><a title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/e69352e3-cab9-4a9b-bc8c-9a4fe197098c/"><img src="http://img.zemanta.com/reblog_c.png?x-id=e69352e3-cab9-4a9b-bc8c-9a4fe197098c" alt="Reblog this post [with Zemanta]" /></a></div>
</div>
<hr/>Copyright &copy; 2010 <strong><a href="http://www.brilliantthinking.net">Brilliant Thinking</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement.<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=zakMDnOfrYE:vlIEAnP_jCU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=zakMDnOfrYE:vlIEAnP_jCU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=zakMDnOfrYE:vlIEAnP_jCU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=zakMDnOfrYE:vlIEAnP_jCU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=zakMDnOfrYE:vlIEAnP_jCU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=zakMDnOfrYE:vlIEAnP_jCU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=zakMDnOfrYE:vlIEAnP_jCU:CwztSlKEtHE"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=zakMDnOfrYE:vlIEAnP_jCU:CwztSlKEtHE" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BrilliantThinking/~4/zakMDnOfrYE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brilliantthinking.net/2010/04/09/the-digital-economy-bill-vs-public-wi-fi-hotspots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.brilliantthinking.net/2010/04/09/the-digital-economy-bill-vs-public-wi-fi-hotspots/</feedburner:origLink></item>
		<item>
		<title>Virtual, Dedicated &amp; Cloud Hosting Security Compared</title>
		<link>http://feedproxy.google.com/~r/BrilliantThinking/~3/Q-zaVNcH0s0/</link>
		<comments>http://www.brilliantthinking.net/2010/04/06/virtual-dedicated-cloud-hosting-security-compared/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 11:09:05 +0000</pubDate>
		<dc:creator>Edward</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.brilliantthinking.net/?p=809</guid>
		<description><![CDATA[This isn't a post aimed at sysadmins, as they will know this already. However, it's a post intended for a business owner or decision maker who places the contract for web hosting, and is intended to highlight at a high level some of the security risks that exist to their websites just by being on the Internet.]]></description>
			<content:encoded><![CDATA[<p>This isn&#8217;t a post aimed at sysadmins, as they will know this already. However, it&#8217;s a post intended for a business owner or decision maker who places the contract for web hosting, and is intended to highlight at a high level some of the security risks that exist to their websites just by being on the Internet.</p>
<p>Last week I bought a small app for my iPhone called <a href="http://bit.ly/cE4WBw" target="_blank">Net Status</a> (app store link). The premise is simple &#8211; you enter one or more websites that you want to check are running and it scans them and reports back. (Aside: It&#8217;s great as a quick check on the road when a client calls and says &#8220;my website is down&#8221; and gives you a quick way to prove or disprove this. Even when you have other tools that monitor and report uptime, plus a client can use the tool to check themselves).</p>
<p>The interesting thing that the tool does is scan the common ports for the website you enter and then provides a list of ports you want to monitor. You can deselect some, but it showed some very interesting differences between websites hosted on virtual servers, dedicated servers and cloud hosting. Here&#8217;s a quick table (based on a LAMP &#8211; Linux, Apache, MySQL, PHP &#8211; setup), but please read the notes following it!</p>
<table border="0" cellspacing="0" cellpadding="5">
<tbody>
<tr>
<th align="left">Port</th>
<th>Cloud</th>
<th>Virtual</th>
<th>Dedicated</th>
</tr>
<tr>
<td>Ping</td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
</tr>
<tr>
<td>http</td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
</tr>
<tr>
<td>https</td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
</tr>
<tr>
<td>ftp</td>
<td align="center">-</td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
</tr>
<tr>
<td>mysql</td>
<td align="center">-</td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
</tr>
<tr>
<td>dns</td>
<td align="center">-</td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
</tr>
<tr>
<td>telnet</td>
<td align="center">-</td>
<td align="center">-</td>
<td align="center">-</td>
</tr>
<tr>
<td>ssh</td>
<td align="center">-</td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
</tr>
<tr>
<td>smtp</td>
<td align="center">-</td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
</tr>
<tr>
<td>smtps</td>
<td align="center">-</td>
<td align="center">-</td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
</tr>
<tr>
<td>pop</td>
<td align="center">-</td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
</tr>
<tr>
<td>pops</td>
<td align="center">-</td>
<td align="center">-</td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
</tr>
<tr>
<td>imap</td>
<td align="center">-</td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
</tr>
<tr>
<td>imaps</td>
<td align="center">-</td>
<td align="center">-</td>
<td align="center"><img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /></td>
</tr>
<tr>
<td>afp</td>
<td align="center">-</td>
<td align="center">-</td>
<td align="center">-</td>
</tr>
<tr>
<td>smb</td>
<td align="center">-</td>
<td align="center">-</td>
<td align="center">-</td>
</tr>
<tr>
<td>vnc</td>
<td align="center">-</td>
<td align="center">-</td>
<td align="center">-</td>
</tr>
<tr>
<td>rdp</td>
<td align="center">-</td>
<td align="center">-</td>
<td align="center">-</td>
</tr>
<tr>
<td>lpr</td>
<td align="center">-</td>
<td align="center">-</td>
<td align="center">-</td>
</tr>
<tr>
<td>ipp</td>
<td align="center">-</td>
<td align="center">-</td>
<td align="center">-</td>
</tr>
<tr>
<td>postressql</td>
<td align="center">-</td>
<td align="center">-</td>
<td align="center">-</td>
</tr>
</tbody>
</table>
<p>The <img title="add" src="http://www.brilliantthinking.net/wp-content/uploads/add.png" alt="" width="16" height="16" /> in the table show the ports that can be scanned from the Internet, and so represent easiest routes for a hacker to attempt to exploit the server and your website. Out of the box, a dedicated server has many more possible attack vectors which a sysadmin needs to lock down or manage the security for.</p>
<p>The reason that there are so few attack vectors in the cloud is that the website, the database, email, and often FTP are all separated through different channels (IP routes). This is the nature of the Cloud and one which brings a greater default level of security obfuscation &#8220;out of the box&#8221;.</p>
<p>However, to provide a balanced view, ports and IP addresses for things such as the database server, the email server, etc, are actually shared between many different sites in the Public Cloud and you may inadvertently be exposed in other ways. For more information on this latter discussion see &#8220;<a href="http://www.brilliantthinking.net/2009/12/28/when-the-clouds-break-risks-in-the-public-cloud/">When the Clouds break; Risks in the Public Cloud</a>&#8220;</p>
<hr/>Copyright &copy; 2010 <strong><a href="http://www.brilliantthinking.net">Brilliant Thinking</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement.<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=Q-zaVNcH0s0:itjO_yO5ndw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=Q-zaVNcH0s0:itjO_yO5ndw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=Q-zaVNcH0s0:itjO_yO5ndw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=Q-zaVNcH0s0:itjO_yO5ndw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=Q-zaVNcH0s0:itjO_yO5ndw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=Q-zaVNcH0s0:itjO_yO5ndw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=Q-zaVNcH0s0:itjO_yO5ndw:CwztSlKEtHE"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=Q-zaVNcH0s0:itjO_yO5ndw:CwztSlKEtHE" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BrilliantThinking/~4/Q-zaVNcH0s0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brilliantthinking.net/2010/04/06/virtual-dedicated-cloud-hosting-security-compared/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.brilliantthinking.net/2010/04/06/virtual-dedicated-cloud-hosting-security-compared/</feedburner:origLink></item>
		<item>
		<title>Fixing WordPress auto-upgrade failure on Cloud hosting</title>
		<link>http://feedproxy.google.com/~r/BrilliantThinking/~3/4mRkwewyWec/</link>
		<comments>http://www.brilliantthinking.net/2010/04/05/fixing-wordpress-auto-upgrade-failure-on-cloud-hosting/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 18:17:38 +0000</pubDate>
		<dc:creator>Edward</dc:creator>
				<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.brilliantthinking.net/?p=828</guid>
		<description><![CDATA[The auto-upgrade feature of Wordpress can stall on Cloud hosting. Here's how to quickly and easily fix it to save time and effort.]]></description>
			<content:encoded><![CDATA[<p>We manage a number of WordPress installs for our clients at Emissary, and in our recent move to Cloud hosting (away from dedicated servers), we discovered that the auto-upgrade of WordPress stalls every time you try to run it. The end result is that you have to manually upgrade WordPress for every installation which means a large time overhead.</p>
<p>Fortunately, on the RackSpace Cloud, the solution to this problem is simple &#8211; simply increase the maximum memory allocated to the site so that there is sufficient available during the auto-upgrade process.</p>
<p>Is all you need to do is add the following line to your .htaccess file in the root of your web site and the auto-upgrade will then work.</p>
<p>php_value memory_limit 64M</p>
<p>You can change the 64M value &#8211; theoretically 32M should work, but sometimes doesn&#8217;t. 64M worked for us, or you can increase in 16M chunks to find a value that works for you. Try to be sensitive to the operation of the Cloud and not hog lots of memory though!</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/b54dc540-97e1-4706-bbe2-ec823a2ea794/"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/reblog_c.png?x-id=b54dc540-97e1-4706-bbe2-ec823a2ea794" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<hr/>Copyright &copy; 2010 <strong><a href="http://www.brilliantthinking.net">Brilliant Thinking</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement.<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=4mRkwewyWec:ZsU3_anDS9o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=4mRkwewyWec:ZsU3_anDS9o:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=4mRkwewyWec:ZsU3_anDS9o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=4mRkwewyWec:ZsU3_anDS9o:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=4mRkwewyWec:ZsU3_anDS9o:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=4mRkwewyWec:ZsU3_anDS9o:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=4mRkwewyWec:ZsU3_anDS9o:CwztSlKEtHE"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=4mRkwewyWec:ZsU3_anDS9o:CwztSlKEtHE" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BrilliantThinking/~4/4mRkwewyWec" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brilliantthinking.net/2010/04/05/fixing-wordpress-auto-upgrade-failure-on-cloud-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.brilliantthinking.net/2010/04/05/fixing-wordpress-auto-upgrade-failure-on-cloud-hosting/</feedburner:origLink></item>
		<item>
		<title>You Are Not a Gadget: The Continuing Case Against Web 2.0 (A Response)</title>
		<link>http://feedproxy.google.com/~r/BrilliantThinking/~3/-tYHgpVlpUU/</link>
		<comments>http://www.brilliantthinking.net/2010/04/05/you-are-not-a-gadget-the-continuing-case-against-web-2-0-a-response/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 13:45:25 +0000</pubDate>
		<dc:creator>Edward</dc:creator>
				<category><![CDATA[4. Musings]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.brilliantthinking.net/?p=819</guid>
		<description><![CDATA[I read the recent RWW Article which is a response to Jaron Lanier's book "You Are Not a Gadget: A Manifesto", in which he makes the case for a more humanistic approach to Internet technology. Lanier rails against web 2.0, which he calls at the start of the book "a torrent of petty designs" and "freedom [...] more for machines than people." This is my response to the RWW article.]]></description>
			<content:encoded><![CDATA[<p>I read the recent <a href="http://www.readwriteweb.com/archives/you_are_not_a_gadget_web_20.php?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed:+readwriteweb+(ReadWriteWeb)" target="_blank">RWW Article</a> which is a response to <a href="http://www.jaronlanier.com/" target="_blank">Jaron Lanier</a>&#8216;s book &#8220;You Are Not a Gadget: A Manifesto&#8221;, in which he makes the case for a more humanistic approach to Internet technology. Lanier rails against web 2.0, which he calls at the start of the book &#8220;a torrent of petty designs&#8221; and &#8220;freedom [...] more for machines than people.&#8221;</p>
<p>I have not read the book, but there are some points that RWW highlights and I am responding to these.</p>
<h2>About Web 2.0 &#8211; It&#8217;s actually an era</h2>
<p>I&#8217;d first like to start out by clarifying that the label Web 2.0 is really a label for an era in the Web&#8217;s evolution. It is like the Pleiocene, or Palaeocene. It&#8217;s a period of time rather than a specific set of technologies. It&#8217;s like saying we didn&#8217;t like the Renaissance, or the Industrial Revolution.</p>
<h2>About Wikipedia &#8211; Crowdsourced Knowledge</h2>
<p>Lanier claims, Wikipedia stifles individual expression. According to Lanier, Wikipedia is &#8220;intellectual mob rule&#8221; and &#8220;seeks to erase point of view entirely.&#8221; He goes so far as to call the individual voice &#8220;the opposite of wikiness.&#8221;</p>
<p>In the latter sentence, Lanier is correct &#8211; and while his argument against Web 2.0 could be restated as his dislike for certain generic platforms which have evolved during this period in history (like Twitter, Wikipedia, Facebook, WordPress, etc). It might be more accurate to state that he dislikes collaboration tools as the platforms he seems to have most angst for are those which are designed for group collaboration rather than individual publishing. The Internet and our connectivity to it has allowed us to develop these tools now, and that&#8217;s a good thing.</p>
<p>Some of these &#8220;generic Web 2.0&#8243; platforms actually encourage a greater sharing of the individual voice by lowering the barrier of entry to the &#8220;common man&#8221; as opposed to allowing only the technically savvy or intellectual elite who can figure out how to build the tools to enable them to broadcast their individual voice, or pay somebody to do it for them.</p>
<p>You can set up a WordPress site (or Posterous, or one of many blogging tools) quickly and even for free, and while it is a templated system, you have a platform for your own voice. Twitter &#8211; another generic platform &#8211; allows millions to express their individual feelings. Had it not been for Twitter I would not have been able to connect to some very influential and thought-provoking individuals that I now listen to and converse with on occasion.</p>
<h2>About Humanity</h2>
<p>Some of the issues that Lanier takes umbrage at include the posting of anonymous comments on blogs. If a person is unable or unwilling to identify themselves, then this is their choice and not the fault of the tool they are using. The availability and ubiquity of publishing platforms in the current era of the Web, and the importance of the social aspect of sharing and commenting simply provides more exposure of this flaw/fear in our human nature. It has been there all along, but not so visible as it is today via the Web.</p>
<p>Instead of criticising the technology, maybe we should look at ways we can improve ourselves?</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/3669fd65-e956-4139-aadf-4ae124117b4c/"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/reblog_c.png?x-id=3669fd65-e956-4139-aadf-4ae124117b4c" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<hr/>Copyright &copy; 2010 <strong><a href="http://www.brilliantthinking.net">Brilliant Thinking</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement.<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=-tYHgpVlpUU:5PSgm9Do6ZM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=-tYHgpVlpUU:5PSgm9Do6ZM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=-tYHgpVlpUU:5PSgm9Do6ZM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=-tYHgpVlpUU:5PSgm9Do6ZM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=-tYHgpVlpUU:5PSgm9Do6ZM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=-tYHgpVlpUU:5PSgm9Do6ZM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BrilliantThinking?a=-tYHgpVlpUU:5PSgm9Do6ZM:CwztSlKEtHE"><img src="http://feeds.feedburner.com/~ff/BrilliantThinking?i=-tYHgpVlpUU:5PSgm9Do6ZM:CwztSlKEtHE" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BrilliantThinking/~4/-tYHgpVlpUU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brilliantthinking.net/2010/04/05/you-are-not-a-gadget-the-continuing-case-against-web-2-0-a-response/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.brilliantthinking.net/2010/04/05/you-are-not-a-gadget-the-continuing-case-against-web-2-0-a-response/</feedburner:origLink></item>
	</channel>
</rss>
