<?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>Dustin Carpenter</title>
	<atom:link href="http://meetdustin.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://meetdustin.com/blog</link>
	<description>I make things, most of it is code you can&#039;t see.</description>
	<lastBuildDate>Wed, 28 Mar 2012 15:01:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>New website launched for Phoenixwave</title>
		<link>http://meetdustin.com/blog/portfolio/new-website-phoenixwave/</link>
		<comments>http://meetdustin.com/blog/portfolio/new-website-phoenixwave/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 13:21:25 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://meetdustin.com/blog/?p=847</guid>
		<description><![CDATA[My friend Lucas Tetrault needed to put together a design portfolio site and he came to me to help him construct it. Lucky for him I knew a thing or two about jQuery, CSS, 960 grid, and HTML or he could have had an awful time working with someone else. He provided me some fancy [...]]]></description>
		<wfw:commentRss>http://meetdustin.com/blog/portfolio/new-website-phoenixwave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What the tweet am I talking about?</title>
		<link>http://meetdustin.com/blog/uncategorized/what-the-tweet/</link>
		<comments>http://meetdustin.com/blog/uncategorized/what-the-tweet/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 13:01:11 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://meetdustin.com/blog/?p=842</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://meetdustin.com/blog/uncategorized/what-the-tweet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Should you use Points, Pixels, Ems, or Percent when sizing fonts in CSS?</title>
		<link>http://meetdustin.com/blog/articles/points-pixels-ems-percent/</link>
		<comments>http://meetdustin.com/blog/articles/points-pixels-ems-percent/#comments</comments>
		<pubDate>Fri, 09 Mar 2012 17:56:32 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://meetdustin.com/blog/?p=830</guid>
		<description><![CDATA[The truth is&#8230; it really doesn&#8217;t matter. The values are all the same really, but mixing the measurements together can give you unexpected results. The key is to be consistent. The table below is a guide that shows font sizing conversion for web development using CSS. Whether you prefer points, pixels, ems, or percent, this [...]]]></description>
		<wfw:commentRss>http://meetdustin.com/blog/articles/points-pixels-ems-percent/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dell driver install order for desktops and laptops</title>
		<link>http://meetdustin.com/blog/articles/dell-driver-install-order-for-desktops-and-laptops/</link>
		<comments>http://meetdustin.com/blog/articles/dell-driver-install-order-for-desktops-and-laptops/#comments</comments>
		<pubDate>Tue, 17 May 2011 18:28:26 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://meetdustin.com/blog/?p=701</guid>
		<description><![CDATA[The following list is an overview of the correct order to install drivers on Dell desktops and portables. After reinstalling Microsoft® Windows®, follow the order listed when reinstalling drivers. 1. Desktop System Software (DSS) or Notebook System Software (NSS) &#8211; A vital utility that provides critical updates and patches for the operating system. If you [...]]]></description>
		<wfw:commentRss>http://meetdustin.com/blog/articles/dell-driver-install-order-for-desktops-and-laptops/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to get the value of a select box when it changes</title>
		<link>http://meetdustin.com/blog/snippets/how-to-get-the-value-of-a-select-box-when-it-changes/</link>
		<comments>http://meetdustin.com/blog/snippets/how-to-get-the-value-of-a-select-box-when-it-changes/#comments</comments>
		<pubDate>Mon, 25 Oct 2010 17:55:13 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://meetdustin.com/blog/?p=675</guid>
		<description><![CDATA[Example of how to take the selected option in a list and pass the value via javascript. &#60;select onchange=&#34;alert(this.options[this.selectedIndex].value);&#34;&#62; &#60;option value=&#34;1&#34;&#62;1&#60;/option&#62; &#60;option value=&#34;2&#34;&#62;2&#60;/option&#62; &#60;option value=&#34;3&#34;&#62;3&#60;/option&#62; &#60;option value=&#34;4&#34;&#62;4&#60;/option&#62; &#60;option value=&#34;5&#34;&#62;5&#60;/option&#62; &#60;/select&#62;]]></description>
		<wfw:commentRss>http://meetdustin.com/blog/snippets/how-to-get-the-value-of-a-select-box-when-it-changes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Should you say Click Here in your links?</title>
		<link>http://meetdustin.com/blog/articles/should-you-say-click-here-in-your-links/</link>
		<comments>http://meetdustin.com/blog/articles/should-you-say-click-here-in-your-links/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 14:38:56 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://meetdustin.com/blog/?p=351</guid>
		<description><![CDATA[You see it a lot, but sometimes it can do more harm than good. Click here, while descriptive can also be elusive at the same time when it comes to search engine optimization. As early as 2001, the Quality Assurance Interest Group at  W3C was recommending that you do not use click here as a link indicator. Consider [...]]]></description>
		<wfw:commentRss>http://meetdustin.com/blog/articles/should-you-say-click-here-in-your-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alternating row colors using the Modulus PHP Arithmetic Operator and CSS</title>
		<link>http://meetdustin.com/blog/articles/alternating-a-css-class-using-the-modulus-php-arithmetic-operator/</link>
		<comments>http://meetdustin.com/blog/articles/alternating-a-css-class-using-the-modulus-php-arithmetic-operator/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 10:15:57 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://meetdustin.com/?p=248</guid>
		<description><![CDATA[Using the Modulus PHP Arithmetic Operator, you can easily assign a class to repeated element. Depending on whether a number is odd or even, you could choose which color to make each row by assigning the css style selector to the repeated tag.]]></description>
		<wfw:commentRss>http://meetdustin.com/blog/articles/alternating-a-css-class-using-the-modulus-php-arithmetic-operator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Drops Internet Explorer 6 support</title>
		<link>http://meetdustin.com/blog/articles/google-internet-explorer-6-0-go-away/</link>
		<comments>http://meetdustin.com/blog/articles/google-internet-explorer-6-0-go-away/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 12:30:00 +0000</pubDate>
		<dc:creator>Dustin</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://meetdustin.com/blog/?p=317</guid>
		<description><![CDATA[As a web developer constantly having to deal with differences in browser compatibility, there is no doubt that Internet Explorer 6 is a thorn in my side. The thing that I hate the most about IE 6 is the fact that people use it. If you are one of them, please stop. Right now, before you read [...]]]></description>
		<wfw:commentRss>http://meetdustin.com/blog/articles/google-internet-explorer-6-0-go-away/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

