<?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>Trev's Travels &#187; Geekery</title>
	<atom:link href="http://trevorcreech.com/blog/category/geekery/feed/" rel="self" type="application/rss+xml" />
	<link>http://trevorcreech.com</link>
	<description></description>
	<lastBuildDate>Tue, 01 Dec 2009 20:14:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<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>0</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>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>
		<item>
		<title>Lego Robotics Invention System on Ubuntu Linux</title>
		<link>http://trevorcreech.com/blog/2007/07/15/lego-robotics-invention-system-on-ubuntu-linux/</link>
		<comments>http://trevorcreech.com/blog/2007/07/15/lego-robotics-invention-system-on-ubuntu-linux/#comments</comments>
		<pubDate>Sun, 15 Jul 2007 18:41:43 +0000</pubDate>
		<dc:creator>Trevor</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[lego]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[robotics]]></category>

		<guid isPermaLink="false">http://trevorcreech.com/blog/2007/07/15/lego-robotics-invertion-system-on-ubuntu-linux/</guid>
		<description><![CDATA[This is how I managed to get NQC working for the Robotics Invention System on my laptop, running Ubuntu 7.04 Feisty Fawn, with the USB Lego Infra-red Tower.  Anything with a black background should be executed in a terminal.

Plug in your USB IR Tower
sudo mkdir /dev/usb/
sudo ln -s /dev/legousbtower0 /dev/usb/lego0 (Edit: For the latest [...]]]></description>
			<content:encoded><![CDATA[<p><img class="postimage" src="http://trevorcreech.com/wordpress/wp-content/uploads/2007/07/rcx.png" alt="RCX" />This is how I managed to get <a title="NQC - Not Quite C" href="http://bricxcc.sourceforge.net/nqc/">NQC</a> working for the Robotics Invention System on my laptop, running Ubuntu 7.04 Feisty Fawn, with the USB Lego Infra-red Tower.  Anything with a black background should be executed in a terminal.</p>
<ul>
<li>Plug in your USB IR Tower</li>
<li><code>sudo mkdir /dev/usb/</code></li>
<li><code>sudo ln -s /dev/legousbtower0 /dev/usb/lego0 (Edit: For the latest versions of Ubuntu, the first path may need to be /dev/usb/legousbtower0, according to <a href="http://trevorcreech.com/blog/2007/07/15/lego-robotics-invention-system-on-ubuntu-linux/#comment-79343">Scott</a>.)<br />
</code></li>
<li><code>sudo chmod 666 /dev/usb/lego0</code></li>
<li><code>echo test &gt; /dev/usb/lego0</code> (Look for a green light to flash on the IR Tower.  If you see it, then all is well.)</li>
<li>Download the latest source of NQC from the <a title="Current Version" href="http://bricxcc.sourceforge.net/nqc/release/index.html">NQC Website</a>.</li>
<li>Put it in its own folder, and untar/gzip it: <code>tar -xvzf nqc-</code>[Hit tab to fill in the rest]</li>
<li>Open the Makefile: <code>gedit Makefile</code></li>
<li>Remove the &#8216;#&#8217; before this line: USBOBJ = rcxlib/RCX_USBTowerPipe_linux.o</li>
<li>Save and close the Makefile.</li>
<li><code>mkdir rcxlib/LegoUSB/</code></li>
<li><code>cd rcxlib/LegoUSB/</code></li>
<li><code><span>wget <a class="linkifyplus" href="http://legousb.cvs.sourceforge.net/*checkout*/legousb/LegoUSB/drivers/linux/include/legousbtower.h">http://legousb.cvs.sourceforge.net/*checkout*/legousb/LegoUSB/drivers/linux/include/legousbtower.h</a></span></code></li>
<li><code>cd ../../</code></li>
<li><code>sudo make</code></li>
<li><code>sudo make install</code></li>
<li><code>export RCX_PORT=usb</code> (You should also add this line to the bottom of the .bashrc file in your home folder: <code>echo export RCX_PORT=usb &gt;&gt; ~/.bashrc</code></li>
<li>Try it out: <code>nqc -msg 7</code> (You should see the green light come on on the IR Tower, and you shouldn&#8217;t get any message in the terminal.</li>
<li>If it works, you should be ready to use NQC!  If you need to install the RCX Firmare,  insert the Robotics Invention System CD, and run this command: <code>nqc -firmware /media/cdrom/firm/firm0309.lgo</code></li>
<li>Download the test program: <code>nqc -d test.nqc</code> (This should put a program in slot 1 of the RCX which will just turn on Motor A.</li>
</ul>
<p><strong>Edit:</strong> Mike has a <a title="Your one stop resource for Linux: Ubuntu: Lego RCX NQC Issues" href="http://linux-site.blogspot.com/2007/08/ubuntu-lego-rcx-nqc-issues.html">followup article</a> where he explains how to set up the first three steps so they happen automatically when you plug in the IR Tower.</p>
<p>Kudos to <a href="https://csrg.inf.utfsm.cl/twiki4/bin/view/ACS/LegoDevIO">this article</a> for putting me on the right track.</p>
]]></content:encoded>
			<wfw:commentRss>http://trevorcreech.com/blog/2007/07/15/lego-robotics-invention-system-on-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Pranketh</title>
		<link>http://trevorcreech.com/blog/2007/05/19/pranketh/</link>
		<comments>http://trevorcreech.com/blog/2007/05/19/pranketh/#comments</comments>
		<pubDate>Sun, 20 May 2007 03:11:19 +0000</pubDate>
		<dc:creator>Trevor</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[pranketh]]></category>
		<category><![CDATA[stephen]]></category>

		<guid isPermaLink="false">http://trevorcreech.com/blog/2007/05/19/pranketh/</guid>
		<description><![CDATA[This past weekend, I collaborated with my friend Stephen Weber on what is my first stand-alone web application.  This project we have affectionately christened Pranketh.  By using it, you can send an email which looks like it came from someone else, whether a celebrity, or one of your friends.  As we state [...]]]></description>
			<content:encoded><![CDATA[<p>This past weekend, I collaborated with my friend <a href="http://singpolyma.net" title="Singpolyma" title="Singpolyma">Stephen Weber</a> on what is my first stand-alone web application.  This project we have affectionately christened <a href="http://pranketh.com" title="Pranketh" title="Pranketh">Pranketh</a>.  By using it, you can send an email which looks like it came from someone else, whether a celebrity, or one of your friends.  As we state in the <a href="http://pranketh.com/tos.php" title="Pranketh - Terms of Service" title="Pranketh - Terms of Service">&#8220;Fine Print&#8221;</a>, you may not use this for malicious purposes.  So, feel free to fool your buddy into thinking that hot celebrity wants to hang out with him, but don&#8217;t do anything stupid which will hurt someone.  Just keep it fun.  That said, do enjoy, and start prankething your friends and family.</p>
]]></content:encoded>
			<wfw:commentRss>http://trevorcreech.com/blog/2007/05/19/pranketh/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New Wordpress Plugin: Per-Post CSS</title>
		<link>http://trevorcreech.com/blog/2007/05/04/new-wordpress-plugin-per-post-css/</link>
		<comments>http://trevorcreech.com/blog/2007/05/04/new-wordpress-plugin-per-post-css/#comments</comments>
		<pubDate>Sat, 05 May 2007 04:19:41 +0000</pubDate>
		<dc:creator>Trevor</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://trevorcreech.com/blog/2007/05/04/new-wordpress-plugin-per-post-css/</guid>
		<description><![CDATA[So, I&#8217;ve just created a new plugin, Per-Post CSS, which allows you to specify some CSS which will only show up when it&#8217;s particular post is being displayed.  You can find out more, and download it here: Per-Post CSS.
]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;ve just created a new plugin, Per-Post CSS, which allows you to specify some CSS which will only show up when it&#8217;s particular post is being displayed.  You can find out more, and download it here: <a href="http://trevorcreech.com/geekery/wordpress/per-post-css/">Per-Post CSS</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://trevorcreech.com/blog/2007/05/04/new-wordpress-plugin-per-post-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
