<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Trev's Travels</title>
	
	<link>http://trevorcreech.com</link>
	<description />
	<lastBuildDate>Tue, 01 Dec 2009 20:14:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="trevorcreech" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://trevorcreech.com/feed/" /><item>
		<title>Firefox 3.5 not collapsing spaces in JavaScript className</title>
		<link>http://trevorcreech.com/blog/2009/07/17/firefox-3-5-not-collapsing-spaces-in-javascript-classname/</link>
		<comments>http://trevorcreech.com/blog/2009/07/17/firefox-3-5-not-collapsing-spaces-in-javascript-classname/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 04:57:04 +0000</pubDate>
		<dc:creator>Trevor</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://trevorcreech.com/?p=634</guid>
		<description><![CDATA[In JavaScript, to get all the classes on a given element, you call element.className, which gives a string with space-separated classes, such as &#8220;class1 class2”.  You can also set this property directly, such as element.className = "class3 class4”.  The norm here is that classes are separated by a single space, with no whitespace [...]]]></description>
			<content:encoded><![CDATA[<p>In JavaScript, to get all the classes on a given element, you call element.<a href="https://developer.mozilla.org/en/DOM:element.className">className</a>, which gives a string with space-separated classes, such as &#8220;class1 class2”.  You can also set this property directly, such as <code>element.className = "class3 class4”</code>.  The norm here is that classes are separated by a single space, with no whitespace at either end, but since we are just setting a string directly, we can send in any whitespace we want.  This is where things get interesting, because in Firefox 3.0, any unnecessary whitespace is removed, leaving the string the way you would expect it to be formatted.  However, in the newly released Firefox 3.5, this does not happen, and the extraneous whitespace remains.  Here&#8217;s a live example.  Clicking this link sets its own className to <code>"     class1     class2     "</code>, and then displays its newly set className:</p>
<p><a onclick="this.className=&quot;     class1     class2     &quot;;alert(&quot;\&quot;&quot; + this.className + &quot;\&quot;&quot;);" href="#">Try me!</a><br />
In Firefox 3.0 you will see <code>"class1 class2”</code>, but Firefox 3.5 will show <code>"     class     class2     "</code>.</p>
<p>I&#8217;m not sure if this is a bug or a feature, but it&#8217;s a bit of a gotcha if you are at all sloppy in setting classes, as it might mess up a class-recognizing regex later on, which exactly what happened at work today, in our <a href="http://gr.postrank.com">Google Reader extension</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://trevorcreech.com/blog/2009/07/17/firefox-3-5-not-collapsing-spaces-in-javascript-classname/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Secret Firefox Icons</title>
		<link>http://trevorcreech.com/blog/2008/11/20/secret-firefox-icons/</link>
		<comments>http://trevorcreech.com/blog/2008/11/20/secret-firefox-icons/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 06:43:51 +0000</pubDate>
		<dc:creator>Trevor</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://trevorcreech.com/?p=596</guid>
		<description><![CDATA[I discovered an interesting feature in Firefox today.  When browsing in a local folder (Anything starting with file:///), small icons are shown to represent the format of each file.  It turns out that you can access these icons with moz-icon://.ext?size=x, where ext is the extension of the file (mp3,txt, &#8230;), and x is the size [...]]]></description>
			<content:encoded><![CDATA[<p>I discovered an interesting feature in Firefox today.  When browsing in a local folder (Anything starting with file:///), small icons are shown to represent the format of each file.  It turns out that you can access these icons with <code>moz-icon://.ext?size=x</code>, where ext is the extension of the file (mp3,txt, &#8230;), and x is the size of the icon to display (32 and 16 work well for me).</p>
<p>We can take advantage of this feature by including these icons on any web page.  Simply use an img tag like this: <code>&lt;img src="moz-icon://.mp3?size=32" /&gt;</code>.  The beauty of this is that the icons will display natively on whatever platform they are running, taking on the look of the Operating System.  Even changing your theme will change which icons are displayed.  These subtle changes can make an application feel much more intuitive and familiar.</p>
<p>The obvious problem is that these icons only work in Firefox.  However, if that is your target browser, this could be a nice little addition to a web application, which could easily be hidden in other browsers.</p>
<p>Here is a sampling of the icons, which will only appear if you are using <a href="http://getfirefox.com">Firefox</a>.  There is also a set of screenshots from several Operating Systems at the end.</p>
<p class="icon-wrapper"><span>Music (mp3):</span><br />
<img src="moz-icon://.mp3?size=32" alt="" /></p>
<p class="icon-wrapper"><span>Archive (zip):</span><br />
<img src="moz-icon://.zip?size=32" alt="" /></p>
<p class="icon-wrapper"><span>Video (mov):</span><br />
<img src="moz-icon://.mov?size=32" alt="" /></p>
<p class="icon-wrapper"><span>Picture (jpg):</span><br />
<img src="moz-icon://.jpg?size=32" alt="" /></p>
<p class="icon-wrapper"><span>Text (txt):</span><br />
<img src="moz-icon://.txt?size=32" alt="" /></p>
<p class="icon-wrapper"><span>Document (doc):</span><br />
<img src="moz-icon://.doc?size=32" alt="" /></p>
<p class="icon-wrapper"><span>Binary (exe):</span><br />
<img src="moz-icon://.exe?size=32" alt="" /></p>
<p class="icon-wrapper"><span>Web (html):</span><br />
<img src="moz-icon://.html?size=32" alt="" /></p>
<p class="icon-wrapper"><span>Script (pl):</span><br />
<img src="moz-icon://.pl?size=32" alt="" /></p>
<p class="icon-wrapper"><span>Presentation (ppt):</span><br />
<img src="moz-icon://.ppt?size=32" alt="" /></p>
<p class="icon-wrapper"><span>Spreadsheet (xls):</span><br />
<img src="moz-icon://.xls?size=32" alt="" /></p>
<p class="clearer">
<div style="text-align:center">
<h3>Screenshots</h3>
<p>(Thanks to <a href="http://browsershots.org/">browsershots.org</a>)
</div>

<a href='http://trevorcreech.com/blog/2008/11/20/secret-firefox-icons/linux/' title='Linux'><img width="150" height="150" src="http://trevorcreech.com/wordpress/wp-content/uploads/2008/11/linux-150x150.png" class="attachment-thumbnail" alt="Ubuntu 8.04" title="Linux" /></a>
<a href='http://trevorcreech.com/blog/2008/11/20/secret-firefox-icons/mac/' title='Mac'><img width="150" height="150" src="http://trevorcreech.com/wordpress/wp-content/uploads/2008/11/mac-150x150.png" class="attachment-thumbnail" alt="Mac OS X 10.5" title="Mac" /></a>
<a href='http://trevorcreech.com/blog/2008/11/20/secret-firefox-icons/windows/' title='Windows'><img width="150" height="150" src="http://trevorcreech.com/wordpress/wp-content/uploads/2008/11/windows-150x150.png" class="attachment-thumbnail" alt="Windows XP" title="Windows" /></a>

]]></content:encoded>
			<wfw:commentRss>http://trevorcreech.com/blog/2008/11/20/secret-firefox-icons/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>3D Modeling</title>
		<link>http://trevorcreech.com/blog/2008/10/18/3d-modeling/</link>
		<comments>http://trevorcreech.com/blog/2008/10/18/3d-modeling/#comments</comments>
		<pubDate>Sat, 18 Oct 2008 06:01:07 +0000</pubDate>
		<dc:creator>Trevor</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[blender]]></category>

		<guid isPermaLink="false">http://trevorcreech.com/?p=583</guid>
		<description><![CDATA[Tonight I started playing around with Blender, the free, open-source 3D Modeling application.  Thanks to a great tutorial, this is what I came up with after only a couple hours.

Cooler/creepier models to come.

]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Tonight I started playing around with <a href="http://www.blender.org/">Blender</a>, the free, open-source 3D Modeling application.  Thanks to a <a href="http://en.wikibooks.org/wiki/Blender_3D:_Noob_to_Pro">great tutorial</a>, this is what I came up with after only a couple hours.</p>
<p style="text-align: center;"><a href="http://trevorcreech.com/wordpress/wp-content/uploads/2008/10/monkeyman.jpg"><img class="alignnone size-medium wp-image-592" title="Monkey Man" src="http://trevorcreech.com/wordpress/wp-content/uploads/2008/10/monkeyman-300x240.jpg" alt="" width="300" height="240" /></a></p>
<p style="text-align: left;">Cooler/creepier models to come.</p>
<p><img src="http://postrank.com/settings/claim/img?secret=zvmac" /></p>
]]></content:encoded>
			<wfw:commentRss>http://trevorcreech.com/blog/2008/10/18/3d-modeling/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Calculus Fun</title>
		<link>http://trevorcreech.com/blog/2008/07/27/calculus-fun/</link>
		<comments>http://trevorcreech.com/blog/2008/07/27/calculus-fun/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 04:55:58 +0000</pubDate>
		<dc:creator>Trevor</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://trevorcreech.com/?p=562</guid>
		<description><![CDATA[This pretty much sums up my life right now:

On the midterm, we were expected to work this out by hand.
]]></description>
			<content:encoded><![CDATA[<p>This pretty much sums up my life right now:<br />
<img src="http://trevorcreech.com/wordpress/wp-content/uploads/2008/07/insanity.png" alt="\int \dfrac{x^3}{x^3 + 1} = x - \dfrac{1}{3} ln|x+1| + \dfrac{1}{6} ln|x^2 - x + 1| - \dfrac{1}{\sqrt{3}} \arctan(\dfrac{2x-1}{\sqrt{3}}) + C" title="Insanity" class="alignnone size-full wp-image-561" /><br />
On the midterm, we were expected to work this out by hand.</p>
]]></content:encoded>
			<wfw:commentRss>http://trevorcreech.com/blog/2008/07/27/calculus-fun/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My Best Red Flag Deal</title>
		<link>http://trevorcreech.com/blog/2008/07/17/my-best-red-flag-deal/</link>
		<comments>http://trevorcreech.com/blog/2008/07/17/my-best-red-flag-deal/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 19:51:48 +0000</pubDate>
		<dc:creator>Trevor</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[games]]></category>

		<guid isPermaLink="false">http://trevorcreech.com/?p=553</guid>
		<description><![CDATA[For a while now, I&#8217;ve been wanting to buy the Orange Box set to play the widely acclaimed Portal.  I kept putting it off until I found a great deal on RedFlagDeals: Future Shop had it for only $29.99.  I picked up the last copy in the store, and now I&#8217;ll be happily enjoying Portal!
]]></description>
			<content:encoded><![CDATA[<p>For a while now, I&#8217;ve been wanting to buy the <a href="http://en.wikipedia.org/wiki/The_Orange_Box" title="http://en.wikipedia.org/wiki/The_Orange_Box">Orange Box</a> set to play the widely acclaimed Portal.  I kept putting it off until I found a great deal on RedFlagDeals: Future Shop had it for only $29.99.  I picked up the last copy in the store, and now I&#8217;ll be happily enjoying Portal!</p>
]]></content:encoded>
			<wfw:commentRss>http://trevorcreech.com/blog/2008/07/17/my-best-red-flag-deal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Band Names from “Lucy in the Sky with Diamonds”</title>
		<link>http://trevorcreech.com/blog/2008/05/11/band-names/</link>
		<comments>http://trevorcreech.com/blog/2008/05/11/band-names/#comments</comments>
		<pubDate>Sun, 11 May 2008 22:33:19 +0000</pubDate>
		<dc:creator>Trevor</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[bands]]></category>
		<category><![CDATA[beatles]]></category>

		<guid isPermaLink="false">http://trevorcreech.com/?p=549</guid>
		<description><![CDATA[Some bands have no imagination.
Warning: Half of these will start playing music automatically.
Picture yourself in a boat on a river,
With tangerine trees and marmalade skies
Somebody calls you, you answer quite slowly,
A girl with kaleidoscope eyes.
Cellophane flowers of yellow and green,
Towering over your head.
Look for the girl with the sun in her eyes,
And she&#8217;s gone.
Lucy in [...]]]></description>
			<content:encoded><![CDATA[<p>Some bands have no imagination.</p>
<p><strong>Warning:</strong> Half of these will start playing music automatically.</p>
<p>Picture yourself in a boat on a river,<br />
With <a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=93784870" title="Invalid Friend ID">tangerine trees</a> and <a href="http://www.marmaladeskies.net" title="http://www.marmaladeskies.net">marmalade skies</a><br />
Somebody calls you, you answer quite slowly,<br />
A girl with <a href="http://www.myspace.com/kaleidoscopeeyes1" title="http://www.myspace.com/kaleidoscopeeyes1">kaleidoscope eyes</a>.<br />
<a href="http://www.thecellophaneflowers.co.uk/index.shtml" title="The Cellophane Flowers">Cellophane flowers</a> of yellow and green,<br />
Towering over your head.<br />
Look for the girl with the sun in her eyes,<br />
And she&#8217;s gone.<br />
<a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=218003083" title="Invalid Friend ID">Lucy in the sky</a> with diamonds.<br />
Follow her down to a bridge by a fountain<br />
Where <a href="http://www.myspace.com/rockinghorsepeople" title="http://www.myspace.com/rockinghorsepeople">rocking horse people</a> eat <a href="http://www.amazon.com/Marshmallow-Pie-Spookie-Daly-Pride/dp/B0001FVEAO" title="http://www.amazon.com/Marshmallow-Pie-Spookie-Daly-Pride/dp/B0001FVEAO">marshmallow pies</a> [Album],<br />
Everyone smiles as you drift past the flowers,<br />
That grow so incredibly high.<br />
<a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendID=170913589" title="Invalid Friend ID">Newspaper taxis</a> appear on the shore,<br />
Waiting to take you away.<br />
Climb in the back with your head in the clouds,<br />
And you&#8217;re gone.<br />
Lucy in the sky with diamonds,<br />
Picture yourself on a <a href="http://cdbaby.com/cd/trainstation" title="CD Baby: TRAIN STATION: Train Station">train in a station</a>,<br />
With <a href="http://www.plasticineporter.com/" title="Plasticine Porter's Porch">plasticine porters</a> with <a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendid=84538870" title="Invalid Friend ID">looking glass</a> ties,<br />
Suddenly someone is there at the <a href="http://www.scottjordan.co.uk/acts.php?aName=turnstyle" title="TurnStyle - Scott Jordan Entertainment">turnstyle</a>,<br />
The girl with the <a href="http://www.pulsatingdream.com/" title="Kaleidoscope">kaleidoscope</a> eyes.</p>
<p><small>Lyrics from <a href="http://www.lyricsfreak.com/b/beatles/lucy+in+the+sky+with+diamonds_10026681.html" title="http://www.lyricsfreak.com/b/beatles/lucy+in+the+sky+with+diamonds_10026681.html">Lyrics Freak</a>.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://trevorcreech.com/blog/2008/05/11/band-names/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Large Photos</title>
		<link>http://trevorcreech.com/blog/2008/04/24/facebook-large-photos/</link>
		<comments>http://trevorcreech.com/blog/2008/04/24/facebook-large-photos/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 23:34:26 +0000</pubDate>
		<dc:creator>Trevor</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[greasemonkey]]></category>

		<guid isPermaLink="false">http://trevorcreech.com/?p=544</guid>
		<description><![CDATA[Time for my second greasemonkey script.
Ever searched for a long-lost friend on Facebook, only to wish you had a magnifying glass for their profile picture?  The ones shown in the search results are so small.  Well, today&#8217;s your lucky day, because I have just the solution for you!

Make sure you are using Firefox.
Install Greasemonkey
Install Facebook [...]]]></description>
			<content:encoded><![CDATA[<p>Time for my second greasemonkey script.</p>
<p>Ever searched for a long-lost friend on Facebook, only to wish you had a magnifying glass for their profile picture?  The ones shown in the search results are so small.  Well, today&#8217;s your lucky day, because I have just the solution for you!</p>
<ol>
<li>Make sure you are using <a  href="http://getfirefox.com/" >Firefox</a>.</li>
<li>Install <a href="https://addons.mozilla.org/en-US/firefox/addon/748">Greasemonkey</a></li>
<li>Install <a title="Facebook Large Photos – Userscripts.org" href="http://userscripts.org/scripts/show/25553">Facebook Large Photos</a></li>
</ol>
<p>Before:</p>
<p><img class="alignnone size-full wp-image-547" title="linus_microtiny" src="http://trevorcreech.com/wordpress/wp-content/uploads/2008/04/linus_microtiny.jpg" alt="" width="307" height="135" /></p>
<p>After:</p>
<p><img class="alignnone size-full wp-image-548" title="linus_humongified" src="http://trevorcreech.com/wordpress/wp-content/uploads/2008/04/linus_humongified.jpg" alt="" width="347" height="244" /></p>
]]></content:encoded>
			<wfw:commentRss>http://trevorcreech.com/blog/2008/04/24/facebook-large-photos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Caps Lock Warning</title>
		<link>http://trevorcreech.com/blog/2008/03/10/caps-lock-warning/</link>
		<comments>http://trevorcreech.com/blog/2008/03/10/caps-lock-warning/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 00:24:09 +0000</pubDate>
		<dc:creator>Trevor</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[greasemonkey]]></category>

		<guid isPermaLink="false">http://trevorcreech.com/blog/2008/03/10/caps-lock-warning/</guid>
		<description><![CDATA[I just wrote my first Greasemonkey script.  It warns you if you are typing a password with caps lock enabled.
The caps lock detection code is complements of Stuart Langridge.
To install:

Make sure you are using Firefox.
Install Greasemonkey
Install Caps Lock Warning

Enjoy!
]]></description>
			<content:encoded><![CDATA[<p>I just wrote my first Greasemonkey script.  It warns you if you are typing a password with caps lock enabled.<br />
The caps lock detection code is complements of <a title="24 ways: Capturing Caps Lock" href="http://24ways.org/2007/capturing-caps-lock">Stuart Langridge</a>.<br />
To install:</p>
<ol>
<li>Make sure you are using <a  href="http://getfirefox.com" >Firefox</a>.</li>
<li>Install <a href="https://addons.mozilla.org/en-US/firefox/addon/748">Greasemonkey</a></li>
<li>Install <a title="Caps Lock Warning – Userscripts.org" href="http://userscripts.org/scripts/show/23698">Caps Lock Warning</a></li>
</ol>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://trevorcreech.com/blog/2008/03/10/caps-lock-warning/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>User-Relevant Timezones 0.1</title>
		<link>http://trevorcreech.com/blog/2007/08/16/user-relevant-timezones-01/</link>
		<comments>http://trevorcreech.com/blog/2007/08/16/user-relevant-timezones-01/#comments</comments>
		<pubDate>Fri, 17 Aug 2007 01:04:53 +0000</pubDate>
		<dc:creator>Trevor</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[stephen]]></category>
		<category><![CDATA[urt]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://trevorcreech.com/blog/2007/08/16/user-relevant-timezones-01/</guid>
		<description><![CDATA[My friend Stephen and I have just written a WordPress plugin to show the times on your blog in the user&#8217;s timezones.  Check it out!
]]></description>
			<content:encoded><![CDATA[<p>My friend Stephen and I have just written a WordPress plugin to show the times on your blog in the user&#8217;s timezones.  <a href="http://trevorcreech.com/geekery/wordpress/user-relevant-timezones/">Check it out!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://trevorcreech.com/blog/2007/08/16/user-relevant-timezones-01/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Early Web Design Experiments</title>
		<link>http://trevorcreech.com/blog/2007/08/04/early-web-design-experiments/</link>
		<comments>http://trevorcreech.com/blog/2007/08/04/early-web-design-experiments/#comments</comments>
		<pubDate>Sun, 05 Aug 2007 03:06:29 +0000</pubDate>
		<dc:creator>Trevor</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://trevorcreech.com/blog/2007/08/04/early-web-design-experiments/</guid>
		<description><![CDATA[From the earliest of my introduction to HTML and CSS (Thanks to my friend Stephen), I present these attrocities:
I was basically just trying to figure out basic HTML and CSS syntax.

Early Practice 1
Early Practice 2

Lovely stuff, eh?  The logo on the first page was created with MS Paint, and saved as a gif. *shudder*
You [...]]]></description>
			<content:encoded><![CDATA[<p>From the earliest of my introduction to HTML and CSS (Thanks to my friend <a href="http://singpolyma.net/" rel="friend met" title="Singpolyma">Stephen</a>), I present these attrocities:<br />
I was basically just trying to figure out basic HTML and CSS syntax.</p>
<ul>
<li><a href='http://trevorcreech.com/wordpress/wp-content/uploads/2007/08/early1.html' title='Early Practice 1'>Early Practice 1</a></li>
<li><a href='http://trevorcreech.com/wordpress/wp-content/uploads/2007/08/early2.html' title='Early Practice 2'>Early Practice 2</a></li>
</ul>
<p>Lovely stuff, eh?  The logo on the first page was created with MS Paint, and saved as a gif. *shudder*</p>
<p>You can see how I&#8217;ve progressed by checking out <a href="/portfolio/">my portfolio</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://trevorcreech.com/blog/2007/08/04/early-web-design-experiments/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
