<?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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Fractured State</title>
	
	<link>http://www.fractured-state.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 27 Nov 2011 18:08:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/fractured-state" /><feedburner:info uri="fractured-state" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Quick WordPress/website performance tweaks</title>
		<link>http://feedproxy.google.com/~r/fractured-state/~3/vAC49eJV9KY/</link>
		<comments>http://www.fractured-state.com/2011/11/quick-wordpresswebsite-performance-tweaks/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 18:04:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Process]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.fractured-state.com/?p=547</guid>
		<description><![CDATA[Add some expires data and compress stuff. Add this to your .htaccess file and be done, or your httpd.conf file and then restart apache. FileETag MTime Size &#60;IfModule mod_deflate.c&#62; SetOutputFilter DEFLATE AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/x-javascript application/x-php &#60;/IfModule&#62; &#60;IfModule mod_expires.c&#62; ExpiresActive On ExpiresByType image/jpeg &#34;access plus 3 month&#34; ExpiresByType image/gif &#34;access plus 3 [...]]]></description>
			<content:encoded><![CDATA[<p>Add some expires data and compress stuff.   Add this to your .htaccess file and be done, or your httpd.conf file and then restart apache.<br />
<span id="more-547"></span><br />
<code><br />
FileETag MTime Size</p>
<p>&lt;IfModule mod_deflate.c&gt;<br />
   SetOutputFilter DEFLATE</p>
<p>   AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/x-javascript application/x-php<br />
 &lt;/IfModule&gt;</p>
<p> &lt;IfModule mod_expires.c&gt;<br />
   ExpiresActive On</p>
<p>   ExpiresByType image/jpeg &quot;access plus 3 month&quot;<br />
   ExpiresByType image/gif &quot;access plus 3 month&quot;<br />
   ExpiresByType image/png &quot;access plus 3 month&quot;<br />
   ExpiresByType image/vnd.microsoft.icon &quot;access plus 3 month&quot;<br />
   ExpiresByType text/css &quot;access plus 3 month&quot;<br />
   ExpiresByType application/x-javascript &quot;access plus 3 month&quot;<br />
 &lt;/IfModule&gt;<br />
</code></p>
<img src="http://feeds.feedburner.com/~r/fractured-state/~4/vAC49eJV9KY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.fractured-state.com/2011/11/quick-wordpresswebsite-performance-tweaks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.fractured-state.com/2011/11/quick-wordpresswebsite-performance-tweaks/</feedburner:origLink></item>
		<item>
		<title>Drupal 7 panel pane theming suggestions</title>
		<link>http://feedproxy.google.com/~r/fractured-state/~3/WP2DL53-NNE/</link>
		<comments>http://www.fractured-state.com/2011/10/drupal-7-panel-pane-theming-suggestions/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 14:57:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://www.fractured-state.com/?p=548</guid>
		<description><![CDATA[I was working on a project and and I wanted to be able to update the panel pane template on a per pane basis. What I did was copy the panels-pane.tpl.php file from panels/templates in to my theme. I then added this to my template.php file. function MYTHEME_preprocess_panels_pane(&#038;$vars) { // get the subtype $subtype = [...]]]></description>
			<content:encoded><![CDATA[<p>I was working on a project and and I wanted to be able to update the panel pane template on a per pane basis.   What I did was copy the panels-pane.tpl.php file from panels/templates in to my theme.  I then added this to my template.php file.</p>
<p><code>function MYTHEME_preprocess_panels_pane(&#038;$vars) {<br />
  // get the subtype<br />
  $subtype = $vars['pane']->subtype;</p>
<p>  // Add the subtype to the panel theme suggestions list<br />
  $vars['theme_hook_suggestions'][] = 'panels_pane__'.$subtype;</p>
<p>  return $vars;<br />
} </code></p>
<p>This allows me to rename the panel template in this format panels-pane&#8211;SUBTYPE-NAME.tpl.php.  </p>
<p>If you have any problems send me an email and I&#8217;ll try and help.</p>
<img src="http://feeds.feedburner.com/~r/fractured-state/~4/WP2DL53-NNE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.fractured-state.com/2011/10/drupal-7-panel-pane-theming-suggestions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.fractured-state.com/2011/10/drupal-7-panel-pane-theming-suggestions/</feedburner:origLink></item>
		<item>
		<title>MP3 to Post plugin</title>
		<link>http://feedproxy.google.com/~r/fractured-state/~3/NB9ehnTcxZ0/</link>
		<comments>http://www.fractured-state.com/2011/09/mp3-to-post-plugin/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 00:16:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://www.fractured-state.com/?p=534</guid>
		<description><![CDATA[I saw this question on the WordPress Stackexchange a little while ago and thought it seemed like a cool idea. So I made a plugin&#8230; MP3 to Post Plugin What it does; scans a folder (mp3-to-post) in your uploads directory and creates posts using the ID3v2 title and comment to make the post title and [...]]]></description>
			<content:encoded><![CDATA[<p>I saw this <a href="http://wordpress.stackexchange.com/questions/11321/">question on the WordPress Stackexchange</a> a little while ago and thought it seemed like a cool idea.  So I made a plugin&#8230;</p>
<p><a href='http://wordpress.org/extend/plugins/mp3-to-post/'>MP3 to Post Plugin</a></p>
<p><span id="more-534"></span></p>
<p>What it does; scans a folder (mp3-to-post) in your uploads directory and creates posts using the ID3v2 title and comment to make the post title and post content respectively.   It also attaches the MP3 file to the post and adds a link to the post content.  Hopefully pretty straight forward.</p>
<p>Ideally, I&#8217;d like to get it to automatically create nested categories based on Artist and Album but I haven&#8217;t gotten that far yet and just want to get it out the door at this point. </p>
<p>If you have any questions please feel free to <a href="mailto:paul.sheldrake@gmail.com">email me</a>.</p>
<img src="http://feeds.feedburner.com/~r/fractured-state/~4/NB9ehnTcxZ0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.fractured-state.com/2011/09/mp3-to-post-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.fractured-state.com/2011/09/mp3-to-post-plugin/</feedburner:origLink></item>
		<item>
		<title>Browser color override test for Modernizr</title>
		<link>http://feedproxy.google.com/~r/fractured-state/~3/CDpxyS93w2I/</link>
		<comments>http://www.fractured-state.com/2011/07/browser-color-override-test-for-modernizr/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 10:21:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Process]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://www.fractured-state.com/?p=527</guid>
		<description><![CDATA[I&#8217;ve been working on a project recently that requires the website to be usable for people with visual and cognitive impairments. One of the tests that we&#8217;ve been doing is overriding the text/link and background colors in Firefox and IE. The way the layout works for various parts of the site design needs to change [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on a project recently that requires the website to be usable for people with visual and cognitive impairments. One of the tests that we&#8217;ve been doing is overriding the text/link and background colors in Firefox and IE.   </p>
<p><a href="http://www.fractured-state.com/wp-content/uploads/2011/07/pink-gmail.jpg"><img src="http://www.fractured-state.com/wp-content/uploads/2011/07/pink-gmail-220x138.jpg" alt="" title="Browser color override of google results" width="220" height="138" class="aligncenter size-medium wp-image-528" /></a></p>
<p><span id="more-527"></span></p>
<p>The way the layout works for various parts of the site design needs to change when in this viewing mode so I&#8217;ve needed a way to test for when this happens so I can use different css.  Here is a little <a href="http://www.modernizr.com/">Modernizr</a> test that adds a high-contrast/no-high-contrast class to the other Modernizr classes.</p>
<pre><code>Modernizr.testStyles('#modernizr {background-color: rgb(171,239,86)} ', function(elem, rule){
  var backgroundColor = jQuery('#modernizr').css('background-color');
  Modernizr.addTest('high-contrast', backgroundColor !== 'rgb(171, 239, 86)'
    &#038;&#038; backgroundColor !== 'rgb(171,239,86)'
    &#038;&#038; backgroundColor !== '#abef56');
});</code></pre>
<p>One problem I had was getting a reliable way of accessing the backgroundColor property from the DOM so I&#8217;ve had to use some jQuery ( not ideal I know ) as well.  </p>
<img src="http://feeds.feedburner.com/~r/fractured-state/~4/CDpxyS93w2I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.fractured-state.com/2011/07/browser-color-override-test-for-modernizr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.fractured-state.com/2011/07/browser-color-override-test-for-modernizr/</feedburner:origLink></item>
		<item>
		<title>WordPress Google Analytics Content Filter</title>
		<link>http://feedproxy.google.com/~r/fractured-state/~3/iA7KsvcBKDo/</link>
		<comments>http://www.fractured-state.com/2011/03/wordpress-google-analytics-content-filter/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 18:10:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Process]]></category>

		<guid isPermaLink="false">http://www.fractured-state.com/?p=517</guid>
		<description><![CDATA[I&#8217;ve been working on a site recently that has a lot of PDFs that the content owners link to and I&#8217;ve been wanting to track the number of views that each PDF has. To accomplish that I&#8217;ve been using a feature of google analytics that requires you to add some extra info to links so [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on a site recently that has a lot of PDFs that the content owners link to and I&#8217;ve been wanting to track the number of views that each PDF has.  To accomplish that I&#8217;ve been using a feature of google analytics that requires you to <a href="http://www.google.com/support/analytics/bin/answer.py?answer=55529">add some extra info</a> to links so you can track how many clicks a PDF gets.</p>
<p>Up until now I&#8217;ve been adding that extra information by hand because there haven&#8217;t been a lot of links but I figured there was a ripe oppurtunity to do some simple automation.   I&#8217;ve created the following content filter that will automatically add the google analytics bit to each link in the content, you just have to put it in your theme&#8217;s function.php file.  I also added a bit that tracks outbound links as well just because that might be handy info to have as well.<br />
<span id="more-517"></span><br />
<code> </code></p>
<pre>// google link filter
add_filter( "the_content", "google_external_link_filter" );

function google_external_link_filter($content)
{
  // load the content in to a dom object
  $dom = new domDocument;
  $dom-&gt;loadHTML($content);

  // find the A tags
  $xpath = new DOMXPath($dom);
  $links = $xpath-&gt;evaluate("//a");

  // loop through reach link and check if we need to add the google stuff
  foreach ($links as $tag)
  {
    // get link details
   $linkURL = $tag-&gt;getAttribute('href');
   $linkExtension = pathinfo($linkURL, PATHINFO_EXTENSION);
   $linkHost = parse_url($linkURL, PHP_URL_HOST);

   // get the site host
   $siteHost = parse_url(get_bloginfo('siteurl'), PHP_URL_HOST);	

   // check if the link has an extension or goes to another site
   if(!empty($linkExtension) || $linkHost != $siteHost)
   {
     // if the link goes to a file
     if(!empty($linkExtension))
     {
       $linkFileName = pathinfo($linkURL, PATHINFO_FILENAME);
       $tag-&gt;removeAttribute('onclick');
       $tag-&gt;setAttribute("onclick", "javascript: _gaq.push(['_trackPageview', '/file/". $linkFileName . '.' . $linkExtension . "']);");
     }
     // if it goes to an external site
     elseif($linkHost != $siteHost)
     {
        // strip http://
        $cleanURL = str_replace('http://','',$linkURL);

        $tag-&gt;removeAttribute('onclick');
        $tag-&gt;setAttribute("onclick", "javascript: _gaq.push(['_trackPageview', '/external/". $cleanURL . "']);");
      }
    }
  }
  // update the content with the changes
  $content = $dom-&gt;saveHTML();

  return $content;
}</pre>
<p>If you use it and find a bug or a better way of doing something <a href="http://www.fractured-state.com/about/">let me know</a> and I&#8217;ll update it.</p>
<img src="http://feeds.feedburner.com/~r/fractured-state/~4/iA7KsvcBKDo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.fractured-state.com/2011/03/wordpress-google-analytics-content-filter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.fractured-state.com/2011/03/wordpress-google-analytics-content-filter/</feedburner:origLink></item>
		<item>
		<title>Web development plugins for Firefox</title>
		<link>http://feedproxy.google.com/~r/fractured-state/~3/K1iwn1KKufk/</link>
		<comments>http://www.fractured-state.com/2010/12/web-development-plugins-for-firefox/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 18:16:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.fractured-state.com/?p=507</guid>
		<description><![CDATA[There are a few plugins for Firefox that I use every time I work on a web project. I thought I would list them here just in case someone else finds them useful. Firebug Web Developer ySlow Cache Status Page Speed]]></description>
			<content:encoded><![CDATA[<p>There are a few plugins for Firefox that I use every time I work on a web project.   I thought I would list them here just in case someone else finds them useful.</p>
<ul>
<li><a href="http://getfirebug.com/">Firebug</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/60/">Web Developer</a></li>
<li><a href="http://developer.yahoo.com/yslow/">ySlow</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1881/">Cache Status</a></li>
<li><a href="http://code.google.com/speed/page-speed/download.html">Page Speed</a></li>
</ul>
<img src="http://feeds.feedburner.com/~r/fractured-state/~4/K1iwn1KKufk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.fractured-state.com/2010/12/web-development-plugins-for-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.fractured-state.com/2010/12/web-development-plugins-for-firefox/</feedburner:origLink></item>
		<item>
		<title>New Minimal Theme</title>
		<link>http://feedproxy.google.com/~r/fractured-state/~3/_6_9BcmkMP8/</link>
		<comments>http://www.fractured-state.com/2010/07/new-minimal-theme/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 08:54:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[This Blog]]></category>

		<guid isPermaLink="false">http://www.fractured-state.com/?p=449</guid>
		<description><![CDATA[I just finished redoing the Fractured State theme with a simpler grid based theme. I used the 960 grid system because it&#8217;s super straight forward and I&#8217;ve used it on a couple of commercial projects in the past. The other thing I tried with this theme is using custom post types for the portfolio projects, [...]]]></description>
			<content:encoded><![CDATA[<p>I just finished redoing the Fractured State theme with a simpler grid based theme.   I used the <a href="http://960.gs/">960 grid system</a> because it&#8217;s super straight forward and I&#8217;ve used it on a couple of commercial projects in the past.    The other thing I tried with this theme is using custom post types for the portfolio projects, each project is a post with a custom taxonomy for the skills/technologies. I then set a featured image and upload the rest of the pictures I want for the project and all the thumbnails are generated automatically with the <a href="http://wordpress.org/extend/plugins/autothumb/">Autothumb</a> plugin.   I also ended up writing a function to print out the thumbnails for each project.   I know WordPress already has a gallery short tag that will output the uploaded pictures but it generates this huge mess of HTML that is really not elegant and I thought I should do better for my personal site.</p>
<p>I&#8217;ve also designed it so it should degrade nicely with no javascript.  The only things that I&#8217;ve used javascript for is the filtering of projects on the projects page, the lightbox and showing/hiding the archives and categories, none of which are super crucial to navigating the site in the long run.     </p>
<img src="http://feeds.feedburner.com/~r/fractured-state/~4/_6_9BcmkMP8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.fractured-state.com/2010/07/new-minimal-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.fractured-state.com/2010/07/new-minimal-theme/</feedburner:origLink></item>
		<item>
		<title>Good WordPress Plugins</title>
		<link>http://feedproxy.google.com/~r/fractured-state/~3/CMKwfASMLCw/</link>
		<comments>http://www.fractured-state.com/2009/12/good-wordpress-plugins/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 07:24:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Process]]></category>

		<guid isPermaLink="false">http://www.fractured-state.com/?p=342</guid>
		<description><![CDATA[When I make wordpress themes there are usually a few good plugins that I use repeatedly and I thought that if I found them useful other folks might to. Autothumb This is best plugin for resizing images. I&#8217;ve found it most effective when I set image URLs in custom fields and then grab that info [...]]]></description>
			<content:encoded><![CDATA[<p>When I make wordpress themes there are usually a few good plugins that I use repeatedly and I thought that if I found them useful other folks might to.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/autothumb/">Autothumb</a></strong><br />
This is  best plugin for resizing images.   I&#8217;ve found it most effective when I set image URLs in custom fields and then grab that info to generate resized images.   This is really handy when people upload pictures and don&#8217;t have any concept about picture dimensions and where the image is actually going to go.  It can even grab pictures from another host and resize those as well.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/tdo-mini-forms/">TDO Mini Forms</a></strong><br />
This plugin is great if you want people to submit posts or pages for your site.   It lets people upload pictures and write everything you would need for a post; it also has built in moderation features and the forms that it makes are very customizable.   I&#8217;ve used it several times for contest websites where people upload photos and descriptions.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/page-link-manager/">Page Link Manager</a></strong><br />
When you need to hide pages from being listed in the <code>wp_list_pages()</code> function this plugin is really handy.   It provides a simple page of with all the published pages in the site listed and select a checkbox to turn them on and off.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All In One SEO</a></strong><br />
Really great plugin to generate the basic metatags for your content without you actually having to write it in.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/link-to-post/">Link to Post</a></strong><br />
The WYSIWYG link button in wordpress drives me nuts.   This plugin will add two new buttons to the WYSIWYG editor that will provide you with a list of pages or posts on your site that you can select from. No more copying and pasting links!</p>
<p><strong><a href="http://wordpress.org/extend/plugins/page-links-to/">Page Links To</a></strong><br />
If you ever need to redirect a post/page to another location this plugin is great.   Adds a simple field on the edit post page where you can type in the URL that you want that post to redirect to.</p>
<img src="http://feeds.feedburner.com/~r/fractured-state/~4/CMKwfASMLCw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.fractured-state.com/2009/12/good-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.fractured-state.com/2009/12/good-wordpress-plugins/</feedburner:origLink></item>
		<item>
		<title>WordPress Image Quality Plugin</title>
		<link>http://feedproxy.google.com/~r/fractured-state/~3/0Hdxw3XXpp8/</link>
		<comments>http://www.fractured-state.com/2009/03/wordpress-image-quality-plugin/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 00:45:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Interaction Design]]></category>

		<guid isPermaLink="false">http://fractured-state.com/?p=328</guid>
		<description><![CDATA[Here is a little plugin I made to set how much an image is compressed when it gets uploaded to wordpress. JPG Image Quality Plugin]]></description>
			<content:encoded><![CDATA[<p>Here is a little plugin I made to set how much an image is compressed when it gets uploaded to wordpress.</p>
<p><a href="http://www.fractured-state.com/wp-content/uploads/2009/03/jpg-image-quality.zip"></a><a href="http://www.fractured-state.com/wp-content/uploads/2009/03/jpg-image-quality-v01.zip">JPG Image Quality Plugin</a></p>
<img src="http://feeds.feedburner.com/~r/fractured-state/~4/0Hdxw3XXpp8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.fractured-state.com/2009/03/wordpress-image-quality-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.fractured-state.com/2009/03/wordpress-image-quality-plugin/</feedburner:origLink></item>
		<item>
		<title>Sign of the Times</title>
		<link>http://feedproxy.google.com/~r/fractured-state/~3/Q4PAR_4BJbg/</link>
		<comments>http://www.fractured-state.com/2008/11/sign-of-the-times/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 23:03:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[recession]]></category>
		<category><![CDATA[signage]]></category>

		<guid isPermaLink="false">http://fractured-state.com/?p=322</guid>
		<description><![CDATA[I saw this on the way to work this morning.]]></description>
			<content:encoded><![CDATA[<p>I saw this on the way to work this morning.</p>
<p><a href="http://www.fractured-state.com/wp-content/uploads/2008/11/img0882-600x480.jpg" rel="lightbox"><img class="aligncenter size-medium wp-image-323" title="Business Sucks Sale" src="http://www.fractured-state.com/wp-content/uploads/2008/11/img088-300x240.jpg" alt="" width="300" height="240" /></a></p>
<img src="http://feeds.feedburner.com/~r/fractured-state/~4/Q4PAR_4BJbg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.fractured-state.com/2008/11/sign-of-the-times/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.fractured-state.com/2008/11/sign-of-the-times/</feedburner:origLink></item>
	</channel>
</rss>

