<?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>Random Web Tools</title>
	<atom:link href="http://www.randomtools.net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.randomtools.net</link>
	<description>Advice and tools from a young web developer</description>
	<lastBuildDate>Mon, 16 Aug 2010 06:16:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Automatically convert to and from Base64</title>
		<link>http://www.randomtools.net/automatically-convert-to-and-from-base64-170.html</link>
		<comments>http://www.randomtools.net/automatically-convert-to-and-from-base64-170.html#comments</comments>
		<pubDate>Mon, 16 Aug 2010 06:16:11 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.randomtools.net/?p=170</guid>
		<description><![CDATA[I just finished a small, simple, yet interesting script for detecting whether code is base64 and encoding or decoding it based on the result. Let&#39;s be honest, PHP made it super easy for me with the base64_encode() and base64_decode() functions. I just wrapped it up in what I think is a pretty handy little tool [...]]]></description>
			<content:encoded><![CDATA[<p>I just finished a small, simple, yet interesting script for detecting whether code is base64 and encoding or decoding it based on the result. Let&#39;s be honest, PHP made it super easy for me with the base64_encode() and base64_decode() functions. I just wrapped it up in what I think is a pretty handy little tool that I know at least one person will get some use out of!</p>
<p>Try it out: <a href="http://www.base64converter.com/">Base64 Converter</a></p>
<p></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Bookmark this page</div><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.randomtools.net/automatically-convert-to-and-from-base64-170.html&amp;title=Automatically convert to and from Base64' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.randomtools.net/automatically-convert-to-and-from-base64-170.html&amp;title=Automatically convert to and from Base64' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.randomtools.net/automatically-convert-to-and-from-base64-170.html' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.randomtools.net/automatically-convert-to-and-from-base64-170.html&amp;title=Automatically convert to and from Base64' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://reddit.com/submit?url=http://www.randomtools.net/automatically-convert-to-and-from-base64-170.html&amp;title=Automatically convert to and from Base64' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.randomtools.net/automatically-convert-to-and-from-base64-170.html&amp;title=Automatically convert to and from Base64' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.randomtools.net/automatically-convert-to-and-from-base64-170.html&amp;title=Automatically convert to and from Base64' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.randomtools.net/automatically-convert-to-and-from-base64-170.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>View HTTP Response Headers</title>
		<link>http://www.randomtools.net/view-http-response-headers-175.html</link>
		<comments>http://www.randomtools.net/view-http-response-headers-175.html#comments</comments>
		<pubDate>Mon, 16 Aug 2010 06:15:44 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.randomtools.net/?p=175</guid>
		<description><![CDATA[Just a quick note to share a site I found that comes in handy when needing to debug web troubles. You can use the site to handily view HTTP request and HTTP response headers to see exactly what&#39;s going on behind the scenes. Web Sniffer To be totally honest, I&#8217;ll probably end up creating my [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick note to share a site I found that comes in handy when needing to debug web troubles. You can use the site to handily view HTTP request and HTTP response headers to see exactly what&#39;s going on behind the scenes.</p>
<p><a href="http://web-sniffer.net/" target="_blank" rel="nofollow">Web Sniffer</a></p>
<p>To be totally honest, I&#8217;ll probably end up creating my own site for this because I like to build things out for the fun of it.</p>
<p></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Bookmark this page</div><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.randomtools.net/view-http-response-headers-175.html&amp;title=View HTTP Response Headers' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.randomtools.net/view-http-response-headers-175.html&amp;title=View HTTP Response Headers' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.randomtools.net/view-http-response-headers-175.html' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.randomtools.net/view-http-response-headers-175.html&amp;title=View HTTP Response Headers' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://reddit.com/submit?url=http://www.randomtools.net/view-http-response-headers-175.html&amp;title=View HTTP Response Headers' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.randomtools.net/view-http-response-headers-175.html&amp;title=View HTTP Response Headers' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.randomtools.net/view-http-response-headers-175.html&amp;title=View HTTP Response Headers' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.randomtools.net/view-http-response-headers-175.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to view where DNS has propagated all over the world</title>
		<link>http://www.randomtools.net/how-to-view-where-dns-has-propagated-all-over-the-world-155.html</link>
		<comments>http://www.randomtools.net/how-to-view-where-dns-has-propagated-all-over-the-world-155.html#comments</comments>
		<pubDate>Sat, 10 Apr 2010 20:44:49 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[SEO Tools]]></category>
		<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.randomtools.net/?p=155</guid>
		<description><![CDATA[I just wanted to quickly share a nice tool that I use all of the time when transferring sites to different servers or just changing DNS entries. Sometimes it&#39;s hard to tell how long or if the DNS for your domain has updated in other regions in the world. In this case, I use WhatsMyDns.net. [...]]]></description>
			<content:encoded><![CDATA[<p>I just wanted to quickly share a nice tool that I use all of the time when transferring sites to different servers or just changing DNS entries. Sometimes it&#39;s hard to tell how long or if the DNS for your domain has updated in other regions in the world. In this case, I use <a href="http://www.whatsmydns.net" target="_blank" rel="nofollow">WhatsMyDns.net</a>. It&#39;s a neat tool that allows you to look up the current DNS listing for common entries (I really only ever need to use A or CNAME) in quite a few servers located around the world. Since DNS propagates differently by geographic region, this tool is a very good overview as to how users are accessing your site.</p>
<p>Also, if you&#39;re like me and constantly need to check your IP address and don&#39;t want to always search google for &quot;<a href="http://www.whatsmyinfo.com" target="_blank">whats is my ip</a>&quot;, I&#39;d recommend you bookmark <a href="http://www.whatsmyinfo.com" target="_blank">whats my info</a>, a simple, non-bloated site that gives you what just you&#39;re looking for.</p>
<p></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Bookmark this page</div><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.randomtools.net/how-to-view-where-dns-has-propagated-all-over-the-world-155.html&amp;title=How to view where DNS has propagated all over the world' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.randomtools.net/how-to-view-where-dns-has-propagated-all-over-the-world-155.html&amp;title=How to view where DNS has propagated all over the world' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.randomtools.net/how-to-view-where-dns-has-propagated-all-over-the-world-155.html' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.randomtools.net/how-to-view-where-dns-has-propagated-all-over-the-world-155.html&amp;title=How to view where DNS has propagated all over the world' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://reddit.com/submit?url=http://www.randomtools.net/how-to-view-where-dns-has-propagated-all-over-the-world-155.html&amp;title=How to view where DNS has propagated all over the world' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.randomtools.net/how-to-view-where-dns-has-propagated-all-over-the-world-155.html&amp;title=How to view where DNS has propagated all over the world' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.randomtools.net/how-to-view-where-dns-has-propagated-all-over-the-world-155.html&amp;title=How to view where DNS has propagated all over the world' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.randomtools.net/how-to-view-where-dns-has-propagated-all-over-the-world-155.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Apache Full Status: How to view current pages being requested</title>
		<link>http://www.randomtools.net/apache-full-status-how-to-view-current-pages-being-requested-149.html</link>
		<comments>http://www.randomtools.net/apache-full-status-how-to-view-current-pages-being-requested-149.html#comments</comments>
		<pubDate>Thu, 25 Mar 2010 22:25:38 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[How To's]]></category>

		<guid isPermaLink="false">http://www.randomtools.net/?p=149</guid>
		<description><![CDATA[Here&#39;s a quick command I learned that shows information about the current requests Apache (httpd) is handling: 1 /usr/sbin/apachectl fullstatus Bookmark this page]]></description>
			<content:encoded><![CDATA[<p>Here&#39;s a quick command I learned that shows information about the current requests Apache (httpd) is handling:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>apachectl fullstatus</pre></td></tr></table></div>

<p></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Bookmark this page</div><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.randomtools.net/apache-full-status-how-to-view-current-pages-being-requested-149.html&amp;title=Apache Full Status: How to view current pages being requested' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.randomtools.net/apache-full-status-how-to-view-current-pages-being-requested-149.html&amp;title=Apache Full Status: How to view current pages being requested' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.randomtools.net/apache-full-status-how-to-view-current-pages-being-requested-149.html' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.randomtools.net/apache-full-status-how-to-view-current-pages-being-requested-149.html&amp;title=Apache Full Status: How to view current pages being requested' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://reddit.com/submit?url=http://www.randomtools.net/apache-full-status-how-to-view-current-pages-being-requested-149.html&amp;title=Apache Full Status: How to view current pages being requested' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.randomtools.net/apache-full-status-how-to-view-current-pages-being-requested-149.html&amp;title=Apache Full Status: How to view current pages being requested' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.randomtools.net/apache-full-status-how-to-view-current-pages-being-requested-149.html&amp;title=Apache Full Status: How to view current pages being requested' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.randomtools.net/apache-full-status-how-to-view-current-pages-being-requested-149.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to show the number of running Apache httpd connections</title>
		<link>http://www.randomtools.net/how-to-show-the-number-of-running-apache-httpd-connections-147.html</link>
		<comments>http://www.randomtools.net/how-to-show-the-number-of-running-apache-httpd-connections-147.html#comments</comments>
		<pubDate>Thu, 25 Mar 2010 22:15:02 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[How To's]]></category>

		<guid isPermaLink="false">http://www.randomtools.net/?p=147</guid>
		<description><![CDATA[This is a simple command I just learned to show the number of running processes for Apache: ps aux ww &#124; grep httpd &#124; wc -l Bookmark this page]]></description>
			<content:encoded><![CDATA[<p>This is a simple command I just learned to show the number of running processes for Apache:</p>
<pre class="brush: bash">ps aux ww | grep httpd | wc -l</pre>
<p></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Bookmark this page</div><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.randomtools.net/how-to-show-the-number-of-running-apache-httpd-connections-147.html&amp;title=How to show the number of running Apache httpd connections' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.randomtools.net/how-to-show-the-number-of-running-apache-httpd-connections-147.html&amp;title=How to show the number of running Apache httpd connections' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.randomtools.net/how-to-show-the-number-of-running-apache-httpd-connections-147.html' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.randomtools.net/how-to-show-the-number-of-running-apache-httpd-connections-147.html&amp;title=How to show the number of running Apache httpd connections' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://reddit.com/submit?url=http://www.randomtools.net/how-to-show-the-number-of-running-apache-httpd-connections-147.html&amp;title=How to show the number of running Apache httpd connections' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.randomtools.net/how-to-show-the-number-of-running-apache-httpd-connections-147.html&amp;title=How to show the number of running Apache httpd connections' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.randomtools.net/how-to-show-the-number-of-running-apache-httpd-connections-147.html&amp;title=How to show the number of running Apache httpd connections' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.randomtools.net/how-to-show-the-number-of-running-apache-httpd-connections-147.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Properly Test if jQuery is Loaded</title>
		<link>http://www.randomtools.net/how-to-properly-test-if-jquery-is-loaded-144.html</link>
		<comments>http://www.randomtools.net/how-to-properly-test-if-jquery-is-loaded-144.html#comments</comments>
		<pubDate>Fri, 05 Mar 2010 19:49:26 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.randomtools.net/?p=144</guid>
		<description><![CDATA[I saw many people claiming you can test for the existence of jQuery like this: 1 2 3 4 5 if &#40;jQuery&#41; &#123; // jQuery exists, put code here &#125; else &#123; // jQuery not loaded, put code here &#125; This is incorrect. It will work fine if jQuery is loaded, but if it&#39;s not [...]]]></description>
			<content:encoded><![CDATA[<p>I saw many people claiming you can test for the existence of jQuery like this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>jQuery<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #006600; font-style: italic;">// jQuery exists, put code here</span>
<span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #006600; font-style: italic;">// jQuery not loaded, put code here</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>This is <strong>incorrect</strong>. It will work fine if jQuery is loaded, but if it&#39;s not loaded, javascript will throw an error and the code to execute if jQuery is not loaded will probably not be processed. The modification to fix this is simple:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>window.<span style="color: #660066;">jQuery</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #006600; font-style: italic;">// jQuery exists, put code here</span>
<span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #006600; font-style: italic;">// jQuery not loaded, put code here</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<div style="width: 300px; height: 300px;"></div>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Bookmark this page</div><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.randomtools.net/how-to-properly-test-if-jquery-is-loaded-144.html&amp;title=How to Properly Test if jQuery is Loaded' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.randomtools.net/how-to-properly-test-if-jquery-is-loaded-144.html&amp;title=How to Properly Test if jQuery is Loaded' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.randomtools.net/how-to-properly-test-if-jquery-is-loaded-144.html' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.randomtools.net/how-to-properly-test-if-jquery-is-loaded-144.html&amp;title=How to Properly Test if jQuery is Loaded' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://reddit.com/submit?url=http://www.randomtools.net/how-to-properly-test-if-jquery-is-loaded-144.html&amp;title=How to Properly Test if jQuery is Loaded' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.randomtools.net/how-to-properly-test-if-jquery-is-loaded-144.html&amp;title=How to Properly Test if jQuery is Loaded' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.randomtools.net/how-to-properly-test-if-jquery-is-loaded-144.html&amp;title=How to Properly Test if jQuery is Loaded' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.randomtools.net/how-to-properly-test-if-jquery-is-loaded-144.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Hide Android WebView Highlight Border (or change it&#8217;s color)</title>
		<link>http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html</link>
		<comments>http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html#comments</comments>
		<pubDate>Sat, 27 Feb 2010 23:20:37 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[How To's]]></category>

		<guid isPermaLink="false">http://www.randomtools.net/?p=142</guid>
		<description><![CDATA[Here&#39;s one that had me at a loss for a long time that I just figured out. You can easily remove the highlight border (the border that comes up when an element is focused) or change it&#39;s color in a WebView with CSS! The WebKit-specific property &#34;-webkit-tap-highlight-color&#34; is what you&#39;re looking for. The following line [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#39;s one that had me at a loss for a long time that I just figured out. You can easily remove the highlight border (the border that comes up when an element is focused) or change it&#39;s color in a WebView with CSS! The WebKit-specific property &quot;-webkit-tap-highlight-color&quot; is what you&#39;re looking for.</p>
<p>The following line will disable it on a page completely:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #00AA00;">*</span> <span style="color: #00AA00;">&#123;</span>
	-webkit-tap-highlight-<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> rgba<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>	
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>rgba() is just like rgb(), but it takes a 4th parameter for opacity. It&#39;s my belief that this would probably work for iPhone WebView&#39;s as well, since both Chrome and Safari are based off of WebKit.</p>
<div style="width: 300px; height: 300px;"></div>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Bookmark this page</div><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html&amp;title=How to Hide Android WebView Highlight Border (or change it&#8217;s color)' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html&amp;title=How to Hide Android WebView Highlight Border (or change it&#8217;s color)' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html&amp;title=How to Hide Android WebView Highlight Border (or change it&#8217;s color)' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://reddit.com/submit?url=http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html&amp;title=How to Hide Android WebView Highlight Border (or change it&#8217;s color)' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html&amp;title=How to Hide Android WebView Highlight Border (or change it&#8217;s color)' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html&amp;title=How to Hide Android WebView Highlight Border (or change it&#8217;s color)' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Windows 7 Icons Download</title>
		<link>http://www.randomtools.net/windows-7-icons-download-138.html</link>
		<comments>http://www.randomtools.net/windows-7-icons-download-138.html#comments</comments>
		<pubDate>Wed, 24 Feb 2010 00:54:15 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Downloads]]></category>

		<guid isPermaLink="false">http://www.randomtools.net/?p=138</guid>
		<description><![CDATA[Looking to use Windows 7 icons in your applications or extensions? Download the following file to conveniently access them. Download Windows 7 Icons Zip File (8.91 MB) Bookmark this page]]></description>
			<content:encoded><![CDATA[<p>Looking to use Windows 7 icons in your applications or extensions? Download the following file to conveniently access them.</p>
<p><a href="http://www.randomtools.net/scripts/Windows_Seven_icon_pack_by_ziomekorko.zip">Download Windows 7 Icons Zip File</a> (8.91 MB)</p>
<div style="width: 300px; height: 300px;"></div>
<p><a href="http://www.randomtools.net/wp-content/uploads/2010/02/Big_Windows_7__s_icons_pack_by_NhatPG.jpg"><img alt="" class="alignright size-medium wp-image-140" height="186" src="http://www.randomtools.net/wp-content/uploads/2010/02/Big_Windows_7__s_icons_pack_by_NhatPG-300x186.jpg" title="Windows 7 Icon Pack" width="300" /></a></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Bookmark this page</div><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.randomtools.net/windows-7-icons-download-138.html&amp;title=Windows 7 Icons Download' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.randomtools.net/windows-7-icons-download-138.html&amp;title=Windows 7 Icons Download' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.randomtools.net/windows-7-icons-download-138.html' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.randomtools.net/windows-7-icons-download-138.html&amp;title=Windows 7 Icons Download' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://reddit.com/submit?url=http://www.randomtools.net/windows-7-icons-download-138.html&amp;title=Windows 7 Icons Download' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.randomtools.net/windows-7-icons-download-138.html&amp;title=Windows 7 Icons Download' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.randomtools.net/windows-7-icons-download-138.html&amp;title=Windows 7 Icons Download' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.randomtools.net/windows-7-icons-download-138.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP RSS Parser &#8211; RSS Reader Class for PHP</title>
		<link>http://www.randomtools.net/php-rss-parser-rss-reader-class-for-php-133.html</link>
		<comments>http://www.randomtools.net/php-rss-parser-rss-reader-class-for-php-133.html#comments</comments>
		<pubDate>Mon, 22 Feb 2010 05:49:24 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://www.randomtools.net/?p=133</guid>
		<description><![CDATA[Just had to create a quick RSS parser for PHP and thought I&#39;d post my solution. The implementation and class follows. &#60;?php $rss = new RSSReader('http://news.google.com/?output=rss'); while ($rss -&#62; hasNext()) print_r($rss -&#62; next()); ?&#62; &#60;?php class RSSReader { var $xml = null; var $pos = 0; var $count = 0; function __construct($feed_url) { $this -&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>Just had to create a quick RSS parser for PHP and thought I&#39;d post my solution. The implementation and class follows.</p>
<pre class="brush: php">&lt;?php
$rss = new RSSReader('http://news.google.com/?output=rss');
while ($rss -&gt; hasNext())
	print_r($rss -&gt; next());
?&gt;</pre>
<div style="width: 300px; height: 300px; clear: both;"></div>
<pre class="brush: php">&lt;?php
class RSSReader {
	var $xml = null;
	var $pos = 0;
	var $count = 0;

	function __construct($feed_url) {
		$this -&gt; load_url($feed_url);
	}

	function load_url($feed_url) {
		$this -&gt; load_string(file_get_contents($feed_url));
	}

	function load_string($feed_string) {
		$this -&gt; xml = simplexml_load_string(str_replace('content:encoded', 'content_encoded', $feed_string));
		$this -&gt; pos = 0;
		$this -&gt; count = count($this -&gt; xml -&gt; channel -&gt; item);
	}

	function get_title() {
		return $this -&gt; xml -&gt; channel -&gt; title;
	}

	function get_link() {
		return $this -&gt; xml -&gt; channel -&gt; link;
	}

	function get_pubdate() {
		return $this -&gt; xml -&gt; channel -&gt; pubdate;
	}

	function hasNext() {
		return $this -&gt; count &gt; $this -&gt; pos;
	}

	function next() {
		$obj = $this -&gt; xml -&gt; channel -&gt; item[$this -&gt; pos++];
		return array(
			'title' =&gt; (string) $obj -&gt; title,
			'link' =&gt; (string) $obj -&gt; link,
			'description' =&gt; (string) $obj -&gt; description,
			'content' =&gt; (string) $obj -&gt; content_encoded,
			'pubDate' =&gt; strtotime($obj -&gt; pubDate),
		);
	}
}
?&gt;</pre>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Bookmark this page</div><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.randomtools.net/php-rss-parser-rss-reader-class-for-php-133.html&amp;title=PHP RSS Parser &#8211; RSS Reader Class for PHP' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.randomtools.net/php-rss-parser-rss-reader-class-for-php-133.html&amp;title=PHP RSS Parser &#8211; RSS Reader Class for PHP' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.randomtools.net/php-rss-parser-rss-reader-class-for-php-133.html' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.randomtools.net/php-rss-parser-rss-reader-class-for-php-133.html&amp;title=PHP RSS Parser &#8211; RSS Reader Class for PHP' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://reddit.com/submit?url=http://www.randomtools.net/php-rss-parser-rss-reader-class-for-php-133.html&amp;title=PHP RSS Parser &#8211; RSS Reader Class for PHP' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.randomtools.net/php-rss-parser-rss-reader-class-for-php-133.html&amp;title=PHP RSS Parser &#8211; RSS Reader Class for PHP' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.randomtools.net/php-rss-parser-rss-reader-class-for-php-133.html&amp;title=PHP RSS Parser &#8211; RSS Reader Class for PHP' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.randomtools.net/php-rss-parser-rss-reader-class-for-php-133.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Chrome Extensions: History Button, Extensions Button, Downloads Button</title>
		<link>http://www.randomtools.net/chrome-extensions-history-button-extensions-button-downloads-button-131.html</link>
		<comments>http://www.randomtools.net/chrome-extensions-history-button-extensions-button-downloads-button-131.html#comments</comments>
		<pubDate>Thu, 04 Feb 2010 06:46:45 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.randomtools.net/?p=131</guid>
		<description><![CDATA[I just created some very simple extensions for Chrome shortly after I taught myself how to create extensions. As I said, they&#39;re VERY simple, but I find them useful, so I figured it wouldn&#39;t hurt to share them. Each extension is a simple lightweight extension that adds a shortcut button to your browser for quick [...]]]></description>
			<content:encoded><![CDATA[<p>I just created some very simple extensions for Chrome shortly after I taught myself how to create extensions.</p>
<p>As I said, they&#39;re VERY simple, but I find them useful, so I figured it wouldn&#39;t hurt to share them.</p>
<p>Each extension is a simple lightweight extension that adds a shortcut button to your browser for quick access to your history, extensions, or downloads. It either opens a new tab, or switches to the respective tab if you already have it open in a tab you&#39;re not using.</p>
<p>You could nearly accomplish the same thing if you made a bookmark, but this assures you won&#39;t open multiple tabs and I like to keep some things separate from the bookmarks bar.</p>
<p><a href="https://chrome.google.com/extensions/detail/hfpnjihjndnmfcbclplooodjmhcdncan" rel="nofollow">Chrome Extensions Button</a></p>
<p><a href="http://chrome.google.com/extensions/detail/ejbmfhgfpejndimejlfghaddkphononj" rel="nofollow">Chrome History Button</a></p>
<p><a href="http://chrome.google.com/extensions/detail/pomlcckbphmgddbhchkpehnfkegaenke" rel="nofollow">Chrome Downloads Button</a></p>
<div style="width: 300px; height: 300px;"></div>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Bookmark this page</div><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.randomtools.net/chrome-extensions-history-button-extensions-button-downloads-button-131.html&amp;title=Chrome Extensions: History Button, Extensions Button, Downloads Button' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.randomtools.net/chrome-extensions-history-button-extensions-button-downloads-button-131.html&amp;title=Chrome Extensions: History Button, Extensions Button, Downloads Button' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.randomtools.net/chrome-extensions-history-button-extensions-button-downloads-button-131.html' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.randomtools.net/chrome-extensions-history-button-extensions-button-downloads-button-131.html&amp;title=Chrome Extensions: History Button, Extensions Button, Downloads Button' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://reddit.com/submit?url=http://www.randomtools.net/chrome-extensions-history-button-extensions-button-downloads-button-131.html&amp;title=Chrome Extensions: History Button, Extensions Button, Downloads Button' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.randomtools.net/chrome-extensions-history-button-extensions-button-downloads-button-131.html&amp;title=Chrome Extensions: History Button, Extensions Button, Downloads Button' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.randomtools.net/chrome-extensions-history-button-extensions-button-downloads-button-131.html&amp;title=Chrome Extensions: History Button, Extensions Button, Downloads Button' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.randomtools.net/chrome-extensions-history-button-extensions-button-downloads-button-131.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
