<?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>Polymorphism &#187; Career &amp; Lifestyle</title>
	<atom:link href="http://www.clearcrystalmedia.com/pm/category/career-lifestyle/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.clearcrystalmedia.com/pm</link>
	<description>using the right technology at the right time</description>
	<lastBuildDate>Fri, 23 Jul 2010 13:27:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>First step in throwing your XHTML document into Quirks Mode</title>
		<link>http://www.clearcrystalmedia.com/pm/xhtml-document-quirks-mode/</link>
		<comments>http://www.clearcrystalmedia.com/pm/xhtml-document-quirks-mode/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 15:24:38 +0000</pubDate>
		<dc:creator>Chris Peters</dc:creator>
				<category><![CDATA[Career & Lifestyle]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Design & CSS]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[ccm]]></category>
		<category><![CDATA[cfml]]></category>
		<category><![CDATA[chris peters]]></category>
		<category><![CDATA[clear crystal media]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[polymorphism]]></category>
		<category><![CDATA[quirks mode]]></category>
		<category><![CDATA[railo]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[standards compliance]]></category>
		<category><![CDATA[web standards]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.clearcrystalmedia.com/pm/?p=430</guid>
		<description><![CDATA[<p>A lot of websites pursue <abbr title="Extensible Hypertext Markup Language">XHTML</abbr> as their document type, which is really cool. But a lot of them end up not validating with one little mistake. Even worse, with this mistake, documents that are made to run in "standards mode" are immediately thrown into <a href="http://www.quirksmode.org/css/quirksmode.html">quirks mode</a> by browsers because web developers don't know how to do their jobs.</p>
<p>Read on to find out how to avoid this all-too-common mistake.</p>]]></description>
			<content:encoded><![CDATA[<p>A lot of websites pursue <abbr title="Extensible Hypertext Markup Language">XHTML</abbr> as their document type, which is really cool. But a lot of them end up not validating with one little mistake. Even worse, with this mistake, documents that are made to run in &#8220;standards mode&#8221; are immediately thrown into <a href="http://www.quirksmode.org/css/quirksmode.html">quirks mode</a> by browsers because web developers don&#8217;t know how to do their jobs.</p>
<p>If you want to author <abbr title="Extensible Hypertext Markup Language">XHTML</abbr> documents, your <code>DOCTYPE</code> declaration must start on the <a href="http://www.personal.psu.edu/v23/presentations/accessibility/20errors/standards_errors.html#error14">first character of the first line</a> of the source code. No leading spaces or line breaks.</p>
<p>My favorite is how ASP.NET breaks this by following their practices. Take the <a href="http://en.wikipedia.org/wiki/ASP.NET" title="ASP.NET">example from Wikipedia</a> (which I&#8217;ve seen used elsewhere as well):</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #008000;">&lt;%</span>@ Page Language<span style="color: #008000;">=</span><span style="color: #666666;">&quot;C#&quot;</span> <span style="color: #008000;">%&gt;</span>   
&nbsp;
<span style="color: #008000;">&lt;!</span>DOCTYPE html <span style="color: #0600FF;">PUBLIC</span> <span style="color: #666666;">&quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot;</span> <span style="color: #666666;">&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;</span><span style="color: #008000;">&gt;</span>
<span style="color: #008000;">&lt;</span>script runat<span style="color: #008000;">=</span><span style="color: #666666;">&quot;server&quot;</span><span style="color: #008000;">&gt;</span></pre></div></div>

<p>This causes developers to insert 2 line breaks before the <code>DOCTYPE</code>, which is unacceptable if you want to comply with standards.</p>
<p>Because my weapon of choice is <abbr title="ColdFusion Markup Language">CFML</abbr>, here&#8217;s how I handle this situation using <code>&lt;cfsetting&gt;</code> and <code>&lt;cfoutput&gt;</code> tags in my layout files:</p>

<div class="wp_syntax"><div class="code"><pre class="cfm" style="font-family:monospace;"><span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #990000; font-weight: bold;">cfsetting</span> enablecfoutputonly<span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;true&quot;</span><span style="color: #0000FF;">&gt;</span></span>
&nbsp;
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #990000; font-weight: bold;">cfparam</span> <span style="color: #0000FF;">name</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;layout.title&quot;</span> <span style="color: #0000FF;">type</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;string&quot;</span><span style="color: #0000FF;">&gt;</span></span>
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #990000; font-weight: bold;">cfparam</span> <span style="color: #0000FF;">name</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;otherParams&quot;</span> <span style="color: #0000FF;">default</span><span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;here&quot;</span><span style="color: #0000FF;">&gt;</span></span>
&nbsp;
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #990000; font-weight: bold;">cfset</span> variablesThatNeedSet <span style="color: #0000FF;">=</span> <span style="color: #009900;">&quot;here&quot;</span><span style="color: #0000FF;">&gt;</span></span>
&nbsp;
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #990000; font-weight: bold;">cfoutput</span><span style="color: #0000FF;">&gt;</span></span><span style="color: #00bbdd;">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;</span>
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #000000; font-weight: bold;">head</span><span style="color: #0000FF;">&gt;</span></span>
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #000000; font-weight: bold;">title</span><span style="color: #0000FF;">&gt;</span></span><span style="color: #0000FF;">#layout.<span style="color: #0000FF;">title</span>#</span><span style="color: #333333;"><span style="color: #0000FF;">&lt;/</span><span style="color: #000000; font-weight: bold;">title</span><span style="color: #0000FF;">&gt;</span></span>
...
<span style="color: #333333;"><span style="color: #0000FF;">&lt;/</span><span style="color: #000000; font-weight: bold;">head</span><span style="color: #0000FF;">&gt;</span></span>
&nbsp;
<span style="color: #333333;"><span style="color: #0000FF;">&lt;/</span><span style="color: #990000; font-weight: bold;">cfoutput</span><span style="color: #0000FF;">&gt;</span></span>
&nbsp;
<span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #990000; font-weight: bold;">cfsetting</span> enablecfoutputonly<span style="color: #0000FF;">=</span><span style="color: #009900;">&quot;false&quot;</span><span style="color: #0000FF;">&gt;</span></span></pre></div></div>

<p>Because ColdFusion suppresses output until the opening <code>&lt;cfoutput&gt;</code> tag, the <code>DOCTYPE</code> will appear on the first character of the first line, right where it belongs. And browsers will treat the document as standards compliant, not in quirks mode.</p>

<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/asp.net' rel='tag' target='_self'>asp.net</a>, <a class='technorati-link' href='http://technorati.com/tag/ccm' rel='tag' target='_self'>ccm</a>, <a class='technorati-link' href='http://technorati.com/tag/cfml' rel='tag' target='_self'>cfml</a>, <a class='technorati-link' href='http://technorati.com/tag/chris+peters' rel='tag' target='_self'>chris peters</a>, <a class='technorati-link' href='http://technorati.com/tag/clear+crystal+media' rel='tag' target='_self'>clear crystal media</a>, <a class='technorati-link' href='http://technorati.com/tag/ColdFusion' rel='tag' target='_self'>ColdFusion</a>, <a class='technorati-link' href='http://technorati.com/tag/html' rel='tag' target='_self'>html</a>, <a class='technorati-link' href='http://technorati.com/tag/polymorphism' rel='tag' target='_self'>polymorphism</a>, <a class='technorati-link' href='http://technorati.com/tag/quirks+mode' rel='tag' target='_self'>quirks mode</a>, <a class='technorati-link' href='http://technorati.com/tag/railo' rel='tag' target='_self'>railo</a>, <a class='technorati-link' href='http://technorati.com/tag/standards' rel='tag' target='_self'>standards</a>, <a class='technorati-link' href='http://technorati.com/tag/standards+compliance' rel='tag' target='_self'>standards compliance</a>, <a class='technorati-link' href='http://technorati.com/tag/web+standards' rel='tag' target='_self'>web standards</a>, <a class='technorati-link' href='http://technorati.com/tag/xhtml' rel='tag' target='_self'>xhtml</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.clearcrystalmedia.com/pm/xhtml-document-quirks-mode/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Follow me on Twitter</title>
		<link>http://www.clearcrystalmedia.com/pm/follow-me-on-twitter/</link>
		<comments>http://www.clearcrystalmedia.com/pm/follow-me-on-twitter/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 22:46:52 +0000</pubDate>
		<dc:creator>Chris Peters</dc:creator>
				<category><![CDATA[Career & Lifestyle]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[ccm]]></category>
		<category><![CDATA[cfml]]></category>
		<category><![CDATA[chris peters]]></category>
		<category><![CDATA[clear crystal media]]></category>
		<category><![CDATA[openbd]]></category>
		<category><![CDATA[polymorphism]]></category>
		<category><![CDATA[railo]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.clearcrystalmedia.com/pm/?p=350</guid>
		<description><![CDATA[<p>I've always thought <a href="http://twitter.com/">Twitter</a> a glorious waste of time. But I recently found out that much of the <abbr title="ColdFusion Markup Language">CFML</abbr> community hangs out there.</p>
<p>So here's my new Twitter handle: <a href="http://twitter.com/cf_chrispeters">@cf_chrispeters</a>.</p>
<p>I must admit that joining Twitter with the goal of connecting with other <abbr title="ColdFusion">CF</abbr>ers makes it a much more rewarding experience. I've learned a few things already just from links that others have been posting. If you use ColdFusion, Railo, or Open<abbr title="BlueDragon">BD</abbr>, then you should give it a shot.</p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always thought <a href="http://twitter.com/">Twitter</a> a glorious waste of time. But I recently found out that much of the <abbr title="ColdFusion Markup Language">CFML</abbr> community hangs out there.</p>
<p>So here&#8217;s my new Twitter handle: <a href="http://twitter.com/cf_chrispeters">@cf_chrispeters</a>.</p>
<p>I must admit that joining Twitter with the goal of connecting with other <abbr title="ColdFusion">CF</abbr>ers makes it a much more rewarding experience. I&#8217;ve learned a few things already just from links that others have been posting. If you use ColdFusion, Railo, or Open<abbr title="BlueDragon">BD</abbr>, then you should give it a shot.</p>

<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/ccm' rel='tag' target='_self'>ccm</a>, <a class='technorati-link' href='http://technorati.com/tag/cfml' rel='tag' target='_self'>cfml</a>, <a class='technorati-link' href='http://technorati.com/tag/chris+peters' rel='tag' target='_self'>chris peters</a>, <a class='technorati-link' href='http://technorati.com/tag/clear+crystal+media' rel='tag' target='_self'>clear crystal media</a>, <a class='technorati-link' href='http://technorati.com/tag/ColdFusion' rel='tag' target='_self'>ColdFusion</a>, <a class='technorati-link' href='http://technorati.com/tag/openbd' rel='tag' target='_self'>openbd</a>, <a class='technorati-link' href='http://technorati.com/tag/polymorphism' rel='tag' target='_self'>polymorphism</a>, <a class='technorati-link' href='http://technorati.com/tag/railo' rel='tag' target='_self'>railo</a>, <a class='technorati-link' href='http://technorati.com/tag/twitter' rel='tag' target='_self'>twitter</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.clearcrystalmedia.com/pm/follow-me-on-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The magic of AirPort Express</title>
		<link>http://www.clearcrystalmedia.com/pm/magic-airtunes/</link>
		<comments>http://www.clearcrystalmedia.com/pm/magic-airtunes/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 02:33:49 +0000</pubDate>
		<dc:creator>Chris Peters</dc:creator>
				<category><![CDATA[Career & Lifestyle]]></category>
		<category><![CDATA[airport express]]></category>
		<category><![CDATA[airtunes]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ccm]]></category>
		<category><![CDATA[chris peters]]></category>
		<category><![CDATA[clear crystal media]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[ipod touch]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[polymorphism]]></category>

		<guid isPermaLink="false">http://www.clearcrystalmedia.com/pm/?p=336</guid>
		<description><![CDATA[<p>I've been mainly business since I've started this blog, so I figured that I could share some non-web-development-related stuff from time to time.</p>
<p>I'll admit that I've somehow become an Apple fan boy over the years. One lesser-known thing about Apple's products is how well their entertainment stuff integrates together. For a couple hundred bucks, you can turn your Mac or Windows <abbr title="Personal Computer">PC</abbr> into the cerebellum of music in your household.</p>
<p>Read on to find out what you need to set up a low-cost house-wide remote sound system and what it all does.</p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been mainly business since I&#8217;ve started this blog, so I figured that I could share some non-web-development-related stuff from time to time.</p>
<p>I&#8217;ll admit that I&#8217;ve somehow become an Apple fan boy over the years. One lesser-known thing about Apple&#8217;s products is how well their entertainment stuff integrates together. For a couple hundred bucks, you can turn your Mac or Windows <abbr title="Personal Computer">PC</abbr> into the cerebellum of music in your household.</p>
<p>For most purposes, here&#8217;s what you need to have a house-wide sound system:</p>
<ul>
<li>At least one AirPort Express</li>
<li>Mac or Windows <abbr title="Personal Computer">PC</abbr></li>
<li>iTunes as your music software</li>
<li>Stereo or powered speakers</li>
<li>iPhone or iPod Touch (optional)</li>
<li>App called Remote for iPhone/iPod Touch</li>
</ul>
<h2>The AirPort Express</h2>
<p><img class="alignleft size-full wp-image-337" style="margin: 0 20px 20px 0" title="Airport Extreme" src="http://www.clearcrystalmedia.com/pm/wp-content/uploads/airport-extreme.jpg" alt="Airport Extreme" width="160" height="250" />The true lifeblood of this setup is the <a href="http://www.apple.com/airportexpress/">AirPort Express</a>. When you plug one of these suckers in, you get these wireless features:</p>
<ul>
<li>Music sharing via AirTunes</li>
<li>Wireless printing</li>
<li>Wireless router (if you don&#8217;t already have a router)</li>
<li>Extend the range of a current wireless network (if you already have a router)</li>
</ul>
<p>Basically, it has outputs for you to plug in a speaker cable, <abbr title="Universal Serial Bus">USB</abbr> printer cable, and <acronym title="Category 5">CAT5</acronym> cable.</p>
<p>The limitation is that for each AirPort express, you need to have your stereo, printer, or <acronym title="Local Area Network">LAN</acronym> cable within physical proximity of it. So if your stereo is in your living room and your printer is in your office, you may need 2 AirPort Expresses. Get it?</p>
<h2>How AirTunes works in iTunes</h2>
<p>If you set up at least one AirPort Express, you get an additional drop-down menu in the lower right corner of <a href="http://www.apple.com/itunes/">iTunes</a>.</p>
<p><img class="alignleft" style="margin: 0 20px 20px 0" title="AirTunes Selector" src="http://www.clearcrystalmedia.com/pm/wp-content/uploads/airtunes-selector.jpg" alt="AirTunes Selector" width="281" height="169" /></p>
<p>As you can see from my example above, I have 3 AirPort Extremes: Bathroom, Living Room, and Office. Yes, I like listening to music while I&#8217;m in the shower in the morning. So sue me. <img src='http://www.clearcrystalmedia.com/pm/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>With those AirPort Expresses in place, I can select to play music from iTunes on small speakers in my bathroom, the Bose system in my living room, the shelf stereo in my office, or on my computer&#8217;s speakers. Or any combination of those locations.</p>
<h2>Wireless printing</h2>
<p>Like I said above, I could hook printers up at any of those locations as well. As it turns out, I can have my MacBook (it could be a <abbr title="Personal Computer">PC</abbr> too) anywhere in my apartment and print wirelessly to my printer in the office.</p>
<h2>Remote control via iPhone or iPod Touch</h2>
<p><img class="alignleft size-full wp-image-339" style="margin: 0 20px 20px 0" title="iPhone Remote App" src="http://www.clearcrystalmedia.com/pm/wp-content/uploads/iphone-remote-app.jpg" alt="iPhone Remote App" width="253" height="322" />When you have all of this set up, you can control it all remotely with an app for your <a href="http://www.apple.com/iphone/">iPhone</a> or <a href="http://www.apple.com/ipodtouch/">iPod Touch</a> called <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284417350">Remote</a>.</p>
<p>Remote is a cool app, and it gets even cooler when you have AirPort Express. As you can see on the left, you can go to a settings screen from your iPhone to tell iTunes where to send the music.</p>
<p>In this example, John can play his music on the computer, in the living room, on the patio, or any combination of those.</p>
<p>The app lets you choose songs, adjust the volume, rate songs, and more.</p>
<h3><abbr title="Disk Jockey">DJ</abbr> functionality in Remote</h3>
<p><img class="alignright size-full wp-image-340" style="margin: 0 0 20px 20px" title="Remote DJ" src="http://www.clearcrystalmedia.com/pm/wp-content/uploads/remote-dj.jpg" alt="Remote DJ" width="188" height="282" />Another fun thing to play with is Apple&#8217;s enhanced <abbr title="Disk Jockey">DJ</abbr> functionality. When you have <a href="http://www.macworld.com/article/139720/2009/03/itunesdj.html">iTunes <abbr title="Disk Jockey">DJ</abbr></a> playing (used to be called &#8220;Party Shuffle&#8221;), anyone with an iPhone can join your network, browse your music library, and vote for which songs to play next.</p>
<p>Whomever has their iPhone officially synced up with their computer is the <abbr title="Disk Jockey">DJ</abbr> and ultimately controls what&#8217;s in-queue and what plays next. Or it can all be controlled from the computer as well.</p>
<p>This app made for an extremely nerdy time when I had some guys over to shoot some pool. But I must admit that my music library was a great conversation piece, and everyone with iPhones had a great time playing around with the app and interacting to choose the next song.</p>
<h2>Nerd out yer soundz &#8216;n shit</h2>
<p>Yes, this has taken me years to build up. I bought my first AirPort Express many years ago. But it&#8217;s been a cool way for me to feel all high tech and to get more out of my investment in Apple products. It really does work well and kicks major ass.</p>
<p>Questions? Ask the guru in the comments.</p>

<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/airport+express' rel='tag' target='_self'>airport express</a>, <a class='technorati-link' href='http://technorati.com/tag/airtunes' rel='tag' target='_self'>airtunes</a>, <a class='technorati-link' href='http://technorati.com/tag/apple' rel='tag' target='_self'>apple</a>, <a class='technorati-link' href='http://technorati.com/tag/ccm' rel='tag' target='_self'>ccm</a>, <a class='technorati-link' href='http://technorati.com/tag/chris+peters' rel='tag' target='_self'>chris peters</a>, <a class='technorati-link' href='http://technorati.com/tag/clear+crystal+media' rel='tag' target='_self'>clear crystal media</a>, <a class='technorati-link' href='http://technorati.com/tag/iphone' rel='tag' target='_self'>iphone</a>, <a class='technorati-link' href='http://technorati.com/tag/ipod' rel='tag' target='_self'>ipod</a>, <a class='technorati-link' href='http://technorati.com/tag/ipod+touch' rel='tag' target='_self'>ipod touch</a>, <a class='technorati-link' href='http://technorati.com/tag/itunes' rel='tag' target='_self'>itunes</a>, <a class='technorati-link' href='http://technorati.com/tag/polymorphism' rel='tag' target='_self'>polymorphism</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.clearcrystalmedia.com/pm/magic-airtunes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My blog 4 years later and a new definition</title>
		<link>http://www.clearcrystalmedia.com/pm/4-years-later-new-definition/</link>
		<comments>http://www.clearcrystalmedia.com/pm/4-years-later-new-definition/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 00:33:13 +0000</pubDate>
		<dc:creator>Chris Peters</dc:creator>
				<category><![CDATA[Career & Lifestyle]]></category>

		<guid isPermaLink="false">http://www.clearcrystalmedia.com/pm/?p=170</guid>
		<description><![CDATA[I started this blog in 2005. That&#8217;s pretty ancient in blog years. Considering that most blogs probably only last about 3 months, this blog is about 1,600 years old in human years. Honestly, I&#8217;ve taken a small hiatus from the programming side of web development for the past couple years. I&#8217;ve been ramping myself up [...]]]></description>
			<content:encoded><![CDATA[<p>I started this blog in 2005. That&#8217;s pretty ancient in blog years. Considering that most blogs probably only last about 3 months, this blog is about 1,600 years old in human years.</p>
<p>Honestly, I&#8217;ve taken a small hiatus from the programming side of web development for the past couple years. I&#8217;ve been ramping myself up as an <a href="http://www.clearcrystalmedia.com/gc/">Internet marketer</a>. But now I&#8217;m back as a technologist too.</p>
<p>Accordingly, I&#8217;ve moved this blog over to my main domain and given it a name in line with the domain&#8217;s branding. I&#8217;ve named it Polymorphism. The word describes a <a title="Polymorphism" href="http://en.wikipedia.org/wiki/Polymorphism_(computer_science)">technique in object oriented programming</a> and a <a title="Polymorphism" href="http://en.wikipedia.org/wiki/Polymorphism_(materials_science)">materials science concept relating to crystals</a>. (Get it, ClearCrystalMedia.com? Huh? Huh?!) Plus it&#8217;s a pretty neat word that reflects the way things change and adapt so quickly these days.</p>
<p>I am ready to start working on a new <abbr title="Content Management System">CMS</abbr> built on top of the <a href="http://www.cfwheels.org/">ColdFusion on Wheels framework</a>. OK, so I&#8217;ve really been &#8220;working on&#8221; the <abbr title="Content Management System">CMS</abbr> for the past year, and I&#8217;ll admit that I haven&#8217;t really gotten that far. But now that the framework is pretty damn stable, I&#8217;m ready to start hitting that much harder. I really want to do something special with it.</p>
<p>I&#8217;d like to post to this blog regularly about what I&#8217;m doing and learning. And while working on such a large project, I&#8217;d love to have a <a title="Seth Godin: Nostalgia is a basic human emotion" href="http://sethgodin.typepad.com/seths_blog/2009/05/nostalgia-is-a-basic-human-emotion.html">scrapbook of sorts</a>, chronicling challenges, successes, and people along the way.</p>

<!-- start wp-tags-to-technorati 1.01 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.clearcrystalmedia.com/pm/4-years-later-new-definition/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Font Conference</title>
		<link>http://www.clearcrystalmedia.com/pm/font-conference/</link>
		<comments>http://www.clearcrystalmedia.com/pm/font-conference/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 01:41:18 +0000</pubDate>
		<dc:creator>Chris Peters</dc:creator>
				<category><![CDATA[Career & Lifestyle]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.chrispetersweb.com/?p=146</guid>
		<description><![CDATA[Hilarious video with personified fonts. I love Wing Dings: &#8220;Airplane, Pencil, Mailbox!&#8221; Technorati Tags: design, font, fonts, funny, video]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="360" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="AllowScriptAccess" value="true" /><param name="src" value="http://www.collegehumor.com/moogaloop/moogaloop.swf?clip_id=1823766&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="640" height="360" src="http://www.collegehumor.com/moogaloop/moogaloop.swf?clip_id=1823766&amp;fullscreen=1" allowscriptaccess="true" allowfullscreen="true"></embed></object></p>
<p>Hilarious video with <a href="http://www.collegehumor.com/video:1823766">personified fonts</a>. I love Wing Dings: &#8220;Airplane, Pencil, Mailbox!&#8221;</p>

<!-- start wp-tags-to-technorati 1.01 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/design' rel='tag' target='_self'>design</a>, <a class='technorati-link' href='http://technorati.com/tag/font' rel='tag' target='_self'>font</a>, <a class='technorati-link' href='http://technorati.com/tag/fonts' rel='tag' target='_self'>fonts</a>, <a class='technorati-link' href='http://technorati.com/tag/funny' rel='tag' target='_self'>funny</a>, <a class='technorati-link' href='http://technorati.com/tag/video' rel='tag' target='_self'>video</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://www.clearcrystalmedia.com/pm/font-conference/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
