<?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>Cloud Pulse &#187; CloudCamp</title>
	<atom:link href="http://cloudpulseblog.com/category/cloudcamp/feed" rel="self" type="application/rss+xml" />
	<link>http://cloudpulseblog.com</link>
	<description>Blogging to the Beat of Cloud Computing</description>
	<lastBuildDate>Wed, 21 Jul 2010 02:45:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Introduction to MapReduce: Q&amp;A with Michael Groner</title>
		<link>http://cloudpulseblog.com/2009/12/introduction-to-mapreduce-qa-with-michael-groner</link>
		<comments>http://cloudpulseblog.com/2009/12/introduction-to-mapreduce-qa-with-michael-groner#comments</comments>
		<pubDate>Mon, 21 Dec 2009 15:15:38 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[CloudCamp]]></category>
		<category><![CDATA[MapReduce]]></category>
		<category><![CDATA[Michael Groner]]></category>

		<guid isPermaLink="false">http://cloudpulseblog.com/?p=708</guid>
		<description><![CDATA[At CloudCamp St. Louis, Michael Groner, my colleague at Appistry, gave a talk on the MapReduce framework. The 5-minute Lightening Talk was a condensed version of the 45-minute presentation he delivered originally at the St. Louis Lambda Lounge (a local group focused on dynamic and functional programming). You can check out his slides below.

Introducing Map [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>At CloudCamp St. Louis, <a href="http://tech.michaelgroner.com/">Michael Groner</a>, my colleague at Appistry, gave a talk on the MapReduce framework. The 5-minute Lightening Talk was a condensed version of the <a href="http://tech.michaelgroner.com/2009/11/18/mapreduce-talk-from-september-lambda-lounge/#more-659">45-minute presentation</a> he delivered originally at the St. Louis Lambda Lounge (a local group focused on dynamic and functional programming). You can check out his slides below.</p>
<div id="__ss_2756126" style="width: 425px; text-align: center;">
<p><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" title="Introducing Map Reduce: CloudCamp St. Louis 2009" href="http://www.slideshare.net/sam_at_appistry/introducing-map-reduce-cloudcamp-st-louis-2009-2756126">Introducing Map Reduce: CloudCamp St. Louis 2009</a></p>
<p><object style="margin: 0px;" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=20091208mapreducelt-091221000630-phpapp01&amp;rel=0&amp;stripped_title=introducing-map-reduce-cloudcamp-st-louis-2009-2756126" /><param name="allowfullscreen" value="true" /><embed style="margin: 0px;" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=20091208mapreducelt-091221000630-phpapp01&amp;rel=0&amp;stripped_title=introducing-map-reduce-cloudcamp-st-louis-2009-2756126" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="font-size: 11px; font-family: tahoma,arial; height: 26px; padding-top: 2px; text-align: center;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/sam_at_appistry">sam_at_appistry</a>.</div>
</div>
<p style="text-align: left;">Michael received great feedback on his presentation and generated a lot of interest in MapReduce. As a follow-up, I thought it would be nice to feature a brief Q&amp;A with him, which I present below:</p>
<p style="padding-left: 30px; text-align: left;"><strong>Sam: </strong>What is MapReduce?</p>
<p style="padding-left: 30px; text-align: left;"><strong>Michael: </strong>MapReduce is a software framework to support processing of massive data sets across distributed computers. MapReduce has its origins from functional programming where the  “map” and “reduce” operations assist developers in processing data sets easily. For applications requiring the translation of  gigabytes, terabytes, or even petabytes of data into usable data structures and then collecting to end results, MapReduce is a good candidate.</p>
<p style="padding-left: 30px; text-align: left;"><strong>Sam: </strong>Where did it come from? Is it new?</p>
<p style="padding-left: 30px; text-align: left;"><strong>Michael: </strong>MapReduce&#8217;s popularity surge started in 2004 with the publication of “<a href="http://labs.google.com/papers/mapreduce.html">MapReduce: Simplified Data Processing on Large Clusters</a>” by Google. In this paper Google illustrated the framework they use to construct an index of the internet through a simple programming paradigm.</p>
<p style="padding-left: 30px; text-align: left;"><strong>Sam: </strong>Why should people care? What does MapReduce have to do with cloud computing?</p>
<p style="padding-left: 30px; text-align: left;"><strong>Michael: </strong>This framework contains many of the key architecture principles promoted for cloud computing:</p>
<ul style="padding-left: 45px; padding-right: 15px; text-align: left;">
<li>Scale – The framework is able to grow and expand in direct proportion to the number of machine applied to the system.</li>
<li>Reliable – The framework is able to handle the loss of a node and restart the work somewhere else.</li>
<li>Affordable – As reliability is accounted for in the framework, commodity hardware can be used. As scale is accounted for, a user can start small and add additional hardware as necessary.</li>
<li>Simple – A user simply provides the implementation of a map and reduce function in order to process large quantities of data.</li>
</ul>
<p style="padding-left: 30px; text-align: left;">Due to these principles, the MapReduce framework has become one of the most popular platform tools for building cloud applications.</p>
<p style="padding-left: 30px; text-align: left;"><strong>Sam: </strong>Can you give us some examples of who is using it?</p>
<p style="padding-left: 30px; text-align: left;"><strong>Michael: </strong>MapReduce applications are used in by companies like Google, Yahoo, Visa, and the intelligence community, among others, to produce results from the large data sets they produce.</p>
<p style="padding-left: 30px; text-align: left;"><strong>Sam: </strong>How should someone go about learning more?</p>
<p style="padding-left: 30px; text-align: left;"><strong>Michael: </strong>To learn more I suggest reading the <a href="http://labs.google.com/papers/mapreduce.html">original Google paper</a> and looking into a MapReduce framework such as the <a href="http://hadoop.apache.org/">Apache Hadoop</a> project.</p>
<p>Thanks, Michael!</p>
<p>Are you using MapReduce? We would love to hear your experiences with it!</p>
]]></content:encoded>
			<wfw:commentRss>http://cloudpulseblog.com/2009/12/introduction-to-mapreduce-qa-with-michael-groner/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CloudCamp St. Louis &#8211; Looking Backward, Looking Forward</title>
		<link>http://cloudpulseblog.com/2009/12/cloudcamp-st-louis-looking-backward-looking-forward</link>
		<comments>http://cloudpulseblog.com/2009/12/cloudcamp-st-louis-looking-backward-looking-forward#comments</comments>
		<pubDate>Tue, 15 Dec 2009 14:05:32 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[CloudCamp]]></category>

		<guid isPermaLink="false">http://cloudpulseblog.com/?p=691</guid>
		<description><![CDATA[Last week Thursday, the St. Louis cloud computing community came together for our first CloudCamp. If you caught any of my previous posts you know that excitement was really mounting in the run-up to the event, with the event selling out and sponsors signing on practically up to the very last minute. Well, the event [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Last week Thursday, the St. Louis cloud computing community came together for our first <a href="http://www.cloudcamp.com/stlouis">CloudCamp</a>. If you caught any of my <a href="http://cloudpulseblog.com/category/cloudcamp">previous posts</a> you know that excitement was really mounting in the run-up to the event, with the event selling out and sponsors signing on practically up to the very last minute. Well, the event itself didn&#8217;t fail to deliver on our expectations. Not by a long shot. CloudCamp St. Louis was a smashing success!</p>
<h2><a href="http://cloudpulseblog.com/wp-content/uploads/2009/12/IMG_1801.jpg"><img class="alignright size-medium wp-image-698" title="CloudCamp St. Louis Networking" src="http://cloudpulseblog.com/wp-content/uploads/2009/12/IMG_1801-200x300.jpg" alt="CloudCamp St. Louis Networking" width="200" height="300" /></a></h2>
<p><strong>Congratulations St. Louis, on hosting your first CloudCamp, and thanks to everyone who sponsored, assisted with and attended the event!</strong></p>
<p>Based on our estimates, over 130 people attended the event. The estimate isn&#8217;t <em>too</em> fuzzy, since we had 120 chairs in the main room and there were people lining the walls. This was 90%+ of the number of pre-registered attendees, which is much higher than typically seen in other cities. It&#8217;s a good thing we upped our catering number at the last minute. (We were fortunate to have had a very <a href="http://www.hollyberrycatering.com/">flexible and capable caterer</a>.)</p>
<p>We anticipated a diverse crowd at the event, and this was confirmed by the show-of-hands poll I took at the opening of the event. Our audience identified themselves as approximately 40% developers, 40% IT infrastructure folks, 10% IT management and 10% business management. When asked how many of the audience had ever participated in an unconference, only a handful of people raised their hands. (At which point, I knew we were in for a fun night!)</p>
<h2>Lightening Talks</h2>
<p>There were four Lightening Talks featured at the event.</p>
<ul>
<li> Mike Bradley from Rackspace on The Rackspace Cloud</li>
<li> Brian Blanchard on behalf of Microsoft, on Windows Azure</li>
<li> Alex Miller, with a community on Distributed Caching in the Cloud</li>
<li> Michael Groner, with a community talk on Map Reduce and Cloud Computing</li>
</ul>
<p>I&#8217;ll be posting or pointing to these slide decks soon.</p>
<p style="text-align: left;">The first couple of lightening talks went a bit over the allotted 5-minutes and were each very focused on a specific vendor offering. The latter two in contrast were minimally promotional and <a href="http://twitter.com/blordcastillo/statuses/6551830887">very</a> <a href="http://twitter.com/meporter/statuses/6551306027">well</a> <a href="http://twitter.com/meporter/statuses/6551645971">received</a> by attendees. I&#8217;m not trying to call anyone out here, but it&#8217;s worth mentioning that as an organizer, balancing the needs and desires of the sponsors against the needs and desires of the attendees is one of the most challenging aspects of running a CloudCamp.<a href="http://cloudpulseblog.com/wp-content/uploads/2009/12/IMG_1864.JPG"><img class="aligncenter size-medium wp-image-696" title="Rackspace Lightening Talk - CloudCamp St. Louis" src="http://cloudpulseblog.com/wp-content/uploads/2009/12/IMG_1864-300x200.jpg" alt="IMG_1864" width="300" height="200" /></a></p>
<p>Kyle Cordes, himself a sponsor through his company <a href="http://www.oasisdigital.com">Oasis Digital</a> <a href="http://twitter.com/kylecordes/status/6567639982">suggested</a> that each sponsor be given one slide and 10 seconds of pitch-time, max. I think this is a bit extreme, but I could go for 30 to 60 seconds. Anything beyond should be strictly educational and non-promotional and vetted beforehand as such. Thoughts on this?</p>
<h2>Unpanel</h2>
<p>After the lightening talks we held the Unpanel. The Unpanel &#8212; a bit of a CloudCamp tradition at this point &#8212; is a panel discussion in which audience members are selected as panelists and the audience also comes up with questions for the panel. The Unpanel is a great way to get folks&#8217; juices flowing and into the unconference groove.</p>
<p><a href="http://cloudpulseblog.com/wp-content/uploads/2009/12/IMG_1881.JPG"><img class="size-medium wp-image-697 alignright" title="CloudCamp St. Louis Unpanel" src="http://cloudpulseblog.com/wp-content/uploads/2009/12/IMG_1881-198x300.jpg" alt="CloudCamp St. Louis Unpanel" width="198" height="300" /></a>After a bit of prodding, we identified the panel and presented them with a pretty broad array of questions, including:</p>
<ul>
<li>Will we run out of bandwidth for cloud computing?</li>
<li>How to address security in the cloud?</li>
<li>How to migrate in/out of the cloud?</li>
<li>How to address compliance in the cloud?</li>
<li>How to address fraud in the cloud?</li>
</ul>
<p>As you can imagine, none of these questions was fully addressed in the brief time each panelist was given to speak, but we accomplished the mission of spurring on discussion, at several points getting dangerously close to veering off into outright debate. (The relationship between virtualization and cloud computing was a particularly contentious issue.)</p>
<h2>Breakout Sessions</h2>
<p>We then channeled our creative and argumentative energy into the choosing and participating in breakout sessions. We had time for two consecutive rounds of breakouts, and access to six rooms of varying sizes, though we only ever needed four at once.</p>
<p>Before breaking up, we identified these sessions:</p>
<p>First round:</p>
<ul>
<li>The Enterprise Cloud Use-Case Panel</li>
<li>Cloud Infrastructure</li>
<li>Big Fail in the Cloud</li>
<li>Fraud in the Cloud</li>
</ul>
<p>Second round:</p>
<ul>
<li>Software Development Perspectives: Idioms, Architectures, Patterns for Cloud Computing</li>
<li>Virtualization and Cloud</li>
<li>Building Clouds</li>
<li>Cloud Data and Storage</li>
</ul>
<h2><a href="http://cloudpulseblog.com/wp-content/uploads/2009/12/IMG_0209.jpg"><img class="aligncenter size-medium wp-image-699" title="CloudCamp St. Louis 2009 Breakout" src="http://cloudpulseblog.com/wp-content/uploads/2009/12/IMG_0209-300x200.jpg" alt="CloudCamp St. Louis 2009 Breakout" width="300" height="200" /></a></h2>
<p>The majority of attendees attended the first two sessions on each list, which were held in the biggest rooms. In fact, the latter two sessions of the second round never really got any steam, and the folks interested in them either mingled in the food area or went to one of the two major sessions.</p>
<p>I spent most of my time in the Enterprise Use-Case Panel and the Software Development Perspectives sessions, both very well attended and quite interesting, but found myself popping in and out of each of the sessions each round, just to ensure all was going smoothly.</p>
<h2>Looking Forward: Cloud Computing in St. Louis</h2>
<p>After the breakouts, we pulled everyone back together for a brief wrap-up. We got a quick rundown from an attendee of each breakout. The energy was still high and we a pretty big crowd remained, considering it was 10pm.</p>
<p>Before leaving, I asked about interest in future CloudCamps and the possibility of starting up a cloud computing users group and there was strong interest in both. I&#8217;m excited to announce here that the <a href="http://stlcloudusers.org/">St. Louis Cloud Computing User Group</a> is now forming. Contact me if you&#8217;re interested in helping out or participating, and stay tuned for more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://cloudpulseblog.com/2009/12/cloudcamp-st-louis-looking-backward-looking-forward/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CloudCamp St. Louis Nearly Sold Out; Rackspace and Microsoft Join on as Sponsors</title>
		<link>http://cloudpulseblog.com/2009/12/cloudcamp-st-louis-nearly-sold-out-rackspace-and-microsoft-join-on-as-sponsors</link>
		<comments>http://cloudpulseblog.com/2009/12/cloudcamp-st-louis-nearly-sold-out-rackspace-and-microsoft-join-on-as-sponsors#comments</comments>
		<pubDate>Thu, 10 Dec 2009 14:32:39 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[CloudCamp]]></category>

		<guid isPermaLink="false">http://cloudpulseblog.com/?p=685</guid>
		<description><![CDATA[I&#8217;m just back to St. Louis from Las Vegas, where I&#8217;ve spent the last couple of days at the Gartner Application Architecture, Development and Integration show. I may get a post up about that later this evening, but honestly my mind is pretty squarely occupied with this evening&#8217;s CloudCamp, which I&#8217;m really looking forward to.
I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I&#8217;m just back to St. Louis from Las Vegas, where I&#8217;ve spent the last couple of days at the Gartner Application Architecture, Development and Integration show. I may get a post up about that later this evening, but honestly my mind is pretty squarely occupied with this evening&#8217;s CloudCamp, which I&#8217;m really looking forward to.</p>
<p><a href="http://www.flickr.com/photos/singapore_spur/3320786926/"><img class="alignright size-medium wp-image-686" title="I Need a Ticket" src="http://cloudpulseblog.com/wp-content/uploads/2009/12/ineedaticket-300x225.jpg" alt="I Need a Ticket" width="270" height="203" /></a>I&#8217;m excited to announce that we are down to single digits in terms of the number of &#8220;tickets&#8221; remaining, having long since exceeded our initial projections, which we thought were aggressive given the lead time, time of year, and all the other factors that we fretted over while deciding to do the event.</p>
<p>This is great news!</p>
<p>The other great news is that we&#8217;ve upped our catering order, and plan to make sure everyone is well fed and, er, &#8220;socially lubricated.&#8221;</p>
<p>We&#8217;re dependent on sponsors to make that possible, and we&#8217;re excited to announce that Rackspace and Microsoft have signed on over the past couple of days as Gold sponsors. Thank you both!</p>
<p>See you this evening!</p>
]]></content:encoded>
			<wfw:commentRss>http://cloudpulseblog.com/2009/12/cloudcamp-st-louis-nearly-sold-out-rackspace-and-microsoft-join-on-as-sponsors/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CloudCamp St. Louis: New Sponsors, More Attendees, Additional Event Details</title>
		<link>http://cloudpulseblog.com/2009/12/cloudcamp-st-louis-new-sponsors-more-attendees-additional-event-details</link>
		<comments>http://cloudpulseblog.com/2009/12/cloudcamp-st-louis-new-sponsors-more-attendees-additional-event-details#comments</comments>
		<pubDate>Tue, 08 Dec 2009 03:14:57 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[CloudCamp]]></category>

		<guid isPermaLink="false">http://cloudpulseblog.com/?p=673</guid>
		<description><![CDATA[Momentum continues to build towards CloudCamp St. Louis, which is just a few days away. Today we signed up a couple of new sponsors, Contegix and Datotel, who join Appistry, Savvis, Hexagrid and Oasis Digital in supporting the camp and the STL cloud computing community.
Over the weekend registration shot up by over 20%, and as [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a rel="attachment wp-att-678" href="http://cloudpulseblog.com/2009/12/cloudcamp-st-louis-new-sponsors-more-attendees-additional-event-details/cloudcamp_stl_small"><img class="alignright size-full wp-image-678" title="CloudCamp St. Louis Logo" src="http://cloudpulseblog.com/wp-content/uploads/2009/12/cloudcamp_stl_small.png" alt="CloudCamp St. Louis Logo" width="175" height="51" /></a>Momentum continues to build towards <a href="http://www.cloudcamp.com/stlouis">CloudCamp St. Louis</a>, which is just a few days away. Today we signed up a couple of new sponsors, <a href="http://www.contegix.com/">Contegix</a> and <a href="http://www.datotel.com/">Datotel</a>, who join <a href="http://www.appistry.com">Appistry</a>, <a href="http://www.savvis.com">Savvis</a>, <a href="http://www.hexagrid.com">Hexagrid</a> and <a href="http://www.oasisdigital.com">Oasis Digital</a> in supporting the camp and the STL cloud computing community.</p>
<p>Over the weekend registration shot up by over 20%, and as of this writing we&#8217;re now one registrant shy of 120. (Will you be lucky number 120, 130 or 150? Register now and see. <img src='http://cloudpulseblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> )</p>
<p>Finally, we&#8217;re announcing the details of an exciting session we will be conducting at the event.</p>
<p>One of the complaints most often heard from potential enterprise users of cloud computing is the dearth of case studies available about what other enterprises are doing. To this end, at CloudCamp St. Louis we will be hosting an &#8220;<strong>Enterprise Use-Case Roundtable</strong>&#8221; which will explore a series of case studies detailing the experiences of enterprise customers in adopting cloud technologies. The Roundtable will consist of a series of brief case-study presentations, followed by a moderated panel discussion through which attendees and panelists will engage in a broader discussion about enterprise cloud computing adoption.</p>
<p>Roundtable panelists include <a href="http://thoughtsoncomputing.com/"><strong>Bob Lozano</strong></a>, founder and chief strategist of Appistry, and author of the forthcoming <a href="http://www.execsguidetocloud.com/">Executive&#8217;s Guide to Cloud Computing</a> (Wiley, April 2010); <a href="http://www.queuefull.net/~bensons/">Benson Schleisser</a>, technical vice president for Savvis, whose work has been instrumental in the launch of Savvis&#8217; own cloud computing offering; and Suresh Mandava, founder and CEO of Hexagrid, who has 20 years of experience as an infrastructure architect of large data center environments at enterprises such as MasterCard and ExpressScripts.</p>
<p>(I&#8217;d love to moderate this panel, but I suspect I may have my hands full on Thursday. I&#8217;m still looking for someone to do it, so if you&#8217;ve got any ideas let me know!)</p>
<p>We&#8217;re excited about the Roundtable and the ability to highlight some real-life customer experiences at the event. We&#8217;re also very thankful for the support of CCSTL Platinum sponsors Appistry, Savvis and Hexagrid, without whom the Roundtable would not be possible, and whose support of the event as a whole has been outstanding.</p>
<p><strong>Update:</strong> While writing this post, lucky number 120 checked in!</p>
]]></content:encoded>
			<wfw:commentRss>http://cloudpulseblog.com/2009/12/cloudcamp-st-louis-new-sponsors-more-attendees-additional-event-details/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CloudCamp St. Louis &#8211; A Long Time Coming, a Short Time Until</title>
		<link>http://cloudpulseblog.com/2009/12/cloudcamp-st-louis-a-long-time-coming-a-short-time-until</link>
		<comments>http://cloudpulseblog.com/2009/12/cloudcamp-st-louis-a-long-time-coming-a-short-time-until#comments</comments>
		<pubDate>Fri, 04 Dec 2009 15:30:26 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[CloudCamp]]></category>

		<guid isPermaLink="false">http://cloudpulseblog.com/?p=658</guid>
		<description><![CDATA[In many ways, CloudCamp St. Louis has been well over a year in the making. It&#8217;s been something I&#8217;ve been dying to do since Ruv, Dave, Jesse, Sara and I did the very first camp in San Francisco, back on June of &#8216;08. The first discussions about it between Benson and I were later that [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>In many ways, CloudCamp St. Louis has been well over a year in the making. It&#8217;s been something I&#8217;ve been dying to do since Ruv, Dave, Jesse, Sara and I did the very first camp in San Francisco, back on June of &#8216;08. The first discussions about it between <a href="http://www.queuefull.net/~bensons/">Benson</a> and I were later that summer, but alas life (work, really) happens.</p>
<p><a rel="attachment wp-att-660" href="http://cloudpulseblog.com/2009/12/cloudcamp-st-louis-a-long-time-coming-a-short-time-until/cloudcamp_stl"><img class="alignright size-medium wp-image-660" title="CloudCamp St. Louis" src="http://cloudpulseblog.com/wp-content/uploads/2009/12/cloudcamp_stl-300x87.png" alt="CloudCamp St. Louis" width="300" height="87" /></a>I suppose I&#8217;ve always felt a bit guilty that we hadn&#8217;t done one here in St. Louis yet, given all the work I&#8217;ve done with CloudCamp the organization and helping to put on CloudCamps in other folks&#8217; cities. I&#8217;ve kind of considered it one of those &#8220;cobbler&#8217;s children&#8221; kinds of situations, i.e. they go barefooted. (My buddy Gary Woodcock over at <a href="http://www.hexagrid.com">Hexagrid</a> calls it establishing &#8220;band cred&#8221; &#8212; making it big someplace else and then rocking out back home. Works for me.)</p>
<p>Needless to say, I was pumped when Benson, Ken and I finally decided to &#8220;just do it&#8221; a little less than a month ago and committed to pull together CloudCamp St. Louis under a very aggressive time table.</p>
<p>It&#8217;s been a blast so far, and we&#8217;re just under a week from the big day.</p>
<p>The community has really rallied behind the event. We&#8217;ve got great corporate sponsors, including <a href="http://www.savvis.com">Savvis</a>, <a href="http://www.hexagrid.com">Hexagrid</a>, <a href="http://www.oasisdigital.com">Oasis Digital</a> and of course <a href="http://www.appistry.com">Appistry</a>, with more to come. And we&#8217;re also supported by a number of local groups, including the <a href="http://lambdalounge.org">St. Louis Lambda Lounge</a>, a group focused on functional programming languages, the St. Louis-based <a href="http://www.thestrangeloop.com/">Strange Loop</a> conference, and the <a href="http://java.ociweb.com/javasig/">St. Louis Java Users Group</a>.</p>
<p>And we&#8217;re quickly approaching 100 pre-registered attendees. Woo hoo!</p>
<p>So, please join us on Thursday evening, December 10th, at 6pm for CloudCamp St. Louis. The more the merrier. The event promises to offer a fantastic evening of cloud computing education, discussion and networking (and of course food and drink!!) You&#8217;re guaranteed to have a great time, or your money back!!! (By the way, it&#8217;s totally FREE. <img src='http://cloudpulseblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><a href="http://cloudcamp-stlouis-09.eventbrite.com/"><img class="alignnone" title="Register Now for CloudCamp St. Louis" src="http://www.eventbrite.com/static/images/button_ext/register.gif" alt="" width="115" height="28" /></a></p>
<p>See you at CloudCamp!</p>
]]></content:encoded>
			<wfw:commentRss>http://cloudpulseblog.com/2009/12/cloudcamp-st-louis-a-long-time-coming-a-short-time-until/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CloudCamp Announces CloudCamp in the Cloud</title>
		<link>http://cloudpulseblog.com/2009/10/cloudcamp-announces-cloudcamp-in-the-cloud</link>
		<comments>http://cloudpulseblog.com/2009/10/cloudcamp-announces-cloudcamp-in-the-cloud#comments</comments>
		<pubDate>Mon, 05 Oct 2009 17:27:45 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[CloudCamp]]></category>

		<guid isPermaLink="false">http://cloudpulseblog.com/?p=641</guid>
		<description><![CDATA[I just posted the official announcement of &#8220;CloudCamp in the Cloud,&#8221; our upcoming virtual unconference. Please help spread the word!

CloudCamp Announces “CloudCamp in the Cloud” – First-Ever Virtual Unconference
October 5, 2009 – CloudCamp, organizer of the community-based cloud computing unconference series, today announced that it’s taking its popular event series virtual with the forthcoming “CloudCamp [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I just posted the official announcement of &#8220;CloudCamp in the Cloud,&#8221; our upcoming virtual unconference. Please help spread the word!</p>
<blockquote>
<p align="center"><span style="font-family: Calibri,Verdana,Helvetica,Arial;"><span style="font-size: 12pt;"><strong>CloudCamp Announces “CloudCamp in the Cloud” – First-Ever Virtual Unconference</strong></span></span></p>
<p><span style="font-family: Calibri,Verdana,Helvetica,Arial;"><span style="font-size: 12pt;"><strong>October 5, 2009</strong> – CloudCamp, organizer of the community-based cloud computing unconference series, today announced that it’s taking its popular event series virtual with the forthcoming “<a rel="nofollow" href="http://bit.ly/3wBgyI">CloudCamp in the Cloud</a>.” CloudCamp in the Cloud, to be held Thursday, October 22, 2009 from 12 noon to 3 pm Eastern Standard Time, builds upon the original live CloudCamp format providing a free and open place for the introduction and advancement of cloud computing. Using an online meeting format, attendees will exchange ideas, knowledge and information in a creative and supporting environment, advancing the current state of cloud computing and related technologies.</span></span></p>
<p>There are a number of opportunities to get involved with CloudCamp in the Cloud:</p>
<ul>
<li><span style="font-family: Calibri,Verdana,Helvetica,Arial;"><span style="font-size: 12pt;"><strong>ATTEND</strong> – Attending CloudCamp in the Cloud is free, fun and informative. Register now at <a rel="nofollow" href="http://bit.ly/UKbc1">http://bit.ly/UKbc1</a>. </span></span></li>
<li><span style="font-family: Calibri,Verdana,Helvetica,Arial;"><span style="font-size: 12pt;"><strong>PRESENT</strong> – CloudCamp in the Cloud encourages community presentations. If you have a cloud-related topic to discuss, visit the <a rel="nofollow" href="http://bit.ly/2NNh5l">topics</a> page to submit a proposal. </span></span></li>
<li><span style="font-family: Calibri,Verdana,Helvetica,Arial;"><span style="font-size: 12pt;"><strong>SPONSOR</strong> – CloudCamp depends on corporate sponsors who provide financial assistance and other valuable donations. Current CloudCamp in the Cloud sponsors include Citrix, Enomaly and Appistry. If you would like to sponsor CloudCamp in the Cloud, please contact Reuven Cohen. </span></span></li>
<li><span style="font-family: Calibri,Verdana,Helvetica,Arial;"><span style="font-size: 12pt;"><strong>ORGANIZE</strong> – CloudCamp is a non-profit, volunteer-driven organization. If you&#8217;d like to help facilitate CloudCamp in the Cloud, letting us know about your interest by emailing <a rel="nofollow" href="http://groups.google.com/group/cloudcamp/web/cloudcamp@googlegroups.com">cloudcamp@googlegroups.com</a>. </span></span></li>
<li><span style="font-family: Calibri,Verdana,Helvetica,Arial;"><span style="font-size: 12pt;"><strong>SPREAD THE WORD </strong>– Help share the news about CloudCamp in the Cloud, by retweeting this announcement (hashtag: #cloudcamp), blogging about the event, and linking to the <a rel="nofollow" href="http://bit.ly/3wBgyI">main information page</a>.<br />
</span></span></li>
</ul>
<p><span style="font-family: Calibri,Verdana,Helvetica,Arial;"><span style="font-size: 12pt;"><br />
<strong>Related Links<br />
</strong>[1] <a rel="nofollow" href="http://bit.ly/UKbc1">http://bit.ly/UKbc1</a> [CloudCamp in the Cloud Registration]<br />
[2] <a rel="nofollow" href="http://twitter.com/cloudcamp">http://twitter.com/cloudcamp</a> [CloudCamp on Twitter]<br />
[3] <a rel="nofollow" href="http://www.facebook.com/group.php?gid=10128776220">http://www.facebook.com/group.php?gid=10128776220</a> [CloudCamp on Facebook]</span></span></p>
<p><strong>Contacts<br />
</strong>Program</p>
<ul>
<li><span style="font-family: Calibri,Verdana,Helvetica,Arial;"><span style="font-size: 12pt;">Dave Nielsen, (415) 531-6674, dave -at- platformd -dot- com<br />
</span></span></li>
</ul>
<p><span style="font-family: Calibri,Verdana,Helvetica,Arial;"><span style="font-size: 12pt;">Sponsorships:<br />
</span></span></p>
<ul>
<li><span style="font-family: Calibri,Verdana,Helvetica,Arial;"><span style="font-size: 12pt;">Reuven Cohen, (<span style="color: #131313;">212) 203 4734 x102</span>, ruv -at- enomaly -dot- com<br />
</span></span></li>
</ul>
<p><span style="font-family: Calibri,Verdana,Helvetica,Arial;"><span style="font-size: 12pt;">Media:<br />
</span></span></p>
<ul>
<li><span style="font-family: Calibri,Verdana,Helvetica,Arial;"><span style="font-size: 12pt;">Sam Charrington, (415) 727-1850, sam -at- appistry -dot- com<br />
</span></span></li>
</ul>
<p><span style="font-family: Calibri,Verdana,Helvetica,Arial;"><span style="font-size: 12pt;"><br />
<strong>About CloudCamp<br />
</strong>CloudCamp was formed in 2008 in order to provide a common ground for the introduction and advancement of cloud computing. Through a series of local CloudCamp events, attendees can exchange ideas, knowledge and information in a creative and supporting environment, advancing the current state of cloud computing and related technologies. CloudCamp has served over 5,000 CloudCampers in more than 50 events all over world, in cities like Amsterdam, Antwerp, Bangalore, Berlin, London, New York, San Francisco, Stockholm and Singapore.</span></span></p></blockquote>
<p>via <a href="http://groups.google.com/group/cloudcamp/web/cloudcamp-announces-cloudcamp-in-the-cloud">CloudCamp Announces CloudCamp in the Cloud &#8211; CloudCamp | Google Groups</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://cloudpulseblog.com/2009/10/cloudcamp-announces-cloudcamp-in-the-cloud/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In Vegas for CloudCamp, Enterprise Cloud Summit, Interop</title>
		<link>http://cloudpulseblog.com/2009/05/vegas-cloudcamp-enterprise-cloud-summit-interop</link>
		<comments>http://cloudpulseblog.com/2009/05/vegas-cloudcamp-enterprise-cloud-summit-interop#comments</comments>
		<pubDate>Mon, 18 May 2009 03:17:03 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[CloudCamp]]></category>
		<category><![CDATA[Events]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>I'm in Las Vegas for the next couple days for the Enterprise Cloud Summit, and to help out with the CloudCamp we're holding there Monday evening. If you're around, <a href="http://twitter.com/samcharrington">ping me</a> -- I'd love to meet you.</p>]]></description>
			<content:encoded><![CDATA[<p></p><p>I&#8217;m in Las Vegas for the next couple days for the Enterprise Cloud Summit, and to help out with the CloudCamp we&#8217;re holding there Monday evening. If you&#8217;re around, <a href="http://twitter.com/samcharrington">ping me</a> &#8212; I&#8217;d love to meet you.</p>
]]></content:encoded>
			<wfw:commentRss>http://cloudpulseblog.com/2009/05/vegas-cloudcamp-enterprise-cloud-summit-interop/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video: Appistry and Cloud Platforms in Under 5 Minutes</title>
		<link>http://cloudpulseblog.com/2008/12/video-appistry-and-cloud-platforms-under-5-minutes</link>
		<comments>http://cloudpulseblog.com/2008/12/video-appistry-and-cloud-platforms-under-5-minutes#comments</comments>
		<pubDate>Fri, 05 Dec 2008 14:03:41 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Appistry]]></category>
		<category><![CDATA[Cloud Platforms]]></category>
		<category><![CDATA[CloudCamp]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Our partners over at <a href="http://www.apptis.com">Apptis</a> were kind enough to post video footage from the recent <em>CloudCamp Federal </em>event. At the beginning of the event, each of the sponsors was given the opportunity to present a five-minute "Lightening Talk" on some aspect of cloud computing and where they fit in the big picture. My session is posted below. ]]></description>
			<content:encoded><![CDATA[<p></p><p>Our partners over at <a href="http://www.apptis.com">Apptis</a> were kind enough to post video footage from the recent <em>CloudCamp Federal </em>event. At the beginning of the event, each of the sponsors was given the opportunity to present a five-minute &#8220;Lightening Talk&#8221; on some aspect of cloud computing and where they fit in the big picture. My session is posted below. At the end of the video you&#8217;ll have the opportunity to review the other presentations from the event.</p>
<p>&#160;<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/oOT5HhiWpE8&amp;hl=en&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/oOT5HhiWpE8&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>The slides are a bit difficult to make out, so I&#8217;ve included them below as well.</p>
<div id="__ss_821933" style="width: 425px; text-align: left"><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=cloudcamp-lightening-talk-1228495916271468-9&amp;stripped_title=cloud-camp-lightening-talk-presentation" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=cloudcamp-lightening-talk-1228495916271468-9&amp;stripped_title=cloud-camp-lightening-talk-presentation" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size: 11px; padding-top: 2px; font-family: tahoma,arial; height: 26px">View SlideShare <a title="View Cloud Camp Lightening Talk on SlideShare" style="text-decoration: underline" href="http://www.slideshare.net/sam_at_appistry/cloud-camp-lightening-talk-presentation?type=powerpoint">presentation</a> or <a style="text-decoration: underline" href="http://www.slideshare.net/upload?type=powerpoint">Upload</a> your own. (tags: <a style="text-decoration: underline" href="http://slideshare.net/tag/application">application</a> <a style="text-decoration: underline" href="http://slideshare.net/tag/cloud">cloud</a>)</div>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://cloudpulseblog.com/2008/12/video-appistry-and-cloud-platforms-under-5-minutes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Results Are In: First-Ever Appistry/CloudCamp Cloud Community Survey</title>
		<link>http://cloudpulseblog.com/2008/11/results-are-first-ever-appistrycloudcamp-cloud-community-survey</link>
		<comments>http://cloudpulseblog.com/2008/11/results-are-first-ever-appistrycloudcamp-cloud-community-survey#comments</comments>
		<pubDate>Tue, 18 Nov 2008 11:33:46 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Appistry]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[CloudCamp]]></category>
		<category><![CDATA[Markets]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[With the U.S. presidential elections in the not-too-distant past, I thought it would be a timely opportunity to highlight a few of the results of a survey we conducted at the recent <a href="/blog/application-development-cloud-and-more-cloudcamp-silicon-valley-review">CloudCamp Silicon Valley</a>. ]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.appistry.com/go/inside-the-cloud" target="_blank"><img title="inside-the-cloud-sv" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 25px 0px 0px; border-right-width: 0px" height="151" alt="inside-the-cloud-sv" src="/wp-content/uploads/2008/11/inside-the-cloud-sv_5.png" width="198" align="left" border="0" /></a>&#160; With the U.S. presidential elections in the not-too-distant past, I thought it would be a timely opportunity to highlight a few of the results of a survey we conducted at the recent <a href="/blog/application-development-cloud-and-more-cloudcamp-silicon-valley-review">CloudCamp Silicon Valley</a>. The <a href="http://www.appistry.com/go/inside-the-cloud" target="_blank">survey is part of a series dubbed &#8220;Inside the Cloud&#8221;</a> and is an effort to gauge the impact of cloud computing on the cloud community in general, and those attending CloudCamp particular, as well as uncover the issues and opportunities cloud presents. </p>
<p>We had 61 CloudCampers respond to the Silicon Valley survey, representing a mix of providers and consultants (and the ever elusive &quot;other&quot;). Through the survey, they provided feedback on cloud leadership, market conditions, innovation, challenges to cloud adoption, critical cloud attributes, and relevant cloud applications. </p>
<p>Some of the key findings include:&#160; </p>
<ul>
<li>Amazon is perceived as leading the race for cloud king, besting Google by a 2-1 margin. </li>
<li>Respondents expect an uptick in cloud interest as a result of the current state of the economy. </li>
<li>Infrastructure is currently seen as the source of the most innovation in cloud computing right now. </li>
<li>Cloud computing&#8217;s &quot;Big Three&quot; &#8212; security, reliability and scalability &#8212; continue to haunt developers&#8217; dreams. </li>
<li>There remains a considerable amount of uncertainty around what applications will win the cloud race. </li>
</ul>
<p>The full <a href="http://www.appistry.com/go/inside-the-cloud">survey report</a> was released today complete with deeper analysis and statistics. You can read the <a href="http://www.appistry.com/news/press11182008-appistry-cloudcamp-survey-shows-amazon-leading-race-for-cloud-king">press release here</a>.</p>
<p>Have a question you&#8217;d like to submit for consideration in the next &quot;Inside the Cloud&quot; survey? Post a comment to let me know.</p>
<p>P.S. We&#8217;re tallying the results of a similar survey conducted at <a href="http://www.cloudcamp.com/dc">CloudCamp Federal in Washington, DC</a>, which focused on the unique challenges and opportunities for cloud computing in the federal market (more to follow in a future post).</p>
]]></content:encoded>
			<wfw:commentRss>http://cloudpulseblog.com/2008/11/results-are-first-ever-appistrycloudcamp-cloud-community-survey/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Application Development in the Cloud and More: CloudCamp Silicon Valley in Review</title>
		<link>http://cloudpulseblog.com/2008/10/application-development-cloud-and-more-cloudcamp-silicon-valley-review</link>
		<comments>http://cloudpulseblog.com/2008/10/application-development-cloud-and-more-cloudcamp-silicon-valley-review#comments</comments>
		<pubDate>Fri, 17 Oct 2008 15:43:57 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[CloudCamp]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I can't believe it's taken me so long to post about the amazing <a href="/blog/cloudcamp-silicon-valley-call-participants">CloudCamp Silicon Valley</a> event we held a couple of weeks ago. But there's no better time than the present, especially since it gives me a chance to plug next week's <a href="http://cloudcamp-chicago-08.eventbrite.com/">CloudCamp Chicago</a>. ]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="/wp-content/uploads/2008/10/CIMG0650.jpg"><img title="CIMG0650" style="border-right: 0px; border-top: 0px; display: inline; margin: 0px 0px 0px 15px; border-left: 0px; border-bottom: 0px" height="184" alt="CIMG0650" src="/wp-content/uploads/2008/10/CIMG0650_thumb.jpg" width="244" align="right" border="0" /></a> I can&#8217;t believe it&#8217;s taken me so long to post about the amazing <a href="/blog/cloudcamp-silicon-valley-call-participants">CloudCamp Silicon Valley</a> event we held a couple of weeks ago. But there&#8217;s no better time than the present, especially since it gives me a chance to plug next week&#8217;s <a href="http://cloudcamp-chicago-08.eventbrite.com/">CloudCamp Chicago</a>. </p>
<p>CloudCamp Silicon Valley was held at Sun&#8217;s executive briefing center in Menlo Park on September 30th. The EBC is an amazing facility; thanks again to Sun for hosting us. We had more than 10 rooms filled to capacity with more than 150 people discussing various aspects of cloud computing. In fact, due to strong interest in the event a good number of walk-ins we found ourselves pushing the limits of the Menlo Park fire code. We may need to pony up for a door man/bouncer at the next event. <img src='http://cloudpulseblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>The event took on the traditional <a href="http://www.cloudcamp.com/">CloudCamp</a> &#8220;un-conference&#8221; approach, with attendees driving the discussion by posting topics to the board. We had really strong participation and the board filled up quickly. There were a handful of slots open at the end, so I volunteered to facilitate two topics I thought would be of interest. The first was a session on &#8220;What is Cloud Computing?&#8221; targeted at those new to the field. The second was a more advanced topic on cloud application development: what it means, how it&#8217;s different, and what enterprise developers &ndash; Java and .Net &ndash; need to do to fully leverage cloud environments.</p>
<h2>Defining the Cloud</h2>
<p>About 25 CloudCampers joined me to explore what cloud computing really is. It was a highly interactive session (as most camp discussions are) where we talked about different approaches to cloud computing. In the end, the group consensus lined-up very well with the approach I&#8217;ve been advocating here on my blog (see especially the <a href="/blog/the-blind-men-and-cloud">Blind Men and the Cloud</a> post), that is, that trying to define cloud based on the technologies used to enable it doesn&#8217;t capture the full promise of cloud, and that the best way to define cloud computing is in terms of the set of characteristics each of us is trying to achieve with it. Some of the essential cloud characteristics we came up with in the session were:</p>
<p><a href="/wp-content/uploads/2008/10/CIMG0657-2.jpg"><img title="CIMG0657-2" style="border-right: 0px; border-top: 0px; display: inline; margin: 15px 0px; border-left: 0px; border-bottom: 0px" height="377" alt="CIMG0657-2" src="/wp-content/uploads/2008/10/CIMG0657-2_thumb.jpg" width="501" border="0" /></a> </p>
<h2>A Heated Debate on Cloud Application Development</h2>
<p>The second session I led was around cloud application development. There were about 20 or so very technical participants crammed into a relatively small room, many standing, and we ended up having a <em>very lively</em> discussion about software development in the age of the cloud. I took a show-of-hands survey at the start of the session and the group&#8217;s primary focus was on achieving scalability for their cloud applications, as opposed to simply trying to outsource the ownership and management of servers to a third party. (Not a surprising finding for a group of developers.)<a href="/wp-content/uploads/2008/10/CIMG0658.jpg"><img title="CIMG0658" style="border-right: 0px; border-top: 0px; display: inline; margin: 5px 25px 0px 0px; border-left: 0px; border-bottom: 0px" height="184" alt="CIMG0658" src="/wp-content/uploads/2008/10/CIMG0658_thumb.jpg" width="244" align="left" border="0" /></a> </p>
<p>There was a bit of a split in the group between whether cloud application development was, in fact, different than traditional application development at all, or if it was just more of the same. Many of those in the room felt that developing for the cloud required a different approach so that applications could take advantage of the resources the cloud made available. A couple of folks took the position that cloud development wasn&#8217;t really any different. (<a href="http://chris-richardson.blog-city.com/">Chris Richardson</a> did a great job of challenging the notion that a new approach was needed). I think the unifying idea between both positions is that cloud development necessitates the best practices that people have been talking about for a long time. Developing applications that can truly scale in the cloud depends on writing loosely coupled, highly modular code and being careful about the way state is managed. For more on this topic see the <a href="http://www.appistry.com/blogs/guerry">Guerry&#8217;s</a> great series of posts on &#8220;Is your code cloud-ready and multi-core friendly?&#8221; (<a href="http://www.appistry.com/blogs/guerry/is-your-code-cloud-ready-and-multi-core-friendly-part-1-introduction">Part 1: Introduction</a>, <a href="http://www.appistry.com/blogs/guerry/is-your-code-cloud-ready-and-multi-core-friendly-part-2-atomicity">Part 2: Atomicity</a>, <a href="http://www.appistry.com/blogs/guerry/is-your-code-cloud-ready-and-multi-core-friendly-pt-3-statelessness">Part 3: Statelessness</a>, <a href="http://www.appistry.com/blogs/guerry/your-code-cloud-ready-and-multi-core-friendly-pt-4-idempotence">Part 4: Idempotence</a>, with more to come)</p>
<p>Finally, the exceptional turnout also gave us the opportunity to more formally ask about the industry issues on the minds of CloudCamp participants. Appistry partnered with Cloud Camp to sponsor the first-ever Cloud Camp attendee survey. We&#8217;re in the process of tabulating the responses and will highlight some of them in upcoming posts. We&#8217;ll continue to sponsor these surveys to help the community enhance its understanding of cloud computing in the market.</p>
]]></content:encoded>
			<wfw:commentRss>http://cloudpulseblog.com/2008/10/application-development-cloud-and-more-cloudcamp-silicon-valley-review/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
