<?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>Web Development London UK &#187; Blog</title>
	<atom:link href="http://hsmoore.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://hsmoore.com</link>
	<description>Web Development London UK</description>
	<lastBuildDate>Wed, 01 Feb 2012 12:10:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>LEN in MySQL</title>
		<link>http://hsmoore.com/blog/len-in-mysql/</link>
		<comments>http://hsmoore.com/blog/len-in-mysql/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 12:10:18 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[MSSQL]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[len]]></category>
		<category><![CDATA[length]]></category>
		<category><![CDATA[mssql]]></category>

		<guid isPermaLink="false">http://hsmoore.com/?p=1416</guid>
		<description><![CDATA[In MySQL 5.1 LEN is called LENGTH, you use it exactly the same and pass in the link, so: LENGTH(link).]]></description>
			<content:encoded><![CDATA[<p>In MySQL 5.1 LEN is called LENGTH, you use it exactly the same and pass in the link, so: LENGTH(link).</p>
]]></content:encoded>
			<wfw:commentRss>http://hsmoore.com/blog/len-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove all linebreaks in PHP</title>
		<link>http://hsmoore.com/blog/remove-all-linebreaks-in-php/</link>
		<comments>http://hsmoore.com/blog/remove-all-linebreaks-in-php/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 09:22:57 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://hsmoore.com/?p=1408</guid>
		<description><![CDATA[If you are having problems with a string that keeps adding a line break when output from PHP to HTML then the following code will work wonders for you! $string_with_line_break = &#34;blabla\nbla\r&#34;; $string_without_line_break = trim&#40;preg_replace&#40; &#34;/\s+/&#34;,&#34;&#34;,$string_with_line_break&#41;&#41;;]]></description>
			<content:encoded><![CDATA[<p>If you are having problems with a string that keeps adding a line break when output from PHP to HTML then the following code will work wonders for you!</p>
<div class="codesnip-container" >
<div class="php codesnip" style="font-family:monospace;"><span class="re0">$string_with_line_break</span> <span class="sy0">=</span> <span class="st0">&quot;blabla<span class="es1">\n</span>bla<span class="es1">\r</span>&quot;</span><span class="sy0">;</span><br />
<span class="re0">$string_without_line_break</span> <span class="sy0">=</span> <a href="http://www.php.net/trim"><span class="kw3">trim</span></a><span class="br0">&#40;</span><a href="http://www.php.net/preg_replace"><span class="kw3">preg_replace</span></a><span class="br0">&#40;</span> <span class="st0">&quot;/\s+/&quot;</span><span class="sy0">,</span><span class="st0">&quot;&quot;</span><span class="sy0">,</span><span class="re0">$string_with_line_break</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="sy0">;</span></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://hsmoore.com/blog/remove-all-linebreaks-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE9 adding empty table cells in large table</title>
		<link>http://hsmoore.com/blog/ie9-adding-empty-table-cells-in-large-table/</link>
		<comments>http://hsmoore.com/blog/ie9-adding-empty-table-cells-in-large-table/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 11:37:14 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[bug]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[ie9]]></category>
		<category><![CDATA[whitespace]]></category>

		<guid isPermaLink="false">http://hsmoore.com/?p=1402</guid>
		<description><![CDATA[Well as usual, we are once again fighting the woes of the beloved Internet Explorer, and it appears that Microsoft&#8217;s latest greatest new and improved browser rival to the market IE9 still has a whole bunch of irritations and retardation to worry about (saw that one coming). Today I was busy loading a massive amount...]]></description>
			<content:encoded><![CDATA[<p>Well as usual, we are once again fighting the woes of the beloved Internet Explorer, and it appears that Microsoft&#8217;s latest greatest new and improved browser rival to the market IE9 still has a whole bunch of irritations and retardation to worry about (saw that one coming).</p>
<p>Today I was busy loading a massive amount of data into the body of a table using ajax and in Firefox and even Internet Explorer 8 it worked quite well, but Internet Explorer 9 decided that it would like to add some empty table cells randomly around my &#8220;massive table&#8221;, now of course I began by kicking something and cried a few times&#8230;.. but then I thought about whitespacing and the usual problems I had found with it before while using &#8220;the best browser ever known to human-kind&#8221;(&#8230;not) and I thought of removing the whitespaces between the &lt;tr&gt;&#8217;s and &lt;td&gt;&#8217;s.</p>
<p>Sample code while crying and trying to get rid of the ironious cells:</p>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;"><span class="sc2">&lt;<a href="http://december.com/html/4/element/table.html"><span class="kw2">table</span></a>&gt;</span><br />
<span class="sc2">&lt;<a href="http://december.com/html/4/element/tbody.html"><span class="kw2">tbody</span></a>&gt;</span><br />
<span class="sc2">&lt;<a href="http://december.com/html/4/element/tr.html"><span class="kw2">tr</span></a>&gt;</span><br />
<span class="sc2">&lt;<a href="http://december.com/html/4/element/td.html"><span class="kw2">td</span></a>&gt;</span>Some text here 1<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/td.html"><span class="kw2">td</span></a>&gt;</span><br />
<span class="sc2">&lt;<a href="http://december.com/html/4/element/td.html"><span class="kw2">td</span></a>&gt;</span>Some text here 2<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/td.html"><span class="kw2">td</span></a>&gt;</span><br />
<span class="sc2">&lt;<a href="http://december.com/html/4/element/td.html"><span class="kw2">td</span></a>&gt;</span>Some text here 3<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/td.html"><span class="kw2">td</span></a>&gt;</span><br />
<span class="sc2">&lt;<a href="http://december.com/html/4/element/td.html"><span class="kw2">td</span></a>&gt;</span>Some text here 4<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/td.html"><span class="kw2">td</span></a>&gt;</span><br />
<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/tr.html"><span class="kw2">tr</span></a>&gt;</span><br />
<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/tbody.html"><span class="kw2">tbody</span></a>&gt;</span><br />
<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/table.html"><span class="kw2">table</span></a>&gt;</span></div>
</div>
<p>The really dumb thing that fixed IE9&#8242;s problems:</p>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;"><span class="sc2">&lt;<a href="http://december.com/html/4/element/table.html"><span class="kw2">table</span></a>&gt;</span><br />
<span class="sc2">&lt;<a href="http://december.com/html/4/element/tbody.html"><span class="kw2">tbody</span></a>&gt;</span><br />
<span class="sc2">&lt;<a href="http://december.com/html/4/element/tr.html"><span class="kw2">tr</span></a>&gt;&lt;<a href="http://december.com/html/4/element/td.html"><span class="kw2">td</span></a>&gt;</span>Some text here 1<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/td.html"><span class="kw2">td</span></a>&gt;&lt;<a href="http://december.com/html/4/element/td.html"><span class="kw2">td</span></a>&gt;</span>Some text here 2<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/td.html"><span class="kw2">td</span></a>&gt;&lt;<a href="http://december.com/html/4/element/td.html"><span class="kw2">td</span></a>&gt;</span>Some text here 3<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/td.html"><span class="kw2">td</span></a>&gt;&lt;<a href="http://december.com/html/4/element/td.html"><span class="kw2">td</span></a>&gt;</span>Some text here 4<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/td.html"><span class="kw2">td</span></a>&gt;&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/tr.html"><span class="kw2">tr</span></a>&gt;</span><br />
<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/tbody.html"><span class="kw2">tbody</span></a>&gt;</span><br />
<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/table.html"><span class="kw2">table</span></a>&gt;</span></div>
</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>And voila! Remove the whitespaces yourself and IE9 won&#8217;t get confused!</p>
]]></content:encoded>
			<wfw:commentRss>http://hsmoore.com/blog/ie9-adding-empty-table-cells-in-large-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SELECT Duplicate Items Using SQL</title>
		<link>http://hsmoore.com/blog/select-duplicate-items-using-sql/</link>
		<comments>http://hsmoore.com/blog/select-duplicate-items-using-sql/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 15:52:04 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[MSSQL]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://hsmoore.com/?p=1400</guid>
		<description><![CDATA[If you have a table which has duplicate items in then you can use the below statement to select them. SELECT * FROM tableName GROUP BY columnName HAVING &#40; COUNT&#40; columnName&#41; &#62;1 &#41;]]></description>
			<content:encoded><![CDATA[<p>If you have a table which has duplicate items in then you can use the below statement to select them.</p>
<div class="codesnip-container" >
<div class="sql codesnip" style="font-family:monospace;"><span class="kw1">SELECT</span> <span class="sy0">*</span> <span class="kw1">FROM</span> tableName<br />
<span class="kw1">GROUP</span> <span class="kw1">BY</span> columnName<br />
<span class="kw1">HAVING</span> <span class="br0">&#40;</span> COUNT<span class="br0">&#40;</span> columnName<span class="br0">&#41;</span> <span class="sy0">&gt;</span><span class="nu0">1</span> <span class="br0">&#41;</span></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://hsmoore.com/blog/select-duplicate-items-using-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Error: Can&#8217;t get hostname for your address</title>
		<link>http://hsmoore.com/blog/mysql-error-cant-get-hostname-for-your-address/</link>
		<comments>http://hsmoore.com/blog/mysql-error-cant-get-hostname-for-your-address/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 15:15:41 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[error]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[my.cnf]]></category>
		<category><![CDATA[skip-name-resolve]]></category>

		<guid isPermaLink="false">http://hsmoore.com/?p=1392</guid>
		<description><![CDATA[This error is thrown by MySQL because it tries to do a DNS lookup on the address connecting to the server and it fails due to the IP not being able to be resolved back to a name or some-other deeper DNS bust problem. The easiest way to fix this is to edit your my.ini...]]></description>
			<content:encoded><![CDATA[<p>This error is thrown by MySQL because it tries to do a DNS lookup on the address connecting to the server and it fails due to the IP not being able to be resolved back to a name or some-other deeper DNS bust problem.</p>
<p>The easiest way to fix this is to edit your my.ini or my.cnf (/etc/my.cnf) and in the<br />
[mysqld] section add the &#8220;skip-name-resolve&#8221; option.</p>
<p>Near the top of the file this will look similar to the below:</p>
<pre>
<div class="codesnip-container" >[mysqld]
skip-name-resolve</div>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://hsmoore.com/blog/mysql-error-cant-get-hostname-for-your-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe drops flash for mobiles!</title>
		<link>http://hsmoore.com/blog/adobe-drops-flash-for-mobiles/</link>
		<comments>http://hsmoore.com/blog/adobe-drops-flash-for-mobiles/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 17:54:54 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[adobe]]></category>

		<guid isPermaLink="false">http://hsmoore.com/?p=1373</guid>
		<description><![CDATA[..and it&#8217;s official &#8211; so says Adobe&#8217;s blog (read it here). Adobe will be dropping support for Flash on future devices due to performance and a few other things, pushing the future more towards the HTML5 route, which isn&#8217;t neccessarily a bad thing, I just find it quite ironic and somewhat comical that they waited...]]></description>
			<content:encoded><![CDATA[<p>..and it&#8217;s official &#8211; so says Adobe&#8217;s blog (<a title="Opens in a new tab/window" href="http://blogs.adobe.com/flashplatform/2011/11/flash-to-focus-on-pc-browsing-and-mobile-apps-adobe-to-more-aggressively-contribute-to-html5.html" target="_blank">read it here</a>). Adobe will be dropping support for Flash on future devices due to performance and a few other things, pushing the future more towards the HTML5 route, which isn&#8217;t neccessarily a bad thing, I just find it quite ironic and somewhat comical that they waited for Steve Jobs (Apple) to die before giving up their long time fight with Apple about Flash being or not being supported on mobile devices, namely the iPhone.</p>
<p>Read more here: <a title="Opens in a new tab/window" href="http://blogs.adobe.com/flashplatform/2011/11/flash-to-focus-on-pc-browsing-and-mobile-apps-adobe-to-more-aggressively-contribute-to-html5.html" target="_blank">http://blogs.adobe.com/flashplatform/2011/11/flash-to-focus-on-pc-browsing-and-mobile-apps-adobe-to-more-aggressively-contribute-to-html5.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hsmoore.com/blog/adobe-drops-flash-for-mobiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Colorbox not showing but background shows</title>
		<link>http://hsmoore.com/blog/jquery-colorbox-not-showing-but-background-shows/</link>
		<comments>http://hsmoore.com/blog/jquery-colorbox-not-showing-but-background-shows/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 11:30:06 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://hsmoore.com/?p=1368</guid>
		<description><![CDATA[I was using Colorbox for some lightbox type effects to show larger images when clicking on thumbnails, but for some reason the background was showing up but the pretty little box in the middle where the larger image is supposed to show never showed up, so this is how I made it finally appear after...]]></description>
			<content:encoded><![CDATA[<p>I was using <a title="Opens in a new tab/window" href="http://jacklmoore.com/colorbox/" target="_blank">Colorbox</a> for some lightbox type effects to show larger images when clicking on thumbnails, but for some reason the background was showing up but the pretty little box in the middle where the larger image is supposed to show never showed up, so this is how I made it finally appear after many failed attempts!</p>
<div class="codesnip-container" >
<div class="javascript codesnip" style="font-family:monospace;">$<span class="br0">&#40;</span><span class="st0">&quot;document&quot;</span><span class="br0">&#41;</span>.<span class="me1">ready</span><span class="br0">&#40;</span><span class="kw2">function</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="br0">&#123;</span><br />
&nbsp; &nbsp;$<span class="br0">&#40;</span><span class="st0">&quot;.theCssClass a[rel='forGroupingRelCodeGoesHere']&quot;</span><span class="br0">&#41;</span>.<span class="me1">colorbox</span><span class="br0">&#40;</span><span class="br0">&#123;</span> <span class="kw3">onLoad</span><span class="sy0">:</span> <span class="kw2">function</span> <span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span> $<span class="br0">&#40;</span><span class="st0">&quot;#colorbox&quot;</span><span class="br0">&#41;</span>.<span class="me1">show</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span> <span class="br0">&#125;</span> <span class="br0">&#125;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
<span class="br0">&#125;</span><span class="br0">&#41;</span><span class="sy0">;</span></div>
</div>
<p>So the &#8220;real&#8221; code that fixed it was the:</p>
<div class="codesnip-container" >
<div class="javascript codesnip" style="font-family:monospace;"><span class="br0">&#123;</span> <span class="kw3">onLoad</span><span class="sy0">:</span> <span class="kw2">function</span> <span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span> $<span class="br0">&#40;</span><span class="st0">&quot;#colorbox&quot;</span><span class="br0">&#41;</span>.<span class="me1">show</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span> <span class="br0">&#125;</span> <span class="br0">&#125;</span></div>
</div>
<p>This worked because the DOM was loading all the right things but the actual main parent element of the colorbox wasn&#8217;t changing it&#8217;s CSS to show the image.</p>
]]></content:encoded>
			<wfw:commentRss>http://hsmoore.com/blog/jquery-colorbox-not-showing-but-background-shows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SiteInfo New Web Tool</title>
		<link>http://hsmoore.com/blog/siteinfo-new-web-tool/</link>
		<comments>http://hsmoore.com/blog/siteinfo-new-web-tool/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 16:07:28 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://hsmoore.com/?p=1366</guid>
		<description><![CDATA[We have just launched our SiteInfo web tool to gather information about domains on the internet. You can view the current version at hsmoore.com/siteinfo.]]></description>
			<content:encoded><![CDATA[<p>We have just launched our SiteInfo web tool to gather information about domains on the internet.<br />
You can view the current version at <a href="http://hsmoore.com/siteinfo">hsmoore.com/siteinfo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://hsmoore.com/blog/siteinfo-new-web-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Value of Checkbox using jQuery</title>
		<link>http://hsmoore.com/blog/get-value-of-checkbox-using-jquery/</link>
		<comments>http://hsmoore.com/blog/get-value-of-checkbox-using-jquery/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 08:49:11 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://hsmoore.com/?p=1346</guid>
		<description><![CDATA[This one is quite an easy one, but a good one to mention non-the-less as it does definitely come in really handy. If you would like to get a checkbox&#8217;s value to send to the backend using jQuery you can always do the following: Firstly let&#8217;s draw some HTML to illustrate our example. &#60;input id=&#34;chkOurCheckbox&#34;...]]></description>
			<content:encoded><![CDATA[<p>This one is quite an easy one, but a good one to mention non-the-less as it does definitely come in really handy.</p>
<p>If you would like to get a checkbox&#8217;s value to send to the backend using jQuery you can always do the following:</p>
<p>Firstly let&#8217;s draw some HTML to illustrate our example.</p>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;"><span class="sc2">&lt;<a href="http://december.com/html/4/element/input.html"><span class="kw2">input</span></a> <span class="kw3">id</span><span class="sy0">=</span><span class="st0">&quot;chkOurCheckbox&quot;</span> <span class="kw3">type</span><span class="sy0">=</span><span class="st0">&quot;checkbox&quot;</span> <span class="sy0">/</span>&gt;</span></div>
</div>
<p>Now we need some jQuery to do the real work.</p>
<div class="codesnip-container" >
<div class="javascript codesnip" style="font-family:monospace;"><span class="kw2">var</span> ourCheckboxValue <span class="sy0">=</span> <span class="br0">&#40;</span>$<span class="br0">&#40;</span><span class="st0">&quot;#chkOurCheckbox:checked&quot;</span><span class="br0">&#41;</span>.<span class="me1">val</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">==</span><span class="st0">&quot;undefined&quot;</span><span class="br0">&#41;</span> <span class="sy0">?</span> <span class="nu0">0</span> <span class="sy0">:</span> <span class="nu0">1</span></div>
</div>
<p>In our above example we draw an HTML checkbox to the screen and then use jQuery to return the value of it.</p>
<p>Bare in mind that the $(&#8220;#chkOurCheckbox:checked&#8221;) is an object so we need to get the value of it using .val().</p>
<p>Also bare in mind that it can have two values, either &#8220;on&#8221; or &#8220;undefined&#8221;, &#8220;undefined&#8221; means &#8220;not checked&#8221; and &#8220;on&#8221; means checked.</p>
<p>We perform a short if condition on the value and if it isn&#8217;t checked(/undefined) then we set our variable to be 0, alternatively if it is set then we set our variable to 1.</p>
<p>We now have a variable called &#8220;ourCheckboxValue&#8221; with a boolean value of our checkbox.</p>
]]></content:encoded>
			<wfw:commentRss>http://hsmoore.com/blog/get-value-of-checkbox-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Everybody&#039;s a web host</title>
		<link>http://hsmoore.com/blog/everybodys-a-web-host/</link>
		<comments>http://hsmoore.com/blog/everybodys-a-web-host/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 08:39:00 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[reseller]]></category>
		<category><![CDATA[spammy]]></category>

		<guid isPermaLink="false">http://andrewodendaal.com/?p=1288</guid>
		<description><![CDATA[To cut straight to the point, &#8220;we&#8217;re living in the age where everybody&#8217;s a web host&#8221;. Whether it be small and quite pathetic or just another reseller of a larger service trying to get their cut of things, everybody truly is spamming the world with more and more web hosting packages. Just a few short...]]></description>
			<content:encoded><![CDATA[<p>To cut straight to the point, &#8220;we&#8217;re living in the age where everybody&#8217;s a web host&#8221;. Whether it be small and quite pathetic or just another reseller of a larger service trying to get their cut of things, everybody truly is spamming the world with more and more web hosting packages.</p>
<p>Just a few short years ago this problem didn&#8217;t exist and getting web hosting was quite expensive, unless you went with free services such as the good ol&#8217; &#8220;geocities&#8221; and co, but then larger companies started up their shared hosting and reseller hosting packages which immediately led to everybody thinking all it took to become a web host was to get themselves a reseller account and start trading. For the most part that isn&#8217;t so far off, as 95% of the websites out there sit mostly idle while almost nobody visits them and therefore it&#8217;s perfectly fine to share a single machine between multiple clients and call it &#8220;excellent web hosting&#8221;, but these small guys also try and compete with the larger players in the industry and end up creating quite a mess of things, all while flooding search engines and web development and hosting forums with &#8220;hosting deals and specials&#8221;.</p>
<p>For all the companies that got in right in the beginning, this was a very viable business model and something they can do really well at, for the rest of you, rather just close shop and make the web that much less hosting spammy!</p>
]]></content:encoded>
			<wfw:commentRss>http://hsmoore.com/blog/everybodys-a-web-host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

