<?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"
	>

<channel>
	<title>chrismetcalf.net &#187; web-design</title>
	<atom:link href="http://chrismetcalf.net/blog/tags/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://chrismetcalf.net/blog</link>
	<description></description>
	<pubDate>Sat, 06 Sep 2008 22:35:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Automated PGP-encrypted MySQL backups</title>
		<link>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2005%2F04%2F16%2Fautomated-pgp-encrypted-mysql-backups%2F&amp;seed_title=Automated+PGP-encrypted+MySQL+backups</link>
		<comments>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2005%2F04%2F16%2Fautomated-pgp-encrypted-mysql-backups%2F&amp;seed_title=Automated+PGP-encrypted+MySQL+backups#comments</comments>
		<pubDate>Sun, 17 Apr 2005 02:10:55 +0000</pubDate>
		<dc:creator>chris</dc:creator>
		
		<category><![CDATA[code]]></category>

		<category><![CDATA[gmail]]></category>

		<category><![CDATA[hacks]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[tools]]></category>

		<category><![CDATA[web-design]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://chrismetcalf.net/blog/archives/2005/04/16/automated-pgp-encrypted-mysql-backups/</guid>
		<description><![CDATA[I&#8217;ve been bad. Until recently I haven&#8217;t been backing up my MySQL database. Bad things could have happened.

Today I finally hacked up a simple script to run from cron that will automatically dump, zip, and mail backups of my MySQL tables to an email address I specify. I set up a Gmail account to send [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been bad. Until recently I haven&#8217;t been backing up my MySQL database. Bad things could have happened.</p>

<p>Today I finally hacked up a simple script to run from cron that will automatically dump, zip, and mail backups of my MySQL tables to an email address I specify. I set up a Gmail account to send the dumps to because they&#8217;re about 8 meg each. The dumps are also encrypted using my PGP 1024-bit public key to give me a bit of security.</p>

<p>Since I didn&#8217;t manage to find anything similar in my Googling, I decided to post it.</p>

<blockquote>
<code>
#!/bin/sh
# Performs a backup of MySQL, encrypts it using PGP, and mails it to a particular user

# The user to mail the backup to. Should have a public key in the above user's keyring...
MAIL_TO="your-backup-account@gmail.com"
MAIL_TO_KEY="Your PGP key ID"

# Subject of the mail. A date stamp will be appended to it
MAIL_SUBJECT="[mysqldump] MySQL Backup for &#8221;

######################################
DATESTAMP=`date  %Y-%m-%d`
FILENAME=&#8221;/tmp/mysqldump-$DATESTAMP.gz&#8221;

# Generate the dump
mysqldump &#8211;all-databases | gzip > &#8220;$FILENAME&#8221;

# Encrypt it
gpg &#8211;encrypt &#8211;recipient &#8220;$MAIL_TO_KEY&#8221; &#8220;$FILENAME&#8221;

# Mail it!
mpack -s &#8220;$MAIL_SUBJECT $DATESTAMP&#8221; -c application/octet-stream $FILENAME.gpg&#8221; &#8220;$MAIL_TO&#8221;

# Remove the backups
rm -f $FILENAME $FILENAME.gpg
</code>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2005%2F04%2F16%2Fautomated-pgp-encrypted-mysql-backups%2F&amp;seed_title=Automated+PGP-encrypted+MySQL+backups/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GtdWiki</title>
		<link>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2005%2F03%2F24%2Fgtdwiki%2F&amp;seed_title=GtdWiki</link>
		<comments>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2005%2F03%2F24%2Fgtdwiki%2F&amp;seed_title=GtdWiki#comments</comments>
		<pubDate>Fri, 25 Mar 2005 02:18:03 +0000</pubDate>
		<dc:creator>chris</dc:creator>
		
		<category><![CDATA[gtd]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[tools]]></category>

		<category><![CDATA[web-design]]></category>

		<guid isPermaLink="false">http://chrismetcalf.net/blog/archives/2005/03/24/gtdwiki/</guid>
		<description><![CDATA[I&#8217;m proud to announce the first &#8220;preview&#8221; release of GtdWiki.



GtdWiki is a specially tweaked version of PhpWiki I&#8217;ve been using for a few months now as the core of my personal implementation of David Allen&#8217;s &#8220;Getting Things Done&#8221;.

Download it, try it out, and let me know what you think.

Update: I&#8217;ve set up a online demo [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m proud to announce the first &#8220;preview&#8221; release of <a href="http://chrismetcalf.net/wiki/index.php/GtdWiki">GtdWiki</a>.</p>

<p><a href="http://chrismetcalf.net/wiki/index.php/GtdWiki"><img src="http://chrismetcalf.net/files/gtdwiki_small.png" alt="GtdWiki" /></a></p>

<p>GtdWiki is a specially tweaked version of PhpWiki I&#8217;ve been using for a few months now as the core of my personal implementation of David Allen&#8217;s <a href="http://www.amazon.com/exec/obidos/tg/detail/-/0142000280/qid=1111713260/sr=8-1/ref=pd_csp_1/002-7013603-8876025?v=glance&#038;s=books&#038;n=507846">&#8220;Getting Things Done&#8221;</a>.</p>

<p><a href="http://chrismetcalf.net/files/GtdWiki-pre1.tar.gz">Download it</a>, try it out, and let me know what you think.</p>

<p><strong>Update:</strong> I&#8217;ve set up a <a href="http://gtd-demo.chrismetcalf.net/wiki/">online demo</a> if you want to &#8220;try before you buy.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2005%2F03%2F24%2Fgtdwiki%2F&amp;seed_title=GtdWiki/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Yayyyyyyyyyyyyy!!!</title>
		<link>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F05%2F24%2Fyayyyyyyyyyyyyy%2F&amp;seed_title=Yayyyyyyyyyyyyy%21%21%21</link>
		<comments>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F05%2F24%2Fyayyyyyyyyyyyyy%2F&amp;seed_title=Yayyyyyyyyyyyyy%21%21%21#comments</comments>
		<pubDate>Tue, 25 May 2004 02:45:51 +0000</pubDate>
		<dc:creator>chris</dc:creator>
		
		<category><![CDATA[bloggage]]></category>

		<category><![CDATA[web-design]]></category>

		<guid isPermaLink="false">http://chrismetcalf.net/blog/archives/2004/05/24/yayyyyyyyyyyyyy/</guid>
		<description><![CDATA[WordPress 1.2 is out!! WordPress 1.2 is out!!

Now its time to upgrade&#8230;

Update: Finished upgrading&#8230; Yayyyyyy&#8230;
]]></description>
			<content:encoded><![CDATA[<p>WordPress 1.2 <a href="http://wordpress.org/development/archives/2004/05/22/heres-the-beef/">is out</a>!! WordPress 1.2 <a href="http://wordpress.org/development/archives/2004/05/22/heres-the-beef/">is out</a>!!</p>

<p>Now its time to upgrade&#8230;</p>

<p><strong class="alert">Update:</strong> Finished upgrading&#8230; Yayyyyyy&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F05%2F24%2Fyayyyyyyyyyyyyy%2F&amp;seed_title=Yayyyyyyyyyyyyy%21%21%21/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google&#8217;s &#8220;GMail&#8221; Beta</title>
		<link>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F04%2F19%2Fgoogles-gmail-beta%2F&amp;seed_title=Google%26%238217%3Bs+%26%238220%3BGMail%26%238221%3B+Beta</link>
		<comments>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F04%2F19%2Fgoogles-gmail-beta%2F&amp;seed_title=Google%26%238217%3Bs+%26%238220%3BGMail%26%238221%3B+Beta#comments</comments>
		<pubDate>Mon, 19 Apr 2004 22:51:45 +0000</pubDate>
		<dc:creator>chris</dc:creator>
		
		<category><![CDATA[cool-tech]]></category>

		<category><![CDATA[gmail]]></category>

		<category><![CDATA[web-culture]]></category>

		<category><![CDATA[web-design]]></category>

		<guid isPermaLink="false">http://chrismetcalf.net/blog/archives/2004/04/19/googles-gmail-beta/</guid>
		<description><![CDATA[ Clay Wood, an alumni from Eta Kappa Nu, was cool enough to hook me (and a bunch of other Michigan EECS kids) up with invitations to Google&#8217;s new (and controversial) &#8220;GMail&#8221; service.

As an experiment, I&#8217;ll be forwarding all my mail there and be using it as my primary email client. I&#8217;ll blog about my [...]]]></description>
			<content:encoded><![CDATA[<p><img class="wrapped" src="http://chrismetcalf.net/uploads/logo.gif" alt="GMail!" /> Clay Wood, an alumni from Eta Kappa Nu, was cool enough to hook me (and a bunch of other Michigan EECS kids) up with invitations to Google&#8217;s new (and controversial) &#8220;GMail&#8221; service.</p>

<p>As an experiment, I&#8217;ll be forwarding all my mail there and be using it as my primary email client. I&#8217;ll blog about my experience for those people that haven&#8217;t been lucky enough to get an account. Note the new &#8220;GMail&#8221; category on the right.</p>

<p>So far, it looks <em>very</em> cool.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F04%2F19%2Fgoogles-gmail-beta%2F&amp;seed_title=Google%26%238217%3Bs+%26%238220%3BGMail%26%238221%3B+Beta/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;Arial&#8221;, you are no longer my favorite font.</title>
		<link>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F04%2F11%2Farial-you-are-no-longer-my-favorite-font%2F&amp;seed_title=%26%238220%3BArial%26%238221%3B%2C+you+are+no+longer+my+favorite+font.</link>
		<comments>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F04%2F11%2Farial-you-are-no-longer-my-favorite-font%2F&amp;seed_title=%26%238220%3BArial%26%238221%3B%2C+you+are+no+longer+my+favorite+font.#comments</comments>
		<pubDate>Mon, 12 Apr 2004 03:54:03 +0000</pubDate>
		<dc:creator>chris</dc:creator>
		
		<category><![CDATA[web-design]]></category>

		<guid isPermaLink="false">http://chrismetcalf.net/blog/archives/2004/04/11/arial-you-are-no-longer-my-favorite-font/</guid>
		<description><![CDATA[Apparently Arial doesn&#8217;t render the bold font-weight property all that well. So my links weren&#8217;t sticking out at all. I should use Windows machines more often, at least to check my site.

&#8220;Trebuchet MS&#8221;&#8230; You&#8217;re the one for me now.

Update: Yes, I know, a trebuchet is a type of medieval catapult. But its also a standard [...]]]></description>
			<content:encoded><![CDATA[<p>Apparently Arial doesn&#8217;t render the bold <em>font-weight</em> property all that well. So my links weren&#8217;t sticking out at all. I should use Windows machines more often, at least to check my site.</p>

<p>&#8220;Trebuchet MS&#8221;&#8230; You&#8217;re the one for me now.</p>

<p><strong class="alert">Update:</strong> Yes, I know, a <a href="http://dictionary.reference.com/search?q=trebuchet&#038;r=67">trebuchet</a> is a type of medieval catapult. But its also a standard Windows font.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F04%2F11%2Farial-you-are-no-longer-my-favorite-font%2F&amp;seed_title=%26%238220%3BArial%26%238221%3B%2C+you+are+no+longer+my+favorite+font./feed/</wfw:commentRss>
		</item>
		<item>
		<title>Score one for RSS</title>
		<link>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F04%2F09%2Fscore-one-for-rss%2F&amp;seed_title=Score+one+for+RSS</link>
		<comments>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F04%2F09%2Fscore-one-for-rss%2F&amp;seed_title=Score+one+for+RSS#comments</comments>
		<pubDate>Sat, 10 Apr 2004 01:04:29 +0000</pubDate>
		<dc:creator>chris</dc:creator>
		
		<category><![CDATA[cool-tech]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[web-culture]]></category>

		<category><![CDATA[web-design]]></category>

		<guid isPermaLink="false">http://chrismetcalf.net/blog/archives/2004/04/09/score-one-for-rss/</guid>
		<description><![CDATA[I finally got around to setting up Feed on Feeds. Its a great server-side RSS aggregator. I&#8217;ve got it set up on my webhost so I can log in from anywhere and catch up on all my favorite RSS feeds.

You really don&#8217;t grasp the true value of RSS until you&#8217;ve got a good feed aggregator. [...]]]></description>
			<content:encoded><![CDATA[<p>I finally got around to setting up <a href="http://minutillo.com/steve/feedonfeeds/">Feed on Feeds</a>. Its a great server-side RSS aggregator. I&#8217;ve got it set up on my webhost so I can log in from anywhere and catch up on all my favorite <a href="http://blogs.law.harvard.edu/tech/rss">RSS</a> feeds.</p>

<p>You really don&#8217;t grasp the true value of RSS until you&#8217;ve got a good feed aggregator. I&#8217;ve got it set as my Firefox homepage now, and theres nothing like being able to glance through 40 or 50 feeds and see whats been updated in the last 15 minutes, and then scan quickly through the latest entries to see if there is anything new worth checking out. I can watch 50 sites with the same effort it used to take me to just read <a href="http://slashdot.org">Slashdot</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F04%2F09%2Fscore-one-for-rss%2F&amp;seed_title=Score+one+for+RSS/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is a GMTB?</title>
		<link>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F03%2F30%2Fwhat-is-a-gmtb%2F&amp;seed_title=What+is+a+GMTB%3F</link>
		<comments>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F03%2F30%2Fwhat-is-a-gmtb%2F&amp;seed_title=What+is+a+GMTB%3F#comments</comments>
		<pubDate>Tue, 30 Mar 2004 22:22:48 +0000</pubDate>
		<dc:creator>chris</dc:creator>
		
		<category><![CDATA[geek]]></category>

		<category><![CDATA[humor]]></category>

		<category><![CDATA[web-culture]]></category>

		<category><![CDATA[web-design]]></category>

		<guid isPermaLink="false">http://chrismetcalf.net/blog/archives/2004/03/30/what-is-a-gmtb/</guid>
		<description><![CDATA[Hmm&#8230;

Q: What is a GMTB?

A: The short answer is &#8220;Gay Movable Type Blogger.&#8221; This does not quite paint the full picture, however.

A GMTB uses a Mac. A GMTB is excited about &#8220;wireless hot spots&#8221; and &#8220;cafes.&#8221; The prototypical GMTB can be found at a Starbucks with a 15&#8243; PowerBook. He will be wearing a black [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://slashdot.org/comments.pl?sid=102134&amp;cid=8708133">Hmm&#8230;</a></p>

<blockquote><strong>Q: </strong>What is a GMTB?

<strong>A:</strong> The short answer is &#8220;Gay Movable Type Blogger.&#8221; This does not quite paint the full picture, however.

A GMTB uses a Mac. A GMTB is excited about &#8220;wireless hot spots&#8221; and &#8220;cafes.&#8221; The prototypical GMTB can be found at a Starbucks with a 15&#8243; PowerBook. He will be wearing a black turtleneck and will go on at length about the wonder years where web designers were paid like programmers.

The GMTB will blog about you. Do not be alarmed. In order to make sense of their fast moving and confusing world, GMTBers need to write at length about even the most trivial encounter. They will likely Google you and turn even the most minor conversation into an exploratory experience. Every experience is like that of the newborn boy who finds touching himself over and over to be a pleasurable experience.

Do not make the GMTB angry. The GMTB has natural defenses known as &#8220;Google juice.&#8221; With the application of this &#8220;Google juice,&#8221; the GMTB will sour any future searches on your name. While there is no physical harm to be done, they can make any attempt at finding relevant and useful information about you a linkfest of armchair philosophy, ill-formed opinions, and broad and insanely overblown reactions to everyday occurrences.

Should you find yourself confronted by a GMTB and wish to escape, one need only mention that their &#8220;CSS&#8221; is broken. The GMTB invariably considers the CSS &#8220;correctness&#8221; and &#8220;portability&#8221; to be a craft, and the output thereof to be an &#8220;art.&#8221; By pointing out that the page renders poorly on the most esoteric browser you can imagine, you will be assured a quick and uneventful escape.</blockquote>

<p>Well, I don&#8217;t wear turtlenecks, use MovableType, or have a Mac. But I do like wireless hotspots and my CSS does render correctly on everything except for crappy old 4.0 browsers. And I&#8217;m blogging this. Wait a second&#8230; Damnit!</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F03%2F30%2Fwhat-is-a-gmtb%2F&amp;seed_title=What+is+a+GMTB%3F/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Photo Blog</title>
		<link>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F03%2F19%2Fphoto-blog%2F&amp;seed_title=Photo+Blog</link>
		<comments>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F03%2F19%2Fphoto-blog%2F&amp;seed_title=Photo+Blog#comments</comments>
		<pubDate>Fri, 19 Mar 2004 08:04:27 +0000</pubDate>
		<dc:creator>chris</dc:creator>
		
		<category><![CDATA[photoblog]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[web-design]]></category>

		<guid isPermaLink="false">http://chrismetcalf.net/blog/archives/2004/03/19/photo-blog/</guid>
		<description><![CDATA[So I&#8217;ve set up a photo blog through some WordPress template hacking. Everything I photo blog ends up in the &#8220;PhotoBlog&#8221; category.

Right now I&#8217;m taking most of them with my Palm Zire 71. The picture quality isn&#8217;t half bad for what&#8217;s basically a webcam grafted to a PDA.
]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve set up a <a href="http://chrismetcalf.net/blog/archives/category/photoblog/">photo blog</a> through some WordPress template hacking. Everything I photo blog ends up in the &#8220;PhotoBlog&#8221; category.</p>

<p>Right now I&#8217;m taking most of them with my Palm Zire 71. The picture quality isn&#8217;t half bad for what&#8217;s basically a webcam grafted to a PDA.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F03%2F19%2Fphoto-blog%2F&amp;seed_title=Photo+Blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I hate IE</title>
		<link>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F03%2F16%2Fi-hate-ie%2F&amp;seed_title=I+hate+IE</link>
		<comments>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F03%2F16%2Fi-hate-ie%2F&amp;seed_title=I+hate+IE#comments</comments>
		<pubDate>Tue, 16 Mar 2004 07:21:45 +0000</pubDate>
		<dc:creator>chris</dc:creator>
		
		<category><![CDATA[software]]></category>

		<category><![CDATA[web-design]]></category>

		<guid isPermaLink="false">http://chrismetcalf.net/blog/archives/2004/03/16/i-hate-ie/</guid>
		<description><![CDATA[I just thought I&#8217;d take a moment to once again talk about how much I hate Internet Explorer.

If you&#8217;re going to create a monopoly, at least create a standards-compliant monopoly. Then I don&#8217;t have to worry about your browser breaking every single bit of compliant CSS code I write. Mozilla, Firefox, and Safari play nice, [...]]]></description>
			<content:encoded><![CDATA[<p>I just thought I&#8217;d take a moment to once again talk about how much I hate Internet Explorer.</p>

<p>If you&#8217;re going to create a monopoly, at least create a <em>standards-compliant</em> monopoly. Then I don&#8217;t have to worry about your browser breaking every single bit of compliant CSS code I write. Mozilla, Firefox, and Safari play nice, why can&#8217;t you?</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F03%2F16%2Fi-hate-ie%2F&amp;seed_title=I+hate+IE/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My shingle has been hung</title>
		<link>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F03%2F04%2Fmy-shingle-has-been-hung%2F&amp;seed_title=My+shingle+has+been+hung</link>
		<comments>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F03%2F04%2Fmy-shingle-has-been-hung%2F&amp;seed_title=My+shingle+has+been+hung#comments</comments>
		<pubDate>Thu, 04 Mar 2004 23:56:40 +0000</pubDate>
		<dc:creator>chris</dc:creator>
		
		<category><![CDATA[general]]></category>

		<category><![CDATA[business]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[web-culture]]></category>

		<category><![CDATA[web-design]]></category>

		<guid isPermaLink="false">http://chrismetcalf.net/blog/archives/2004/03/04/my-shingle-has-been-hung/</guid>
		<description><![CDATA[Well, I&#8217;ve decided its about time I start my own business. I&#8217;ve done some small jobs, done plenty of development for other people, and hacked around for countless hours on my own pages. As such, I&#8217;ve officially opened the doors of poppinfresh industries. I&#8217;ve been using the company name &#8220;poppinfresh industries&#8221; on web forms since [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;ve decided its about time I start my own business. I&#8217;ve done some small jobs, done plenty of development for other people, and hacked around for countless hours on my own pages. As such, I&#8217;ve officially opened the doors of <a href="http://poppinfresh.net">poppinfresh industries</a>. I&#8217;ve been using the company name &#8220;poppinfresh industries&#8221; on web forms since I was 12 years old, so I decided I&#8217;d stick with it. I like it, its catchy.</p>

<p>So if you need some web design, administration, or custom software development, give me a shot. I&#8217;m cheap.</p>

<p>Now all I need is customers.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrismetcalf.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fchrismetcalf.net%2Fblog%2Farchives%2F2004%2F03%2F04%2Fmy-shingle-has-been-hung%2F&amp;seed_title=My+shingle+has+been+hung/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
