<?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>Richard Pargeter - SEO, Web Development &#38; Affiliate Marketing &#187; Tools</title>
	<atom:link href="http://rjpargeter.com/category/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://rjpargeter.com</link>
	<description></description>
	<lastBuildDate>Wed, 18 Jan 2012 12:59:45 +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>RGB to HEX Converter</title>
		<link>http://rjpargeter.com/2008/12/rgb-to-hex-converter/</link>
		<comments>http://rjpargeter.com/2008/12/rgb-to-hex-converter/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 00:29:58 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://rjpargeter.com/?p=89</guid>
		<description><![CDATA[Working with CSS I am constantly trying to convert RGB values from Photoshop to their hex equivalent. There is probably a setting in PhotoShop that I have missed, but the following small form will quickly convert RGB values to the HEX equivalent. You can then use these values in CSS with # at the beginning. [...]]]></description>
			<content:encoded><![CDATA[<p><script language="JavaScript">
<!--
function RGBtoHexConverter(R,G,B) {
return (convertToHex(R)+convertToHex(G)+convertToHex(B));
}
function convertToHex(val) {
 if (val==null) return "00";
 N=parseInt(val); if (val==0 || isNaN(val)) return "00";
 N=Math.max(0,val); N=Math.min(val,255); N=Math.round(val);
 return "0123456789ABCDEF".charAt((val-val%16)/16)
     + "0123456789ABCDEF".charAt(val%16);
}
//-->
</script></p>
<p>Working with CSS I am constantly trying to convert RGB values from Photoshop to their hex equivalent.  There is probably a setting in PhotoShop that I have missed, but the following small form will quickly convert RGB values to the HEX equivalent.  You can then use these values in CSS with # at the beginning.</p>
<p>Let me know if you find this useful:</p>
<form name=rgb>
R:<br />
<input type=text name=r size=3 value=255><br/><br />
G:<br />
<input type=text name=g size=3 value=255><br/><br />
B:<br />
<input type=text name=b size=3 value=255><br/></p>
<input type=button name=btn value="Convert to Hex" onCLick="this.form.hexVal.value=RGBtoHexConverter(this.form.r.value,this.form.g.value,this.form.b.value)"> :<br />
<input type=text name=hexVal size=8>
</form>
]]></content:encoded>
			<wfw:commentRss>http://rjpargeter.com/2008/12/rgb-to-hex-converter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTTP Response Header Checker</title>
		<link>http://rjpargeter.com/2008/11/http-response-header-checker/</link>
		<comments>http://rjpargeter.com/2008/11/http-response-header-checker/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 03:47:21 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://rjpargeter.com/?p=64</guid>
		<description><![CDATA[HTTP Response Header Checker The HTTP Response is the information returned in the HTTP Protocol when you access URL&#8217;s over the Internet. Google, Yahoo and in fact all browsers rely on this information to determine if the information you are trying to access has been found or if not what may of happened to it. [...]]]></description>
			<content:encoded><![CDATA[<h4>HTTP Response Header Checker</h4>
<p>The HTTP Response is the information returned in the HTTP Protocol when you access URL&#8217;s over the Internet.  Google, Yahoo and in fact all browsers rely on this information to determine if the information you are trying to access has been found or if not what may of happened to it.</p>
<p>The full HTTP response contains a variety of information that a web server will send in response to a HTTP request.  This information can yield interesting information such as the web server a site is hosted upon, the scripting language used and most importantly the response code.  The following search box allows you to enter a URL and see the full HTTP Response.</p>
<p>Why is this useful you may be thinking?  Well Google, etc rely on the response codes to determine if they index your site.  For a resource to be indexed you will most often than not be looking for a &#8217;200 ok&#8217; response.  If a page is missing you may get a &#8217;404 page not found&#8217;.  If a page has gone you may look for a &#8217;410 Gone&#8217; response to be sent back.</p>
<p>Feel free to use this tool I have developed to test your URL&#8217;s HTTP response:<br />
</p>
<form method="post" action="">
<p>Domain:<br />
<input size="35" value="http://" name="url" type="text"></p>
<input type="submit" value="Check" size="35">
</form>
<p></p>
<p><b>Response Code:</b></p>
]]></content:encoded>
			<wfw:commentRss>http://rjpargeter.com/2008/11/http-response-header-checker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

