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

<channel>
	<title>philippe::niquille</title>
	<atom:link href="http://www.niquille.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.niquille.com</link>
	<description>regular niche market thoughts</description>
	<pubDate>Sun, 22 Jun 2008 17:28:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Followup: Amazon S3 tripple encrypted true Rsync backup</title>
		<link>http://www.niquille.com/2008/06/18/followup-amazon-s3-tripple-encrypted-true-rsync-backup/</link>
		<comments>http://www.niquille.com/2008/06/18/followup-amazon-s3-tripple-encrypted-true-rsync-backup/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 10:43:10 +0000</pubDate>
		<dc:creator>Philippe</dc:creator>
		
		<category><![CDATA[OS X / Apple]]></category>

		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.niquille.com/?p=341</guid>
		<description><![CDATA[ Since I had problems with rsync 2.6.3 not properly excluding directories with whitespaces I figured out a dirty workaround. In order to really simplify the process of selecting the folders which should be rsynced I created a directory only containing symbolic links. In this directory I issued the ln -s &#60;backup_this_directory&#62; &#60;my_link_name&#62; command. Important: [...]]]></description>
			<content:encoded><![CDATA[<p> Since I had problems with rsync 2.6.3 not properly excluding directories with whitespaces I figured out a dirty workaround. In order to really simplify the process of selecting the folders which should be rsynced I created a directory only containing symbolic links. In this directory I issued the <em>ln -s &lt;backup_this_directory&gt; &lt;my_link_name&gt;</em> command. Important: creating an Alias in Finder and copying that one to the folder does not work. I then added the -h option to tar and the -L to rsync to instruct them to follow symbolic links and not just copy them. The neat thing about this setup is that you can point a link which contains not whitespaces (such as <em>My_directory</em>) to a folder containing whitespaces (such as <em>My Directory</em>).</p>
<p><img class="alignnone size-full wp-image-343" title="bild-5_" src="http://www.niquille.com/wp-content/2008/06/bild-5_.png" alt="" width="435" height="116" /></p>
<p>See the following screenshot for a detailed folder views.</p>
<p><img class="alignnone size-full wp-image-342" title="bild-2_" src="http://www.niquille.com/wp-content/2008/06/bild-2_.png" alt="" width="500" height="556" /></p>
<div class="download">Get v0.1.1 <a href="http://www.niquille.com/wp-content/rsyncs3_v0.1.1.py.txt">here</a>.</p>
</div>
<p>I know this is all kind of dirty, but it does its job. As improvement I am waiting for an OS X version of <a href="http://sourceforge.net/projects/rsyncrypto" onclick="javascript:pageTracker._trackPageview ('/outbound/sourceforge.net');">rsyncrypto</a> which should be more efficient in encryption than murk. I&#8217;ll keep you posted.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.niquille.com/2008/06/18/followup-amazon-s3-tripple-encrypted-true-rsync-backup/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Amazon S3 tripple encrypted true Rsync backup</title>
		<link>http://www.niquille.com/2008/06/15/amazon-s3-tripple-encrypted-true-rsync-backup/</link>
		<comments>http://www.niquille.com/2008/06/15/amazon-s3-tripple-encrypted-true-rsync-backup/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 21:55:04 +0000</pubDate>
		<dc:creator>Philippe</dc:creator>
		
		<category><![CDATA[OS X / Apple]]></category>

		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.niquille.com/?p=335</guid>
		<description><![CDATA[See a workaround for whitespaces in directory names here.
As a followup for my local rsync script compilation I now present a small python script which takes care of rsyncing your folders to your S3 buckets and taking care of local encryption. I am really fond of the idea of &#8220;storing your data in the cloud&#8221;.
You [...]]]></description>
			<content:encoded><![CDATA[<div class="information">See a workaround for whitespaces in directory names <a href="http://www.niquille.com/2008/06/18/followup-amazon-s3-tripple-encrypted-true-rsync-backup ">here</a>.</div>
<p>As a followup for my <a href="http://murk.sourceforge.net/" onclick="javascript:pageTracker._trackPageview ('/outbound/murk.sourceforge.net');">local rsync script compilation</a> I now present a small python script which takes care of rsyncing your folders to your S3 buckets and taking care of local encryption. I am really fond of the idea of &#8220;storing your data in the cloud&#8221;.</p>
<p>You will need:</p>
<p>1) An Amazon AWS Account with S3 enabled, sign up <a href="http://www.amazon.com/gp/browse.html?node=3435361" onclick="javascript:pageTracker._trackPageview ('/outbound/www.amazon.com');">here</a>. Amazon will charge you 0.15US$ per GB stored per month.</p>
<p>2) An Rsync Account from <a href="http://www.s3rsync.com/index.php/Rsync_to_S3" onclick="javascript:pageTracker._trackPageview ('/outbound/www.s3rsync.com');">s3rsync.com</a>. They built a special rsync setup in an Amazon EC2 cloud in order to allow real partial file syncing. The problem with direct rsync-S3 connections is that S3 only allows you to PUT entire objects (files). They charge you 19US$ per 380 rsync-hours which is 0.05US$ per hour. Remember, only transfers after huge changes in your data structure are time intensive (and of course slow connections). See their <a href="http://www.s3rsync.com/index.php/FAQ" onclick="javascript:pageTracker._trackPageview ('/outbound/www.s3rsync.com');">FAQ</a>.</p>
<p>You will also need to install some tools on your system in order for the encryption to work properly. The special issue with rsync encryption is, that normal encryption usually messes up your entire file structure and therefore the entire file needs to be transfered at all times. Rsync would not be of much use in such a case. Although <a href="http://murk.sourceforge.net/" onclick="javascript:pageTracker._trackPageview ('/outbound/murk.sourceforge.net');">Murk</a> weakens encryption by dividing a file in small blocks and encrypting each one of them, it seems to be the best transfer-efficient solution.</p>
<p>Be sure to have your developer tools installed and first get the following two source packages:</p>
<p>- <a href="http://bzip.org/downloads.html" onclick="javascript:pageTracker._trackPageview ('/outbound/bzip.org');">BZip2</a>, compile with <em>./configure &amp;&amp; make &amp;&amp; make install</em></p>
<p>- <a href="http://www.openssl.org/source/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.openssl.org');">OpenSSL</a>: <em>./configure darwin-i386-cc &amp;&amp; make</em></p>
<p>Then get the Murk sources and compile them since you now got the relevant crypto and compression libraries.</p>
<p>- <a href="http://sourceforge.net/project/showfiles.php?group_id=118518" onclick="javascript:pageTracker._trackPageview ('/outbound/sourceforge.net');">Murk</a>: <em>./configure -L ../openssl-0.9.8h &amp;&amp; make &amp;&amp; sudo cp ./murk /usr/bin/</em></p>
<p>Next create a new cipher key so Murk can de- and encrypt in standalone mode. I suggest using AES-256: <em>murk -a &lt;your_key&gt; -c aes-256</em></p>
<p>You would now be able to compress a folder, e.g. test and encrypt it in an rsync friendly manner by doing: <em>tar -cf - test | murk -n -c aes-256 -k /Users/fluppel/.murk -v -o rsync.tar.zm &lt;your_key&gt; </em>However I learned that piping the tar output to murk produces corrupt files, at least with my setup. Try using a tmp file by issuing the following commands: <em>tar -cf no_cipher.tar ../test &amp;&amp; murk -n -c aes-256 -k /Users/fluppel/.murk -o rsync.tar.zm &lt;your_key&gt; no_cipher.tar &amp;&amp; rm no_cipher.tar</em></p>
<p>The *.tar.zm file can be decrypted by using: <em>murk -n -k /Users/fluppel/.murk -d niquille rsync.tar.zm</em></p>
<p>This technique now allows you to encrypt large directories and rsync them to an S3 bucket by using the s3rsync.com service. But before issuing the command, be sure to save the supplied SSH private key to a local path of yours. Then issue: <em>rsync -v &#8211;stats -e &#8220;ssh -i /Users/fluppel/.ssh/s3rsync_dsa.priv&#8221; -az /Users/fluppel/Desktop/Inbox/test_due/ &lt;your_user&gt;@farm.s3rsync.com:%%&lt;your_bucket&gt;%%&lt;your_AWS_id&gt;%%&lt;your_AWS_secret_key&gt;</em></p>
<div>The service then stores the transfered contents again as a tar file in the corresponding bucket. And wait, before you rush in you&#8217;ll also need to create some buckets in your Amazon S3 Account. I used a service such as <a href="http://www.s3interface.com/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.s3interface.com');">s3interface.com</a>, just be sure to change your secret AWS key after creating your buckets. You never know who gets hold of your key by using third party services.</div>
<p>Now the nice thing about this solution is, that your backuped directories reside in a bucket somewhere in an Amazon datacenter in the US. You can access the *.tar file anytime by using <a href="http://cyberduck.ch/" onclick="javascript:pageTracker._trackPageview ('/outbound/cyberduck.ch');">Cyberduck</a>, <a href="http://www.jungledisk.com/download.shtml" onclick="javascript:pageTracker._trackPageview ('/outbound/www.jungledisk.com');">JungleDisk</a> or <a href="http://code.google.com/p/s3fs/" onclick="javascript:pageTracker._trackPageview ('/outbound/code.google.com');">s3fs</a>. You can then just download the file, uncompress it and decrypt its contents by using the murk command as described above. Remember, now you will pay transfer fees to Amazon (whereas by using the rsync service you do not pay traffic but the hours used). I get around 250 - 350 kbits/s downloading from a US S3 bucket to a european location which is not so bad.</p>
<p>Now this all seems pretty complicated. I therefore compiled a small python script which actually takes care of encrypting certain parts of your data tree and rsyncs it to your buckets. I personally do not encrypt all my data for two reasons:</p>
<p>1) Your data is being transfered over an SSH connection and is already being stored in an encrypted bucket by Amazon.</p>
<p>2) Encrypting my whole documents folder and so forth always uses a great amount of CPU and time. I therefore limit encryption to more or less sensitive data. In the end it really all comes down to how much you trust your gateways and hosters.</p>
<p>Feel free to use my python hacking. I know its not perfect but I think it will do its job. Try calling it from crontab or whatever service you like.</p>
<div class="download">Get v0.1 <a href="http://www.niquille.com/wp-content/rsyncs3_v0.1.py.txt">here</a>.</p>
<p>You will also need <a href="http://growl.info/documentation/growlnotify.php" onclick="javascript:pageTracker._trackPageview ('/outbound/growl.info');">growlnotify</a> installed which should be part of the default <a href="http://growl.info/" onclick="javascript:pageTracker._trackPageview ('/outbound/growl.info');">Growl</a> installation.</p>
</div>
<p>There is one issue with the script though: The rsync exclude pattern does not seem to work properly with folder names containing whitespaces.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.niquille.com/2008/06/15/amazon-s3-tripple-encrypted-true-rsync-backup/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wireless still broken on 10.5.3?</title>
		<link>http://www.niquille.com/2008/06/13/wireless-still-broken-on-1053/</link>
		<comments>http://www.niquille.com/2008/06/13/wireless-still-broken-on-1053/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 16:40:28 +0000</pubDate>
		<dc:creator>Philippe</dc:creator>
		
		<category><![CDATA[OS X / Apple]]></category>

		<guid isPermaLink="false">http://www.niquille.com/?p=332</guid>
		<description><![CDATA[ I had already posted my Macbook rev1 wireless issue quite a while back in April. Unfortunately I didn&#8217;t really figure out any superb solution which would instantly fix the problem, which actually just had appeared out of nowhere.. OS X 10.5.3 didn&#8217;t solve it out of the box either. I actually figured, that the [...]]]></description>
			<content:encoded><![CDATA[<p> I <a href="http://www.niquille.com/2008/04/03/broken-airport-on-macbook-after-update/">had already posted</a> my Macbook rev1 wireless issue quite a while back in April. Unfortunately I didn&#8217;t really figure out any superb solution which would instantly fix the problem, which actually just had appeared out of nowhere.. OS X 10.5.3 didn&#8217;t solve it out of the box either. I actually figured, that the problem most heavily occurs when using Linksys equipment such as WAP54G and WRT54G. Firmware updates did not improve anything. I wonder wether Airports work..</p>
<p><a href="http://www.niquille.com/2008/04/03/broken-airport-on-macbook-after-update/#comment-5473">Pev&#8217;s tip</a> though finally appears to work on 10.5.3 (I remember trying on 10.5.2 without any success). Enter <em>sudo ifconfig en1 mtu 1492</em> in your Terminal and try resetting the pram.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-333 aligncenter" title="bild-3" src="http://www.niquille.com/wp-content/2008/06/bild-3.png" alt="" width="398" height="113" /></p>
<p style="text-align: left;">I think doing the following in your System Preferences -&gt; Network -&gt; Airport permanently sets your MTU (surviving restarts).</p>
<p style="text-align: center;"><a href="http://www.niquille.com/wp-content/2008/06/bild-4.png"  rel="lightbox[roadtrip]"><img class="alignnone size-full wp-image-334 aligncenter" title="bild-4" src="http://www.niquille.com/wp-content/2008/06/bild-4.png" alt="" width="500" height="359" /></a></p>
<p style="text-align: left;">Enjoy (and let me know if it works).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.niquille.com/2008/06/13/wireless-still-broken-on-1053/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Django 1.0</title>
		<link>http://www.niquille.com/2008/04/27/django-10/</link>
		<comments>http://www.niquille.com/2008/04/27/django-10/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 16:24:41 +0000</pubDate>
		<dc:creator>Philippe</dc:creator>
		
		<category><![CDATA[Django]]></category>

		<guid isPermaLink="false">http://www.niquille.com/?p=331</guid>
		<description><![CDATA[ I have been wondering how long it would take: The guys over at django seem to have a clear idea of what the version 1.0 final has to include. Things such as full newforms support, changes to the file backend (to support Amazon S3) and improvements of signaling (the dispatcher) are being mentioned.
update: The [...]]]></description>
			<content:encoded><![CDATA[<p> I have been wondering how long it would take: The guys over at django seem to have a <a href="http://groups.google.com/group/django-developers/msg/c2be209a9f10ff30" onclick="javascript:pageTracker._trackPageview ('/outbound/groups.google.com');">clear idea of what the version 1.0 final has to include</a>. Things such as full newforms support, changes to the file backend (to support Amazon S3) and improvements of signaling (the dispatcher) are being mentioned.</p>
<p><em>update: </em>The Django crew now <a href="http://www.djangoproject.com/weblog/2008/jun/16/save-the-date/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.djangoproject.com');">finally announced a version 1.0</a> coming in September this year.. <a href="http://metajack.wordpress.com/2008/06/11/the-problem-with-django/" onclick="javascript:pageTracker._trackPageview ('/outbound/metajack.wordpress.com');">Some people have problems to accept</a> the slow (!) Django release process.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.niquille.com/2008/04/27/django-10/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Scalability as key growth factor</title>
		<link>http://www.niquille.com/2008/04/27/scalability-as-key-growth-factor/</link>
		<comments>http://www.niquille.com/2008/04/27/scalability-as-key-growth-factor/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 11:22:44 +0000</pubDate>
		<dc:creator>Philippe</dc:creator>
		
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://www.niquille.com/?p=328</guid>
		<description><![CDATA[ Yesterday I held a paper regarding my previous discussion paper on emerging internet technologies. I focused on virtualization techniques which make cloud computing feasible.

This slide shows a simplified illustration of a cloud platform setup. As you can see virtualization software actually allows a certain service to run on multiple physical entities, regardless of their [...]]]></description>
			<content:encoded><![CDATA[<p> Yesterday I held a paper regarding my previous discussion paper on <a href="http://www.niquille.com/2008/04/20/the-business-impact-of-emerging-internet-technologies/">emerging internet technologies</a>. I focused on virtualization techniques which make cloud computing feasible.</p>
<p><a href="http://www.niquille.com/wp-content/2008/04/bild-11.png"  rel="lightbox[cloud]" rel="lightbox[roadtrip]"><img class="size-medium wp-image-327" title="bild-11" src="http://www.niquille.com/wp-content/2008/04/bild-11-300x214.png" alt="" width="300" height="214" /></a><br />
This slide shows a simplified illustration of a cloud platform setup. As you can see virtualization software actually allows a certain service to run on multiple physical entities, regardless of their geographical location or quantity.</p>
<p><a href="http://www.niquille.com/wp-content/2008/04/bild-2.png"  rel="lightbox[cloud]" rel="lightbox[roadtrip]"><img src="http://www.niquille.com/wp-content/2008/04/bild-2-300x207.png" alt="" title="bild-2" width="300" height="207" class="size-medium wp-image-330" /></a><br />
I later-on introduce my hypothesis, that the industry is now reaching a third level after in-house IT solutions, later outsourcing and now <em>the cloud</em> (see slide 6).</p>
<div class="download">See my <a href="http://www.niquille.com/wp-content/2008/04/emerging-technologies.pdf">complete presentation</a> concerning this topic.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.niquille.com/2008/04/27/scalability-as-key-growth-factor/feed/</wfw:commentRss>
		</item>
		<item>
		<title>new buzzword: cloud computing</title>
		<link>http://www.niquille.com/2008/04/26/new-buzzword-cloud-computing/</link>
		<comments>http://www.niquille.com/2008/04/26/new-buzzword-cloud-computing/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 07:31:52 +0000</pubDate>
		<dc:creator>Philippe</dc:creator>
		
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://www.niquille.com/?p=326</guid>
		<description><![CDATA[ As I already stated in my previous paper, cloud computing appears to be a highly disruptive technology, which is gaining momentum just now. Forrester Research points out that the technology is not yet ready for enterprise usage though for the next two to three years. By design current products are immature for fortune 500 companies according [...]]]></description>
			<content:encoded><![CDATA[<p> As I already stated in my previous paper, cloud computing appears to be a highly disruptive technology, which is gaining momentum just now. <a href="http://www.forrester.com/Research/Document/Excerpt/0,7211,44229,00.html" onclick="javascript:pageTracker._trackPageview ('/outbound/www.forrester.com');">Forrester Research</a> points out that the technology is not yet ready for enterprise usage though for the next two to three years. By design current products are immature for fortune 500 companies according to <a href="http://blogs.forrester.com/it_infrastructure/2008/03/are-fabrics-web.html" onclick="javascript:pageTracker._trackPageview ('/outbound/blogs.forrester.com');">James Staten</a>. Stability and security issues need to be addressed first. <a href="http://blogs.zdnet.com/BTL/?p=8199" onclick="javascript:pageTracker._trackPageview ('/outbound/blogs.zdnet.com');">ZDnet</a> outlines cloud-benefits such as increased development speed and lower deployment costs. For the time being <em>big</em> enterprises are mainly using cloud platforms for small development and low-priority business applications. Start ups are actually heavily participating in the test playground.</p>
<p>ZDnet also has a <a href="http://blogs.zdnet.com/Hinchcliffe/?p=166" onclick="javascript:pageTracker._trackPageview ('/outbound/blogs.zdnet.com');">nice comparison</a> of Google App Engine and Amazon Web Services.</p>
<p>John Willis wrote a good post about the <em><a href="http://www.johnmwillis.com/redmonk/demystifying-clouds/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.johnmwillis.com');">demystification of the cloud</a> </em>and introduces an interesting &#8220;layered&#8221; classification of cloud services. Also see his <a href="http://www.johnmwillis.com/cloud-computing/cloud-vendors-a-to-z-revised/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.johnmwillis.com');">A-Z list of current cloud-providers</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.niquille.com/2008/04/26/new-buzzword-cloud-computing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Law &#038; Economics of Cyberspace</title>
		<link>http://www.niquille.com/2008/04/25/law-economics-of-cyberspace/</link>
		<comments>http://www.niquille.com/2008/04/25/law-economics-of-cyberspace/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 19:14:26 +0000</pubDate>
		<dc:creator>Philippe</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Thoughts]]></category>

		<category><![CDATA[Unsorted]]></category>

		<guid isPermaLink="false">http://www.niquille.com/?p=325</guid>
		<description><![CDATA[ I&#8217;m sort of live-blogging (never done this before..) from this lecture at the University of St.Gallen. The two professors (Urs Gasser &#38; John Palfrey) will discuss current topics concerning law and economics on todays internet.
some excerpts ..

Urs: 

&#8220;The internet is like a cake. You have the biscuit (physical layer), chocolate (logical) and cream (content)&#8221;
Four different [...]]]></description>
			<content:encoded><![CDATA[<p> I&#8217;m sort of live-blogging (never done this before..) from this lecture at the University of St.Gallen. The two professors (<a href="http://www.fir.unisg.ch/org/fir/web.nsf/wwwPubInhalteGer/Prof.+Dr.+Urs+Gasser?opendocument" onclick="javascript:pageTracker._trackPageview ('/outbound/www.fir.unisg.ch');">Urs Gasser</a> &amp; <a href="http://blogs.law.harvard.edu/palfrey/" onclick="javascript:pageTracker._trackPageview ('/outbound/blogs.law.harvard.edu');">John Palfrey</a>) will discuss current topics concerning law and economics on todays internet.</p>
<p><span style="font-weight: normal;"><strong>some e</strong></span><strong>xcerpts ..</strong></p>
<ul>
<li>Urs: 
<ul>
<li>&#8220;The internet is like a cake. You have the biscuit (physical layer), chocolate (logical) and cream (content)&#8221;</li>
<li>Four different modalities of regulation exist:
<ul>
<li>self-regulation of markets</li>
<li>law (regulation e.g. IPR)</li>
<li>social norms</li>
<li>code (such as country specific google search results)</li>
</ul>
</li>
<li>I get hunders of messages a day, spam doesn&#8217;t annoy me that much, although there is student spam..</li>
<li>interoperability results in more competition and therefore more innovation; interoperability becomes key when talking about national innovation policy; however disruptive innovations theoretically have greater impact without regard to interoperability</li>
<li>cyberspace solved classic market failure of information asymmetry, but how should limited processing capacity cope with large amounts of information and how can <a href="http://blogs.law.harvard.edu/ugasser/2007/12/08/information-quality-and-reputation/" onclick="javascript:pageTracker._trackPageview ('/outbound/blogs.law.harvard.edu');">information quality</a> be assured (also from a regulatory perspective)</li>
</ul>
</li>
<li>John:
<ul>
<li>&#8220;ISP&#8217;s are a wonderfull place for regulation&#8221;, meaning it is the best spot for law-enforcement from an architecture point of view.</li>
<li>Talking about Spam: Why not change the paradigm of the web (the accountable web). Instead of accepting everything by design one could actually reject everything by default and rely on what trusted &#8220;friends&#8221; accept.</li>
<li>Bill Gates wasn&#8217;t able to solve the spam problem (although he was confident to have it solved by 2006) -&gt; Gasser: he should have said one wouldn&#8217;t care so much anymore.</li>
<li>&#8220;Spam is not just about putting the Spam Kingpin to Jail&#8221;</li>
</ul>
</li>
<li>Eric (Student):
<ul>
<li>We get Robocalls (spam) in India on our cells</li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.niquille.com/2008/04/25/law-economics-of-cyberspace/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The business impact of emerging internet technologies</title>
		<link>http://www.niquille.com/2008/04/20/the-business-impact-of-emerging-internet-technologies/</link>
		<comments>http://www.niquille.com/2008/04/20/the-business-impact-of-emerging-internet-technologies/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 15:00:04 +0000</pubDate>
		<dc:creator>Philippe</dc:creator>
		
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://www.niquille.com/?p=323</guid>
		<description><![CDATA[ 
„Computing is turning into a utility, and once again the economic equations that determine the way we work and live are being rewritten.“ 
Today&#8217;s internet age is both vibrant and old-fashioned in economical terms. Every day new internet start ups sky rocket. Others disappear as fast as they built upon the vast potentials. But [...]]]></description>
			<content:encoded><![CDATA[<p> <!--StartFragment--></p>
<p class="MsoNormal"><em><span lang="EN-US">„Computing is turning into a utility, and once again the economic equations that determine the way we work and live are being rewritten.“ </span></em><span lang="EN-US"><span><!--[if supportFields]><span style="mso-element:field-begin" mce_style="mso-element:field-begin"></span><span style="mso-spacerun:  yes" mce_style="mso-spacerun:  yes"> </span>CITATION Car08 \p 12 \l 2055<span style="mso-spacerun:  yes" mce_style="mso-spacerun:  yes"> </span><span style="mso-element:field-separator" mce_style="mso-element:field-separator"></span>< ![endif]--><!--[if supportFields]><span style="mso-element:field-end" mce_style="mso-element:field-end"></span>< ![endif]--></span></span></p>
<p class="MsoNormal"><span lang="EN-US">Today&#8217;s internet age is both vibrant and old-fashioned in economical terms. Every day new internet start ups sky rocket. Others disappear as fast as they built upon the vast potentials. But despite new technologies being the enablers of such potentials, success is by no means guaranteed. That&#8217;s where old-fashioned economical and managerial principles come into play. One such example is the TV broadcaster Joost, which had been founded back in 2006 by the founders of Skype. The company developed a set of video compression algorithms and network protocols in order to supply viewers with free peer-to-peer high quality video. Despite the working system, Joost failed to integrate up to date content, especially live tv feeds into their broadcasting network. Recent rumor has it, that the company is </span><span lang="EN-US">undergoing a major restructuring and fallback to US markets (instead of worldwide)</span>. This is where the competitor Zattoo shows how to be successful<span><!--[if supportFields]><span style="mso-element:  field-begin" mce_style="mso-element:  field-begin"></span> CITATION Kne07 \p 5 \l 2055<span style="mso-spacerun:  yes" mce_style="mso-spacerun:  yes"> </span><span style="mso-element:field-separator" mce_style="mso-element:field-separator"></span>< ![endif]--></span>. Although<span> Zattoo relies on a different video codec with weaker video quality, the company managed to attract a broad audience and place targeted advertisement. Interestingly Zattoo uses a similar peer-to-peer distribution technology. One would </span>be fast in concluding, that technology itself doesn&#8217;t define a company’s success. As Manyika states, <em>&#8220;technology alone is rarely the key to unlocking economic value: companies create real wealth when they combine technology with new ways of doing business&#8221;</em>.</p>
<p class="MsoNormal"><span lang="EN-US">This paper highlights technologies underway on the internet that could have high economic impact on certain areas of business (on the micro level). In search for the next determining building blocks for the next generation of digital products and services, several aspects of economic impacts of these technologies will be discussed and analyzed. However, this paper will not cover every technological detail and economical implication in-depth; it is meant to give a brief overview and create a basis for discussion.</span></p>
<p class="MsoNormal"><span lang="EN-US">The report is divided into four major business concerns, each covering the most related technologies and their anticipated economic impact. This reverse approach was chosen due to the focus on business relevance.</span></p>
<h2><span lang="EN-US">Scalability as key growth factor</span></h2>
<p class="MsoNormal"><span lang="EN-US">One of the year-to-year and long-term strategic challenges of a company is growth. If one talks about an Internet start up such as YouTube (now part of Google) back in 2005 and considers its success, company growth meant increasing market shares in the market for online videos. This specific growth in the user base meant an ever-increasing need for storage capacity, processing power, network bandwidth and higher overall loads. A couple of recent technologies address issues such as scalability, which is one of the key drivers of success when talking about growth. This section will first briefly cover these technologies and then assess their specific impact.</span></p>
<h3><span lang="EN-US">Data 2.0 follows Web 2.0</span></h3>
<p class="MsoNormal"><span lang="EN-US">Although the term Web 2.0 stands for a huge variety of recent phenomena, not only YouTube, one of the post-bubble winners, has shown us how drastically data amounts can increase. When talking about data from social networks such as Facebook, search indices at Google or Yahoo, customer records at salesforce.com or link records at digg.com, data complexity also increased. This fact will have a huge influence on database </span><span lang="EN-US">management. Nevertheless, companies such as Amazon<span> or Google have expanded their business models and enable third parties to use their infrastructure in return for a usage fee. Amazon discovered that they had such high capacity margins at their data centers, that around 90% would normally reside </span>unused</span>. Due to their long history of providing reliable in-house web services,<span> Amazon introduced SimpleDB, EC2 and S3 services. Google just recently introduced Google App Engine as public beta, which is a combination of storage solution, BigTable Database and Webservice. Companies such as YouTube would now be able to use these data centers as ultilities, smiliar to plugging your fridge into the wall and consuming electricity on a pay-as-you-use-it basis (and therefore grow at a pace previously not </span>possible)<span>. Although these concepts of grid-computing are not all new, the commercial usage and feasibility has only just recently become possible. This is due to large advancements in hardware </span>performance (also see virtualization) and the usage of standard protocols. Services<span> such as those from Amazon or Google are considered disruptive and initiate a change in the world of relational databases</span>.</p>
<h3><span lang="EN-US">Virtualization</span></h3>
<p class="MsoNormal"><span lang="EN-US">Similar to Google, Amazon uses virtualization technology to serve different customers with their unique set of applications and data (EC2). The technology allows </span><span lang="EN-US">multiple systems on the same hardware due to an inserted layer of software in-between</span>. The<span> possibilities are enormous, since the operation system level becomes hardware independent and therefore scalable across multiple physical </span>systems. This is the foundation of utility computing.</p>
<p class="MsoNormal"><span lang="EN-US"> </span></p>
<p class="MsoNormal"><span lang="EN-US">From an economical point of view these advancements in database systems and hardware usage allow a more efficient use of fixed </span><span lang="EN-US">assets<span><!--[if supportFields]><span style="mso-element:field-end" mce_style="mso-element:field-end"></span>< ![endif]--></span></span>. Providers of data centers or experts such as Amazon (supply side) are able to reduce total costs of operation and therefore leverage<span> their hardware</span><span><!--[if supportFields]><span style="mso-element:field-end" mce_style="mso-element:field-end"></span>< ![endif]--></span>. The shift towards utility computing in outsourcing eliminates the traditional client/server model<a name="_ftnref"></a> and actually allows greater economies of scale.</p>
<p class="MsoNormal"><span lang="EN-US">Outsourcing not only becomes a bargain for suppliers, it also gives the customer (demand side) full flexibility (especially in terms of speed) and, most importantly of all, scalability. The unbundling allows a company to free itself from large fixed investment in hardware (and the overhead) and minimate risk by achieving a competitive marginal cost (only computing, storage and bandwidth usage is being charged)</span>. B<span>ut great </span>opportunity<span> also bears risks: What if utility suppliers do meet physical capacity restraints (which do exist) and what if services have major downtakes? Despite encryption, businesses with privacy-sensitive data will have further concerns regarding utility computing</span><span><!--[if supportFields]><span style="mso-element:field-end" mce_style="mso-element:field-end"></span>< ![endif]--></span>.</p>
<h2><span lang="EN-US">An Attempt at coping with data flooding</span></h2>
<p class="MsoNormal"><span lang="EN-US">Since the early dawn of the internet the amount of content has been growing at a fast rate. For more than a decade search engines have been aiding us with <em>simple</em> lookup tasks and pretending to structure the web, or better, it’s content. One must agree that Google and its competitors are quite good at searching written content, such as texts, URLs and Metadata. But this search for the needle in the haystack becomes extremely tedious if one includes additional data such as images, music files<a name="_ftnref"></a> or even video. Following the idea of a <em>semantic web</em>, standardized metadata </span><span lang="EN-US">needs to be created in order for greater automation to succeed</span>. But there are still the problems of how<span> metadata gets created in the first place and how certain quality requirements can be met.</span></p>
<h3><span lang="EN-US">How to extract Metadata</span></h3>
<p class="MsoNormal"><span lang="EN-US">Current image search technologies are able to identify objects within a picture and convert them into metadata tags. Examples are a Coke bottle appearing in a picture being labeled as <em>coca cola </em><span> </span>or a tiger lying in the bushes labeled with <em>tiger</em> and <em>gras. </em>But problems persist: By including more complex lookups such as a search for “happy faces” or facial recognition with and without beard current algorithms come to a limit</span><span lang="EN-US"><span><!--[if supportFields]><span style="mso-element:field-end" mce_style="mso-element:field-end"></span>< ![endif]--></span></span>. Furthermore<span> the spread of GPS devices has introduced geotagged pictures that include additional location specific information. Such metadata enables entirely new applications such as integrated maps and timeline </span>services and location based clustering of images.</p>
<h3><span lang="EN-US">Syndication: gather information</span></h3>
<p class="MsoNormal"><span lang="EN-US">As solid part of Web 2.0, RSS/Atom feeds allow the interchange of information across systems. Aggregation and filtering of multiple feeds enables advanced usage such as complex lookups which span across multiple sources. Yahoo introduced a service called Yahoo Pipes, which gives users the possibility to drag</span><span lang="EN-US">&amp;combine different elements to a new syndicated feed <span><!--[if supportFields]><span style="mso-element:field-begin" mce_style="mso-element:field-begin"></span><span style="mso-spacerun:  yes" mce_style="mso-spacerun:  yes"> </span>CITATION For07 \p 22 \l 2055<span style="mso-spacerun:  yes" mce_style="mso-spacerun:  yes"> </span><span style="mso-element:field-separator" mce_style="mso-element:field-separator"></span>< ![endif]-->(Forrester,  2007, p. 22)<!--[if supportFields]><span style="mso-element:field-end" mce_style="mso-element:field-end"></span>< ![endif]--></span></span>. Think of a lookup, for example, for an apartment with a gym near a park in New York City, within a specific price range.</p>
<p class="MsoNormal"><span lang="EN-US"> </span></p>
<p class="MsoNormal"><span lang="EN-US">These current technologies and metadata standards allow decent structuring and filtering of text data and, up to some extent, images and sounds. Since employees spend hundreds of hours searching information and pursuing all sorts of research, it is clear that abundant metadata can improve this process. Taking a job recruitment process as an example, one is able to cut costs on one hand due to less service charges and transaction costs</span><span lang="EN-US"><span><!--[if supportFields]><span style="mso-element:field-end" mce_style="mso-element:field-end"></span>< ![endif]--></span></span>.<span> Social Network sites such as Facebook or meta people searches already allow fast and more or less segmented search for potential targets. This step towards coping with information asymmetry does not only increase efficiency, it also widens the <em>usable</em> information base for a certain entity and increases transparency, for instance, for the job </span>applicant<span><!--[if supportFields]><span style="mso-element:field-end" mce_style="mso-element:field-end"></span>< ![endif]--></span>. New possibilities such as geotagging and enhanced image search could allow companies<span> involved in travel activities to offer even more integrated and localized services as added-value. Customers could for example compile auto generated galleries for their individual trips </span>(location based services<a name="_ftnref"></a>)<span>.</span></p>
<p class="MsoNormal"><span lang="EN-US">On second view, coping with information also offers greater exploitation possibilities in terms of running artificial intelligence algorithms against (meta)data. One of the leaders at early stages in this trend is Amazon. Analysis of purchase </span><span lang="EN-US">histories provides the recommendation engine with proposals for future customers</span>. The<span> information derived from these algorithms increases conversion rates and therefore has a direct effect on sales. Such information not only helps managers to make smarter decisions. It also lowers costs for example for customer acquisition due to deeper insights and enables targeted </span>attention<span><!--[if supportFields]><span style="mso-element:field-end" mce_style="mso-element:field-end"></span>< ![endif]--></span>. Digging further into<span> the use of (multiple linked) metadata reveals astonishing possibilites not yet present.</span> - <em>“Since we are essentially meta-tagging ourselves through our social networking memberships, shopping habits and surfing addictions, it’s conceivable that the information could attempt to find us”</em><span><!--[if supportFields]><span style="mso-element:  field-begin" mce_style="mso-element:  field-begin"></span> CITATION Der08 \p 2 \l 2055<span style="mso-spacerun:  yes" mce_style="mso-spacerun:  yes"> </span><span style="mso-element:field-separator" mce_style="mso-element:field-separator"></span>< ![endif]--><span> </span></span>. - Such a drastic technological advancement in search could change the way companies promote products through digital distribution channels and again, improve customer satisfaction and at the same time reduce acquisition costs.</p>
<p class="MsoNormal"><span lang="EN-US">Another attempt at breaking down information complexity has been undertaken by NASDAQ Stock Market Inc. They use a newly introduced product bridging on- (web) and offline (desktop) usage called Adobe Air. The runtime allows analysts to run <em>Nasdaq Market Replay<a name="_ftnref"></a></em>, which computes several intensive statistical processes on a huge amount of data on their local desktop and get instant results</span><span lang="EN-US"><span><!--[if supportFields]><span style="mso-element:field-end" mce_style="mso-element:field-end"></span>< ![endif]--></span></span>. It is<span> modern syndication (webservices) and a lightweight Flash/Ajax environment which relieves servers of high loads and merges different pieces into one application</span>. Although<span> this concept is at first sight contradictory to the concept of <em>utility computing</em>, there is space for a dual existence. Security concerns (as stated above) could force specialists to use local or limited resources, especially considering the financial industry. Furthermore desktop applications allow offline usage, which gives further flexibility to employees working en </span>route.</p>
<h2><span lang="EN-US">Enriching digital human interactions</span></h2>
<p class="MsoNormal"><span lang="EN-US">Since its development the Internet has survived without a profound security layer built into the core.</span> Despite various existing “overlay” technologies such as encrypted data transfers via SSL or VPN, 802.x authentication, Public/Private Key encryption algorithms and Smart Card Authentications basted on TPM chips, identification of individuals (transparency), integrity and usability remains an alarming issue.</p>
<h3><span lang="EN-US">Digital Identity: Who am I trusting?</span></h3>
<p class="MsoNormal"><span lang="EN-US">Current user-centric approaches such as OpenID focus on the bundling of the countless and tedious authentication and authorization routines needed in order for users to interact with various Internet services<span><!--[if supportFields]><span style="mso-element:field-begin" mce_style="mso-element:field-begin"></span> CITATION Cas08 \p 3 \l 2055<span style="mso-spacerun: yes" mce_style="mso-spacerun: yes"> </span><span style="mso-element:field-separator" mce_style="mso-element:field-separator"></span>< ![endif]--><!--[if supportFields]><span style="mso-element:field-end" mce_style="mso-element:field-end"></span>< ![endif]--></span></span>. It offers a unified login protocol (single sign on) and has positive network effects due to partnerships with industry leaders like Yahoo and Google.</p>
<h3><span lang="EN-US">Voice over IP: convergence?</span></h3>
<p class="MsoNormal"><span lang="EN-US">Besides professional solutions such as those provided by hardware manufacturers like Cisco, eBay’s Skype has been a disruptive factor in online voice communication. Since the foundation in 2004 Skype has provided voice and video streaming over the Internet based on a closed protocol that incorporates peer-to-peer technology</span>. Similar to SIP-Applications, Skype enables point-to-point streaming of high quality live voice and video feeds and most important, a gateway to worldwide telephone networks. Despite the enormous potentials, threats such as monitoring, eavesdropping or spamming exist due to the nature of building upon an IP-network.</p>
<p class="MsoNormal"><span lang="EN-US"> </span></p>
<p class="MsoNormal"><span lang="EN-US">Technologies that accelerate convergence between telephone networks and the Internet, such as the Skype protocol, dramatically reduce operating costs of modern communication channels. Thinking of the vast increase of negotiations and ad hoc collaboration across long distances in business, such modern technologies step in and allow greater productivity (due to lower transaction times) at lower costs (Skype allows global calls at local rates whereas Skype-to-Skype is free)</span>.<span> Manyika takes it one step further and proposes the possibility of value creation through smarter and faster interactions among individuals, by also using other modern tools such as Wikis (p. 4). She furthermore outlines the potentials of <em>“integrat[ing ]and manag[ing] the work of expanding number[s] of outsiders”</em>, namely shifting the work towards scalable freelancers.</span></p>
<p class="MsoNormal"><span lang="EN-US">But despite the high potential productivity improvements, fraud and malware such as Spam show how important valid identities are in daily digital communication</span><span lang="EN-US"><span><!--[if supportFields]><span style="mso-element:field-begin" mce_style="mso-element:field-begin"></span> CITATION Run06 \p 19 \l 2055<span style="mso-spacerun: yes" mce_style="mso-spacerun: yes"> </span><span style="mso-element:field-separator" mce_style="mso-element:field-separator"></span>< ![endif]--><!--[if supportFields]><span style="mso-element:field-end" mce_style="mso-element:field-end"></span>< ![endif]--></span></span>. Fishing<span> attacks steal user credentials and abuse user data, credit cards in e-commerce transactions are subject to theft. Users on the other hand can not verify whom to trust in e-commerce transactions. E-Mail traffic without digital signatures does not allow a true verification of sender and recipient due to spoofing possibilites. As crucial as this issue is to business and interaction in business, fundamental design failures of the internet currently do not allow a unified solution. Still, technologies such as modern signing algorithms are able to dramatically increase identity awareness between point-to-point E-Mail, voice or document verification in daily business communications. One important aspect in business, besides security, could be the advancement in a trust-building process when considering customer-company interactions</span><span><!--[if supportFields]><span style="mso-element:field-begin" mce_style="mso-element:field-begin"></span> CITATION Run06 \p 16 \l 2055<span style="mso-spacerun: yes" mce_style="mso-spacerun: yes"> </span><span style="mso-element:field-separator" mce_style="mso-element:field-separator"></span>< ![endif]--><span>.</span></span></p>
<p class="MsoNormal"><span lang="EN-US">A promising maturing technology, especially from the standpoint of utility computing and abundant bandwidth due to fiber optics, is mesh networking. It describes ad hoc wireless coupling of multiple devices which instantly build up their <em>own</em> network at their current location</span><span lang="EN-US"><span><!--[if supportFields]><span style="mso-element:  field-end" mce_style="mso-element:  field-end"></span>< ![endif]--></span></span>. This<span> technology </span>unfolds its true potential for applications in remote areas due to its flexibility and robust self-organizing structure. It not only drastically lowers investments (e.g. by building a temporary network); it also allows new applications, such as ad-hoc sensor networks, to be implemented.</p>
<h2><span lang="EN-US">The rise of new business models</span></h2>
<p class="MsoNormal"><span lang="EN-US">Modern technologies such as those mentioned above do not only have implications for existing (internet) businesses. As already stated, they also unleash a tremendous potential regarding new ways of doing business – it is modern business the <em>cyber way</em>.</span></p>
<h3><span lang="EN-US">Virtual Reality: Where The Matrix starts?</span></h3>
<p class="MsoNormal"><span lang="EN-US">The most successful example of a functioning sort of <em>duplicate</em> of our world is Second Life, which has been in development since 2003 by Linden Labs. Utility computing allows real time computing of a virtual world with thousands of users actually interacting within that space</span>. On average around 30’000 to 40’000 unique individuals talk, sell properties, build houses and enjoy virtual life. Second Life has its own currency called Lindon Dollars, which can be bought in exchange for real US dollars on Lindon FX. Total supply of Lindon dollars as of April 2008 was about 4.8 billion, which equals around 18 million US dollars.</p>
<p class="MsoNormal"><span lang="EN-US">Second Life was built as a scalable system from the beginning on. Similar to computing clouds such as those offered by Google or Amazon, Lindon Labs runs Second Life as a real time streaming system on their cloud called <em>Second Life Grid</em>. End-Users access the system by downloading a tiny thin client, that allows the rendering of the individual view of the 3D world on the users access client<span><!--[if supportFields]><span style="mso-element:field-end" mce_style="mso-element:field-end"></span>< ![endif]--></span></span>.</p>
<h3><span lang="EN-US">Peer-to-peer data exchange: BitTorrent</span></h3>
<p class="MsoNormal"><span lang="EN-US">Nowadays a significant portion of Internet traffic is accounted for not only by video streaming (such as by YouTube or Hulu) but mostly by peer-to-peer traffic using the BitTorrent protocol. It was developed in 2001 and is built as a pareto-efficient distribution system due to robust resource utilization and cooperative techniques<span><!--[if supportFields]><span style="mso-element:field-begin" mce_style="mso-element:field-begin"></span> CITATION Coh03 \p 1 \l 2055<span style="mso-spacerun: yes" mce_style="mso-spacerun: yes"> </span><span style="mso-element:field-separator" mce_style="mso-element:field-separator"></span>< ![endif]--></span></span>. The protocol bypasses a typical HTTP limitation, which is a common upload-bandwidth limitation. By incorporating a centralized tracker and peer concept, peers download small chunks of data from other peers. The protocol builds upon network scale effects, meaning that more peer-participants actually increase, rather than decrease overall performance, therefore eliminating the mentioned upload-bottlenecks.</p>
<p class="MsoNormal"><span lang="EN-US">Similar peer-to-peer concepts apply for the already described voice over IP technology behind Skype. Users generally contribute without even knowing<span><!--[if supportFields]><span style="mso-element:field-begin" mce_style="mso-element:field-begin"></span> CITATION Mow07 \p 7 \l 2055<span style="mso-spacerun: yes" mce_style="mso-spacerun: yes"> </span><span style="mso-element:field-separator" mce_style="mso-element:field-separator"></span>< ![endif]--><!--[if supportFields]><span style="mso-element:field-end" mce_style="mso-element:field-end"></span>< ![endif]--></span></span>.</p>
<p class="MsoNormal"><span lang="EN-US">The transfer technology BitTorrent and other peer-to-peer concepts become even more disruptive, if one has a glance at <em>what</em> actually gets transferred by peers. More than others, the music and film industry see themselves confronted with drastic decreases in sales of CDs, DVDs or online products such as on-demand video. One hypothesis could be, that a shift towards illegal channels such as booming portals like <em>thepiratebay.com, </em>has<em> </em>driven away demand from their traditional business models. This implies, that technologies such as BitTorrent not only are a threat to traditional channels, but actually underline the urge for the creation of new business models. They should therefore incorporate these new ways of customer behavior (e.g. on-demand, cheap) together with technologies that enable modern ways of distribution and revenue generation. A successful example within the same industry is Apple’s iTunes Music Store<a name="_ftnref"></a>.</span></p>
<p class="MsoNormal"><span lang="EN-US">What appears to be compelling about virtual realities such as Second Life, is that humans are actually willing to spend vast amounts of their time in an artificial world built out of 3D graphics, modern physics and weather algorithms as well as a virtual market place co-created by other real humans. As a PEW study suggests, these worlds are meant to become more and more important and should lead to higher productivity for “technologically-savvy” communities. Linden (among other competitors) demonstrates how to incorporate virtual layers in new business models. By creating a world with replicas and even new variations of markets (such as housing, shops or attractions) such a company creates new revenue possibilities (by offering a gateway to a <em>virtual layer</em> in exchange for fees) never seen before. Most interesting is the fact, that existing companies such as Gucci or Prada see themselves confronted with both new problems and challenges. Copy infringement in Second Life is becoming a huge issue because people are vastly creating digital counterfeits for Avatars<span><!--[if supportFields]><span style="mso-element:  field-begin" mce_style="mso-element:  field-begin"></span> CITATION Reu07 \l 2055 <span style="mso-element:field-separator" mce_style="mso-element:field-separator"></span>< ![endif]--></span></span>. But thinking of a company such as Prada opening a real store within Second Life attracts a whole new opportunity of distribution channels for (new) products. Furthermore IBM just recently started an extensive partnership with Linden by having an eye on future business applications: <em>“The 3-D Internet is a transformational opportunity that will change many industry processes, gather new revenue streams, and increase productivity and brand opportunity</em>.<em>”</em><span><!--[if supportFields]><span style="mso-element:  field-begin" mce_style="mso-element:  field-begin"></span> CITATION Gre08 \l 2055 <span style="mso-element:field-separator" mce_style="mso-element:field-separator"></span>< ![endif]--><span> </span><!--[if supportFields]><span style="mso-element:field-end" mce_style="mso-element:field-end"></span>< ![endif]--></span></p>
<h2><span lang="DE-CH">Conclusion: Utility Computing and Business Model Adaption</span></h2>
<p class="MsoNormal"><span lang="EN-US">This paper highlights several technological developments in brief and analyzed several economic implications regarding each of the four big business topics. First the concept of utility computing was introduced in order to show growth potentials for both supply and demand sides of computing clouds. The concept implies revolutionary data storage technologies optimized for speed and reliability. Second, the question was raised as to how current information flooding could be structured and reversed into useful data. The ideas of a semantic web building on top of metadata and data interchange based on syndication technologies were discussed. Modern applications such as Nasdaq Market Replay show how such information can be applied and build upon a desktop/server model (at first sight in contradiction to utility computing). Third, the paper briefly reviewed advancements in digital identity handling and modern peer-to-peer based communication technologies such as the one used by Skype. Possible improvements in productivity and the importance of trust in interactions are being discussed. But most importantly, these technologies show how far convergence has come. Finally, virtual worlds and efficient transmission technologies show the need for existing businesses, especially the music industry, to rethink current business models and create new, innovative ways of revenue generation.</span></p>
<p class="MsoNormal"><span lang="EN-US">This brief overview does not just emphasize how important information technology has become for a wide variety of businesses. What is most important is that it demonstrates how some disruptive technologies are real opportunities to cut down huge chunks of fixed costs and revolutionize the way of doing business as well as interacting with stakeholders. It is not far fetched that Carr suggests: <em>“In the long run, the IT department is unlikely to survive, at least not in its familiar form. It will have little left to do once the bulk of business computing shifts out of private data centers and into ‘the cloud’.”</em> </span></p>
<p><!--EndFragment--></p>
<p><!--StartFragment--></p>
<p><!--EndFragment--></p>
<div class="download">Get a full version of this paper including citations and bibliography <a href="http://www.niquille.com/wp-content/2008/04/biz_tech_niq_2008_unisg.pdf">as PDF</a>.</div>
<div class="information"><strong>update (27.4.08)</strong><br />
Google appears to be making <a href="http://www.techcrunch.com/2008/04/27/google-experiments-with-next-generation-image-search/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.techcrunch.com');">progress in advanced image search</a> techniques. Incorporating <a href="http://www.www2008.org/papers/pdf/p307-jingA.pdf" onclick="javascript:pageTracker._trackPageview ('/outbound/www.www2008.org');">PageRank for image search</a> is an interesting approach but, in my opinion, can&#8217;t solve the issue of &#8220;incomplete&#8221; metadata. Nevertheless, the image comparison algorithms do sound promising though (see same paper).</div>
<div class="information"><strong>update (31.5.08)</strong><br />
The Gartner Group, a research and consulting company in the IT industries has released their <a href="http://www.ehomeupgrade.com/2008/05/28/gartner-identifies-top-ten-disruptive-technologies-for-2008-to-2012/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.ehomeupgrade.com');">list of disruptive technologies</a> for the next four years. As expected, nothing really know has appeared. It&#8217;s the usual suspects such as virtualization and multi-core computing dominating the list.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.niquille.com/2008/04/20/the-business-impact-of-emerging-internet-technologies/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wireless stumbler trick on 10.5.2</title>
		<link>http://www.niquille.com/2008/04/15/wireless-stumbler-trick-on-1052/</link>
		<comments>http://www.niquille.com/2008/04/15/wireless-stumbler-trick-on-1052/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 08:48:59 +0000</pubDate>
		<dc:creator>Philippe</dc:creator>
		
		<category><![CDATA[OS X / Apple]]></category>

		<guid isPermaLink="false">http://www.niquille.com/?p=319</guid>
		<description><![CDATA[ Did you know that pressing the Alt key while clicking on the wireless tab icon gives you extended information about the network you are currently connected to (such as channel, signal strength and Mac ID)?

BTW: Wireless ist still heavily broken and Apple didn&#8217;t seed 10.5.3 final yet.. That&#8217;s why I started to lay out [...]]]></description>
			<content:encoded><![CDATA[<p> Did you know that pressing the <em>Alt</em> key while clicking on the wireless tab icon gives you extended information about the network you are currently connected to (such as channel, signal strength and Mac ID)?</p>
<p><img src="http://www.niquille.com/wp-content/2008/04/wireless_alt-300x273.png" alt="" title="wireless_alt" width="300" height="273" class="alignnone size-medium wp-image-320" /></p>
<p>BTW: Wireless ist still heavily broken and Apple didn&#8217;t seed 10.5.3 final yet.. That&#8217;s why I started to lay out old fashioned cables again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.niquille.com/2008/04/15/wireless-stumbler-trick-on-1052/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iPhone battery drain on 1.1.4</title>
		<link>http://www.niquille.com/2008/04/06/iphone-battery-drain-on-114/</link>
		<comments>http://www.niquille.com/2008/04/06/iphone-battery-drain-on-114/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 09:46:11 +0000</pubDate>
		<dc:creator>Philippe</dc:creator>
		
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.niquille.com/?p=316</guid>
		<description><![CDATA[update (15.4.08): My iPhone seems to be excessively using EDGE and busting my data limit (which get&#8217;s really nasty at 0.1 Swiss Francs per 10KB). I didn&#8217;t figure out why. I figure it could only be the email client looping some attachment.
I saw my iPhone using up all its battery power in less than 12 [...]]]></description>
			<content:encoded><![CDATA[<div class="information"><b>update (15.4.08)</b>: My iPhone seems to be excessively using EDGE and busting my data limit (which get&#8217;s really nasty at 0.1 Swiss Francs per 10KB). I didn&#8217;t figure out why. I figure it could only be the email client looping some attachment.</div>
<p>I saw my iPhone <a href="http://www.hackint0sh.org/forum/showthread.php?t=31497&#038;page=4" onclick="javascript:pageTracker._trackPageview ('/outbound/www.hackint0sh.org');">using up all its battery power</a> in less than 12 hours. The solution: Navizon GPS 2.0.2 appears to <a href="http://www.navizon.com/phpbb2/viewtopic.php?p=6907&#038;sid=e6131ce85320ef8d5bf429651bf04358" onclick="javascript:pageTracker._trackPageview ('/outbound/www.navizon.com');">run some daemon</a> which eats up all the power.</p>
<p>By the way, this Zibri guy who builds <a href="http://www.ziphone.org/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.ziphone.org');">ZiPhone</a> really is some kick-ass dude. His <a href="http://download.ziphone.org/" onclick="javascript:pageTracker._trackPageview ('/outbound/download.ziphone.org');">ZiPhone 3.0</a> and so forth really takes away all the <a href="http://www.niquille.com/2007/12/10/iphone-mania-interview-with-myself/">hassle of downgrading, upgrading, patching</a>, although it was fun. (<a href="http://www.youtube.com/watch?v=shP6vEhNMec" onclick="javascript:pageTracker._trackPageview ('/outbound/www.youtube.com');">It&#8217;s so easy, a caveman can do it</a>; even all my friends who don&#8217;t have a clue can use it..) He also appears to have <a href="http://you.ziphone.org/2008/04/off-topic.html" onclick="javascript:pageTracker._trackPageview ('/outbound/you.ziphone.org');">found a way to activate the beta 2.0</a>..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.niquille.com/2008/04/06/iphone-battery-drain-on-114/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
