<?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>corprewland &#187; general</title>
	<atom:link href="http://www.corprew.org/categories/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.corprew.org</link>
	<description>(dis)information organization</description>
	<lastBuildDate>Fri, 19 Feb 2010 23:38:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>ebooks</title>
		<link>http://www.corprew.org/blog/2010/01/27/ebooks/</link>
		<comments>http://www.corprew.org/blog/2010/01/27/ebooks/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 23:47:11 +0000</pubDate>
		<dc:creator>corprew</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://www.corprew.org/?p=233</guid>
		<description><![CDATA[So, I&#8217;m currently making ebooks for people, and it&#8217;s come up enough that I thought I should make it generally known that I&#8217;m doing so. I&#8217;ve been doing this more or less since the mid-90s when I was working part time at a scientific press (which is how I got involved in early HTML standards [...]]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;m currently making ebooks for people, and it&#8217;s come up enough that I thought I should make it <a href="http://cuneiverse.com/kraken-ebooks/">generally known</a> that I&#8217;m doing so.  I&#8217;ve been doing this more or less since the mid-90s when I was working part time at a scientific press (which is how I got involved in early HTML standards efforts.)</p>
<p>I&#8217;m also doing some other ebook related things, but I thought I&#8217;d mention this on my blog because a lot of my friends are authors, writers, and &amp;c, and they&#8217;ve been turning around and telling their friends, &amp;c, &amp;c, and it&#8217;s become clear I should link up those two efforts.  I&#8217;m currently extending and redesigning the cuneiverse website as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.corprew.org/blog/2010/01/27/ebooks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>more from the wordpress toolbox</title>
		<link>http://www.corprew.org/blog/2009/11/02/more-from-the-wordpress-toolbox/</link>
		<comments>http://www.corprew.org/blog/2009/11/02/more-from-the-wordpress-toolbox/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 20:35:59 +0000</pubDate>
		<dc:creator>corprew</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[menus]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.corprew.org/blog/2009/11/02/more-from-the-wordpress-toolbox/</guid>
		<description><![CDATA[This is a trivial something that seems to come up staggeringly often when translating design to implementation in word press sites, so I thought I&#8217;d post it up here so I don&#8217;t have to recreate from scratch next time I need it. So, you have a long, carefully contrived, SEO-friendly title for your pages (or [...]]]></description>
			<content:encoded><![CDATA[<p>This is a trivial something that seems to come up staggeringly often when translating design to implementation in word press sites, so I thought I&#8217;d post it up here so I don&#8217;t have to recreate from scratch next time I need it. </p>
<p>So, you have a long, carefully contrived, SEO-friendly title for your pages (or really just a minimally descriptive one), but you don&#8217;t want that to show up in the navigation menus.  There are a variety of complex ways to fix this, but one of the easiest is to use code like the following:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span> ?php 
    <span style="color: #000088;">$pages</span> <span style="color: #339933;">=</span> get_pages<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;parent=0&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;"># returns parent pages</span>
      <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$pages</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$x_page</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$option</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'&lt;li&gt;&lt;a href=&quot;'</span><span style="color: #339933;">.</span>get_page_link<span style="color: #009900;">&#40;</span><span style="color: #000088;">$x_page</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot;&gt;'</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$short_title</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$short_title</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$x_page</span> <span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;nav_title&quot;</span><span style="color: #339933;">,</span> <span style="color: #000000; font-weight: bold;">TRUE</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$short_title</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span>
                <span style="color: #000088;">$option</span> <span style="color: #339933;">.=</span> <span style="color: #000088;">$x_page</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_title</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">else</span>
                <span style="color: #000088;">$option</span> <span style="color: #339933;">.=</span> <span style="color: #000088;">$short_title</span><span style="color: #339933;">;</span>
        <span style="color: #990000;">end</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$option</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">'&lt;/a&gt;'</span><span style="color: #339933;">;</span>
        <span style="color: #990000;">echo</span> <span style="color: #000088;">$option</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
 <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>This usually ends up in header.php, and is a good patch for the problem.  There are a couple of plugins that attempt to work around this by detecting whether or not you&#8217;re in the loop (the loop being the name for the main part of post/page printing), but invariably widgets screw this up somehow, and this solution seems to work a bit better for me, especially for a navigation header (hence the name.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.corprew.org/blog/2009/11/02/more-from-the-wordpress-toolbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Classy</title>
		<link>http://www.corprew.org/blog/2009/10/07/classy/</link>
		<comments>http://www.corprew.org/blog/2009/10/07/classy/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 20:14:37 +0000</pubDate>
		<dc:creator>corprew</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[content management]]></category>
		<category><![CDATA[online class]]></category>

		<guid isPermaLink="false">http://www.corprew.org/blog/2009/10/07/classy/</guid>
		<description><![CDATA[I&#8217;m developing an online class about categorizing web content, mostly aimed at users of content management systems. If you&#8217;re interested in being part of the trial audience for this class, comment or contact me. Ideally, this will be a series of short videos each of which will be on some particular topic.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m developing an online class about categorizing web content, mostly aimed at users of content management systems.  If you&#8217;re interested in being part of the trial audience for this class, comment or contact me.  Ideally, this will be a series of short videos each of which will be on some particular topic.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.corprew.org/blog/2009/10/07/classy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rubber Duck Regatta @ Cal Anderson Park @ 7pm</title>
		<link>http://www.corprew.org/blog/2009/07/30/rubber-duck-regatta-cal-anderson-park-7pm/</link>
		<comments>http://www.corprew.org/blog/2009/07/30/rubber-duck-regatta-cal-anderson-park-7pm/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 20:47:46 +0000</pubDate>
		<dc:creator>corprew</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://www.corprew.org/blog/2009/07/30/rubber-duck-regatta-cal-anderson-park-7pm/</guid>
		<description><![CDATA[My bag Originally uploaded by Corprew / Zeitgeist Examine the contents of this bag. Rubber Duck Regatta in Cal Anderson Parkâ€™s fountain tonight at 7pm. I&#8217;ll hold another next week as well. There are a variety of duck vendors in town for those who wish to â€˜prepare.â€™ Archie McPheeâ€™s come to mind. Check your bathtub [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;">
<a href="http://www.flickr.com/photos/corprew/3772410021/" title="photo sharing"><img src="http://farm3.static.flickr.com/2618/3772410021_e8668e1a61_m.jpg" alt="" style="border: solid 2px #000000;" /></a><br />
<br />
<span style="font-size: 0.9em; margin-top: 0px;"><br />
<a href="http://www.flickr.com/photos/corprew/3772410021/">My bag</a><br />
<br />
Originally uploaded by <a href="http://www.flickr.com/people/corprew/">Corprew / Zeitgeist</a><br />
</span>
</div>
<p>Examine the contents of this bag.</p>
<p>Rubber Duck Regatta in Cal Anderson Parkâ€™s fountain tonight at 7pm.  I&#8217;ll hold another next week as well.</p>
<p>There are a variety of duck vendors in town for those who wish to â€˜prepare.â€™ Archie McPheeâ€™s come to mind. Check your bathtub for suspects as well.</p>
<p>There will be round robin with ducks, and also heats for any sort of random things that people want to enter into the competition.</p>
<p>The rules:<br />
1. ducks get put into the fountain<br />
2. ducks float downstream through all the rocks and bricks.<br />
3. eventually, a duck reaches the end.</p>
<p>Isnâ€™t that justâ€¦ ducky.</p>
<p>This will happen again in a couple of weeks. A more exotic web page to follow after we try this and see what kind of web page it needs.<br />
<br clear="all" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.corprew.org/blog/2009/07/30/rubber-duck-regatta-cal-anderson-park-7pm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>on words with -demic in them.</title>
		<link>http://www.corprew.org/blog/2009/05/06/on-the-words-with-demic-in-them/</link>
		<comments>http://www.corprew.org/blog/2009/05/06/on-the-words-with-demic-in-them/#comments</comments>
		<pubDate>Wed, 06 May 2009 22:31:11 +0000</pubDate>
		<dc:creator>corprew</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://www.corprew.org/?p=207</guid>
		<description><![CDATA[No question now, what had happened to the faces of the pigs. The creatures outside looked from pig to man, and from man to pig, and from pig to man again; but already it was impossible to say which was which.&#8211;Animal Farm The last week or so, obviously, have been somewhat transfigured by pandemic paranoia. [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>No question now, what had happened to the faces of the pigs. The creatures outside looked from pig to man, and from man to pig, and from pig to man again; but already it was impossible to say which was which.<br />&#8211;Animal Farm</p></blockquote>
<p>The last week or so, obviously, have been somewhat transfigured by pandemic paranoia.  Pandemic is ancient greek for either &#8220;all peoples&#8221; or &#8220;freak the fsck out,&#8221; it&#8217;s hard to tell.  This can be easily distinguished from epidemic, which is greek for &#8220;upon peoples&#8221; and endemic, which is greek for &#8220;within peoples.&#8221;</p>
<p>Here&#8217;s a handy table for disambiguation of various words with demic in them, described in terms of internet memes:<br />
</p>
<table border="2">
<tr>
<td>greek root</td>
<td>english literal</td>
<td>meaning</td>
</tr>
<tr>
<td>pan-demic</td>
<td>all peoples</td>
<td>the call&#8217;s coming from inside the house.</td>
</tr>
<tr>
<td>epi-demic</td>
<td>upon peoples</td>
<td>getting medi&aelig;val on your ass.</td>
</tr>
<tr>
<td>en-demic</td>
<td>within peoples</td>
<td>never gonna give you up, never gonna let you down, never gonna run around and desert you.</td>
</tr>
<tr>
<td>syn-demic</td>
<td>together with peoples</td>
<td>I put a disease in your disease, so you could get sick while you&#8217;re sick</td>
</tr>
</table>
<p>
So, with this out of the way, we can proceed upon our merry way.  It&#8217;s been an exciting week, I have been interested in public health and related things (epidemiology, etc&#8230;) for a long time so I&#8217;ve been watching the news, websites, twitter, and any other mechanism of public information I could get my hands on.</p>
<p>As for myself, I&#8217;m sort of guardedly watching the news (considering I&#8217;m traveling soon to Texas, where both US fatalities have occured), but am mostly concerned about the Northern hemisphere flu season.  That said, there&#8217;ve been a lot of people coughing in this coffee shop today.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.corprew.org/blog/2009/05/06/on-the-words-with-demic-in-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>test pattern</title>
		<link>http://www.corprew.org/blog/2009/05/05/test-pattern/</link>
		<comments>http://www.corprew.org/blog/2009/05/05/test-pattern/#comments</comments>
		<pubDate>Tue, 05 May 2009 19:42:27 +0000</pubDate>
		<dc:creator>corprew</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://www.corprew.org/?p=203</guid>
		<description><![CDATA[This is a test to see if some stuff at celiaciq is working properly. Some of the navigation has yet to be folded into the main site, so things are wonky. rice rice baby! home page books restaurants]]></description>
			<content:encoded><![CDATA[<p>This is a test to see if some stuff at celiaciq is working properly.  Some of the navigation has yet to be folded into the main site, so things are wonky.</p>
<p><a href="http://celiaq.com/find/rice">rice rice baby!</a></p>
<p><a href="http://celiaq.com/">home page</a></p>
<p><a href="http://celiaq.com/books">books</a></p>
<p><a href="http://celiaq.com/restos">restaurants</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.corprew.org/blog/2009/05/05/test-pattern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>april refrain: LOLCat Wasteland</title>
		<link>http://www.corprew.org/blog/2009/04/01/april-refrain-lolcat-wasteland/</link>
		<comments>http://www.corprew.org/blog/2009/04/01/april-refrain-lolcat-wasteland/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 18:46:24 +0000</pubDate>
		<dc:creator>corprew</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[april]]></category>
		<category><![CDATA[lolcat wasteland]]></category>
		<category><![CDATA[lolcats]]></category>

		<guid isPermaLink="false">http://www.corprew.org/?p=199</guid>
		<description><![CDATA[Since it&#8217;s April 1rst yet again, please enjoy LOLCat Wasteland. Have Fun.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.corprew.org/images/canhaswasteland.jpg"/></p>
<p>Since it&#8217;s April 1rst yet again, please enjoy <a href="http://www.corprew.org/content/lolcat-wasteland/">LOLCat Wasteland</a>.</p>
<p>Have Fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.corprew.org/blog/2009/04/01/april-refrain-lolcat-wasteland/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>more with geo</title>
		<link>http://www.corprew.org/blog/2009/03/12/more-with-geo/</link>
		<comments>http://www.corprew.org/blog/2009/03/12/more-with-geo/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 16:26:09 +0000</pubDate>
		<dc:creator>corprew</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://www.corprew.org/?p=196</guid>
		<description><![CDATA[I&#8217;ve been doing more stuff with geodata and geoapis recently in support of a project. It&#8217;s been fun, as you can see from the previous entry. One of the things that this project has made me aware of is the importance of caching. A number of the free, public services have occasionally been hit by [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been doing more stuff with <a href="http://groups.google.com/group/geokit/browse_thread/thread/48d06ce3d7f850cb?hl=en">geodata and geoapis</a> recently in support of a project.  It&#8217;s been fun, as you can see from the previous entry.</p>
<p>One of the things that this project has made me aware of is the importance of caching.  A number of the free, public services have occasionally been hit by surges in usage (apparently frequently coming from iPhone apps that weren&#8217;t making good use of reuse) and I&#8217;m writing an article about this.</p>
<p>In the meantime, largely grasping to consciousness today as I ended up finishing work last night at around 4:30 am.  But hey, at least I&#8217;m not <a href="http://www.universetoday.com/2009/03/12/iss-crew-may-need-to-evacuate-possible-debris-hit/">in a space station that had to be evacuated due to potential debris strike.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.corprew.org/blog/2009/03/12/more-with-geo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>meta-fiction: On Stephen King and the Dark Tower.  (Spoilers)</title>
		<link>http://www.corprew.org/blog/2009/02/09/meta-fiction-on-stephen-king-and-the-dark-tower-spoilers/</link>
		<comments>http://www.corprew.org/blog/2009/02/09/meta-fiction-on-stephen-king-and-the-dark-tower-spoilers/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 08:27:09 +0000</pubDate>
		<dc:creator>corprew</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[black house]]></category>
		<category><![CDATA[cycle]]></category>
		<category><![CDATA[dark tower]]></category>
		<category><![CDATA[goldberg variations]]></category>
		<category><![CDATA[gunslinger]]></category>
		<category><![CDATA[hayden]]></category>
		<category><![CDATA[haydn]]></category>
		<category><![CDATA[metafiction]]></category>
		<category><![CDATA[stephen king]]></category>
		<category><![CDATA[the gunslinger]]></category>
		<category><![CDATA[the talisman]]></category>
		<category><![CDATA[time becomes a loop]]></category>
		<category><![CDATA[variations on a theme]]></category>

		<guid isPermaLink="false">http://www.corprew.org/?p=181</guid>
		<description><![CDATA[When Stephen King came to the end of his Dark Tower series, he felt that he had to rewrite the first book The Gunslinger because it was now no longer in sync with the rest of the series. (Spoiler follows) I&#8217;ve often thought that this reflects the nature of the series as an endless cycle [...]]]></description>
			<content:encoded><![CDATA[<p>When Stephen King came to the end of his Dark Tower series, he felt that he had to rewrite the first book <a href="http://www.amazon.com/gp/product/0452284694?ie=UTF8&#038;tag=idealog-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0452284694">The Gunslinger</a><img src="http://www.assoc-amazon.com/e/ir?t=idealog-20&#038;l=as2&#038;o=1&#038;a=0452284694" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> because it was now no longer in sync with the rest of the series.</p>
<p>(Spoiler follows)<br />
<span id="more-181"></span><br />
I&#8217;ve often thought that this reflects the nature of the series as an endless cycle &#8212; the first edition of the gunslinger reflects one stage of the cycle, and the revised edition, which has been edited to be a coherent whole with the entire series rather than a collection of short stories, reflects the reality of the book &#8216;the gunslinger&#8217; in the next cycle of the series.</p>
<p>In general, I think this parallels the end of the series.  The gunslinger is a tool of the tower, the last of his kind frozen like a fly in amber until things start to go wrong, then released to solve the problem.  The same problem occurs time after time, but with variations on a theme.</p>
<p>For some reason, this idea of the gunslinger as a tool of the tower held in reserve from some iteration of events really appeals to me; I think in part this is because I enjoyed the <a href="http://www.amazon.com/gp/product/0345444884?ie=UTF8&#038;tag=idealog-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0345444884">The Talisman</a><img src="http://www.assoc-amazon.com/e/ir?t=idealog-20&#038;l=as2&#038;o=1&#038;a=0345444884" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> books (the series also includes<a href="http://www.amazon.com/gp/product/034547063X?ie=UTF8&#038;tag=idealog-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=034547063X">Black House</a><img src="http://www.assoc-amazon.com/e/ir?t=idealog-20&#038;l=as2&#038;o=1&#038;a=034547063X" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />, which I greatly recommend.)  The books are similar in structure and central conflict, <em>Talisman</em> is in some ways a summary of the Dark Tower books.</p>
<p>To follow through on the metafiction/cycle metaphor, the revised book is (to me) a different run through the cycle than the first.  It would be really interesting if the <a href="http://en.wikipedia.org/wiki/Variations_on_a_Theme_by_Joseph_Haydn">variations on a theme</a> were <a href="http://en.wikipedia.org/wiki/Goldberg_Variations">made explicit</a>, but that&#8217;s too large a task for a single author, I suspect.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.corprew.org/blog/2009/02/09/meta-fiction-on-stephen-king-and-the-dark-tower-spoilers/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>this american life: the future.</title>
		<link>http://www.corprew.org/blog/2009/01/20/this-american-life-the-future/</link>
		<comments>http://www.corprew.org/blog/2009/01/20/this-american-life-the-future/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 20:15:04 +0000</pubDate>
		<dc:creator>corprew</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://www.corprew.org/blog/2009/01/20/this-american-life-the-future/</guid>
		<description><![CDATA[For those who haven&#8217;t looked at the new whitehouse.gov: We will publish all non-emergency legislation to the Web site for five days, and allow the public to review and comment before the President signs it. Unknown what effect this will have, but welcome to the future again everyone.]]></description>
			<content:encoded><![CDATA[<p>For those who haven&#8217;t looked at the new whitehouse.gov:</p>
<blockquote><p>We will publish all non-emergency legislation to the Web site for five days, and allow the public to review and comment before the President signs it. </p></blockquote>
<p>Unknown what effect this will have, but welcome to the future again everyone. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.corprew.org/blog/2009/01/20/this-american-life-the-future/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

