<?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>Joe Riggs Bloggs &#187; web</title>
	<atom:link href="http://joe-riggs.com/blog/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://joe-riggs.com/blog</link>
	<description>simple man/complex world</description>
	<lastBuildDate>Mon, 07 May 2012 14:12:58 +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>Javascript Count Up Timer With Hours, Minutes, and Seconds</title>
		<link>http://joe-riggs.com/blog/2012/05/javascript-count-up-timer-with-hours-minutes-second-hours-minutes/</link>
		<comments>http://joe-riggs.com/blog/2012/05/javascript-count-up-timer-with-hours-minutes-second-hours-minutes/#comments</comments>
		<pubDate>Mon, 07 May 2012 14:12:58 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=746</guid>
		<description><![CDATA[Here is a script that takes a given time and increments each second to make it appear to update in realtime. Time given, must be in hh:mm:ss format and the div id must be realtime &#60;span id=&#34;realtime&#34;&#62;12:12:12&#60;/span&#62; 12:12:12 Script that makes everything happen, needs jquery, but could be easily re-written in pure javascript. $&#40;document&#41;.ready &#40;function [...]]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2012/05/javascript-count-up-timer-with-hours-minutes-second-hours-minutes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Global Function In Magento</title>
		<link>http://joe-riggs.com/blog/2011/06/create-global-function-in-magento/</link>
		<comments>http://joe-riggs.com/blog/2011/06/create-global-function-in-magento/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 12:33:29 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[magento]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[global function magento]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=661</guid>
		<description><![CDATA[This code will allow you to add a function that can be called from anywhere within Magento. It extends the helper class 1) Create a file named &#8216;Mycode.xml&#8217; and copy it to app/etc/modules/ &#8211; it should look like this: &#60;?xml version=&#34;1.0&#34;?&#62; &#60;config&#62; &#60;modules&#62; &#60;Mycode_Function&#62; &#60;active&#62;true&#60;/active&#62; &#60;codePool&#62;local&#60;/codePool&#62; &#60;/Mycode_Function&#62; &#60;/modules&#62; &#60;/config&#62; 2) Create the directory app/code/local/Mycode/Function/etc and [...]]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2011/06/create-global-function-in-magento/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Update To Drupal 7.2 The Easy Way (SSH)</title>
		<link>http://joe-riggs.com/blog/2011/05/update-to-drupal-7-2-the-easy-way-ssh/</link>
		<comments>http://joe-riggs.com/blog/2011/05/update-to-drupal-7-2-the-easy-way-ssh/#comments</comments>
		<pubDate>Sun, 29 May 2011 20:51:15 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[drupal]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade drupal 7.2]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=655</guid>
		<description><![CDATA[After backing everything up&#8230; # get the upgrade wget http://ftp.drupal.org/files/projects/drupal-7.2.tar.gz &#160; # uncompress it tar xfzv drupal-7.2.tar.gz &#160; # copy all files to my document root cp -r drupal-7.2/. /www/. found here]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2011/05/update-to-drupal-7-2-the-easy-way-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blank Html Template &#8211; Strict dtd</title>
		<link>http://joe-riggs.com/blog/2011/05/blank-html-template-strict-dtd/</link>
		<comments>http://joe-riggs.com/blog/2011/05/blank-html-template-strict-dtd/#comments</comments>
		<pubDate>Fri, 13 May 2011 14:37:21 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[html]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=645</guid>
		<description><![CDATA[&#60;!DOCTYPE HTML PUBLIC &#34;-//W3C//DTD HTML 4.01//EN&#34; &#34;http://www.w3.org/TR/html4/strict.dtd&#34;&#62; &#60;html&#62; &#160; &#60;head&#62; &#160; &#60;title&#62;Blank Strict Template&#60;/title&#62; &#160; &#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=UTF-8&#34;&#62; &#60;meta name=&#34;description&#34; content=&#34;&#34;&#62; &#60;meta name=&#34;keywords&#34; content=&#34;&#34;&#62; &#160; &#60;script type=&#34;text/javascript&#34;&#62; &#60;/script&#62; &#160; &#60;style type=&#34;text/css&#34;&#62; &#60;/style&#62; &#160; &#60;/head&#62; &#160; &#60;body&#62; &#60;div&#62; &#60;p&#62;blank template&#60;/p&#62; &#60;/div&#62; &#60;/body&#62; &#160; &#60;/html&#62; Download zipped html file]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2011/05/blank-html-template-strict-dtd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Linkshare Pixel To Magento</title>
		<link>http://joe-riggs.com/blog/2011/04/add-linkshare-pixel-to-magento/</link>
		<comments>http://joe-riggs.com/blog/2011/04/add-linkshare-pixel-to-magento/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 21:13:39 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[magento]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=623</guid>
		<description><![CDATA[Add this code to: \app\design\frontend\enterprise\&#60;your theme&#62;\template\checkout\success.phtml &#60;?php &#160; $order_id = Mage::getSingleton&#40;'checkout/session'&#41;-&#62;getLastOrderId&#40;&#41;; $order = Mage::getModel&#40;'sales/order'&#41;-&#62;load&#40;$order_id&#41;; $_totalData = $order-&#62;getData&#40;&#41;; &#160; /*linkshare vars*/ $skus = array&#40;&#41;; $qtys = array&#40;&#41;; $amounts = array&#40;&#41;; &#160; foreach &#40;$order-&#62;getAllItems&#40;&#41; as $item&#41; &#123; &#160; $skus&#91;$item-&#62;getProductId&#40;&#41;&#93; = $item-&#62;getSku&#40;&#41;; $names&#91;$item-&#62;getProductId&#40;&#41;&#93; = rawurlencode&#40;$item-&#62;getName&#40;&#41;&#41;; $qtys&#91;$item-&#62;getProductId&#40;&#41;&#93; = $item-&#62;getQtyOrdered&#40;&#41; * 1; $amounts&#91;$item-&#62;getProductId&#40;&#41;&#93; = $item-&#62;getRowTotal&#40;&#41; * 100; &#125; &#160; $order_id [...]]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2011/04/add-linkshare-pixel-to-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reddit&#8217;s Front Page: A Look at Traffic, Stats and Bandwidth</title>
		<link>http://joe-riggs.com/blog/2010/06/reddit-frontpage-a-look-at-traffic-and-stats/</link>
		<comments>http://joe-riggs.com/blog/2010/06/reddit-frontpage-a-look-at-traffic-and-stats/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 20:10:39 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[professional]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=538</guid>
		<description><![CDATA[Recently I was lucky enough to have a link I submitted to reddit (comment page) make it to the site&#8217;s front page. While my link was originally posted to the sub-reddit  r/programming, it quickly gained popularity and was on the main page for nearly 24 hours. Here&#8217;s a look at the raw access log, I&#8217;ve [...]]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2010/06/reddit-frontpage-a-look-at-traffic-and-stats/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Firefox Clear History Not Working &#8211; version 3.5.7</title>
		<link>http://joe-riggs.com/blog/2010/02/firefox-clear-history-not-working-version-3-5-7/</link>
		<comments>http://joe-riggs.com/blog/2010/02/firefox-clear-history-not-working-version-3-5-7/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 21:01:35 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=521</guid>
		<description><![CDATA[There must be a bug in Firefox 3.5.7 that is keeping it from clearing you recent history. I was able to clear this data using CCleaner (mac users can do the same with Clean App). Just make sure to close down Firefox before running CCleaner.  Then double check that the checkboxes in the &#8216;Application&#8217; tab [...]]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2010/02/firefox-clear-history-not-working-version-3-5-7/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Useful Shortcuts For Firefox</title>
		<link>http://joe-riggs.com/blog/2010/02/useful-shortcuts-for-firefox/</link>
		<comments>http://joe-riggs.com/blog/2010/02/useful-shortcuts-for-firefox/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 14:39:52 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[shortcuts]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=494</guid>
		<description><![CDATA[Here is a quick list of shortcuts that I commonly use to speed up my browsing experience.  Most of these shortcuts should work on other modern browsers such as Opera and Chrome, however I haven&#8217;t tested them all yet. Feedback is most certainly appreciated. Middle clicking (scroll wheel) a link will open it in a [...]]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2010/02/useful-shortcuts-for-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blank html template &#8211; Transitional dtd</title>
		<link>http://joe-riggs.com/blog/2009/12/blank-html-template-transitional-dtd-document-type-definition/</link>
		<comments>http://joe-riggs.com/blog/2009/12/blank-html-template-transitional-dtd-document-type-definition/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 21:56:04 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blank]]></category>
		<category><![CDATA[dtd]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html template]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[transitional]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=427</guid>
		<description><![CDATA[&#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62; &#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34;&#62; &#160; &#60;head&#62; &#160; &#60;title&#62;HTML Template&#60;/title&#62; &#160; &#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=UTF-8&#34; /&#62; &#60;meta name=&#34;description&#34; content=&#34;&#34; /&#62; &#60;meta name=&#34;keywords&#34; content=&#34;&#34; /&#62; &#60;!--link type=&#34;text/css&#34; rel=&#34;stylesheet&#34; href=&#34;style.css&#34;--&#62; &#160; &#60;/head&#62; &#160; &#60;body&#62; &#160; &#60;/body&#62; &#60;/html&#62; Download zipped html file]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2009/12/blank-html-template-transitional-dtd-document-type-definition/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

