<?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; tool</title>
	<atom:link href="http://blog.softlayer.com/tag/tool/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>Wed, 15 May 2013 15:33:34 +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>Social Media for Brands: Monitor Twitter Search via Email</title>
		<link>http://blog.softlayer.com/2013/social-media-for-brands-monitor-twitter-search-via-email/</link>
		<comments>http://blog.softlayer.com/2013/social-media-for-brands-monitor-twitter-search-via-email/#comments</comments>
		<pubDate>Fri, 22 Mar 2013 21:50:30 +0000</pubDate>
		<dc:creator>Phil Jackson</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[SoftLayer]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[alert]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[brand monitoring]]></category>
		<category><![CDATA[email digest]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Twitter alert]]></category>

		<guid isPermaLink="false">http://blog.softlayer.com/?p=10928</guid>
		<description><![CDATA[If you&#8217;re responsible for monitoring Twitter for conversations about your brand, you&#8217;re faced with a challenge: You need to know what people are saying about your brand at all times AND you don&#8217;t want to live your entire life in front of Twitter Search. Over the years, a number of social media applications have been [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re responsible for monitoring Twitter for conversations about your brand, you&#8217;re faced with a challenge: You need to know what people are saying about your brand at all times <strong>AND</strong> you don&#8217;t want to live your entire life in front of <a href="https://twitter.com/search">Twitter Search</a>. </p>
<p>Over the years, a number of social media applications have been released specifically for brand managers and social media teams, but most of those applications (especially the free/inexpensive ones) differentiate themselves only by the quality of their analytics and how real-time their data is reported. If that&#8217;s what you need, you have plenty of fantastic options. Those differentiators don&#8217;t really help you if you want to take a more passive role in monitoring Twitter search &#8230; You still have to log into the application to see your fancy dashboards with all of the information. Why can&#8217;t the data come to you?</p>
<p>About three weeks ago, <a href="http://blog.softlayer.com/author/khazard/">Hazzy</a> stopped by my desk and asked if I&#8217;d help build a tool that uses the <a href="https://dev.twitter.com/docs/using-search">Twitter Search API</a> to collect brand keywords mentions and send an email alert with those mentions in digest form every 30 minutes. The social media team had been using <a href="http://www.twilert.com/">Twilert</a> for these types of alerts since February 2012, but over the last few months, messages have been delayed due to issues connecting to Twitter search &#8230; It seems that the service is so popular that it hits Twitter&#8217;s limits on API calls. An email digest scheduled to be sent every thirty minutes ends up going out ten hours late, and ten hours is an eternity in social media time. We needed something a little more timely and reliable, so I got to work on a simple &#8220;Twitter Monitor&#8221; script to find all mentions of our keyword(s) on Twitter, email those results in a simple digest format, and repeat the process every 30 minutes when new mentions are found.</p>
<p>With Bear&#8217;s <a href="https://github.com/bear/python-twitter">Python-Twitter library</a> on GitHub, connecting to the Twitter API is a breeze. Why did we use Bear&#8217;s library in particular? Just look at his <a a href="https://secure.gravatar.com/avatar/1d1d1c010659cc824304b9a35ea33a14?s=400&#038;d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png">profile picture</a>. Yeah &#8230; &#8217;nuff said. So with that Python wrapper to the Twitter API in place, I just had to figure out how to use the tools Twitter provided to get the job done. For the most part, the process was very clear, and Twitter actually made querying the search service much easier than we expected. The Search API finds all mentions of whatever string of characters you designate, so instead of creating an elaborate Boolean search for &#8220;SoftLayer OR #SoftLayer OR @SoftLayer &#8230;&#8221; or any number of combinations of arbitrary strings, we could simply search for &#8220;SoftLayer&#8221; and have all of those results included. If you want to see <em>only</em> @ replies or hashtags, you can limit your search to those alone, but because &#8220;SoftLayer&#8221; isn&#8217;t a word that gets thrown around much without referencing us, we wanted to see every instance. This is the code we ended up working with for the search functionality:</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #ff7700;font-weight:bold;">def</span> status_by_search<span style="color: black;">&#40;</span>search<span style="color: black;">&#41;</span>:
    statuses = api.<span style="color: black;">GetSearch</span><span style="color: black;">&#40;</span>term=search<span style="color: black;">&#41;</span>
    results = <span style="color: #008000;">filter</span><span style="color: black;">&#40;</span><span style="color: #ff7700;font-weight:bold;">lambda</span> x: x.<span style="color: #008000;">id</span> <span style="color: #66cc66;">&gt;</span> get_log_value<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>, statuses<span style="color: black;">&#41;</span>
    returns = <span style="color: black;">&#91;</span><span style="color: black;">&#93;</span>
    <span style="color: #ff7700;font-weight:bold;">if</span> <span style="color: #008000;">len</span><span style="color: black;">&#40;</span>results<span style="color: black;">&#41;</span> <span style="color: #66cc66;">&gt;</span> <span style="color: #ff4500;">0</span>:
        <span style="color: #ff7700;font-weight:bold;">for</span> result <span style="color: #ff7700;font-weight:bold;">in</span> results:
            returns.<span style="color: black;">append</span><span style="color: black;">&#40;</span>format_status<span style="color: black;">&#40;</span>result<span style="color: black;">&#41;</span><span style="color: black;">&#41;</span>
&nbsp;
        new_tweets<span style="color: black;">&#40;</span>results<span style="color: black;">&#41;</span>
        <span style="color: #ff7700;font-weight:bold;">return</span> returns, <span style="color: #008000;">len</span><span style="color: black;">&#40;</span>returns<span style="color: black;">&#41;</span>
    <span style="color: #ff7700;font-weight:bold;">else</span>:
        exit<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span></pre></div></div>

<p>If you walk through the script, you&#8217;ll notice that we want to return only unseen Tweets to our email recipients. Shortly after got the Twitter Monitor up and running, we noticed how easy it would be to get spammed with the same messages every time the script ran, so we had to filter our results accordingly. Twitter&#8217;s API allows you to request tweets with a Tweet ID greater than one that you specify, however when I tried designating that &#8220;oldest&#8221; Tweet ID, we had mixed results &#8230; Whether due to my ignorance or a fault in the implementation, we were getting fewer results than we should. Tweet IDs are unique and numerically sequential, so they can be relied upon as much as datetime (and far easier to boot), so I decided to use the highest Tweet ID from each batch of processed messages to filter the next set of results. The script stores that Tweet ID and uses a little bit of logic to determine which Tweets are newer than the last Tweet reported.</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #ff7700;font-weight:bold;">def</span> new_tweets<span style="color: black;">&#40;</span>results<span style="color: black;">&#41;</span>:
    <span style="color: #ff7700;font-weight:bold;">if</span> get_log_value<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span> <span style="color: #66cc66;">&lt;</span> <span style="color: #008000;">max</span><span style="color: black;">&#40;</span>result.<span style="color: #008000;">id</span> <span style="color: #ff7700;font-weight:bold;">for</span> result <span style="color: #ff7700;font-weight:bold;">in</span> results<span style="color: black;">&#41;</span>:
        set_log_value<span style="color: black;">&#40;</span><span style="color: #008000;">max</span><span style="color: black;">&#40;</span>result.<span style="color: #008000;">id</span> <span style="color: #ff7700;font-weight:bold;">for</span> result <span style="color: #ff7700;font-weight:bold;">in</span> results<span style="color: black;">&#41;</span><span style="color: black;">&#41;</span>
        <span style="color: #ff7700;font-weight:bold;">return</span> <span style="color: #008000;">True</span>
&nbsp;
&nbsp;
<span style="color: #ff7700;font-weight:bold;">def</span> get_log_value<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>:
    <span style="color: #ff7700;font-weight:bold;">with</span> <span style="color: #008000;">open</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'tweet.id'</span>, <span style="color: #483d8b;">'r'</span><span style="color: black;">&#41;</span> <span style="color: #ff7700;font-weight:bold;">as</span> f:
        <span style="color: #ff7700;font-weight:bold;">return</span> <span style="color: #008000;">int</span><span style="color: black;">&#40;</span>f.<span style="color: black;">read</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span><span style="color: black;">&#41;</span>
&nbsp;
&nbsp;
<span style="color: #ff7700;font-weight:bold;">def</span> set_log_value<span style="color: black;">&#40;</span>messageId<span style="color: black;">&#41;</span>:
    <span style="color: #ff7700;font-weight:bold;">with</span> <span style="color: #008000;">open</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'tweet.id'</span>, <span style="color: #483d8b;">'w+'</span><span style="color: black;">&#41;</span> <span style="color: #ff7700;font-weight:bold;">as</span> f:
        f.<span style="color: black;">write</span><span style="color: black;">&#40;</span><span style="color: #008000;">str</span><span style="color: black;">&#40;</span>messageId<span style="color: black;">&#41;</span><span style="color: black;">&#41;</span></pre></div></div>

<p>Once we culled out our new Tweets, we needed our script to email those results to our social media team. Luckily, we didn&#8217;t have to reinvent the wheel here, and we added a few lines that enabled us to send an HTML-formatted email over any SMTP server. One of the downsides of the script is that login credentials for your SMTP server are stored in plaintext, so if you can come up with another alternative that adds a layer of security to those credentials (or lets you send with different kinds of credentials) we&#8217;d love for you to share it.</p>
<p>From that point, we could run the script manually from the server (or a laptop for that matter), and an email digest would be sent with new Tweets. Because we wanted to automate that process, I added a cron job that would run the script at the desired interval. As a bonus, if the script doesn&#8217;t find any new Tweets since the last time it was run, it doesn&#8217;t send an email, so you won&#8217;t get spammed by &#8220;0 Results&#8221; messages overnight.</p>
<p>The script has been in action for a couple of weeks now, and it has gotten our social media team&#8217;s seal of approval. We&#8217;ve added a few features here and there (like adding the number of Tweets in an email to the email&#8217;s subject line), and I&#8217;ve enlisted the help of <a href="https://github.com/crackerjackmack">Kevin Landreth</a> to clean up the code a little. Now, we&#8217;re ready to share the <a href="http://sftlyr.com/sltm">SoftLayer Twitter Monitor</a> script with the world via GitHub!</p>
<p><a href="http://sftlyr.com/sltm"><img class="centered" style="border:1px solid #BBB;" src="http://cdn.softlayer.com/innerlayer/sltm.jpg" alt="SoftLayer Twitter Monitor on GitHub"/></a></p>
<p>The script should work well right out of the box in any Python environment with the required libraries after a few simple configuration changes:</p>
<ul>
<li>Get your Twitter Customer Secret, Access Token and Access Secret from <a href="https://dev.twitter.com/">https://dev.twitter.com/</a></li>
<li>Copy/paste that information where noted in the script.</li>
<li>Update your search term(s).</li>
<li>Enter your mailserver address and port.</li>
<li>Enter your email account credentials if you aren&#8217;t working with an open relay.</li>
<li>Set the <code>self.from_</code> and <code>self.to</code> values to your preference.</li>
<li>Ensure all of the Python requirements are met.</li>
<li>Configure a cron job to run the script your desired interval. For example, if you want to send emails every 10 minutes: <code>*/10 * * * * &lt;path to python> &lt;path to script&gt; 2&gt;&amp;1 /dev/null</code></li>
</ul>
<p>As soon as you add your information, you should be in business. You&#8217;ll have an in-house Twitter Monitor that delivers a simple email digest of your new Twitter mentions at whatever interval you specify! </p>
<p>Like any good open source project, we want the community&#8217;s feedback on how it can be improved or other features we could incorporate. This script uses the Search API, but we&#8217;re also starting to play around with the Stream API and <a href="http://www.softlayer.com/services/additional/message-queue">SoftLayer Message Queue</a> to make some even cooler tools to automate brand monitoring on Twitter. </p>
<p>If you end up using the script and liking it, send SoftLayer a shout-out via Twitter and share it with your friends!</p>
<p>-<a href="http://twitter.com/softlayerdevs">@SoftLayerDevs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.softlayer.com/2013/social-media-for-brands-monitor-twitter-search-via-email/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ClickTale: Tech Partner Spotlight</title>
		<link>http://blog.softlayer.com/2011/technology-partner-spotlight-clicktale/</link>
		<comments>http://blog.softlayer.com/2011/technology-partner-spotlight-clicktale/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 13:35:56 +0000</pubDate>
		<dc:creator>Guest Blog</dc:creator>
				<category><![CDATA[Partner Marketplace]]></category>
		<category><![CDATA[SoftLayer]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[ClickTale]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[experience]]></category>
		<category><![CDATA[marketplace]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[partner]]></category>
		<category><![CDATA[partner marketplace]]></category>
		<category><![CDATA[partners]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[sites]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[users]]></category>
		<category><![CDATA[viewers]]></category>

		<guid isPermaLink="false">http://blog.softlayer.com/?p=4343</guid>
		<description><![CDATA[This is a guest blog from Shmuli Goldberg of ClickTale, an industry leader in customer experience analytics, providing businesses with revolutionary insights into their customers&#8217; online behavior. Company Website: http://www.clicktale.com/Tech Partners Marketplace: http://www.softlayer.com/marketplace/clicktale Understanding the User Experience with In-Page Analytics Since ClickTale&#8217;s start back in 2006, we understood that engaging visitors on a website is [...]]]></description>
			<content:encoded><![CDATA[<p class="attribution">This is a guest blog from Shmuli Goldberg of <a href="http://clicktale.com">ClickTale</a>, an industry leader in customer experience analytics, providing businesses with revolutionary insights into their customers&#8217; online behavior.</p>
<div class="yt560"><iframe width="560" height="349" src="http://www.youtube.com/embed/7GMEsE7eLmc" frameborder="0" allowfullscreen></iframe></div>
<div class="more-info"><strong>Company Website:</strong> <a href="http://www.clicktale.com/">http://www.clicktale.com/</a><br/><strong>Tech Partners Marketplace:</strong> <a href="http://www.softlayer.com/marketplace/clicktale">http://www.softlayer.com/marketplace/clicktale</a></div>
<h3>Understanding the User Experience with In-Page Analytics</h3>
<p>Since ClickTale&#8217;s start back in 2006, we understood that engaging visitors on a website is the first step to increase conversions. Although traditional web analytics are great for delivering general statistics such as number of visitors or pages per visit, they leave a big black hole when it comes to understanding what happens inside the pages themselves.</p>
<p>ClickTale&#8217;s In-Page Analytics feature set enables you to identify, observe, aggregate and analyze visitors&#8217; actual interaction inside your site, so you know exactly what page elements work, what to optimize and how to increase visitor engagement.</p>
<p>Our wide range of web optimization tools include <a href="http://www.clicktale.com/product/mouse_tracking_suite">Mouse Tracking</a>, <a href="http://www.clicktale.com/product/heatmap_suite">Heatmap Suite</a> and <a href="http://www.clicktale.com/product/conversion_suite">Conversion Analytics</a> solutions, but was our Visitor Recordings feature that started it all. Giving you a front row seat to your visitors&#8217; browsing sessions and delivering a thorough, in-depth view into what your visitors are focusing on and interacting with inside the pages themselves. All you need to do is grab the popcorn.</p>
<p>Our <a href="http://www.clicktale.com/product/heatmap_suite">Heat maps</a> are aggregated reports that visually display what parts of a webpage are looked at, clicked on, focused on and interacted with by your online visitors. See exactly what images, text and call to action buttons your visitors&#8217; think are hot and what&#8217;s not!</p>
<p>Both these features allow you to instantly see how to go about optimizing your website instantly so you don&#8217;t have to guess.</p>
<p>As a fully hosted subscription service, ClickTale is quick and easy to set up. We believe our wide range of heatmaps, behavioral analytics and full video playback make ClickTale the perfect way to round out your traditional web analytics suite. For more information, please visit <a href="http://www.clicktale.com">www.clicktale.com</a>.</p>
<p>- Shmuli Goldberg, <a href="http://www.clicktale.com">ClickTale</a></p>
<div class="tpm-note">This guest blog series highlights companies in SoftLayer&#8217;s <a href="http://www.softlayer.com/marketplace">Technology Partners Marketplace</a>. <br/>These <a href="http://blog.softlayer.com/partner-marketplace/">Partners</a> have built their businesses on the SoftLayer Platform, and we&#8217;re excited for them to tell their stories. New Partners will be added to the Marketplace each month, so stay tuned for many more come.</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.softlayer.com/2011/technology-partner-spotlight-clicktale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happiness is a Warm Firmware Update</title>
		<link>http://blog.softlayer.com/2010/happiness-is-a-warm-firmware-update/</link>
		<comments>http://blog.softlayer.com/2010/happiness-is-a-warm-firmware-update/#comments</comments>
		<pubDate>Wed, 20 Oct 2010 14:37:33 +0000</pubDate>
		<dc:creator>Mark Quigley</dc:creator>
				<category><![CDATA[Executive Blog]]></category>
		<category><![CDATA[SoftLayer]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[control]]></category>
		<category><![CDATA[feature]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[portal]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://blog.softlayer.com/?p=2338</guid>
		<description><![CDATA[I thought this was pretty cool. SoftLayer has just launched a firmware upgrade tool to the customer portal. No more waiting for SoftLayer to upgrade your firmware, no more uncontrollable downtime when you don’t want it. The new upgrade tool places upgrade control firmly in the hands of customers, giving them the ability to march [...]]]></description>
			<content:encoded><![CDATA[<p>I thought this was pretty cool. SoftLayer has just launched a firmware upgrade tool to the customer portal. No more waiting for SoftLayer to upgrade your firmware, no more uncontrollable downtime when you don’t want it. The new upgrade tool places upgrade control firmly in the hands of customers, giving them the ability to march to their own drummer.</p>
<p>Simply click the relevant radio button, press update and the upgrade begins. If there is a problem, SoftLayer gets notified and we will replace any failed components to get a customer back on line. Done. How cool is that??</p>
<p><center><img src="http://cdn.softlayer.com/innerlayer/portal-new-account.png" alt="New Account" /></center></p>
<p>-<a href="http://twitter.com/quigleymar">@quigleymar</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.softlayer.com/2010/happiness-is-a-warm-firmware-update/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Help! My Server Blocked Me!</title>
		<link>http://blog.softlayer.com/2008/help-my-server-blocked-me/</link>
		<comments>http://blog.softlayer.com/2008/help-my-server-blocked-me/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 18:18:56 +0000</pubDate>
		<dc:creator>Romeo Rodriguez</dc:creator>
				<category><![CDATA[SoftLayer]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[connections]]></category>
		<category><![CDATA[KVM]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[RDP]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://theinnerlayer.softlayer.com/?p=229</guid>
		<description><![CDATA[Ok, the title of this blog may sound funny but you would be surprised how many phone calls I get about that very subject. Sure it’s not that specific case every time, sometimes it’s a software issue, other times hardware. But in the end not being able to access your server is the worst feeling [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, the title of this blog may sound funny but you would be surprised how many phone calls I get about that very subject. Sure it’s not that specific case every time, sometimes it’s a software issue, other times hardware. But in the end not being able to access your server is the worst feeling in the world.</p>
<p>Enter KVM over IP. (Also known as Keyboard-Video-Mouse)</p>
<p>Yes boys and girls, this wonderful feature provided on all mid to high-performance multi-core servers can be your best friend in a time of need. While on a routine support call, a customer of mine stated the server was blocking not only himself but a lot of his customers. I kept a level head and told him it was no problem. He paused for a moment then let me know just how big a deal it was, while he was explaining I promptly used the KVM to login to his server and shutdown the firewall. All of a sudden he stopped talking and said “It’s working!”, “What did you do?” I explained to him how KVM works just as if you were hooking up a console to your server, and can be used even if your public Ethernet cable is unplugged. I went on to show him where it was in his home portal and how all of this was given to him for free. Also I explained the issue had been fixed from my desk without ever having access to either the public or private ports on his server. The customer had never heard of such a feature and was amazed at how easy it was to use. </p>
<p>The beauty of KVM over IP is it removes the one thing many server owners dread, not being able to be in the data center when issues arise with their standard connection methods (RDP, SSH). With KVM over IP we are giving the customer a solution to that problem. Via KVM you can login to the management interface card, which in most cases resides on an entirely different network, and within seconds you will have access to your terminal as if you were standing right there in the datacenter!!! Not only can you connect to your server, you can manually power it on/off and also reboot your server all within the same management screen. Beyond server access you can monitor temperature readings as well as fan speeds in the server. The KVM card is a HUGE tool in any Softlayer customers’ toolbox and one that we in the Operations Team use often.</p>
<p>Here at Softlayer we are always thinking about how to make your business easier to run, whether it be implementing global services such as CDN, or making sure our customers have basic access to their server in the event of a crisis. Since starting my career here at Softlayer and learning of the KVM feature I’ve made it a point to inform the customer of the KVM interface along with all features that are offered to them (and believe me they never stop coming!) so be sure and check our announcements page because you never know what we will come out with next!</p>
<p>-Romeo</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.softlayer.com/2008/help-my-server-blocked-me/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
