<?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>SoftLayer Blog &#187; opportunity</title>
	<atom:link href="http://blog.softlayer.com/tag/opportunity/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.softlayer.com</link>
	<description>A Behind the Scenes Look at the Best Hosting Provider in the World</description>
	<lastBuildDate>Thu, 23 May 2013 19:20:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
		<item>
		<title>Meet Memcached: A Developer&#8217;s Best Friend</title>
		<link>http://blog.softlayer.com/2012/meet-memcached-a-developers-best-friend/</link>
		<comments>http://blog.softlayer.com/2012/meet-memcached-a-developers-best-friend/#comments</comments>
		<pubDate>Thu, 02 Aug 2012 17:10:31 +0000</pubDate>
		<dc:creator>Cassandra Wolff</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[experience]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[opportunity]]></category>
		<category><![CDATA[potential]]></category>
		<category><![CDATA[rich media]]></category>
		<category><![CDATA[snippits]]></category>

		<guid isPermaLink="false">http://blog.softlayer.com/?p=8765</guid>
		<description><![CDATA[Whether you&#8217;re new to software development or you&#8217;ve been a coder since the punchcard days, at some point, you&#8217;ve probably come across horrendous performance problems with your website or scripts. From the most advanced users &#8212; creating scripts so complex that their databases flooded with complex JOINs &#8212; to the novice users &#8212; putting SQL [...]]]></description>
			<content:encoded><![CDATA[<p>Whether you&#8217;re new to software development or you&#8217;ve been a coder since the punchcard days, at some point, you&#8217;ve probably come across horrendous performance problems with your website or scripts. From the most advanced users &mdash; creating scripts so complex that their databases flooded with complex JOINs &mdash; to the novice users &mdash; putting SQL calls in loops &mdash; database queries <em>can</em> be your worst nightmare as a developer. I hate to admit it, but I&#8217;ve experienced some these nightmares first-hand as a result of some less-than-optimal coding practices when writing some of my own scripts. Luckily, I&#8217;ve learned how to use <a href="http://memcached.org/">memcached</a> to make life a little easier. </p>
<h3>What is Memcached?</h3>
<p>Memcached is a free and open source distributed memory object caching system that allows the developer to store any sort of data in a temporary cache for later use, so they don&#8217;t have to re-query it. By using memcached, a tremendous performance load can be decreased to almost nil. One of the most noteworthy features of the system is that it doesn&#8217;t cache EVERYTHING on your site/script; it only caches data that is sure to be queried often. Originally developed in 2003 by Brad Fitzpatrick to improve the site performance of LiveJournal.com, memcached has grown tremendously in popularity, with some of the worlds biggest sites &mdash; Wikipedia, Flickr, Twitter, YouTube and Craigslist &mdash; taking advantage of the functionality.</p>
<h3>How Do I Use Memcache?</h3>
<p>After installing the memcached library on your server (available at <a href="http://memcached.org/">http://memcached.org/</a>), it&#8217;s relatively simple to get started:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
  <span style="color: #666666; font-style: italic;">// Set up connection to Memcached</span>
  <span style="color: #000088;">$memcache</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Memcached<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$memcache</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">connect</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'host'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">11211</span><span style="color: #009900;">&#41;</span> or <span style="color: #990000;">die</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Could not connect&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #666666; font-style: italic;">// Connect to database here</span>
&nbsp;
  <span style="color: #666666; font-style: italic;">// Check the cache for your query</span>
  <span style="color: #000088;">$key</span> <span style="color: #339933;">=</span> <span style="color: #990000;">md5</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT * FROM memcached_test WHERE id=1&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$results</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$memcache</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$key</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #666666; font-style: italic;">// if the data exists in the cache, get it!</span>
  <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$results</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$results</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'id'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
      <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'Got it from the cache!'</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #666666; font-style: italic;">// data didn't exist in the cache</span>
    <span style="color: #000088;">$query</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;SELECT * FROM memcached_test WHERE id=1&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$results</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$query</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$row</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_fetch_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$results</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #990000;">print_r</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$row</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #666666; font-style: italic;">// though we didn't find the data this time, cache it for next time!</span>
  <span style="color: #000088;">$memcache</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">set</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$key</span><span style="color: #339933;">,</span> <span style="color: #000088;">$row</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">TRUE</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">30</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
  <span style="color: #666666; font-style: italic;">// Stores the result of the query for 30 seconds</span>
  <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'In the cache now!'</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Querying the cache is very similar to querying any table in your database, and if that data isn&#8217;t cached, you&#8217;ll run a database query to get the information you&#8217;re looking for, and you can add that information to the cache for the next query. If another query for the data doesn&#8217;t come within 30 seconds (or whatever window you specify), memcached will clear it from the cache, and the data will be pulled from the database.</p>
<p>So come on <a href="http://sldn.softlayer.com">developers</a>! Support memcached and faster load times! What other tools and tricks do you use to make your applications run more efficiently?</p>
<p>-Cassandra</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.softlayer.com/2012/meet-memcached-a-developers-best-friend/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>An Insider&#8217;s Look at SoftLayer&#8217;s Growth in Amsterdam</title>
		<link>http://blog.softlayer.com/2012/an-insiders-look-at-softlayers-international-growth/</link>
		<comments>http://blog.softlayer.com/2012/an-insiders-look-at-softlayers-international-growth/#comments</comments>
		<pubDate>Thu, 12 Jul 2012 19:20:15 +0000</pubDate>
		<dc:creator>Jonathan Wisler</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Executive Blog]]></category>
		<category><![CDATA[International]]></category>
		<category><![CDATA[SoftLayer]]></category>
		<category><![CDATA[AMS01]]></category>
		<category><![CDATA[Amsterdam]]></category>
		<category><![CDATA[brand]]></category>
		<category><![CDATA[challenge]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[data center]]></category>
		<category><![CDATA[data centre]]></category>
		<category><![CDATA[europe]]></category>
		<category><![CDATA[growth]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[international]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[operations]]></category>
		<category><![CDATA[opportunity]]></category>
		<category><![CDATA[perspective]]></category>
		<category><![CDATA[tradeshows]]></category>

		<guid isPermaLink="false">http://blog.softlayer.com/?p=8742</guid>
		<description><![CDATA[Last week, SoftLayer was featured on the NOS national news here in the Netherlands in a segment that allowed us to tell our story and share how we&#8217;re settling into our new Amsterdam home. I&#8217;ve only been a SLayer for about nine months now, and as I watched the video, I started to reflect on [...]]]></description>
			<content:encoded><![CDATA[<p>Last week, SoftLayer was featured on the <a href="http://nos.nl/">NOS</a> national news here in the Netherlands in a segment  that allowed us to tell our story and share how we&#8217;re settling into our new Amsterdam home. I&#8217;ve only been a SLayer for about nine months now, and as I watched the video, I started to reflect on how far we&#8217;ve come in such a surprisingly short time. Take a second to check it out (don&#8217;t worry, it&#8217;s not <em>all</em> in Dutch):</p>
<div class="yt560"><iframe src="http://nos.nl/embed/?id=v:391097" frameborder="0" width="560" height="329"></iframe></div>
<p>To say that I had to &#8220;hit the ground running&#8221; when I started at SoftLayer would be an understatement. The day after I got the job, I was on a plane to SoftLayer&#8217;s Dallas headquarters to meet the team behind the company. To be honest, it was a pretty daunting task, but I was energized at the opportunity to learn about how SoftLayer became largest privately owned hosting company in the world from the people who started it. When I look back at the <a href="http://blog.softlayer.com/2011/3-bars-3-questions-amsterdam/">interview</a> Kevin recorded with me, I&#8217;m surprised that I didn&#8217;t look like a deer in the headlights. At the time, <a href="http://www.softlayer.com/about/datacenters/amsterdam">AMS01</a> was still in the build-out phase, so my tours and meetings in DAL05 were both informative and awe-inspiring. </p>
<p>When I returned to Europe, I was energized to start playing my role in the company&#8217;s new pursuit of its global goals. </p>
<p>It didn&#8217;t take long before I started seeing the same awe-inspiring environment take place in our Amsterdam facility &#8230; So much so that I&#8217;m convinced that at least a few of the &#8220;Go Live Crew&#8221; members were superhuman. As it turns out, when you build identical <a href="http://www.softlayer.com/about/datacenters">data center pods</a> in every location around the world, you optimize the process and figure out the best ways to efficiently use your time. </p>
<p>By the time the Go Live Crew started packing following the successful (and on-time) launch of AMS01, I started feeling the pressure. The first rows of server racks were already being filled by customers, but the massive data center space seemed impossibly large when I started thinking of how quickly we could fill it. Most of my contacts in Europe were not familiar with the SoftLayer name, and because my assigned region was Europe Middle East and Africa &mdash; a HUGE diverse region with many languages, cultures and currencies &mdash; I knew I had my work cut out for me. </p>
<p>I thought, &#8220;<strong>LET&#8217;S DO THIS!</strong>&#8221;</p>
<p>EMEA is home to some of the biggest hosting markets in the world, so my first-week whirlwind tour of Dallas actually set the stage quite nicely for what I&#8217;d be doing in the following months: Racking up air miles, jumping onto trains, attending countless trade shows, meeting with press, reaching out to developer communities and corresponding with my fellow SLayers in the US and Asia &#8230; All while managing the day-to-day operations of the Amsterdam office. As I look back at that list, I&#8217;m amazed how the team came together to make sure everything got done.</p>
<p>We have come a long way. </p>
<p>As I started writing this blog, <a href="http://www.businessrevieweurope.eu/">BusinessReview Europe</a> published a fantastic piece on SoftLayer in their <a href="http://www.businessrevieweurope.eu/magazines/11315">July 2012 magazine</a> (starting on page 172) that seems to succinctly summarize how we&#8217;ve gotten where we are today: &#8220;Innovation Never Sleeps.&#8221;</p>
<p><a href="http://www.businessrevieweurope.eu/magazines/11315"><img class="centered" src="http://cdn.softlayer.com/innerlayer/businessreview_europe.png" alt="BusinessReview Europe"/></a></p>
<p>Our first pod is almost full of servers humming and flashing. When we go to <a href="http://www.softlayer.com/about/media/event-schedule">tradeshows and conferences</a> throughout Europe, people not only know SoftLayer, many of them are customers with servers in AMS01. That&#8217;s the kind of change we love.</p>
<p>The best part of my job right now is that our phenomenal success in the past nine months is just a glimmer of what the future holds. Come to think of it, we&#8217;re going to <a href="http://www.softlayer.com/about/careers">need some more people</a>.</p>
<p>-<a href="https://twitter.com/jpwisler">@jpwisler</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.softlayer.com/2012/an-insiders-look-at-softlayers-international-growth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 &#8211; Compatibility for All?</title>
		<link>http://blog.softlayer.com/2012/html5-compatibility-for-all/</link>
		<comments>http://blog.softlayer.com/2012/html5-compatibility-for-all/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 18:10:05 +0000</pubDate>
		<dc:creator>Cassandra Wolff</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[experience]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[opportunity]]></category>
		<category><![CDATA[potential]]></category>
		<category><![CDATA[rich media]]></category>
		<category><![CDATA[snippits]]></category>

		<guid isPermaLink="false">http://blog.softlayer.com/?p=7712</guid>
		<description><![CDATA[Many of us remember when Flash was the &#8220;only&#8221; way to enhance user experience and create rich media interactivity. It was a bittersweet integration, though &#8230; Many users didn&#8217;t have the browser compatibility to use it, so some portion of your visitors were left in the dark. Until recently, that user base was relatively small [...]]]></description>
			<content:encoded><![CDATA[<p>Many of us remember when <a href="http://get.adobe.com/flashplayer/">Flash</a> was the &#8220;only&#8221; way to enhance user experience and create rich media interactivity. It was a bittersweet integration, though &#8230; Many users didn&#8217;t have the browser compatibility to use it, so some portion of your visitors were left in the dark. Until recently, that user base was relatively small &mdash; the purists who didn&#8217;t want Flash or the people whose hardware/software couldn&#8217;t support it. When Apple decided it wouldn&#8217;t enable Flash on the iPhone/iPad, web developers around the world groaned. A HUGE user base (that&#8217;s growing exponentially) couldn&#8217;t access the rich media and interactive content.</p>
<p>In the last year or so, Adobe released <a href="http://www.bgr.com/2011/09/09/adobe-finally-brings-flash-to-iphone-and-ipad/">Flash Media Server</a> to circumvent the Apple-imposed restrictions, but the larger web community has responded with a platform that will be both compatible and phenomenally functional: HTML5. </p>
<p>HTML5 allows us to do things we&#8217;ve never been able to do before (at least without the hassle of plugins, installations and frustration). Gone are the limitations that resigned HTML to serving as a simple framework for webpages &#8230; Now developers can push the limits of what they thought possible. As the platform has matured, some developers have even taken it upon themselves to prototype exactly where this generation of scripting is heading by creating Flash-free browser games. </p>
<p>Yes, you read that right: Games you can actually play on your browser, WITHOUT plugins. </p>
<p>From simple <a href="http://stewd.io/pong/">Pong</a> clones that use browser windows as the paddles and ball to adventure-based Zelda-like massively multiplayer online role playing games (MMORPGs) like <a href="http://browserquest.mozilla.org/">BrowserQuest</a>, it&#8217;s pretty unbelievable to see the tip of the iceberg of possibilities enabled by HTML5 &#8230; Though it does seem a bit ironic to say that a Pong clone is such a great example of the potential of the HTML5 platform. Click on the screenshot below to check out BrowserQuest and tell me it doesn&#8217;t amaze you:</p>
<p><a href="http://browserquest.mozilla.org/" target="blank"><img class="centered" src="http://cdn.softlayer.com/innerlayer/browserquest.jpg" alt="Browser Quest"/></a></p>
<p>With an ingenious combination of CSS, JavaScript and HTML5, developers of BrowserQuest have been able to accomplish something that no one has ever seen (nor would ever even have thought possible). Developers are now able to generate dynamic content by injecting JavaScript into their HTML5 canvasses:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>code<span style="color: #339933;">&gt;</span>
<span style="color: #000000; font-weight: bold;">function</span> handleKeyDown<span style="color: #009900;">&#40;</span>evt<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	keys<span style="color: #009900;">&#91;</span>evt<span style="color: #339933;">.</span>keyCode<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> handleKeyUp<span style="color: #009900;">&#40;</span>evt<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	keys<span style="color: #009900;">&#91;</span>evt<span style="color: #339933;">.</span>keyCode<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// disable vertical scrolling from arrows :)</span>
document<span style="color: #339933;">.</span>onkeydown<span style="color: #339933;">=</span><span style="color: #000000; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><span style="color: #b1b100;">return</span> event<span style="color: #339933;">.</span>keyCode<span style="color: #339933;">!=</span><span style="color: #cc66cc;">38</span> <span style="color: #339933;">&amp;&amp;</span> event<span style="color: #339933;">.</span>keyCode<span style="color: #339933;">!=</span><span style="color: #cc66cc;">40</span><span style="color: #009900;">&#125;</span>
<span style="color: #339933;">&lt;/</span>code<span style="color: #339933;">&gt;</span></pre></div></div>

<p>Look familiar? The game-making process (not syntax!) appears eerily similar to that of any other popular language. The only difference: You don&#8217;t need to install this game &#8230; You just open your browser and enjoy.</p>
<p>Using a popular port of Box2D, a physics simulator, making pure browser-based games is as simple as &#8220;Make. Include. Create.&#8221; Here&#8217;s a snippit:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>code<span style="color: #339933;">&gt;</span>
<span style="color: #666666; font-style: italic;">//Make your canvas</span>
<span style="color: #339933;">&lt;</span>canvas id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;game&quot;</span> width<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;600&quot;</span> height<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;400&quot;</span><span style="color: #339933;">&gt;&lt;/</span>canvas<span style="color: #339933;">&gt;</span>  
&nbsp;
<span style="color: #666666; font-style: italic;">//include your js physics files</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// create your world</span>
<span style="color: #000000; font-weight: bold;">function</span> createWorld<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #666666; font-style: italic;">// here we create our world settings for collisions</span>
	<span style="color: #000000; font-weight: bold;">var</span> worldAABB <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> b2AABB<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	worldAABB<span style="color: #339933;">.</span>minVertex<span style="color: #339933;">.</span>Set<span style="color: #009900;">&#40;</span><span style="color: #339933;">-</span><span style="color: #cc66cc;">1000</span><span style="color: #339933;">,</span> <span style="color: #339933;">-</span><span style="color: #cc66cc;">1000</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	worldAABB<span style="color: #339933;">.</span>maxVertex<span style="color: #339933;">.</span>Set<span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">1000</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">1000</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #666666; font-style: italic;">// set gravity vector</span>
	<span style="color: #000000; font-weight: bold;">var</span> gravity <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> b2Vec2<span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">300</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000000; font-weight: bold;">var</span> doSleep <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
	<span style="color: #666666; font-style: italic;">// init our world and return its value</span>
	<span style="color: #000000; font-weight: bold;">var</span> world <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> b2World<span style="color: #009900;">&#40;</span>worldAABB<span style="color: #339933;">,</span> gravity<span style="color: #339933;">,</span> doSleep<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> world<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #339933;">&lt;/</span>code<span style="color: #339933;">&gt;</span></pre></div></div>

<p>We may be a few years away from building full-scale WoW-level MMORPGs with HTML5, but I think seeing this functionality in native HTML will be a sigh of relief to those that&#8217;ve missed out on so much Flash goodness. While developers are building out the next generation of games and apps that will use HTML5, you can keep yourself entertained (and waste hours of time) with the HTML5 port of <a href="http://chrome.angrybirds.com">Angry Birds</a>! </p>
<p><a href="http://chrome.angrybirds.com"><img class="centered" src="http://cdn.softlayer.com/innerlayer/angrybirdsbrowser.jpg" alt="Angry Birds"/></a></p>
<p>HTML5 is not immune to some browser compatibility issues with older versions, but as it matures and becomes the standard platform for web development, we&#8217;re going to see what&#8217;s to come in our technology&#8217;s immediate future: Pure and simple compatibility for all.</p>
<p>-Cassandra</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.softlayer.com/2012/html5-compatibility-for-all/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Startup Series: Tech Wildcatters</title>
		<link>http://blog.softlayer.com/2011/startup-series-tech-wildcatters/</link>
		<comments>http://blog.softlayer.com/2011/startup-series-tech-wildcatters/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 22:17:44 +0000</pubDate>
		<dc:creator>Guest Blog</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[SoftLayer]]></category>
		<category><![CDATA[Startup Series]]></category>
		<category><![CDATA[accelerator]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[funding]]></category>
		<category><![CDATA[growth]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[incubator]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[mentor]]></category>
		<category><![CDATA[opportunity]]></category>
		<category><![CDATA[pitch]]></category>
		<category><![CDATA[provider]]></category>
		<category><![CDATA[Tech Wildcatters]]></category>
		<category><![CDATA[venture capital]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.softlayer.com/?p=6559</guid>
		<description><![CDATA[Tech Wildcatters is a mentor-driven technology startup accelerator led by entrepreneurs in the Dallas area. The 12-week &#8220;boot camp&#8221; runs every spring and fall, providing experience and exposure to the 8-10 companies selected to participate in each class. Dennis Dayman, a Tech Wildcatters partner and mentor, explains what Tech Wildcatters is all about and why [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://techwildcatters.com">Tech Wildcatters</a> is a mentor-driven technology startup accelerator led by entrepreneurs in the Dallas area. The 12-week &#8220;boot camp&#8221; runs every spring and fall, providing experience and exposure to the 8-10 companies selected to participate in each class. Dennis Dayman, a Tech Wildcatters partner and mentor, explains what Tech Wildcatters is all about and why they chose to partner with SoftLayer:</p>
<div class="yt560"><iframe src="http://www.youtube.com/embed/5c3_rxaCLZI?hd=1" frameborder="0" width="560" height="349"></iframe></div>
<p>In the coming weeks, you&#8217;ll meet a few of the startups that have benefited from the Tech Wildcatters program, and we&#8217;ll share some of their post-accelerator success with you.</p>
<p>If you&#8217;re interested in learning more about how you can participate in the Tech Wildcatters startup accelerator, visit <a href="http://techwildcatters.com">http://techwildcatters.com</a>. If you already know you want to take advantage of the opportunities Tech Wildcatters can provide, their simple <a href="http://techwildcatters.com/apply/">online application</a> is the only thing between you and your soon-to-be-huge business!</p>
<div class="tpm-note">This post features an organization involved in the SoftLayer Startup Program. <a href="http://blog.softlayer.com/2011/being-true-to-your-roots-softlayer-loves-startups/">SoftLayer Loves Startups</a>, so we want to help them fuel their success by providing hosting resources and expertise to new and growing businesses. In this series, you&#8217;ll meet a few of the startups and <a href="http://blog.softlayer.com/2011/incubators-beyond-middle-school-science-class/">incubators</a> SoftLayer supports to learn more about the amazing things they&#8217;re doing.</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.softlayer.com/2011/startup-series-tech-wildcatters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Don&#8217;t You Work Here Yet?</title>
		<link>http://blog.softlayer.com/2011/why-dont-you-work-here-yet/</link>
		<comments>http://blog.softlayer.com/2011/why-dont-you-work-here-yet/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 14:40:31 +0000</pubDate>
		<dc:creator>Anthony Kenealy</dc:creator>
				<category><![CDATA[Culture]]></category>
		<category><![CDATA[Introductions]]></category>
		<category><![CDATA[SoftLayer]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[career]]></category>
		<category><![CDATA[culture]]></category>
		<category><![CDATA[employees]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[growth]]></category>
		<category><![CDATA[international]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[learn]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[opportunity]]></category>
		<category><![CDATA[server build technician]]></category>
		<category><![CDATA[team]]></category>

		<guid isPermaLink="false">http://blog.softlayer.com/?p=5779</guid>
		<description><![CDATA[I started my career with SoftLayer in March 2011 as a Server Build Technician, and after a few short months, I can safely say that coming here was one of the best moves I have ever made in my life. I have worked in a number of different jobs ranging from retail to shipping, but [...]]]></description>
			<content:encoded><![CDATA[<p>I started my career with SoftLayer in March 2011 as a Server Build Technician, and after a few short months, I can safely say that coming here was one of the best moves I have ever made in my life. I have worked in a number of different jobs ranging from retail to shipping, but in my heart, I always knew I wanted a career in computer technology. SoftLayer made that dream come true.</p>
<p>When I started, I felt a bit overwhelmed with the amount of information I had to learn all at once. That feeling quickly subsided during the first week as I realized how the work environment and culture is built on employees who take great pride both what they do and the knowledge they are able to pass on to newcomers. I knew I was in good hands. I felt like I was a part of an elite group of intelligent, inspiring, funny, energetic and down to earth people.</p>
<p>Through the interactions I&#8217;ve had with my direct coworkers, my knowledge has grown tremendously, and I feel more confident in meeting and exceeding the expectations and responsibilities in front of me. The original SoftLayer culture is alive and well thanks to the efforts and example of the <a href="http://www.softlayer.com/about/management-profiles">management team</a>, and it doesn&#8217;t take long to notice that this company has a passion for customer service, and we strive to be the very best we can be. Because of the encouragement and optimism I have been given, I see a bright future for me here.</p>
<p>As our operations expand, I can&#8217;t help but get excited for the success in store for the business, our team and our customers. We&#8217;re ready to embrace new challenges, and though the tasks seem daunting, I know our team can handle them easily. I take great pride in my work, and I&#8217;m quick to tell the SoftLayer story to anyone who will listen. The company motto is, &#8220;Innovate or Die,&#8221; and every employee &ndash; from Dallas to Amsterdam to San Jose to Singapore &ndash; lives and breathes that motto daily. We&#8217;re pushing the limits of what a &#8220;hosting company&#8221; can do, and we&#8217;re having a lot of fun doing it. </p>
<p>I feel honored to say that I am a part of the SoftLayer family, and if you&#8217;re in the market for a new job for an awesome employer, you should head to <a href="http://www.softlayer.com/about/careers">SoftLayer Careers</a> to find which of the 50+ positions you&#8217;d fit so you can join us in Dallas, Houston, San Jose, Seattle, Singapore, Amsterdam or Washington, D.C.</p>
<p>We are SoftLayer!</p>
<p>-Anthony</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.softlayer.com/2011/why-dont-you-work-here-yet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What Does it Cost (Part 2)</title>
		<link>http://blog.softlayer.com/2010/what-does-it-cost-part-2/</link>
		<comments>http://blog.softlayer.com/2010/what-does-it-cost-part-2/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 13:00:39 +0000</pubDate>
		<dc:creator>Doug Jackson</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[cost]]></category>
		<category><![CDATA[employees]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[opportunity]]></category>
		<category><![CDATA[organization]]></category>
		<category><![CDATA[strategy]]></category>

		<guid isPermaLink="false">http://blog.softlayer.com/?p=2401</guid>
		<description><![CDATA[Your People and How They Relate to Your Infrastructure If you read my previous blog, “What Does it Cost (Part 1) &#8211; The Overview,” you may be interested to delve deeper into the conversation and math behind how all of this adds up. Essentially asking yourself “is it better to build infrastructure yourself?” is a [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Your People and How They Relate to Your Infrastructure</strong></p>
<p>If you read my previous blog, “<a href="http://blog.softlayer.com/2010/what-does-it-cost-part-1/">What Does it Cost (Part 1) &#8211; The Overview</a>,” you may be interested to delve deeper into the conversation and math behind how all of this adds up.  Essentially asking yourself “is it better to build infrastructure yourself?” is a good thing and you will inevitably try to ask yourself what does it cost to do so versus looking into “what would it cost to have SoftLayer do this for me since this is what their core competencies reside in?”.</p>
<p>Remember that one of the big lessons we can learn and that I re-learned at the conferences I attended is that your people are your biggest assets.  This lesson is showcased and repeated several times and for good purpose, since this seems to be a time tested rule.  While your people are a biggest assets they can also easily be one of your biggest costs especially if they are not managed properly.  Every business should have a growth model but one thing that can hold you back is the cost of growth (or your growing pains).</p>
<p>Think about the amount of people you need when you run everything inside and what that will wind up costing.  If your business, network, and uptime are all mission critical you’ll also need to take into consideration the number of people needed to make sure a facility is 24*7. You will need someone to fix a drive that brakes and needs to be replaced at 3:42AM, won’t you?  Take the number of people that you think you’ll need and now consider what would happen if you were to double in size in a single year (or you could use your own timeline in your head).  Would you need double the people or possibly more when you consider the needs of managers to make sure everything was in line with your business strategy?   What would the cost be that you would need to pay when considering more than just their salaries. </p>
<p>Think of the other things that do not jump out at you immediately like taxes, insurance, a 401K plan, office space, other liabilities, etc. Gary Kinman (VP of Accounting and Finance) estimates that the cost of each additional employee is about 15-20% more than just the cost of their salary without including things like office space.  This is one of the biggest aspects often overlooked, because it not only takes new people you would need to hire, but how it can monopolize time and production you would get otherwise from people you already have on staff.</p>
<p>Now, if you remember from part one I mentioned how Opportunity Costs are some of the biggest costs in the differences between how SoftLayer can help you versus doing things yourself.  If you reverse the previous scenario and say that after you’ve just doubled in size there is a bust in the economy which causes you to have to contract.  For starters the easiest way to cut back on spending is in people, so you may have to lay people off and ultimately make you the bad guy.  Now here is where ugly gets really gruesome.  </p>
<p>If you talked yourself into how cheap it can be to buy and do everything yourself you are in a real tight spot because now you may not have the necessary people to run all of your infrastructure, or in an even worse case scenario you may not even need it.  What this spells out is that you keep something that cannot be used even though you are paying for it, and you had to let people go just to keep the rest of the boat afloat.  Didn’t we say that our people are our most important asset earlier?  You can’t always know what kind of worker someone will be when you hire them or how things will work out, but you do want to put yourself in a position to keep the good ones that you trust to push your business forward around and happy.</p>
<p>All right, that is enough doom and gloom scenario.  Let’s look at this subject from another angle.  As you grow in size generally everything you have and everything you use will grow right along the company.   We covered the fact that it will probably become more and more obvious that you’ll need more people to do the work for your business.  Hiring systems administrators, DBAs, and development staff can all be good moves that would impact your business specifically; however, are you putting them in the best position for them to be successful?  Have you ever seen that show “Undercover Boss”?  It seems that in a lot of the episodes you would see that a CEO was not cut out for doing a lot of other jobs in the company and would have a much greater appreciation of everyone who did all of those jobs and how hard they work.  Sometimes they would have comments about if they were really trying to get that job they wouldn’t last long.  Keep that thought in mind when asking these same Sys-admins, DBAs, and development staff to do jobs that they do not specialize in.  </p>
<p>Taking your people in positions where they may get a grade of an “A” or a “B+” and putting them into different positions where they may get a “C-“, “D”, or even an “F” will not likely be good for production levels, decrease levels of morale, and will also likely tank the investment value made in the employees themselves and/or the infrastructure you purchase.</p>
<p>Bottom line is that the way the world is evolving is to work smarter, lessen risk, and (in drawing back to part 1) get more out of having less.  The best way to avoid unnecessary risk is to not overextend yourself in the first place, and to stay in a position of flexibility so that you can react and adapt to the market around you.  This is what SoftLayer is built for; keeping you with the most options in order to increase your ability to innovate and execute without sacrificing any level of control and without costing large sums of upfront capitol.</p>
<p>I am guessing that about 9 times out of 10 if you take the time to sit down and do the math it all makes perfect sense.</p>
<p>-Doug</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.softlayer.com/2010/what-does-it-cost-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Stop Worrying and Love the Network</title>
		<link>http://blog.softlayer.com/2010/how-to-stop-worrying-and-love-the-network/</link>
		<comments>http://blog.softlayer.com/2010/how-to-stop-worrying-and-love-the-network/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 14:24:34 +0000</pubDate>
		<dc:creator>Mark Quigley</dc:creator>
				<category><![CDATA[Executive Blog]]></category>
		<category><![CDATA[Infrastructure]]></category>
		<category><![CDATA[SoftLayer]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[data centers]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[opportunity]]></category>
		<category><![CDATA[planning]]></category>

		<guid isPermaLink="false">http://blog.softlayer.com/?p=2317</guid>
		<description><![CDATA[I have recently discussed the network from a couple of perspectives. I have discussed the fact that traffic continues to grow at a furious pace, and the fact that SoftLayer spends a lot of time thinking about and designing our network to keep ahead of this growth. It makes sense to extend the discussion to [...]]]></description>
			<content:encoded><![CDATA[<p>I have recently discussed the network from a couple of perspectives. I have discussed the fact that traffic continues to grow at a furious pace, and the fact that SoftLayer spends a lot of time thinking about and designing our network to keep ahead of this growth. It makes sense to extend the discussion to the customer &#8211; what does any of this mean for me?</p>
<p>An increase in traffic means a couple of things. It means that there are more people joining the community &#8211; they might be in places that you have not considered yet (like India), but they are there.  It is also true that the services and applications  that people are using are getting more varied and sophisticated. There is another Facebook or Twitter waiting to happen. It might be in India or China, but it is going to come. Trust me. The business opportunity ahead is immense.</p>
<p>Whether they  are consciously doing it or not,  customers will work through a decision tree when they are choosing a hosting partner. Key discussions ought to occur that will address what happens in the data center and what happens in the network.</p>
<ul>
<li>In the Data Center &#8211; A lot of what happens in the DC is similar across providers. Hosting companies  choose from the same hardware vendors, picking from the same basket of processors, memory, storage and security.  I am not so sure there is significant differentiation on the hardware side. However, there are significant differentiation points when it comes to implementation. What is the time frame between ordering a service and having the service live? What happens when I need to add another server? What happens when I become the next Twitter?</li>
<li>In the Network &#8211; I think that network is one of the most important pieces of the puzzle. I also think that is gets overlooked.  It does not matter how good the DC is managed, or how great your  application is, if your customers cannot get access to your stuff, it does not matter how many or whose processors you use or how much RAM you have onboard or what firewalls are in place or what your storage architecture looks like. The only thing that matters is if YOUR customers can use YOUR app. Nothing else, nobody else matters. </li>
</ul>
<p>We get it &#8211; that&#8217;s why SoftLayer puts terrific effort into architecting our network. It’s why we have 10 carrier partners with 1000 GB of capacity. It’s why our new Dallas facility has bonded 2X1 Gbps links to both our private and public networks. It’s why we are deploying 10 Gbps servers. And its why we are thinking about next year, not just about tomorrow.</p>
<p>We are ready for whatever comes next. The question is: Are you?</p>
<p>-<a href="http://twitter.com/quigleymar">@quigleymar</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.softlayer.com/2010/how-to-stop-worrying-and-love-the-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
