<?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>Xtreme Services LLC</title>
	<atom:link href="http://www.xtremeservices.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xtremeservices.net</link>
	<description>Quality web hosting snohomish county and surrounding areas</description>
	<lastBuildDate>Thu, 03 May 2012 04:52:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Hardening WordPress Install</title>
		<link>http://www.xtremeservices.net/2012/05/hardening-wordpress-install/</link>
		<comments>http://www.xtremeservices.net/2012/05/hardening-wordpress-install/#comments</comments>
		<pubDate>Thu, 03 May 2012 04:49:17 +0000</pubDate>
		<dc:creator>[XTS] William</dc:creator>
				<category><![CDATA[Website Security]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.xtremeservices.net/?p=321</guid>
		<description><![CDATA[If you are setting up your web site like many, you may be using one of the easy free open-source Content Management Systems (CMS) like WordPress. WordPress allows one to easily start a web site in only a few steps, from connecting the database to titling the web site. With the ease of use, also &#8230;]]></description>
			<content:encoded><![CDATA[<p>If you are setting up your web site like many, you may be using one of the easy free open-source Content Management Systems (CMS) like <a href="http://www.wordpress.org">WordPress</a>. WordPress allows one to easily start a web site in only a few steps, from connecting the database to titling the web site.</p>
<p>With the ease of use, also comes responsibility with any type of web application or third party installation. Security. For example, &#8220;Hardening&#8221; (keeping secure) your WordPress install includes some of the following:</p>
<ul>
<li>Keeping your WordPress install updated
<ul>
<li>Since version 2.7, WP features automatic updates</li>
</ul>
</li>
<li>Admin and FTP passwords kept strong / difficult mix of letters, numbers, symbols</li>
<li>Change your main administrator account username &#8220;admin&#8221; to another username. With defaults of CMS, many bots will search out to these defaults and will search for ways in</li>
<li>File Permissions on the server set for your folders to now allow other users to overwrite your files</li>
<li>Keeping plugins updated</li>
<li>More info at <a href="http://codex.wordpress.org/Hardening_WordPress">&#8220;Hardening WordPress&#8221;</a> on WordPress.org</li>
</ul>
<p>Your system is always is as strong as your weakest point. If you install third party plugins, make sure those plugins are reviewed and don&#8217;t compromise your security too.</p>
<p>We have used WordPress with many clients and one security plugin we suggest is <a href="http://wordpress.org/extend/plugins/bulletproof-security/">&#8220;Bulletproof Security&#8221;</a></p>
<p>Keep your web sites updated and have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xtremeservices.net/2012/05/hardening-wordpress-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blocking Site Rippers, Crawlers and Email Scrapers</title>
		<link>http://www.xtremeservices.net/2012/05/blocking-site-rippers-crawlers-and-email-scrapers/</link>
		<comments>http://www.xtremeservices.net/2012/05/blocking-site-rippers-crawlers-and-email-scrapers/#comments</comments>
		<pubDate>Tue, 01 May 2012 20:30:08 +0000</pubDate>
		<dc:creator>[XTS] Jeremy</dc:creator>
				<category><![CDATA[Website Security]]></category>

		<guid isPermaLink="false">http://www.xtremeservices.net/?p=304</guid>
		<description><![CDATA[Website security comes in many forms and this article will present 1 method which can be used for sites running under Apache2 with mod_rewrite. Apache2 makes use of a special file (.htaccess) that can be placed in the root of your site or in individual folders.  .htaccess has a multitude of options to help combat &#8230;]]></description>
			<content:encoded><![CDATA[<p><strong>Website security comes in many forms and this article will present 1 method which can be used for sites running under Apache2 with mod_rewrite.</strong></p>
<p>Apache2 makes use of a special file (.htaccess) that can be placed in the root of your site or in individual folders.  .htaccess has a multitude of options to help combat the darker side of the web we live with.  We highly recommend reading this <a title="Very well written overview of htaccess" href="http://perishablepress.com/stupid-htaccess-tricks/#sec9" target="_blank">http://perishablepress.com/stupid-htaccess-tricks/#sec9</a> .</p>
<p>.htacces has the ability to weed out what types of user-agents are requesting your website and redirect them to another url or to a 403, 500 etc. This requires that the Apache2 module <a title="Learn More about Mod_rewrite" href="http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html" target="_blank">mod_rewrite</a> is enabled.</p>
<p>Add the following to your .htaccess file to enable this feature</p>
<pre>#Enable RewriteEngine
RewriteEngine On 

# Stop the Nasties!!!
 RewriteBase /
 RewriteCond %{HTTP_USER_AGENT} ^Anarchie [OR]
 RewriteCond %{HTTP_USER_AGENT} ^ASPSeek [OR]
 RewriteCond %{HTTP_USER_AGENT} ^attach [OR]
 RewriteCond %{HTTP_USER_AGENT} ^autoemailspider [OR]
 RewriteCond %{HTTP_USER_AGENT} ^Xaldon\ WebSpider [OR]
 RewriteCond %{HTTP_USER_AGENT} ^Xenu [OR]
 RewriteCond %{HTTP_USER_AGENT} ^Zeus.*Webster [OR]
 RewriteCond %{HTTP_USER_AGENT} ^Zeus
 RewriteRule ^.* - [F,L]</pre>
<p title="Need your website hosted with a reputable company? Learn more about what we offer.">To get a better idea of what user-agents might be affecting your site hosted with <a title="Need your website hosted with a reputable company? Learn more about what we offer." href="http://www.xtremeservices.net/web-hosting/" target="_blank">Xtreme Services</a>, open your browser to http://yoursite/stats  scroll down to the section that looks like this :</p>
<p><a href="http://www.xtremeservices.net/2012/05/blocking-site-rippers-crawlers-and-email-scrapers/website-stats-ua/" rel="attachment wp-att-306"><img class="aligncenter size-full wp-image-306" title="website-stats-ua" src="http://www.xtremeservices.net/wp-content/uploads/website-stats-ua.png" alt="" width="678" height="395" /></a>We can clearly see that a user-agent named ZmEu has been bombarding this site followed by the Baidu spyder.</p>
<p>To learn more about the ZmEu user-agent, do a search on <a title="Search on Google" href="http://www.google.com" target="_blank">google</a> to see what others are saying, or go to <a title="Look up a User Agent" href="http://www.botsvsbrowsers.com" target="_blank">www.botsvsbrowsers.com</a> and search to see if it has been classified.</p>
<p>The ZmEu user-agent can be added to the block list as follows :</p>
<pre>#Enable RewriteEngine
RewriteEngine On 

# Stop the Nasties!!!
 RewriteBase /
 RewriteCond %{HTTP_USER_AGENT} ^Anarchie [OR]
 RewriteCond %{HTTP_USER_AGENT} ^ASPSeek [OR]
 RewriteCond %{HTTP_USER_AGENT} ^attach [OR]
 RewriteCond %{HTTP_USER_AGENT} ^autoemailspider [OR]
 RewriteCond %{HTTP_USER_AGENT} ^Xaldon\ WebSpider [OR]
 RewriteCond %{HTTP_USER_AGENT} ^Xenu [OR]
 RewriteCond %{HTTP_USER_AGENT} ^Zeus.*Webster [OR]
 RewriteCond %{HTTP_USER_AGENT} ^Zeus [OR]
 RewriteCond %{HTTP_USER_AGENT} ZmEu [NC]
 RewriteRule ^.* - [F,L]</pre>
<p>To test that this additional condition is effective, visit <a title="Test User-Agent Rule" href="http://www.botsvsbrowsers.com/SimulateUserAgent.asp" target="_blank">http://www.botsvsbrowsers.com/SimulateUserAgent.asp</a> and paste ZmEu into the User Agent text box, add your website address into the URL below it and then click GO. If the new condition worked, you should see a Forbidden message :</p>
<p><a href="http://www.xtremeservices.net/2012/05/blocking-site-rippers-crawlers-and-email-scrapers/user-agent-testing/" rel="attachment wp-att-311"><img class="aligncenter size-full wp-image-311" title="user-agent-testing" src="http://www.xtremeservices.net/wp-content/uploads/user-agent-testing.png" alt="" width="581" height="569" /></a></p>
<p>A comprehensive example :</p>
<pre>#Enable RewriteEngine
RewriteEngine On

# Stop the Nasties!!
RewriteBase /
RewriteCond %{HTTP_USER_AGENT} ^Anarchie [OR]
RewriteCond %{HTTP_USER_AGENT} ^ASPSeek [OR]
RewriteCond %{HTTP_USER_AGENT} ^attach [OR]
RewriteCond %{HTTP_USER_AGENT} ^autoemailspider [OR]
RewriteCond %{HTTP_USER_AGENT} ^BlackWidow [OR]
RewriteCond %{HTTP_USER_AGENT} ^Bot\ mailto:craftbot@yahoo.com [OR]
RewriteCond %{HTTP_USER_AGENT} ^ChinaClaw [OR]
RewriteCond %{HTTP_USER_AGENT} ^Custo [OR]
RewriteCond %{HTTP_USER_AGENT} ^DISCo [OR]
RewriteCond %{HTTP_USER_AGENT} ^Download\ Demon [OR]
RewriteCond %{HTTP_USER_AGENT} ^eCatch [OR]
RewriteCond %{HTTP_USER_AGENT} ^EirGrabber [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailSiphon [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailWolf [OR]
RewriteCond %{HTTP_USER_AGENT} ^Express\ WebPictures [OR]
RewriteCond %{HTTP_USER_AGENT} ^ExtractorPro [OR]
RewriteCond %{HTTP_USER_AGENT} ^EyeNetIE [OR]
RewriteCond %{HTTP_USER_AGENT} ^FlashGet [OR]
RewriteCond %{HTTP_USER_AGENT} ^GetRight [OR]
RewriteCond %{HTTP_USER_AGENT} ^GetWeb! [OR]
RewriteCond %{HTTP_USER_AGENT} ^Go!Zilla [OR]
RewriteCond %{HTTP_USER_AGENT} ^Go-Ahead-Got-It [OR]
RewriteCond %{HTTP_USER_AGENT} ^GrabNet [OR]
RewriteCond %{HTTP_USER_AGENT} ^Grafula [OR]
RewriteCond %{HTTP_USER_AGENT} ^HMView [OR]
RewriteCond %{HTTP_USER_AGENT} HTTrack [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^Image\ Stripper [OR]
RewriteCond %{HTTP_USER_AGENT} ^Image\ Sucker [OR]
RewriteCond %{HTTP_USER_AGENT} Indy\ Library [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^InterGET [OR]
RewriteCond %{HTTP_USER_AGENT} ^Internet\ Ninja [OR]
RewriteCond %{HTTP_USER_AGENT} ^JetCar [OR]
RewriteCond %{HTTP_USER_AGENT} ^JOC\ Web\ Spider [OR]
RewriteCond %{HTTP_USER_AGENT} ^larbin [OR]
RewriteCond %{HTTP_USER_AGENT} ^LeechFTP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mass\ Downloader [OR]
RewriteCond %{HTTP_USER_AGENT} ^MIDown\ tool [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mister\ PiX [OR]
RewriteCond %{HTTP_USER_AGENT} ^Navroad [OR]
RewriteCond %{HTTP_USER_AGENT} ^NearSite [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetAnts [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetSpider [OR]
RewriteCond %{HTTP_USER_AGENT} ^Net\ Vampire [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetZIP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Octopus [OR]
RewriteCond %{HTTP_USER_AGENT} ^Offline\ Explorer [OR]
RewriteCond %{HTTP_USER_AGENT} ^Offline\ Navigator [OR]
RewriteCond %{HTTP_USER_AGENT} ^PageGrabber [OR]
RewriteCond %{HTTP_USER_AGENT} ^Papa\ Foto [OR]
RewriteCond %{HTTP_USER_AGENT} ^pavuk [OR]
RewriteCond %{HTTP_USER_AGENT} ^pcBrowser [OR]
RewriteCond %{HTTP_USER_AGENT} ^RealDownload [OR]
RewriteCond %{HTTP_USER_AGENT} ^ReGet [OR]
RewriteCond %{HTTP_USER_AGENT} ^SiteSnagger [OR]
RewriteCond %{HTTP_USER_AGENT} ^SmartDownload [OR]
RewriteCond %{HTTP_USER_AGENT} ^SuperBot [OR]
RewriteCond %{HTTP_USER_AGENT} ^SuperHTTP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Surfbot [OR]
RewriteCond %{HTTP_USER_AGENT} ^tAkeOut [OR]
RewriteCond %{HTTP_USER_AGENT} ^Teleport\ Pro [OR]
RewriteCond %{HTTP_USER_AGENT} ^VoidEYE [OR]
RewriteCond %{HTTP_USER_AGENT} ^Web\ Image\ Collector [OR]
RewriteCond %{HTTP_USER_AGENT} ^Web\ Sucker [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebAuto [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebCopier [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebFetch [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebGo\ IS [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebLeacher [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebReaper [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebSauger [OR]
RewriteCond %{HTTP_USER_AGENT} ^Website\ eXtractor [OR]
RewriteCond %{HTTP_USER_AGENT} ^Website\ Quester [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebStripper [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebWhacker [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebZIP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Wget [OR]
RewriteCond %{HTTP_USER_AGENT} ^Widow [OR]
RewriteCond %{HTTP_USER_AGENT} ^WWWOFFLE [OR]
RewriteCond %{HTTP_USER_AGENT} ^Xaldon\ WebSpider [OR]
RewriteCond %{HTTP_USER_AGENT} ^Xenu [OR]
RewriteCond %{HTTP_USER_AGENT} ^Zeus.*Webster [OR]
RewriteCond %{HTTP_USER_AGENT} ^Zeus [OR]
RewriteCond %{HTTP_USER_AGENT} ZmEu [NC]
RewriteRule ^.* - [F,L]</pre>
<p>If you would rather not be so friendly, you can re-direct specific user-agents to a website of your choice.</p>
<pre># Redirect to a site that gets the message across
RewriteRule ^.*$ https://www.google.com/search?q=getlost [R,L]</pre>
<p>If you know a user-agent is a Spam Bot / Mail Scraper, you can use the following to keep them busy :</p>
<pre># Redirect to a Spam Poison site : )
RewriteRule ^.*$ http://english-1335903213.spampoison.com [R,L]</pre>
<p>&nbsp;</p>
<p><em><strong>Disclaimer &#8211; this article is a helpful how to only.  Implement the content at your own risk.  Be sure to test all changes you make to .htaccess thoroughly to prevent any unwanted messages for valid user-agents.</strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xtremeservices.net/2012/05/blocking-site-rippers-crawlers-and-email-scrapers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XTS Opposes C.I.S.P.A (HR3523)</title>
		<link>http://www.xtremeservices.net/2012/04/xts-opposes-c-i-s-p-a-hr3523/</link>
		<comments>http://www.xtremeservices.net/2012/04/xts-opposes-c-i-s-p-a-hr3523/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 08:48:06 +0000</pubDate>
		<dc:creator>[XTS] Jeremy</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.xtremeservices.net/?p=301</guid>
		<description><![CDATA[We in the IT and Web industry deal with Cyber threats on a daily basis. However, we do not believe that giving up our Privacy will make us any safer. Please join us in encouraging your Representatives and Senators to NOT support this bill. Take action by CLICKING HERE Learn more about CISPA Who else &#8230;]]></description>
			<content:encoded><![CDATA[<p>We in the IT and Web industry deal with Cyber threats on a daily basis.  However, we do not believe that giving up our Privacy will make us any safer. Please join us in encouraging your Representatives and Senators to NOT support this bill.  Take action by <a href="https://action.eff.org/o/9042/p/dia/action/public/?action_KEY=8609" title="Take Action - Contact your Congress and Senators" target="_blank">CLICKING HERE</a></p>
<p><a href="https://www.eff.org/deeplinks/2012/04/voices-against-cispa" title="Learn More about CISPA" target="_blank">Learn more about CISPA</a></p>
<p><a href="https://www.eff.org/deeplinks/2012/04/cybersecurity-bill-faq-disturbing-privacy-dangers-cispa-and-how-you-stop-it" title="Who Else Opposes CISPA?" target="_blank">Who else opposes CISPA?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xtremeservices.net/2012/04/xts-opposes-c-i-s-p-a-hr3523/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get your .CO Domains</title>
		<link>http://www.xtremeservices.net/2012/02/get-your-co-domains/</link>
		<comments>http://www.xtremeservices.net/2012/02/get-your-co-domains/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 14:18:17 +0000</pubDate>
		<dc:creator>[XTS] William</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[.co]]></category>
		<category><![CDATA[domain registration]]></category>

		<guid isPermaLink="false">http://www.xtremeservices.net/?p=296</guid>
		<description><![CDATA[As many of you may have seen from the Super Bowl ads, that GoDaddy used another seductive type advertising campaign to draw users to the .CO domain extension. Here at Xtreme Services, we will never use scare tactics, seductive or inappropriate advertising, etc. We just give you the facts and straight up pricing for your &#8230;]]></description>
			<content:encoded><![CDATA[<p><a style="color: #ff4b33; line-height: 24px;" href="http://www.xtremeservices.net/2012/02/get-your-co-domains/nogodaddyads/" rel="attachment wp-att-297"><img class="size-full wp-image-297 alignright" style="border-style: initial; border-color: initial;" title=".CO Seductive Ads" src="http://www.xtremeservices.net/wp-content/uploads/nogodaddyads.jpg" alt=".CO Seductive Ads" width="136" height="59" /></a>As many of you may have seen from the Super Bowl ads, that GoDaddy used another seductive type advertising campaign to draw users to the .CO domain extension. Here at Xtreme Services, we will never use scare tactics, seductive or inappropriate advertising, etc. We just give you the facts and straight up pricing for your Web Hosting and Domain Registrations Needs.</p>
<p>If interested in the latest trend of <a title="Domains" href="http://www.xtremeservices.net/web-hosting/domains/">.CO domains</a>, we offer them at the standard price of $12.99 a year</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xtremeservices.net/2012/02/get-your-co-domains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SOPA Weather Black Out</title>
		<link>http://www.xtremeservices.net/2012/01/sopa-weather-black-out/</link>
		<comments>http://www.xtremeservices.net/2012/01/sopa-weather-black-out/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 23:02:09 +0000</pubDate>
		<dc:creator>[XTS] Jeremy</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.xtremeservices.net/?p=290</guid>
		<description><![CDATA[Today is the official SOPA/PIPA blackout day recognized by Google, Wikipedia and many other web giants. Between 10:45am and 2:30pm PST we had a blackout ourselves. The Xtreme winter weather in the western Washington area caused a chain of events that resulted in a severed Fiber Line. Everything is back online thanks to our ISP &#8230;]]></description>
			<content:encoded><![CDATA[<p>Today is the official SOPA/PIPA blackout day recognized by Google, Wikipedia and many other web giants.  Between 10:45am and 2:30pm PST we had a blackout ourselves.  The Xtreme winter weather in the western Washington area caused a chain of events that resulted in a severed Fiber Line. Everything is back online thanks to our ISP technicians.  We apologize for the outage and appreciate your understanding with service blips that are out of our hands. ~ XTS team.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xtremeservices.net/2012/01/sopa-weather-black-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XTS Opposes S.O.P.A. (H.R. 3261)</title>
		<link>http://www.xtremeservices.net/2012/01/xts-opposes-s-o-p-a-h-r-3261/</link>
		<comments>http://www.xtremeservices.net/2012/01/xts-opposes-s-o-p-a-h-r-3261/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 18:15:35 +0000</pubDate>
		<dc:creator>[XTS] Jeremy</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.xtremeservices.net/?p=287</guid>
		<description><![CDATA[We would like to say something about a controversial piece of Legislation named S.O.P.A (Stop Online Piracy Act). This bill in its current form might have good intentions to fight Piracy, but as the Web Industry unanimously agrees, we can do better. H.R. 3261 was Introduced on October 26th, 2011 by Lamar smith (R-TX) to &#8230;]]></description>
			<content:encoded><![CDATA[<p>We would like to say something about a controversial piece of Legislation named S.O.P.A (Stop Online Piracy Act).</p>
<p>This bill in its current form might have good intentions to fight Piracy, but as the Web Industry unanimously agrees, we can do better.</p>
<p>H.R. 3261 was Introduced on October 26th, 2011 by Lamar smith (R-TX) to the House of Representatives. It will be debated in the Senate January 23rd, 2012.</p>
<p>You can read it for yourself :</p>
<p>http://thomas.loc.gov/cgi-bin/query/z?c112:H.R.3261:</p>
<p>Xtreme Services stands with Google, Facebook, Foursquare, Wikipedia, eBay, Paypal, LinkedIn, Mozilla, Twitter, Yahoo!, Zynga and many others in opposing this bill.</p>
<p>You can look up your State Senators to see where they stand on the bill.</p>
<p>http://projects.propublica.org/sopa/</p>
<p>Sincerely,</p>
<p>~XTS Team </p>
]]></content:encoded>
			<wfw:commentRss>http://www.xtremeservices.net/2012/01/xts-opposes-s-o-p-a-h-r-3261/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy New Year 2012!</title>
		<link>http://www.xtremeservices.net/2012/01/happy-new-year-2012/</link>
		<comments>http://www.xtremeservices.net/2012/01/happy-new-year-2012/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 22:20:52 +0000</pubDate>
		<dc:creator>[XTS] Jeremy</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.xtremeservices.net/?p=285</guid>
		<description><![CDATA[We would like to wish all of our members a very happy New Year in 2012! We look forward to what the new year will bring as we continue to do our best in providing Xcellent services to our members. Sincerely ~XTS team]]></description>
			<content:encoded><![CDATA[<p>We would like to wish all of our members a very happy New Year in 2012!  We look forward to what the new year will bring as we continue to do our best in providing Xcellent services to our members. Sincerely ~XTS team</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xtremeservices.net/2012/01/happy-new-year-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merry Christmas!</title>
		<link>http://www.xtremeservices.net/2011/12/merry-christmas/</link>
		<comments>http://www.xtremeservices.net/2011/12/merry-christmas/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 22:09:09 +0000</pubDate>
		<dc:creator>[XTS] Jeremy</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.xtremeservices.net/?p=282</guid>
		<description><![CDATA[We would like to wish all of our Members a very Merry Christmas! To celebrate this wonderful season, we are giving the gift of Bandwidth! This Christmas morning you will wake up to a major increase in our Internet Pipe. We hope this fills you with good Pingings of great Joy. Sincerely ~XTS Team]]></description>
			<content:encoded><![CDATA[<p>We would like to wish all of our Members a very Merry Christmas! To celebrate this wonderful season, we are giving the gift of Bandwidth! This Christmas morning you will wake up to a major increase in our Internet Pipe. We hope this fills you with good Pingings of great Joy. Sincerely ~XTS Team</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xtremeservices.net/2011/12/merry-christmas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XTS is Green</title>
		<link>http://www.xtremeservices.net/2011/11/xts-is-green/</link>
		<comments>http://www.xtremeservices.net/2011/11/xts-is-green/#comments</comments>
		<pubDate>Sat, 19 Nov 2011 04:08:51 +0000</pubDate>
		<dc:creator>[XTS] Jeremy</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.xtremeservices.net/?p=272</guid>
		<description><![CDATA[Be assured that your hosting with Xtreme Services is leaving little to no footprint on the environment. Our servers are powered with Electricity distributed by Snohomish PUD broken down as follows :]]></description>
			<content:encoded><![CDATA[<p>Be assured that your hosting with Xtreme Services is leaving little to no footprint on the environment.<br />
Our servers are powered with Electricity distributed by Snohomish PUD broken down as follows :</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-273" title="Power Distribution" src="http://www.xtremeservices.net/wp-content/uploads/Power-Distribution.png" alt="XTS uses Green Power" width="327" height="363" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xtremeservices.net/2011/11/xts-is-green/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ISP Outage 4:15pm PST 11/11/2011</title>
		<link>http://www.xtremeservices.net/2011/11/isp-outage-415pm-pst-11112011/</link>
		<comments>http://www.xtremeservices.net/2011/11/isp-outage-415pm-pst-11112011/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 01:27:50 +0000</pubDate>
		<dc:creator>[XTS] Jeremy</dc:creator>
				<category><![CDATA[Outage]]></category>

		<guid isPermaLink="false">http://www.xtremeservices.net/?p=268</guid>
		<description><![CDATA[Our ISP services were offline between 4:15pm and 5:15pm PST due to the wind storm today. Sorry for the inconvenience. ~Support]]></description>
			<content:encoded><![CDATA[<p>Our ISP services were offline between 4:15pm and 5:15pm PST due to the wind storm today. Sorry for the inconvenience. ~Support</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xtremeservices.net/2011/11/isp-outage-415pm-pst-11112011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

