<?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>Nothing Cliche</title>
	<atom:link href="http://www.nothingcliche.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nothingcliche.com</link>
	<description>&#34;to busy doing your site to do my own&#34;</description>
	<lastBuildDate>Sun, 07 Mar 2010 03:08:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WordPress 2.9 post thumbnails</title>
		<link>http://www.nothingcliche.com/wordpress-2-9-post-thumbnails/</link>
		<comments>http://www.nothingcliche.com/wordpress-2-9-post-thumbnails/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 06:13:20 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Theming]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.nothingcliche.com/?p=74</guid>
		<description><![CDATA[Fatal error: Call to undefined function the_post_image()

If you have recently downloaded the latest WordPress 2.9 beta build (like I have) you will find &#8220;the_post_image&#8221; no longer works! In place you will see that lovely &#8220;Fatal Error&#8221; message above.
&#8220;Post/Page Image was too generic a name. Post/Page Thumbnail is more clear, even if you can create very [...]]]></description>
			<content:encoded><![CDATA[<h3>Fatal error: Call to undefined function the_post_image()</h3>
</p>
<p>If you have recently downloaded the latest WordPress 2.9 beta build (like I have) you will find &#8220;the_post_image&#8221; no longer works! In place you will see that lovely &#8220;Fatal Error&#8221; message above.</p>
<blockquote><p>&#8220;Post/Page Image was too generic a name. Post/Page Thumbnail is more clear, even if you can create very large thumbnail images if you so choose.&#8221;</p></blockquote>
<p><em><a href="http://core.trac.wordpress.org/changeset/12351">- WordPress trac</a></em></a></p>
<p>Below, I will be noting the changes found in the latest build, and how to now use thumbnails in a WordPress theme using 2.9&#8217;s post thumbnail function.</p>
<h3>Adding support for the post thumbnail feature in a theme</h3>
<p>This part has not changed.  Just add the code below to your themes function.php</p>
<pre><code>if ( function_exists( 'add_theme_support' ) )
	add_theme_support( 'post-thumbnails' );</code></pre>
<p>So, what has changed?</p>
<p><span id="more-74"></span></p>
<h4>the_post_image to the_post_thumbnail</h4>
<p>old:</p>
<pre><code><del>&lt;?php the_post_image( 'thumbnail' ); ?&gt;</del></code>
</pre>
<p>New:</p>
<pre><code>&lt;?php the_post_thumbnail( 'thumbnail' ); ?&gt;</code>
</pre>
<pre><code>&lt;?php the_post_thumbnail( 'medium' ); ?&gt;</code>
</pre>
<p><code>&lt;?php the_post_thumbnail( 'full' ); ?&gt;</code></p>
<h4>Checking if a post has an image</h4>
<p>Old:</p>
<pre><code><del>&lt;?php
	if ( has_post_image() )
		the_post_image( 'thumbnail' );
	else
		echo '&lt;img src="default-thumbnail.jpg" alt="Default Thumbnail" title="Default Thumbnail" /&gt;';
?&gt;</del></code>
</pre>
<p>New:</p>
<pre><code>&lt;?php
	if ( has_post_thumbnail() )
		the_post_thumbnail( 'thumbnail' );
	else
		echo '&lt;img src="default-thumbnail.jpg" alt="Default Thumbnail" title="Default Thumbnail" /&gt;';
?&gt;</code>
</pre>
<h4>Getting the post image ID</h4>
<p>Old:</p>
<pre><code><del>$image_id = get_post_image_id();</del></code>
</pre>
<p>New:</p>
<pre><code>$image_id = get_post_thumbnail_id();</code>
</pre>
<p><em>This is a developing post&#8230;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nothingcliche.com/wordpress-2-9-post-thumbnails/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordCamp New York 2009</title>
		<link>http://www.nothingcliche.com/wordcamp-new-york-2009/</link>
		<comments>http://www.nothingcliche.com/wordcamp-new-york-2009/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 22:06:38 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.nothingcliche.com/?p=55</guid>
		<description><![CDATA[The weekend is over, as well as the packed, fun-filled-two-day New York WordCamp (fun even though I wasn&#8217;t allowed into Tonic&#8217;s for the after party on Saturday night. Stinks being only 20).
With over 50 speakers, 8 tracks, and over 700 attendees, it was one the largest WordCamps to date. More pictures after the break.
From left: [...]]]></description>
			<content:encoded><![CDATA[<p>The weekend is over, as well as the packed, fun-filled-two-day New York WordCamp (fun even though I wasn&#8217;t allowed into Tonic&#8217;s for the after party on Saturday night. Stinks being only 20).</p>
<p>With over 50 speakers, 8 tracks, and over 700 attendees, it was one the largest WordCamps to date. More pictures after the break.</p>
<div class="wp-caption aligncenter" style="width: 710px"><a title="Core Contributors at WordCamp NYC" href="http://wordpress.org/development/2009/11/core-wordcamp-nyc/" target="_blank"><img class=" " title="Core Contributors" src="http://jane.files.wordpress.com/2009/11/core-contributors.jpg" alt="Core Contributors at WordCamp NYC" width="700" /></a><p class="wp-caption-text">Core Contributors that attended WordCamp NYC 2009</p></div>
<p>From left: <a rel="nofollow" href="http://sivel.net/" target="_blank">Matt Martz</a> (sivel), <a rel="nofollow" href="http://simianuprising.com/ " target="_blank">Jeremy Clarke</a>, <a rel="nofollow" href="http://bugssite.org/" target="_blank">Shane Froebel</a>, <a rel="nofollow" href="http://jane.wordpress.com" target="_blank">Jane Wells</a>, <a rel="nofollow" href="http://ma.tt" target="_blank">Matt Mullenweg</a>, <a rel="nofollow" href="markjaquith.com/" target="_blank">Mark Jaquith</a>, <a rel="nofollow" href="http://dentedreality.com.au" target="_blank">Beau Lebens</a>, <a rel="nofollow" href="http://apeatling.wordpress.com/" target="_blank">Andy Peatling</a>, <a rel="nofollow" href="http://johnjamesjacoby.com/" target="_blank">John James Jacoby</a>.</p>
<p><span id="more-55"></span></p>
<h3>WordCamp</h3>
<h4>New York City 2009</h4>

<div class="ngg-galleryoverview" id="ngg-gallery-3-55">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.nothingcliche.com/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=3&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-12" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0131.jpg" title=" " rel="lightbox[set_3]" >
								<img title="dsc_0131" alt="dsc_0131" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0131.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-32" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0137.jpg" title="Outside Baruch College of the City University of New York" rel="lightbox[set_3]" >
								<img title="dsc_0137" alt="dsc_0137" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0137.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-37" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0216_0.jpg" title="Mark Jaquith previewing WordPress 2.9" rel="lightbox[set_3]" >
								<img title="dsc_0216_0" alt="dsc_0216_0" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0216_0.jpg" width="97" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-25" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0218.jpg" title="Matt's Q&amp;As" rel="lightbox[set_3]" >
								<img title="dsc_0218" alt="dsc_0218" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0218.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-26" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0221.jpg" title=" " rel="lightbox[set_3]" >
								<img title="dsc_0221" alt="dsc_0221" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0221.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-38" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0222.jpg" title=" " rel="lightbox[set_3]" >
								<img title="dsc_0222" alt="dsc_0222" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0222.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-28" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0223.jpg" title=" " rel="lightbox[set_3]" >
								<img title="dsc_0223" alt="dsc_0223" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0223.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-29" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0224.jpg" title=" " rel="lightbox[set_3]" >
								<img title="dsc_0224" alt="dsc_0224" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0224.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-52" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/groupretouch.jpg" title="Core Contributors Group Photo" rel="lightbox[set_3]" >
								<img title="Core Contributors Group Photo " alt="Core Contributors Group Photo " src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_groupretouch.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-17" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0195.jpg" title="Theme/Plug-in Competition Judges" rel="lightbox[set_3]" >
								<img title="dsc_0195" alt="dsc_0195" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0195.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-16" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0191.jpg" title="Sivel at WordCamp NYC 2009 putting up the &quot;W&quot; for WordPress" rel="lightbox[set_3]" >
								<img title="dsc_0191" alt="dsc_0191" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0191.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-50" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0228.jpg" title="Shane Froebel at WordCamp NYC 2009" rel="lightbox[set_3]" >
								<img title="dsc_0228" alt="dsc_0228" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0228.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-51" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0229.jpg" title="Brad Williams at WordCamp NYC 2009" rel="lightbox[set_3]" >
								<img title="dsc_0229" alt="dsc_0229" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0229.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-15" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0188.jpg" title=" " rel="lightbox[set_3]" >
								<img title="dsc_0188" alt="dsc_0188" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0188.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-8" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0120.jpg" title=" " rel="lightbox[set_3]" >
								<img title="dsc_0120" alt="dsc_0120" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0120.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-9" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0123.jpg" title=" " rel="lightbox[set_3]" >
								<img title="dsc_0123" alt="dsc_0123" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0123.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-10" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0128.jpg" title=" " rel="lightbox[set_3]" >
								<img title="dsc_0128" alt="dsc_0128" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0128.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-11" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0130.jpg" title=" " rel="lightbox[set_3]" >
								<img title="dsc_0130" alt="dsc_0130" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0130.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-13" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0136.jpg" title=" " rel="lightbox[set_3]" >
								<img title="dsc_0136" alt="dsc_0136" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0136.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-21" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0200.jpg" title=" " rel="lightbox[set_3]" >
								<img title="dsc_0200" alt="dsc_0200" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0200.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-36" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0201_0.jpg" title=" " rel="lightbox[set_3]" >
								<img title="dsc_0201_0" alt="dsc_0201_0" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0201_0.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-34" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0197.jpg" title=" " rel="lightbox[set_3]" >
								<img title="dsc_0197" alt="dsc_0197" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0197.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-33" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0196_0.jpg" title=" " rel="lightbox[set_3]" >
								<img title="dsc_0196_0" alt="dsc_0196_0" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0196_0.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-35" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0199.jpg" title=" " rel="lightbox[set_3]" >
								<img title="dsc_0199" alt="dsc_0199" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0199.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-23" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.nothingcliche.com/wp-content/gallery/wordcamp/dsc_0202.jpg" title=" " rel="lightbox[set_3]" >
								<img title="dsc_0202" alt="dsc_0202" src="http://www.nothingcliche.com/wp-content/gallery/wordcamp/thumbs/thumbs_dsc_0202.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear">&nbsp;</div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://www.nothingcliche.com/wordcamp-new-york-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First site launched</title>
		<link>http://www.nothingcliche.com/first-site-launched/</link>
		<comments>http://www.nothingcliche.com/first-site-launched/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 18:46:47 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.nothingcliche.com/?p=5</guid>
		<description><![CDATA[Today, I launch my first solo project under Nothing Cliché.  A complete Redesign of Johnny Jungle

Johnny Jungle is a fan site for St. John's Red Storm men's basketball team. The site was originally built using Apple's iWeb and comprised of mainly images in place of text. The mission to give the client an easy way to update content.]]></description>
			<content:encoded><![CDATA[<p>Today, I launched my first solo project under Nothing Cliché.  A complete Redesign of Johnny Jungle</p>
<p><a rel="nofollow" href="http://johnnyjungle.com">Johnny Jungle</a> is a fan site for St. John&#8217;s Red Storm men&#8217;s basketball team. The site was originally built using Apple&#8217;s iWeb and comprised of mainly images in place of text. The mission: to give the client an easy way to update content.</p>
<p>The new site is now built using WordPress using it as a CMS. The site underwent a fresh redesign, as well as many additions due to the conveniences of using WordPress to manage pages, posts and the adding of widgets and plug-ins.</p>
<div id="attachment_11" class="wp-caption aligncenter" style="width: 510px"><a rel="nofollow" href="http://JohnnyJungle.com" target="_blank"><img class="size-full wp-image-11" title="johnnyjungle-homepage" src="http://www.nothingcliche.com/wp-content/uploads/2009/09/johnnyjungle-homepage.jpg" alt="The New Johnny Jungle Homepage" width="500" height="408" /></a><p class="wp-caption-text">The New Johnny Jungle Homepage</p></div>
<p>Technologies used:</p>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>PHP</li>
<li>WordPress</li>
<li>Flash</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.nothingcliche.com/first-site-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TNEREFFID</title>
		<link>http://www.nothingcliche.com/doing-things-a-little-different/</link>
		<comments>http://www.nothingcliche.com/doing-things-a-little-different/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 18:23:41 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nothingcliche.com/?p=3</guid>
		<description><![CDATA[tnereffiD = Different*
You&#8217;re probably telling yourself that something is definitely wrong with this page. Don&#8217;t refresh, it loaded correctly. Nothing Cliché is all about being original.
I did previously have a &#8220;Coming Soon&#8221; page, but a friend pointed out that yes, that is a very cliché thing to do. So instead, I have invited all to [...]]]></description>
			<content:encoded><![CDATA[<h4>tnereffiD = Different*</h4>
<p>You&#8217;re probably telling yourself that something is definitely wrong with this page. Don&#8217;t refresh, it loaded correctly. Nothing Cliché is all about being original.</p>
<p>I did previously have a &#8220;Coming Soon&#8221; page, but a friend pointed out that yes, that is a very cliché thing to do. So instead, I have invited all to join in the creation of the website.</p>
<h1 style="text-align: center;"><strong>Welcome to Nothing Cliché.</strong></h1>
<p>*Someone actually found this page by Googling &#8220;what is tnereffid.&#8221; So, for the next person to come doing the same, it&#8217;s just different spelled backwards.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nothingcliche.com/doing-things-a-little-different/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
