<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Karmona Pragmatic Blog &#187; Cloud</title>
	<atom:link href="http://blog.karmona.com/index.php/category/cloud/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.karmona.com</link>
	<description>Pragmatic Software Management, Internet Trends, Life and more...</description>
	<lastBuildDate>Wed, 01 Feb 2012 20:26:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>The GeoSpatial Cloud</title>
		<link>http://blog.karmona.com/index.php/2010/11/01/the-geospatial-cloud/</link>
		<comments>http://blog.karmona.com/index.php/2010/11/01/the-geospatial-cloud/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 19:47:05 +0000</pubDate>
		<dc:creator>Moti Karmona &#124; מוטי קרמונה</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Disruptive Technology]]></category>
		<category><![CDATA[Geo]]></category>

		<guid isPermaLink="false">http://blog.karmona.com/?p=860</guid>
		<description><![CDATA[In continue to my geo distance post, I have decided to post something on the simplest cloud architecture (RDS) for location based services (LBS) IMHO, (to cut a long story short :) Amazon RDS is more than enough for most geo location applications. Amazon Relational Database Service (Amazon RDS) is a web service that makes [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.karmona.com/wp-content/uploads/2010/11/japanacousticlistening.gif"><img class="alignleft size-medium wp-image-863" title="Japan Acoustic Location Devices During WWII" src="http://blog.karmona.com/wp-content/uploads/2010/11/japanacousticlistening-300x225.gif" alt="" width="300" height="225" align="left" /></a>In continue to my <a title="Karmona Labs on Geo Distance" href="http://blog.karmona.com/index.php/2010/10/09/karmona-labs-on-geo-distance/">geo distance</a> post, I have decided to post something on the simplest cloud architecture (RDS) for location based services (LBS)</p>
<p><a title="The Dunning-Kruger Effect" href="http://blog.karmona.com/index.php/2008/11/15/the-dunning-kruger-effect/">IMHO</a>, (to cut a long story short :) <a title="Amazon RDS" href="http://aws.amazon.com/rds/">Amazon RDS</a> is more than <a title="The Pareto Principle" href="http://blog.karmona.com/index.php/2007/07/14/the-pareto-principle/">enough</a> for most geo location applications.</p>
<blockquote><p><em><span style="color: #888888;">Amazon Relational Database Service (Amazon RDS) is a web service that makes it easy to set up, operate, and scale a relational database in the cloud.</span></em></p>
<p><em><span style="color: #888888;"><strong>Amazon RDS gives you access to the full capabilities of a familiar MySQL database</strong>. This means the code, applications, and tools you already use today with your existing MySQL databases work seamlessly with Amazon RDS.</span></em></p></blockquote>
<p><a href="http://blog.karmona.com/wp-content/uploads/2010/11/RDS.jpg"><img class="alignleft size-full wp-image-865" title="RDS" src="http://blog.karmona.com/wp-content/uploads/2010/11/RDS.jpg" alt="" width="492" height="395" /></a></p>
<p>Two <strong>preliminary </strong>steps:<br />
* Start a small DB instance with the kind help of <a title="AWS Management Console" href="https://console.aws.amazon.com/rds">AWS management console</a> (image above)<br />
* Use the RDS instance as if it is your &#8220;<a title="MySQL Surprise" href="http://blog.karmona.com/index.php/2007/08/11/mysql-surprise/">disruptive</a>&#8221;  MySQL instance e.g. manage it using <a title="MySQL Workbench" href="http://wb.mysql.com/">MySQL Workbench</a> 5.2.29</p>
<p><strong>&#8220;Flirting&#8221; with MySQL <a title="MySQL Spatial Capabilities" href="http://dev.mysql.com/doc/refman/5.5/en/spatial-extensions.html">spatial capabilities</a></strong> (which seems to be &#8220;fully&#8221; supported by AWS RDS)</p>
<p>* Create the (MyISAM) Table with spatial index</p>
<blockquote><p><em><span style="color: #888888;">CREATE TABLE `locations` (<br />
`id` int(11) NOT NULL AUTO_INCREMENT,<br />
`lat` decimal(10,6) DEFAULT NULL,<br />
`long` decimal(10,6) DEFAULT NULL,<br />
`loc` point NOT NULL,<br />
`name` varchar(45) DEFAULT NULL,<br />
PRIMARY KEY (`id`),<br />
<strong> SPATIAL KEY</strong> `loc` (`loc`)<br />
) ENGINE=<strong>MyISAM </strong>AUTO_INCREMENT=6 DEFAULT CHARSET=utf8</span></em></p></blockquote>
<p>* Insert few values to populate your table</p>
<blockquote><p><em><span style="color: #888888;">INSERT INTO locations VALUES(1,40.748433, -73.985655,  GeomFromText(&#8216;POINT(40.748433 -73.985655)&#8217;), &#8216;<strong>The Empire State Building</strong>&#8216;);<br />
INSERT INTO locations VALUES(2, 40.689166, -74.044444,  GeomFromText(&#8216;POINT(40.689166 -74.044444)&#8217;), &#8216;The Statue of Liberty&#8217;);<br />
INSERT INTO locations VALUES(3, 40.758611, -73.979166,  GeomFromText(&#8216;POINT(40.758611 -73.979166)&#8217;), &#8216;Rockefeller Center&#8217;);<br />
INSERT INTO locations VALUES(4, 40.757266, -73.985838,  GeomFromText(&#8216;POINT(40.757266 -73.985838)&#8217;), &#8216;Times Square&#8217;);<br />
INSERT INTO locations VALUES(5, 40.7527, -73.9818,  GeomFromText(&#8216;POINT(40.7527 -73.9818)&#8217;), &#8216;New York Public Library&#8217;);</span></em></p></blockquote>
<p>* Execute a simple test drive query which returns all the locations and their distance from &#8216;The Empire State Building&#8217; + Comparing two distance calculation methods (1) MySQL euclidean calculation (2) Haversine calculation (results below)</p>
<blockquote><p><span style="color: #888888;"><em>SELECT locations.name,</em><em><br />
</em><em> astext(locations.loc),</em><em><br />
</em><em> GLength(LineStringFromWKB(LineString(locations.loc, GeomFromText(&#8216;POINT(40.748433 -73.985655)&#8217;))))*100</em><em><br />
</em><em> AS euclidean,</em><em><br />
</em><em> 6378.1 * 2 * ASIN(SQRT(</em><em><br />
</em><em> POWER(SIN(RADIANS(40.748433 &#8211; locations.lat)  / 2),2) +</em><em><br />
</em><em> COS(RADIANS(40.748433)) * COS(RADIANS(locations.lat) )</em><em><br />
</em><em> * POWER(SIN((RADIANS(-73.985655 &#8211; locations.long)) /2), 2) )) AS haversine</em><em><br />
</em><em> FROM locations</em><em><br />
</em><em> &#8212; HAVING euclidean &lt; 1</em><em><br />
</em><em>&#8211; ORDER BY euclidean ASC LIMIT 10;</em></span></p></blockquote>
<p><a href="http://blog.karmona.com/wp-content/uploads/2010/11/mysql_spatial_query.jpg"><img class="alignleft size-full wp-image-864" title="MySQL Spatial Query" src="http://blog.karmona.com/wp-content/uploads/2010/11/mysql_spatial_query.jpg" alt="" width="646" height="449" /></a></p>
<p><strong><br />
</strong></p>
<p><strong>Two Surprises/Issues</strong></p>
<p><strong>(1)</strong> <a title="SRID" href="http://en.wikipedia.org/wiki/SRID">SRID</a> (Spatial Reference Identifier) support in MySQL is a disgrace &#8211; In MySQL, the SRID value is just an integer associated with the <a title="MySQL GIS Geometry " href="http://dev.mysql.com/doc/refman/5.5/en/gis-class-geometry.html">geometry value</a>. All calculations are done assuming Euclidean (planar) geometry.</p>
<p>Possible Workarounds: (1) Euclidean calculation can be enough (2) Use <a title="Karmona Labs on Geo Distance" href="http://blog.karmona.com/index.php/2010/10/09/karmona-labs-on-geo-distance/">Haversine</a> function if you need the accuracy</p>
<p><strong>(2)</strong> <a title="Problem with Alias in MySQL" href="http://dev.mysql.com/doc/refman/5.5/en/problems-with-alias.html">MySQL &#8216;Where&#8217; clause can&#8217;t use column aliases</a> for filtering</p>
<p>Possible Workarounds: (1) Use &#8216;Having&#8217; clause (see above) (2) Use the explicit function or field and not the alias</p>
<p>*** *** *** *** *** *** *** *** *** *** *** ***</p>
<p><strong>Related/Interesting</strong> <strong>reference </strong>- <a title="Geo Distance Search with MySQL (2008)" href="http://www.mysqlconf.com/mysql2008/public/schedule/detail/347">Geo Distance Search with MySQL</a> (Presentation | 2008)</p>
<p><strong>Important note</strong>: <span style="color: #888888;"><em>To help new AWS customers get started in the cloud, AWS is introducing a new free usage tier. Beginning November 1, new AWScustomers will be able to run a free Amazon EC2 Micro Instance for a year, while also leveraging a new <a title="Free AWS" href="http://aws.amazon.com/free/">free</a> usage tier for Amazon S3, Amazon Elastic Block Store, Amazon Elastic Load Balancing, and AWSdata transfer</em></span> – Very Exciting Times!!!</p>
<p><strong>Disturbing unrelated fact</strong>: Starting in 1931, every graduate of the Japanese Naval Academy was asked: <em>&#8220;How would you carry out a surprise attack on Pearl Harbor?&#8221;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.karmona.com/index.php/2010/11/01/the-geospatial-cloud/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Run &#8220;Hello World!!!1&#8243; Servlet on EC2 using AWS Toolkit for Eclipse</title>
		<link>http://blog.karmona.com/index.php/2010/09/15/servlet-on-ec2-using-aws-toolkit-for-eclipse/</link>
		<comments>http://blog.karmona.com/index.php/2010/09/15/servlet-on-ec2-using-aws-toolkit-for-eclipse/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 15:51:19 +0000</pubDate>
		<dc:creator>Moti Karmona &#124; מוטי קרמונה</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Simplicity]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://blog.karmona.com/?p=787</guid>
		<description><![CDATA[It started like yet-another-weekend-experiment but once you start a weekend experiment you never know when or how it will end… ;) I was very curios to take AWS for a quick test drive so I lost six hours of a precious beauty sleep and compiled this blog-post-capsule for future generations. &#160; &#160; The Quest * Run [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.karmona.com/wp-content/uploads/2010/09/matrix.jpg"><img class="alignleft size-full wp-image-796" title="Matrix" src="http://blog.karmona.com/wp-content/uploads/2010/09/matrix.jpg" alt="" width="250" height="184" align="left" /></a>It started like <a title="Base64 Encode – Decode Online Widget" href="http://blog.karmona.com/index.php/2008/10/20/base64-encode-decode-online-widget/">yet</a>-<a title="Google-App-Engine Development Environment" href="http://blog.karmona.com/index.php/2008/11/21/google-app-engine-development-environment/">another</a>-weekend-experiment but once you start a weekend experiment you never know when or how it will end… ;)</p>
<p>I was very curios to take AWS for a quick test drive so I lost six hours of a precious beauty sleep and compiled this blog-post-capsule for future generations.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>The Quest</strong></p>
<p>* Run an “Hello World!!!1” Servlet on EC2 (<a title="AWS Pricing" href="http://aws.amazon.com/ec2/pricing/">less than $0.01 per hour</a>)<br />
* <a title="Developing Java Web Applications with Apache Tomcat and AWS" href="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=2241">Create a local development environment using Eclipse</a> + <a title="AWS Toolkit for Eclipse" href="http://aws.amazon.com/eclipse/">AWS Toolkit for Eclipse</a> (seems like a really interesting toolchain)</p>
<p><strong>Preliminary Steps</strong></p>
<div id="_mcePaste">
<ul>
<li>AWS
<ul>
<li>Sign up for an <a title="AWS" href="http://aws.amazon.com/">AWS account</a></li>
<li>Sign in to the AWS Management Console</li>
<li>Set up authentication methods (I have used key pair)</li>
<li>Define security group (make sure SSH and HTTP are open)</li>
</ul>
</li>
<li>Local development environment
<ul>
<li>Install <a title="JDK 1.6" href="http://download.java.net/jdk6/">JDK 1.6</a></li>
<li>Install Eclipse (<a title="Eclipse" href="http://www.eclipse.org/downloads/">Eclipse IDE for Java EE Developers</a>)</li>
<li>Install <a title="AWS Toolkit for Eclipse" href="http://aws.amazon.com/eclipse/">AWS Toolkit for Eclipse</a></li>
<li>Install <a title="Tomcat 6.something" href="http://tomcat.apache.org/download-60.cgi">Tomcat 6.something</a></li>
</ul>
</li>
</ul>
</div>
<p><strong>Issues with AWS Toolkit defaults</strong></p>
<div id="_mcePaste">The plan was to use <a title="Developing Java Web Applications with Apache Tomcat and AWS" href="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=2241">this tutorial</a> but surprisingly enough this <a title="Google Search for Issues in AWS Toolkit" href="http://www.google.com/search?q=amazon+aws+toolkit+for+eclipse+error+tomcat+6+site:developer.amazonwebservices.com">did not work out-of-the-box</a> (apparently due to Tomcat/JDK versions on the default AMI the plug-in is using but I didn&#8217;t waste time in making sure this is the issue) so I moved to plan B</div>
<p>&nbsp;</p>
<p><strong>Plan B</strong> &#8211; Create a custom EC2 AMI with Tomcat 6.something and JDK 1.6</p>
<p>* Launch an EC2 instance using Amazon&#8217;s ami-84db39ed AMI.  (basic Fedora 8 image)<br />
* Use <a title="Putty" href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">Putty</a> connect to your instance</p>
<p>&nbsp;</p>
<p><strong>* Install Java on EC2 Instance</strong></p>
<p>* <a title="JDK Download" href="http://download.java.net/jdk6/">Download JDK</a> (“Linux RPM in self-extracting JDK file”)</p>
<blockquote>
<div><em>mkdir /usr/local/java</em></div>
<div id="_mcePaste"><em>cd /usr/local/java</em></div>
<div id="_mcePaste"><em>curl http://download.java.net/jdk6/6u23/promoted/b01/binaries/jdk-6u23-ea-bin-b01-linux-i586-30_aug_2010-rpm.bin &gt; jdk1.6.0.23-rpm.bin</em></div>
</blockquote>
<div>* Install the JDK</div>
<blockquote>
<div id="_mcePaste"><em>chmod 755 jdk1.6.0.23-rpm.bin # Change the permission of the file</em></div>
<div id="_mcePaste"><em>./jdk1.6.0.23-rpm.bin #Install</em></div>
<div id="_mcePaste"><em>updatedb; locate javac | grep bin  # this step merely serves to verify the installation</em></div>
<div id="_mcePaste"><em>/usr/sbin/alternatives &#8211;install /usr/bin/java java /usr/java/jdk1.6.0_23/bin/java 100</em></div>
<div id="_mcePaste"><em>/usr/sbin/alternatives &#8211;install /usr/bin/jar jar /usr/java/jdk1.6.0_23/bin/jar 100</em></div>
<div id="_mcePaste"><em>/usr/sbin/alternatives &#8211;install /usr/bin/javac javac /usr/java/jdk1.6.0_23/bin/javac 100</em></div>
<div id="_mcePaste"><em>/usr/sbin/alternatives &#8211;config java # Change the default JVM from gcj to Sun&#8217;s version (if needed)</em></div>
</blockquote>
<p><strong>* Install Tomcat on EC2 Instance</strong></p>
<div>* Download <a title="Tomcat 6.0 Download" href="http://tomcat.apache.org/download-60.cgi">Tomcat 6.0</a></div>
<blockquote>
<div id="_mcePaste"><em>mkdir /usr/tomcat</em></div>
<div id="_mcePaste"><em>cd /usr/tomcat</em></div>
<div id="_mcePaste"><em>curl http://apache.spd.co.il//tomcat/tomcat-6/v6.0.29/bin/apache-tomcat-6.0.29.tar.gz &gt; apache-tomcat-6.0.29.tar.gz</em></div>
<div id="_mcePaste"><em>tar zxvf apache-tomcat-6.0.29.tar.gz</em></div>
</blockquote>
<div>* Start Tomcat and to verify the installation, load the root page from a web browser: http://your_instance_name:8080</div>
<blockquote>
<div id="_mcePaste"><em>cd apache-tomcat-6.0.29</em></div>
<div id="_mcePaste"><em>bin/startup.sh  # Start Tomcat</em></div>
</blockquote>
<div>* Configure Tomcat to launch automatically - Create a file &#8220;/etc/rc.d/init.d/tomcat&#8221; with the following content:</div>
<blockquote>
<div id="_mcePaste"><em>#!/bin/sh</em></div>
<div id="_mcePaste"><em># Tomcat init script for Linux.</em></div>
<div id="_mcePaste"><em>#</em></div>
<div id="_mcePaste"><em># chkconfig: 2345 96 14</em></div>
<div id="_mcePaste"><em># description: The Apache Tomcat servlet/JSP container.</em></div>
<div id="_mcePaste"><em>JAVA_HOME=/usr/java/jdk1.6.0_23</em></div>
<div id="_mcePaste"><em>CATALINA_HOME=/usr/tomcat/apache-tomcat-6.0.29</em></div>
<div id="_mcePaste"><em>export JAVA_HOME CATALINA_HOME</em></div>
<div id="_mcePaste"><em>exec $CATALINA_HOME/bin/catalina.sh $*</em></div>
</blockquote>
<div>* Set the proper permissions for your init script and enable Tomcat for auto-launch:</div>
<blockquote>
<div id="_mcePaste"><em>chmod 755 /etc/rc.d/init.d/tomcat</em></div>
<div id="_mcePaste"><em>chkconfig &#8211;level 2345 tomcat on</em></div>
</blockquote>
<div>* Tomcat should now be automatically launched whenever your server restarts.</div>
<p>&nbsp;</p>
<p><strong>Are we there yet?</strong></p>
<div>It could be but apparently the plug-in was poorly designed to use none-configurable command lines so I needed to add the following &#8220;tricks&#8221;:</div>
<div>* Set JAVA_HOME / PATH for your user - Login to your account and change your .bash_profile file</div>
<blockquote>
<div id="_mcePaste"><em>vi ~/.bash_profile</em></div>
<div id="_mcePaste"><em>export JAVA_HOME=/usr/java/jdk1.6.0_23</em></div>
<div id="_mcePaste"><em>export CATALINA_HOME=/usr/tomcat/apache-tomcat-6.0.29</em></div>
</blockquote>
<div>* Create aliases to your Tomcat and JDK installation (these location are hard-coded in the plug-in)</div>
<blockquote>
<div><em>ln -s /usr/java/jdk1.6.0_23/ /env/jdk</em></div>
<div id="_mcePaste"><em>ln -s /usr/tomcat/apache-tomcat-6.0.29/ /env/tomcat</em></div>
</blockquote>
<div>The EC2 instance is ready :)</div>
<p>&nbsp;</p>
<p><strong>What next?</strong></p>
<div>* Create EBS Image AMI from your instance (it does takes couple of minutes to complete)<br />
* Open your eclipse and start a new AWS project as described in the original <a href="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=2241">link</a><br />
* Define a new EC2 Server in Eclipse using your new AMI (reminder: the default didn’t work)<br />
* Create your “Hello World!!!1” Servlet</div>
<blockquote>
<div id="_mcePaste"><em>protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {</em></div>
<div id="_mcePaste"><em>response.getWriter().println(&#8220;Hello World!!!1&#8243;);</em></div>
<div id="_mcePaste"><em>}</em></div>
</blockquote>
<div>* Click Run… this will automatically deploy your Servlet and run it on the remote EC2 instance… Wow :)</div>
<p>&nbsp;</p>
<p>That&#8217;s it &#8211; I hope this will help, it does take approx. 1 hour so if you know some other way to make it work, please don&#8217;t be shy and comment.</p>
<p><a href="http://blog.karmona.com/wp-content/uploads/2010/09/EC2.jpg"><img class="size-full wp-image-795 alignnone" title="Eclipse AWS Toolkit " src="http://blog.karmona.com/wp-content/uploads/2010/09/EC2.jpg" alt="" width="566" height="376" /></a></p>
<p><strong>Additional references I used to make it this far:</strong></p>
<div id="_mcePaste">* <a title="Setting up Java+Tomcat on EC2" href="http://sites.google.com/site/amistrongeryet/setting-up-java-tomcat-on-ec2">Setting up Java+Tomcat on EC2</a></div>
<div id="_mcePaste">* <a title="How to install Sun's JDK in Fedora 8 " href="http://alwajdi.blogspot.com/2007/12/how-to-install-snns-jdk-in-fedora-8.html">How to install Sun&#8217;s JDK in Fedora 8</a></div>
<div id="_mcePaste">* <a title="Apache Tomcat 6.0 documentation " href="http://tomcat.apache.org/tomcat-6.0-doc/index.html">Apache Tomcat 6.0 documentation</a></div>
<div id="_mcePaste">* <a title="Managing an Amazon EC2 Instance Using PuTTY SSH " href="http://www.keywordintellect.com/amazon-web-services/managing-an-amazon-ec2-instance-using-putty-ssh/">Managing an Amazon EC2 Instance Using PuTTY SSH</a></div>
<div id="_mcePaste">* <a title="AWS Toolkit for Eclipse " href="http://aws.amazon.com/eclipse/">AWS Toolkit for Eclipse</a></div>
<div id="_mcePaste">* <a title="Developing Java Web Applications with Apache Tomcat and AWS " href="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=2241">Developing Java Web Applications with Apache Tomcat and AWS</a></div>
<div id="_mcePaste">* <a title="Amazon EC2 - Getting Started Guide " href="http://docs.amazonwebservices.com/AmazonEC2/gsg/2006-06-26/">Amazon EC2 &#8211; Getting Started Guide</a></div>
<p>&nbsp;</p>
<p><strong>Free VI Tip for Dummies</strong></p>
<div id="_mcePaste">80% of knowing VI is just: ESC ESC ESC, i, Type-Your-Stuff, ESC ESC ESC, :wq!</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.karmona.com/index.php/2010/09/15/servlet-on-ec2-using-aws-toolkit-for-eclipse/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Head in the Clouds</title>
		<link>http://blog.karmona.com/index.php/2009/01/29/head-in-the-clouds/</link>
		<comments>http://blog.karmona.com/index.php/2009/01/29/head-in-the-clouds/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 19:37:51 +0000</pubDate>
		<dc:creator>Moti Karmona &#124; מוטי קרמונה</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Conspiracy]]></category>
		<category><![CDATA[Disruptive Technology]]></category>

		<guid isPermaLink="false">http://blog.karmona.com/?p=411</guid>
		<description><![CDATA[It seems like everywhere I go these days, people are talking about cloud computing&#8230; Would it be accurate to say that almost everyone are &#8220;fairly optimistic&#8221; regarding Cloud Computing? For your convenient, I have collected few cloud-buzz-quotes to  spice your cloud computing elevator pitch: According to Gartner: &#8220;Cloud computing heralds an evolution of business that [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.karmona.com/wp-content/uploads/2009/01/rene-magritte-la-condition-humaine-1933.jpg"><img class="alignleft size-thumbnail wp-image-412" title="La Condition Humaine | Rene Magritte, 1933" src="http://blog.karmona.com/wp-content/uploads/2009/01/rene-magritte-la-condition-humaine-1933-150x150.jpg" alt="La Condition Humaine | Rene Magritte, 1933" width="150" height="150" align="left" /></a>It seems like everywhere I go these days, people are talking about cloud computing&#8230; Would it be accurate to say that almost everyone are <em>&#8220;fairly optimistic&#8221;</em> regarding Cloud Computing?</p>
<p>For your convenient, I have collected few cloud-buzz-quotes to  spice your cloud computing elevator pitch:</p>
<ul>
<li>According to Gartner: <em><strong>&#8220;Cloud computing heralds an evolution of business that is no less influential than e-business&#8221;</strong></em></li>
</ul>
<ul>
<li>IDC on Cloud Computing: <strong><em>&#8220;This is about the IT industry&#8217;s new model for the next 20 years“</em></strong>, Vernon Turner, head of enterprise infrastructure, consumer and telecoms research.</li>
</ul>
<p><a href="http://blog.karmona.com/wp-content/uploads/2009/01/cloud-computing-the-latest-evolution-of-hosting.jpg"><img class="alignleft size-full wp-image-416" title="Cloud Computing The Latest Evolution of Hosting | Forrester Research" src="http://blog.karmona.com/wp-content/uploads/2009/01/cloud-computing-the-latest-evolution-of-hosting.jpg" alt="Cloud Computing The Latest Evolution of Hosting | Forrester Research" width="500" height="389" /></a></p>
<ul>
<li>Merrill Lynch estimates that <strong>by 2012, the annual global market for cloud computing will surge to $95 billion and that 12% of the worldwide software market would go to the cloud in that period</strong>.</li>
</ul>
<ul>
<li>In January of 2008 Amazon announced that the <strong>Amazon Web Services now consume more bandwidth than do the entire global network of Amazon.com retail sites</strong>&#8230;</li>
</ul>
<p><a href="http://blog.karmona.com/wp-content/uploads/2009/01/amazonaws_bandwidth.gif"><img class="alignleft size-full wp-image-413" title="Amazon Web Services Bandwidth" src="http://blog.karmona.com/wp-content/uploads/2009/01/amazonaws_bandwidth.gif" alt="Amazon Web Services Bandwidth" width="500" height="340" /></a></p>
<ul>
<li><strong><em>&#8220;…</em></strong> <em><strong>the new computing cloud age&#8221;</strong></em> Eric Schmidt (April, 2008)</li>
</ul>
<p>Do you happen to have more???</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.karmona.com/index.php/2009/01/29/head-in-the-clouds/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

