<?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>Plato's Pharmacy</title>
	<atom:link href="http://platospharmacy.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://platospharmacy.org</link>
	<description>El sueño de la razon produce monstruos.</description>
	<lastBuildDate>Mon, 25 May 2009 19:59:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Apache/Wordpress Performance Tuning</title>
		<link>http://platospharmacy.org/2009/05/25/apachewordpress-performance-tuning/</link>
		<comments>http://platospharmacy.org/2009/05/25/apachewordpress-performance-tuning/#comments</comments>
		<pubDate>Mon, 25 May 2009 19:59:07 +0000</pubDate>
		<dc:creator>Phaedrus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[performance tuning]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://platospharmacy.org/?p=460</guid>
		<description><![CDATA[Yeah, it&#8217;s been a long time since I&#8217;ve written anything in this space. I did however recently move this site from the shared hosting provider I was using to a Ubuntu 8.04.2 LTS Xen instance. The plus of this is greater control. The downside is that I&#8217;m cheap, especially for a personal blog with no [...]]]></description>
			<content:encoded><![CDATA[<p>Yeah, it&#8217;s been a <em>long</em> time since I&#8217;ve written anything in this space. I did however recently move this site from the shared hosting provider I was using to a Ubuntu 8.04.2 LTS Xen instance. The plus of this is greater control. The downside is that I&#8217;m cheap, especially for a personal blog with no traffic, so we&#8217;re talking an instance with a whopping 256 MB of RAM here. So how to speed it up?</p>
<p>The first thing I did was try to get a baseline using ApacheBench, which I ran after performing zero tuning. The result was utter disaster. Apache would spin off new processes until memory and CPU were completely consumed. System load spiked to over 40, and the benchmark failed to complete. Clearly the very first thing I needed to do was size Apache down for my limited system. So I made the following changes to apache2.conf:    StartServers          1</p>
<pre>    StartServers          1
    MinSpareServers       1
    MaxSpareServers      5
    MaxClients          5
    MaxRequestsPerChild   300</pre>
<p>Needless to say, that&#8217;s greatly reduced from the default. Obviously I can&#8217;t serve much traffic, but I hopefully won&#8217;t be allowing anyone to DoS my server. This time, ApacheBench completed fine:</p>
<p>Server Software:        Apache/2.2.8<br />
Server Hostname:        platospharmacy.org<br />
Server Port:            80<br />
Document Path:          /<br />
Document Length:        54931 bytes<br />
Concurrency Level:      25<br />
Time taken for tests:   500.377 seconds<br />
Complete requests:      2212<br />
Failed requests:        240<br />
(Connect: 0, Receive: 0, Length: 240, Exceptions: 0)<br />
Write errors:           0<br />
Total transferred:      122194793 bytes<br />
HTML transferred:       121592041 bytes<br />
Requests per second:    4.42 [#/sec] (mean)<br />
Time per request:       5655.252 [ms] (mean)<br />
Time per request:       226.210 [ms] (mean, across all concurrent requests)<br />
Transfer rate:          238.48 [Kbytes/sec] received</p>
<p>Connection Times (ms)<br />
min  mean[+/-sd] median   max<br />
Connect:       29   48 169.3     34    3049<br />
Processing:  1108 5564 2041.5   4791   27755<br />
Waiting:      845 5072 1812.4   4381   14593<br />
Total:       1140 5612 2056.2   4830   27789</p>
<p>Obviously not amazing. I&#8217;m coming nowhere close to the potential of my uplink, I&#8217;m getting a pathetic amount of reqs/sec, and far too many failed requests. This needs to be improved. So I installed the WP SuperCache plugin and configured it for full cacheing:</p>
<p>Server Software:        Apache/2.2.8<br />
Server Hostname:        platospharmacy.org<br />
Server Port:            80</p>
<p>Document Path:          /<br />
Document Length:        54968 bytes</p>
<p>Concurrency Level:      25<br />
Time taken for tests:   500.007 seconds<br />
Complete requests:      6850<br />
Failed requests:        6845<br />
(Connect: 0, Receive: 0, Length: 6845, Exceptions: 0)<br />
Write errors:           0<br />
Total transferred:      379514426 bytes<br />
HTML transferred:       376800780 bytes<br />
Requests per second:    13.70 [#/sec] (mean)<br />
Time per request:       1824.844 [ms] (mean)<br />
Time per request:       72.994 [ms] (mean, across all concurrent requests)<br />
Transfer rate:          741.23 [Kbytes/sec] received</p>
<p>Connection Times (ms)<br />
min  mean[+/-sd] median   max<br />
Connect:       29   39  63.3     37    3055<br />
Processing:   869 1782 163.8   1748    3021<br />
Waiting:      684 1471 150.7   1436    2752<br />
Total:        908 1821 176.0   1786    5497</p>
<p>This is clearly a big improvement in raw performance, but look at all those failed requests. This of course still is not going to cut it. The next step was to install Alternative PHP Cache. Signifigantly reducuing PHP compiles should show some big improvement. I went with APC over the alternatives because it&#8217;s due to be included by default in PHP 6.</p>
<p>Server Software:        Apache/2.2.8<br />
Server Hostname:        platospharmacy.org<br />
Server Port:            80</p>
<p>Document Path:          /<br />
Document Length:        56024 bytes</p>
<p>Concurrency Level:      25<br />
Time taken for tests:   500.015 seconds<br />
Complete requests:      5797<br />
Failed requests:        4<br />
(Connect: 0, Receive: 0, Length: 4, Exceptions: 0)<br />
Write errors:           0<br />
Total transferred:      327170478 bytes<br />
HTML transferred:       324873720 bytes<br />
Requests per second:    11.59 [#/sec] (mean)<br />
Time per request:       2156.352 [ms] (mean)<br />
Time per request:       86.254 [ms] (mean, across all concurrent requests)<br />
Transfer rate:          638.99 [Kbytes/sec] received</p>
<p>Connection Times (ms)<br />
min  mean[+/-sd] median   max<br />
Connect:       29   43 125.3     36    3051<br />
Processing:  1568 2108 619.6   1971   10332<br />
Waiting:     1266 1730 537.8   1611    8680<br />
Total:       1603 2152 639.1   2007   10366</p>
<p>Now this is more like it. While technically performance actually dropped a bit, failed requests are almost gone. This is about the best I can hope for on my small server. Ok, there&#8217;s always MySQL tuning, but from Apache, PHP, and Wordpress I&#8217;m quite happy with these results.</p>
]]></content:encoded>
			<wfw:commentRss>http://platospharmacy.org/2009/05/25/apachewordpress-performance-tuning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Current Blogs</title>
		<link>http://platospharmacy.org/2008/12/21/current-blogs/</link>
		<comments>http://platospharmacy.org/2008/12/21/current-blogs/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 21:43:38 +0000</pubDate>
		<dc:creator>Phaedrus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://platospharmacy.org/?p=458</guid>
		<description><![CDATA[Using my Tumblr account as a personal blog.
Doing some group blogging here.
This site currents serves as an archive.
]]></description>
			<content:encoded><![CDATA[<p>Using my <a href="http://cwk.tumblr.com/">Tumblr account</a> as a personal blog.</p>
<p>Doing some group blogging <a href="http://tcmso.blogspot.com/">here</a>.</p>
<p>This site currents serves as an archive.</p>
]]></content:encoded>
			<wfw:commentRss>http://platospharmacy.org/2008/12/21/current-blogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Colts Wild Card Watch &#8211; Week 16</title>
		<link>http://platospharmacy.org/2008/12/15/colts-wild-card-watch-week-16/</link>
		<comments>http://platospharmacy.org/2008/12/15/colts-wild-card-watch-week-16/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 17:59:37 +0000</pubDate>
		<dc:creator>Phaedrus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[colts]]></category>
		<category><![CDATA[indy]]></category>
		<category><![CDATA[nfl]]></category>

		<guid isPermaLink="false">http://cwk.kloote.net/?p=456</guid>
		<description><![CDATA[Let&#8217;s hit this up fast. The Colts are now 10-4, the 3rd best record in the AFC. They are one win away from locking up the #5 seed, which could come as soon as their game against the Jags on Thursday. In the event the Colts lose the last two, they can still get a [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s hit this up fast. The Colts are now 10-4, the 3rd best record in the AFC. They are one win away from locking up the #5 seed, which could come as soon as their game against the Jags on Thursday. In the event the Colts lose the last two, they can still get a playoff spot through help in the following ways:</p>
<ul>
<li>One Ravens loss (gives the Colts the #5 seed still)</li>
<li>One Pats loss (#6)</li>
<li>One loss by both Jets and Dolphins (#6)</li>
</ul>
<p>Thanks again to <a href="http://www.stampedeblue.com/2008/12/14/692415/colts-clinch-with-1-win-or">Stampede Blue</a>. For my money, I expect the Colts to put away the #5 on Thursday.</p>
]]></content:encoded>
			<wfw:commentRss>http://platospharmacy.org/2008/12/15/colts-wild-card-watch-week-16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bloggity</title>
		<link>http://platospharmacy.org/2008/12/10/bloggity/</link>
		<comments>http://platospharmacy.org/2008/12/10/bloggity/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 16:03:04 +0000</pubDate>
		<dc:creator>Phaedrus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Meta]]></category>
		<category><![CDATA[my endless series of blogs]]></category>

		<guid isPermaLink="false">http://cwk.kloote.net/?p=453</guid>
		<description><![CDATA[Even though I just got this site set up, looks like I&#8217;ll be doing some blogging over here too. Not yet sure how I&#8217;ll decide what to post where, but I&#8217;m quite sure a group blog will be more frequently updated than anything I try to do myself. :-)
]]></description>
			<content:encoded><![CDATA[<p>Even though I just got this site set up, looks like I&#8217;ll be doing some blogging <a href="http://tcmso.blogspot.com/">over here</a> too. Not yet sure how I&#8217;ll decide what to post where, but I&#8217;m quite sure a group blog will be more frequently updated than anything I try to do myself. :-)</p>
]]></content:encoded>
			<wfw:commentRss>http://platospharmacy.org/2008/12/10/bloggity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Colts Wild Card Watch &#8211; Week 15</title>
		<link>http://platospharmacy.org/2008/12/09/colts-wild-card-watch-week-15/</link>
		<comments>http://platospharmacy.org/2008/12/09/colts-wild-card-watch-week-15/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 22:15:23 +0000</pubDate>
		<dc:creator>Phaedrus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[colts]]></category>
		<category><![CDATA[indy]]></category>
		<category><![CDATA[nfl]]></category>

		<guid isPermaLink="false">http://cwk.kloote.net/?p=451</guid>
		<description><![CDATA[So I skipped this last week. Sue me. :-)

Colts, 9-4
Ravens, 9-4
Jets, Dolphins, Pats, 8-5 (Note: One of these teams will win the AFC East and thus not take a wild card spot)

Pretty easy at this point honestly. The Colts control their own destiny and are very close to clinching. Stampede Blue explains:
1 Colts win + [...]]]></description>
			<content:encoded><![CDATA[<p>So I skipped this last week. Sue me. :-)</p>
<ul>
<li><strong>Colts, 9-4</strong></li>
<li>Ravens, 9-4</li>
<li>Jets, Dolphins, Pats, 8-5 (Note: One of these teams will win the AFC East and thus not take a wild card spot)</li>
</ul>
<p>Pretty easy at this point honestly. The Colts control their own destiny and are very close to clinching. Stampede Blue <a href="http://www.stampedeblue.com/2008/12/8/684651/colts-clinch-wildcard-with">explains</a>:</p>
<blockquote><p>1 Colts win + 1 Pats loss<br />
or<br />
1 Colts win + 2 Ravens losses<br />
or<br />
2 Colts wins<br />
or<br />
2 losses by any 2 of Jets, Pats, Fins</p></blockquote>
<p>Like I said, easy. You have to assume the Colts will beat the Lions, so we just need them to also beat the Jags, making the Titans game and what other teams do irrelevant. In case they drop both those two, the Pats won&#8217;t lose this week against the Raiders, but both the Cards (especially) and Bills are loseable games for them. The Jets and Dolphins also have chances to lose, and we&#8217;re helped by the fact they play each other the last game of the seaon. So there&#8217;s plenty of contigencies. Basically we Colts fans are cheering against the Ravens and/or the AFC East.</p>
]]></content:encoded>
			<wfw:commentRss>http://platospharmacy.org/2008/12/09/colts-wild-card-watch-week-15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Commercialism vs. Art</title>
		<link>http://platospharmacy.org/2008/12/05/commercialism-vs-art/</link>
		<comments>http://platospharmacy.org/2008/12/05/commercialism-vs-art/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 19:08:46 +0000</pubDate>
		<dc:creator>Phaedrus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[commercialism]]></category>
		<category><![CDATA[Film/TV]]></category>

		<guid isPermaLink="false">http://cwk.kloote.net/?p=448</guid>
		<description><![CDATA[Via Jason&#8217;s Google Reader shared items feed, I learn of this travesty:
We&#8217;ve already told you about the Watchmen video game, but little did we know that that cynical cash-in was only the start. May I interest you in the Watchmen Cell Phone Game?
Glu Mobile &#8211; who are already working with Warner Bros to create mobile [...]]]></description>
			<content:encoded><![CDATA[<p>Via <a href="http://twitter.com/xtrarant">Jason&#8217;s</a> Google Reader shared items feed, I learn of <a href="http://io9.com/5100532/new-watchmen-mobile-game-makes-alan-moore-cry">this travesty</a>:</p>
<blockquote><p>We&#8217;ve already told you about <a href="http://io9.com/5090809/alan-moores-worst-nightmare-watchmen-video-game" target="_blank">the <em>Watchmen</em> video game</a>, but little did we know that that cynical cash-in was only the start. May I interest you in the <em>Watchmen</em> Cell Phone Game?</p>
<p>Glu Mobile &#8211; who are already working with Warner Bros to create mobile games based on Superman, Bugs Bunny and <em>The Dark Knight</em> &#8211; announced earlier this week their plans to create a game based on Alan Moore and Dave Gibbons&#8217; groundbreaking 1980s series &#8211; or, more truthfully, based on Zack Snyder&#8217;s movie adaptation of Alan Moore and Dave Gibbons&#8217; groundbreaking 1980s series.</p></blockquote>
<p>Is it just me, or is sci-fi/fantasy treated with a certain level of disrepect that other genres are not? <a href="http://en.wikipedia.org/wiki/Watchmen"><em>Watchmen </em></a>made <a href="http://www.time.com/time/2005/100books/the_complete_list.html">Time Magazine&#8217;s list</a> of the 100 best English-language novels from 1923 to the present, and just wait, there will eventually be a toy line now. In fact, what other two books on that list already have toy lines? Why <em>The Lion, the Witch, and the Wardrobe</em> and <em>Lord of the Rings</em> of course! So I wonder, what if books from other genres were treated this way? New from Mattel, it&#8217;s the <em>1984</em> Room 101 Action Playset! And who wouldn&#8217;t collect cereal box tops to send away for a Big Brother action figure? Sticking with Orwell, <em>Animal Farm</em> seems like a natural for a toy line, kids can re-create the exile of Snowball. A friend of mine weighs in with more suggestions over IM:</p>
<blockquote>
<div class="chat in">
<div class="msg 1st">But I&#8217;m sure the accessories to the Schindler&#8217;s List Action Figures would be  awesome.</div>
</div>
<div class="chat out">
<div class="msg 1st">
<p><span class="salutation">&#8230;</span></div>
</div>
<div class="chat in">
<div class="msg 1st">You can go in all kinds of wrong and immoral  directions with this idea.</div>
<div class="msg Nth">Ibsen&#8217;s Dollhouse</div>
<div class="msg Nth">Or better yet, Nabokov&#8217;s dollhouse</div>
</div>
<div class="chat out">
<div class="msg 1st">
<p><span class="salutation">&#8230;</span></div>
</div>
<div class="chat in">
<div class="msg 1st">The Gravity&#8217;s Rainbow Erector Set is sure to be  a top seller.</div>
<div class="msg 1st">&#8230;</div>
</div>
<div class="chat in">
<div class="msg 1st">The video game tie-in for Cormac McCarthy&#8217;s  novels could be pretty cool, what with the senseless graphic violence and all,  except the game always conspires to prevent you from winning.</div>
<div class="msg Nth">OK, I&#8217;ll stop now.</div>
</div>
</blockquote>
<div class="msg Nth">I tend to be better at concept than execution on ideas like this, so leave your own suggestions in the comments. :-)</div>
]]></content:encoded>
			<wfw:commentRss>http://platospharmacy.org/2008/12/05/commercialism-vs-art/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Colts Wild Card Watch &#8211; Week 13</title>
		<link>http://platospharmacy.org/2008/11/24/colts-wild-card-watch-week-13/</link>
		<comments>http://platospharmacy.org/2008/11/24/colts-wild-card-watch-week-13/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 18:42:36 +0000</pubDate>
		<dc:creator>Phaedrus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[colts]]></category>
		<category><![CDATA[indy]]></category>
		<category><![CDATA[nfl]]></category>

		<guid isPermaLink="false">http://cwk.kloote.net/?p=446</guid>
		<description><![CDATA[I&#8217;m about to go on vacation to NYC for a week, so let&#8217;s get this done now:

Colts, 7-4
Ravens, 7-4
Pats, 7-4
Dolphins, 6-5
Bills, 6-5
Browns, Jags, Texans, Chargers, all 4-7

Things continue to look good for the Colts. Locked-in tiebreakers over the Ravens &#38; Pats leave them in complete control of the #5 seed. The biggest potential threat, the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m about to go on vacation to NYC for a week, so let&#8217;s get this done now:</p>
<ul>
<li><strong>Colts, 7-4</strong></li>
<li>Ravens, 7-4</li>
<li>Pats, 7-4</li>
<li>Dolphins, 6-5</li>
<li>Bills, 6-5</li>
<li>Browns, Jags, Texans, Chargers, all 4-7</li>
</ul>
<p>Things continue to look good for the Colts. Locked-in tiebreakers over the Ravens &amp; Pats leave them in complete control of the #5 seed. The biggest potential threat, the Dolphins, took a loss, and the Jets beating the Titans mean that the Jets are more likely to win the AFC East and not affect the Colts, and means the Titans are only three games up on the Colts, keeping a dark horse shot at the AFC South alive. The Colts take on the Browns in Cleveland on Sunday; here&#8217;s other games involving playoff competitors (I&#8217;m not going to concern myself with the 4-7 teams, if they can close the gap, we&#8217;ll revisit this):</p>
<p>Titans@<strong>Lions</strong>: The Colts would love to keep their chances at winning the AFC South alive, so this is an easy one.</p>
<p><strong>49ers</strong>@Bills: As always, AFC vs. NFC matchups are obvious.</p>
<p>Ravens@<strong>Bengals</strong>: The Ravens are a legit competitor, the Bengals are not.</p>
<p>Dolphins@<strong>Rams</strong>: AFC vs. NFC rule.</p>
<p><strong>Steelers</strong>@Pats: Lets keep the Steelers out of the way and atop the AFC North even if we do have the tiebreaker over them.</p>
<p>Broncos@<strong>Jets</strong>: Both teams lead their division, and any time a division leader can lose and get back into the mix for the wild card, Colts fans should notice. I&#8217;m going with the Jets because they can less easily afford a loss and keep their division lead right now.</p>
<p>That&#8217;s it for now, everyone enjoy Thanksgiving and football.</p>
]]></content:encoded>
			<wfw:commentRss>http://platospharmacy.org/2008/11/24/colts-wild-card-watch-week-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Colts Wild Card Watch &#8211; Week 12</title>
		<link>http://platospharmacy.org/2008/11/21/colts-wild-card-watch/</link>
		<comments>http://platospharmacy.org/2008/11/21/colts-wild-card-watch/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 14:27:40 +0000</pubDate>
		<dc:creator>Phaedrus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[colts]]></category>
		<category><![CDATA[indy]]></category>
		<category><![CDATA[nfl]]></category>

		<guid isPermaLink="false">http://cwk.kloote.net/?p=443</guid>
		<description><![CDATA[As of today, the standings are now:

Colts, 6-4
Ravens, 6-4
Dolphins, 6-4
Patriots, 6-4
Bills, 5-5
Chargers, 4-6
Browns, 4-6
Jags, 4-6

Looking good. The Colts have locked-in tiebreakers against both the Ravens and the Pats via head-to-head wins. Miami is tenuous, as the Colts only have a half-game on them due to AFC record, 5-2 vs. 5-3. The Bills could still be [...]]]></description>
			<content:encoded><![CDATA[<p>As of today, the standings are now:</p>
<ul>
<li><strong>Colts, 6-4</strong></li>
<li>Ravens, 6-4</li>
<li>Dolphins, 6-4</li>
<li>Patriots, 6-4</li>
<li>Bills, 5-5</li>
<li>Chargers, 4-6</li>
<li>Browns, 4-6</li>
<li>Jags, 4-6</li>
</ul>
<p>Looking good. The Colts have locked-in tiebreakers against both the Ravens and the Pats via head-to-head wins. Miami is tenuous, as the Colts only have a half-game on them due to AFC record, 5-2 vs. 5-3. The Bills could still be an issue if they can somehow turn it around. The Colts play all the 4-6 teams, of which the Jags are most dangerous, as a Jags win would lock in a tiebreaker over the Colts. Next, let&#8217;s take a look at this week&#8217;s games, again comparing to <a href="http://www.stampedeblue.com/2008/11/18/664469/week-12-wildcard-positioni">Stampede Blue</a>.</p>
<p><strong>Bengals</strong>@Steelers: Naturally. The Bengals are no threat, while the Steelers still could be. Of course, we already know the <a href="http://sports.espn.go.com/nfl/recap?gameId=281120023">outcome of this game</a>. (Also, does everyone else laugh when reading articles that reference &#8220;Ocho Cinco&#8221;?)</p>
<p><strong>Eagles</strong>@Ravens: Again, naturally.</p>
<p><strong>Vikings</strong>@Jags: Yet another easy call.</p>
<p>Bills@<strong>Chiefs</strong>: And again I find myself in agreement. The Chiefs are done, while the Bills are still in the race.</p>
<p><strong>Pats</strong>@Dolphins: As much as I hate cheering for the Pats to win anything, the Dolphins are arguably the biggest threat right now.</p>
<p><strong>Jets</strong>@Titans: If the Jets keep winning, they stay safely atop the AFC East and not a threat. While the Titans losing enough to give the Colts a shot at the AFC South is not very likely, it&#8217;s not <em>impossible</em> either.</p>
<p><strong>Texans</strong>@Browns: Same logic again. Texans are likely done, while the Browns could beat the Colts a week from Sunday.</p>
<p>Raiders@<strong>Broncos</strong>: I&#8217;m going to bet on the Colts beating the Chargers, which you sort of have to when you&#8217;re trying to get your team a wild card spot. If the Colts do lose, I&#8217;m not sure the SB scenario of the Chargers pulling ahead of Denver in the race is all that realistic, but there is logic in hoping for it.</p>
]]></content:encoded>
			<wfw:commentRss>http://platospharmacy.org/2008/11/21/colts-wild-card-watch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Motorist</title>
		<link>http://platospharmacy.org/2008/11/14/the-motorist/</link>
		<comments>http://platospharmacy.org/2008/11/14/the-motorist/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 23:39:38 +0000</pubDate>
		<dc:creator>Phaedrus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[suburbs]]></category>
		<category><![CDATA[transportation]]></category>

		<guid isPermaLink="false">http://cwk.kloote.net/?p=440</guid>
		<description><![CDATA[From Suburban Nation: The Rise of Sprawl and the Decline of the American Dream:

In the suburbs, time normally spent in the physical public realm is now spent in the automobile, which is a private space as well as a potentially sociopathic device. The average American, when placed behind the wheel of a car, ceases to [...]]]></description>
			<content:encoded><![CDATA[<p>From <a href="http://www.google.com/url?sa=U&amp;start=1&amp;q=http://www.amazon.com/Suburban-Nation-Sprawl-Decline-American/dp/0865476063&amp;ei=bQkeSYPEH9iCtgfer6jlCQ&amp;usg=AFQjCNGtcwT2QIKGhaBWXDttXJiBGQtXyw"><em>Suburban Nation: The Rise of Sprawl and the Decline of the American Dream</em></a>:</p>
<blockquote>
<p style="text-align: left;">In the suburbs, time normally spent in the physical public realm is now spent in the automobile, which is a private space as well as a potentially sociopathic device. The average American, when placed behind the wheel of a car, ceases to be a citizen and becomes instead a <em>motorist</em>. As a motorist, you cannot get to know your your neighbor, because the prevailing relationship is competitive. You are competing for asphalt, and if you so much as hesitate or make a wrong move, your neighbor immediately punishes you, by honking the horn, taking your space, running into you, or committing some other antisocial act, the most egregious of which have been well documented. Like drinking, driving has become a well-worn excuse for all sorts of rudeness and aggression &#8211; &#8220;It couldn&#8217;t be helped; he cut me off.&#8221; The social contract is voided. Why this is so is worthy of further study. Suffice to say that only rarely do two pedestrians gesture violently at each other as they pass.</p>
</blockquote>
<p style="text-align: left;">When I read the passage, I couldn&#8217;t help but think of this:</p>
<p style="text-align: left;">
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/0ZgiVicpZGk&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/0ZgiVicpZGk&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://platospharmacy.org/2008/11/14/the-motorist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Armistice/Veteran&#8217;s Day</title>
		<link>http://platospharmacy.org/2008/11/11/armistice/</link>
		<comments>http://platospharmacy.org/2008/11/11/armistice/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 15:42:46 +0000</pubDate>
		<dc:creator>Phaedrus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[armistice day]]></category>
		<category><![CDATA[WWI]]></category>

		<guid isPermaLink="false">http://cwk.kloote.net/?p=438</guid>
		<description><![CDATA[I&#8217;m reminded (of all things) of the closing lines from Blackadder Goes Forth:
Well, I am afraid it will have to wait. Whatever it was, I am sure it was better than my plan to get out of this by pretending to be mad. I mean, who would have noticed another madman around here? Good luck, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m reminded (of all things) of the closing lines from <em>Blackadder Goes Forth</em>:</p>
<blockquote><p>Well, I am afraid it will have to wait. Whatever it was, I am sure it was better than my plan to get out of this by pretending to be mad. I mean, who would have noticed another madman around here? Good luck, everyone.</p></blockquote>
<p>In honor of all who died because of ridiculous leaders causing pointless wars throughout history.</p>
]]></content:encoded>
			<wfw:commentRss>http://platospharmacy.org/2008/11/11/armistice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
