<?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"
	>

<channel>
	<title>Dan's Blog</title>
	<atom:link href="http://danathan.jloreview.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://danathan.jloreview.com</link>
	<description>Food, Linux and Maybe Politics</description>
	<pubDate>Fri, 14 Dec 2007 01:00:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>RSS-Enabling Your Buddy&#8217;s Non-RSS Enabled Blog</title>
		<link>http://danathan.jloreview.com/2007/12/13/rss-enabling-your-buddys-non-rss-enabled-blog/</link>
		<comments>http://danathan.jloreview.com/2007/12/13/rss-enabling-your-buddys-non-rss-enabled-blog/#comments</comments>
		<pubDate>Fri, 14 Dec 2007 01:00:25 +0000</pubDate>
		<dc:creator>check</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://danathan.jloreview.com/2007/12/13/rss-enabling-your-buddys-non-rss-enabled-blog/</guid>
		<description><![CDATA[So as it turns out, I&#8217;m fully enamored with Google Reader, which allows me to read all sorts of RSS feeds.  I waste time much more efficiently now.  They&#8217;ve even got a version that&#8217;s optimized for your mobile device, so you can piss off your wife by reading blogs on your Blackberry.
The problem [...]]]></description>
			<content:encoded><![CDATA[<p>So as it turns out, I&#8217;m fully enamored with <a href="http://reader.google.com/" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/reader.google.com');">Google Reader</a>, which allows me to read all sorts of RSS feeds.  I waste time much more efficiently now.  They&#8217;ve even got a version that&#8217;s <a href="http://www.google.com/reader/m/view/" onclick="javascript:urchinTracker ('/outbound/article/www.google.com');">optimized for your mobile device</a>, so you can piss off your wife by reading blogs on your Blackberry.</p>
<p>The problem with feed readers, though, is that once you start using them, you stop reading blogs that don&#8217;t provide feeds.  After realizing that I was falling behind on <a href="http://www.jennymiller.com/" onclick="javascript:urchinTracker ('/outbound/article/www.jennymiller.com');">Heck&#8217;s Kitchen</a> &#8212; which is hand coded, and therefore does not offer a feed &#8212; I realized that the best solution available was to write a screen scraper that would convert the static HTML page to RSS.  Thankfully, Jenny writes good HTML and uses CSS classes and ids, so scraping the page was easy.  </p>
<p>The fruits of my labor are here: <a href="http://jloreview.com/hk/rss.xml" >Heck&#8217;s Kitchen RSS Feed</a>.</p>
<p>Full script after the jump.<br />
<span id="more-20"></span></p>
<p>As per usual, the hard part of writing a perl script is finding and installing the correct modules via CPAN.  Here, I&#8217;m using XML::RSS and HTML::Treebuilder, both of which provide nice interfaces into structured documents.</p>
<p>Finally, when pushing the HTML into the XML::RSS, you&#8217;ve got to add your own CDATA tags, otherwise you get a lot of &amp;lt;s.</p>
<p><code><br />
#!/usr/bin/perl</p>
<p>##   (C) 2007 Dan Check <dan at jloreview dot com><br />
##<br />
## This script is free software; you can redistribute it and/or modify<br />
## it under the terms of the GNU General Public License as published by<br />
## the Free Software Foundation; either version 2, or (at your option)<br />
## any later version.<br />
##<br />
## This script is distributed in the hope that it will be useful,<br />
## but WITHOUT ANY WARRANTY; without even the implied warranty of<br />
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the<br />
## GNU General Public License for more details.<br />
##<br />
## You may have received a copy of the GNU General Public License<br />
## along with this script; see the file COPYING.  If not, write to the<br />
## Free Software Foundation, Inc., 59 Temple Place - Suite 330,<br />
## Boston, MA 02111-1307, USA.</p>
<p>use strict;<br />
use warnings;<br />
use LWP;<br />
use XML::RSS;<br />
use Date::Format;<br />
use HTML::TreeBuilder;</p>
<p># Create an XML RSS object<br />
my $rss = new XML::RSS (version => &#8216;2.0&#8242;);<br />
 $rss->channel(title          => &#8216;Heck\&#8217;s Kitchen&#8217;,<br />
               link           => &#8216;http://jennymiller.com/&#8217;,<br />
               language       => &#8216;en&#8217;,<br />
               description    => &#8216;The dramatic lives of trapeze artists, a clown, and an elephant trainer against a background of circus spectacle.&#8217;,<br />
               copyright      => &#8216;Copyright 2007, jennymiller.com&#8217;,<br />
               managingEditor => &#8216;katspank@gmail.com&#8217;,<br />
               webMaster      => &#8216;katspank@gmail.com&#8217;<br />
               );<br />
 $rss->add_module(prefix=>&#8217;content&#8217;, uri=>&#8217;http://purl.org/my/rss/module/&#8217;);<br />
#               pubDate        => &#8216;Thu, 23 Aug 1999 07:00:00 GMT&#8217;,<br />
#               lastBuildDate  => &#8216;Thu, 23 Aug 1999 16:20:26 GMT&#8217;,</p>
<p># create a new browser<br />
my $browser = LWP::UserAgent->new;</p>
<p># Set browser headers<br />
$browser->default_headers->push_header(&#8217;User-Agent&#8217; => &#8216;Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6&#8242;);<br />
$browser->default_headers->push_header(&#8217;Accept&#8217; => &#8216;text/xml,application/xml,application/xhtml+xml,text/html,text/plain,image/png,*/*&#8217;);<br />
$browser->default_headers->push_header(&#8217;Accept-Language&#8217; => &#8216;en-us,en&#8217;);<br />
$browser->default_headers->push_header(&#8217;Accept-Charset&#8217; => &#8216;ISO-8859-1,utf-8&#8242;);</p>
<p>my $url = &#8220;http://www.jennymiller.com/&#8221;;</p>
<p># Create a cookie jar<br />
$browser->cookie_jar({});</p>
<p># Get the login page<br />
my $response = $browser->get($url);<br />
unless($response->is_success) {<br />
  warn &#8220;Couldn&#8217;t get $url: &#8220;, $response->status_line, &#8220;\n&#8221;;<br />
  die;<br />
}</p>
<p># create a tree<br />
my $tree = HTML::TreeBuilder->new;<br />
$tree->parse($response->content);<br />
$tree->eof;</p>
<p>my @out;<br />
 # we want entry and menu classes<br />
 foreach my $item (<br />
   $tree->look_down(&#8217;_tag&#8217;, &#8216;div&#8217;,<br />
     sub {<br />
       return if !$_[0]->attr(&#8217;class&#8217;) &#038;&#038; !$_[0]->attr(&#8217;id&#8217;);<br />
       return unless (($_[0]->attr(&#8217;class&#8217;) &#038;&#038; $_[0]->attr(&#8217;class&#8217;) =~ /^entry$/) || ($_[0]->attr(&#8217;id&#8217;) &#038;&#038; $_[0]->attr(&#8217;id&#8217;) =~ /^menu$/));<br />
#       print &#8220;Got &#8221; . $_[0]->as_text . &#8220;\n&#8221;;<br />
       my @c = $_[0];<br />
	 }<br />
   )) {<br />
   	  my $item_tree = HTML::TreeBuilder->new;<br />
   	  $item_tree->parse($item->as_HTML);<br />
   	  $item_tree->eof;<br />
   	  # Grab the first h3 as the title<br />
   	  my $date_tree = $item_tree->look_down(&#8217;_tag&#8217;, &#8216;h3&#8242;);<br />
   	  my $title_tree = $item_tree->look_down(&#8217;_tag&#8217;, &#8216;h1&#8242;);<br />
   	  my $date = time2str(&#8221;%b %d, %Y&#8221;, time);<br />
   	  if ($date_tree) {<br />
   	    $date = $date_tree->as_text;<br />
   	  }<br />
	  # Default the title to LOOK, for the links section<br />
   	  my $title = &#8220;LOOK!&#8221;;<br />
   	  if ($title_tree) {<br />
	    $title = $title_tree->as_text;<br />
	  }<br />
	 $rss->add_item(title => $title,<br />
			link  => &#8220;http://jennymiller.com/&#8221;,<br />
			guid     => $date,<br />
			description => &#8220;< ![CDATA[" . $item->as_HTML . &#8220;]]&gt;&#8221;</p>
<p>	);<br />
  }</p>
<p>$tree->delete;</p>
<p>$rss->{output} = &#8216;2.0&#8242;;<br />
$rss->save(&#8217;./jloreview.com/hk/rss.xml&#8217;);</p>
<p></dan></code></p>
]]></content:encoded>
			<wfw:commentRss>http://danathan.jloreview.com/2007/12/13/rss-enabling-your-buddys-non-rss-enabled-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New York Times Crossword Puzzle Downloader</title>
		<link>http://danathan.jloreview.com/2007/09/08/new-york-times-crossword-puzzle-downloader/</link>
		<comments>http://danathan.jloreview.com/2007/09/08/new-york-times-crossword-puzzle-downloader/#comments</comments>
		<pubDate>Sat, 08 Sep 2007 23:31:12 +0000</pubDate>
		<dc:creator>check</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://danathan.jloreview.com/2007/09/08/new-york-times-crossword-puzzle-downloader/</guid>
		<description><![CDATA[If you&#8217;re like me, you&#8217;re a Will Shortz junkie.  You&#8217;ve several of his crossword books, and even remember fondly his time at Games magazine.  You&#8217;ve also got a subscription to the New York Times crossword puzzle, but you don&#8217;t remember to download the puzzle on a daily basis.  So you&#8217;re like, &#8220;Hey, [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like me, you&#8217;re a Will Shortz junkie.  You&#8217;ve <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2FYork-Times-Supersized-Sunday-Crosswords%2Fdp%2F031236122X%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1189293092%26sr%3D1-4&#038;tag=dancheck-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325" onclick="javascript:urchinTracker ('/outbound/article/www.amazon.com');">several</a> of his <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2FTimes-Shortzs-Xtreme-Xwords-Ultra-Challenging%2Fdp%2F0312352034%3Fie%3DUTF8%26qid%3D1189293092%26sr%3D1-4&#038;tag=dancheck-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325" onclick="javascript:urchinTracker ('/outbound/article/www.amazon.com');">crossword</a> <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2FMonday-Through-Friday-Crossword-Puzzles%2Fdp%2F0312300581%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1189293092%26sr%3D1-2&#038;tag=dancheck-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325" onclick="javascript:urchinTracker ('/outbound/article/www.amazon.com');">books</a>, and even remember fondly his time at <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2FGames-Magazine-Presents-Pencil-Puzzles%2Fdp%2F0812920805%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1189292867%26sr%3D8-9&#038;tag=dancheck-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325" onclick="javascript:urchinTracker ('/outbound/article/www.amazon.com');">Games</a> magazine.  You&#8217;ve also got a subscription to the <a href="http://www.nytimes.com/pages/crosswords/index.html" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.nytimes.com');">New York Times crossword puzzle</a>, but you don&#8217;t remember to download the puzzle on a daily basis.  So you&#8217;re like, &#8220;Hey, I wish the puzzle would download to my computer every day, or, better yet, I wish it would show up in my inbox.&#8221;</p>
<p>I wrote a small perl script that does just that &#8212; it downloads the current puzzle, saves it where you want it, and emails it to addresses you specify. It&#8217;ll work best for OS X and Linux users, as it&#8217;s written in perl and requires a few external but fairly standard libraries that can be installed via CPAN.  Download it here: <a href='http://danathan.jloreview.com/wp-content/uploads/2007/09/nytimes-xwordpl.txt' title='New York Times Crossword Puzzle Downloader'>NY Times Crossword Puzzle Downloader</a>.</p>
<p><strong>Short Directions:</strong><br />
Rename the file from .txt to .pl, make it executable, customize the variables, and add it as a cronjob.</p>
<p><strong>Longer Directions:</strong><br />
&#8230;When I get a few minutes.</p>
<p><strong>License:</strong> GPL, of course.</p>
]]></content:encoded>
			<wfw:commentRss>http://danathan.jloreview.com/2007/09/08/new-york-times-crossword-puzzle-downloader/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fun Things Elsewhere</title>
		<link>http://danathan.jloreview.com/2007/03/22/fun-things-elsewhere/</link>
		<comments>http://danathan.jloreview.com/2007/03/22/fun-things-elsewhere/#comments</comments>
		<pubDate>Thu, 22 Mar 2007 11:49:15 +0000</pubDate>
		<dc:creator>check</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://danathan.jloreview.com/2007/03/22/fun-things-elsewhere/</guid>
		<description><![CDATA[Jenny posts on how to have a spicy weekend.  Apparently, it involves rock and roll, dancing, and roller derbies.
Alec &#8212; the man responsible for introducing me to indie rock and mix tapes &#8212; posts an animal-related mix over on his blog.  The high point is, I think, &#8220;Ride Me Donkey&#8221;, which is surprisingly [...]]]></description>
			<content:encoded><![CDATA[<p>Jenny posts on how to have a <a href="http://www.jennymiller.com/" onclick="javascript:urchinTracker ('/outbound/article/www.jennymiller.com');">spicy weekend</a>.  Apparently, it involves rock and roll, dancing, and roller derbies.</p>
<p>Alec &#8212; the man responsible for introducing me to indie rock and mix tapes &#8212; <a href="http://gadny.com/blog/archives/35" onclick="javascript:urchinTracker ('/outbound/article/gadny.com');">posts an animal-related mix</a> over on his blog.  The high point is, I think, &#8220;Ride Me Donkey&#8221;, which is surprisingly innocent, given the title.</p>
]]></content:encoded>
			<wfw:commentRss>http://danathan.jloreview.com/2007/03/22/fun-things-elsewhere/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pyewacket Drinking Water</title>
		<link>http://danathan.jloreview.com/2007/03/17/pyewacket-drinking-water/</link>
		<comments>http://danathan.jloreview.com/2007/03/17/pyewacket-drinking-water/#comments</comments>
		<pubDate>Sat, 17 Mar 2007 23:25:53 +0000</pubDate>
		<dc:creator>check</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://danathan.jloreview.com/2007/03/17/pyewacket-drinking-water/</guid>
		<description><![CDATA[This morning I realized that have everything necessary to create YouTube content (a MacBook with iSight and iMovie), so I decided to make a short clip.  Being fairly lazy about the whole thing, it&#8217;s a clip of my cat drinking water.  Enjoy!
 

]]></description>
			<content:encoded><![CDATA[<p>This morning I realized that have everything necessary to create YouTube content (a MacBook with iSight and iMovie), so I decided to make a short clip.  Being fairly lazy about the whole thing, it&#8217;s a clip of my cat drinking water.  Enjoy!</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/rommjTIK1e8"></param> <embed src="http://www.youtube.com/v/rommjTIK1e8" type="application/x-shockwave-flash" width="425" height="350"></embed></object></p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://danathan.jloreview.com/2007/03/17/pyewacket-drinking-water/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Jerked Seitan Appetizer</title>
		<link>http://danathan.jloreview.com/2007/03/02/jerked-seitan-appetizer/</link>
		<comments>http://danathan.jloreview.com/2007/03/02/jerked-seitan-appetizer/#comments</comments>
		<pubDate>Fri, 02 Mar 2007 12:43:39 +0000</pubDate>
		<dc:creator>check</dc:creator>
		
		<category><![CDATA[Food]]></category>

		<guid isPermaLink="false">http://danathan.jloreview.com/2007/03/02/jerked-seitan-appetizer/</guid>
		<description><![CDATA[In a startling throwback to the half-assed vegetarianism of my early twenties, I made a pretty decent jerked seitan appetizer for an Oscar party Jessica and I hosted last Sunday.  The basic idea was to make small seitan cubes, and serve them with pineapple cubes of a similar size to create a nice spicy [...]]]></description>
			<content:encoded><![CDATA[<p>In a startling throwback to the half-assed vegetarianism of my early twenties, I made a pretty decent jerked seitan appetizer for an <a href="http://www.jennymiller.com/archive26.html" onclick="javascript:urchinTracker ('/outbound/article/www.jennymiller.com');">Oscar party</a> Jessica and I hosted last Sunday.  The basic idea was to make small seitan cubes, and serve them with pineapple cubes of a similar size to create a nice spicy / sweet contrast.  Since it&#8217;s all cube-style, toothpicks can be involved, meaning that the preparation is suitable for cocktail parties where people are standing around and don&#8217;t have easy access to utensils.  And since it&#8217;s seitan, the preparation is suitable for cocktail parties where vegans are standing around and won&#8217;t eat animal products.  (Will I travel great rhetorical distances for the sake of parallel sentence construction?  You bet.)</p>
<p>The first step is to follow the seitan recipe from the <a href="http://www.theppk.com/recipes/dbrecipes/index.php?RecipeID=112" onclick="javascript:urchinTracker ('/outbound/article/www.theppk.com');">post punk kitchen</a>.  They don&#8217;t include any pictures, because if they did, they would look like this:</p>
<p><center><img src="http://danathan.jloreview.com/wp-content/images/seitan.jpg" alt="Seitan Logs" /></center></p>
<p>Go ahead and pretend that that&#8217;s something you want to eat.  It looks more like the end result of a particularly excruciating round of any number of bodily processes than food.  That said, it&#8217;s tasty.</p>
<p>The next step is to squeeze out the liquid and cube your seitan.  You want your seitan deeply jerked, and the drier you get your seitan prior to adding the marinade, the deeper the jerk flavor will penetrate, so don&#8217;t be shy with your squeezing and pressing.</p>
<p>Now add a jerk marinade of some kind (I used the jerk seasoning from <a href="http://penzeys.com/" onclick="javascript:urchinTracker ('/outbound/article/penzeys.com');">Penzey&#8217;s</a>, which definitely saved time) and bag up the result in a nice ziplock.  Let it marinate for a day or so.</p>
<p>Finally, cook it up in a pan over high heat, or, if you can, on the grill or in the broiler.  You want a nice crust on the outside &#8212; which is easier in a regular pan than a non-stick pan &#8212; and you want them to be dry-ish in the middle, or they&#8217;ll get soggy and mushy as they cool.  Plate &#8216;em up with some pineapple cubes of roughly equivalent size, and stick toothpicks in them.  Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://danathan.jloreview.com/2007/03/02/jerked-seitan-appetizer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Giant: Still a Good Buy</title>
		<link>http://danathan.jloreview.com/2007/03/02/giant-still-a-good-buy/</link>
		<comments>http://danathan.jloreview.com/2007/03/02/giant-still-a-good-buy/#comments</comments>
		<pubDate>Fri, 02 Mar 2007 12:04:07 +0000</pubDate>
		<dc:creator>check</dc:creator>
		
		<category><![CDATA[Food]]></category>

		<guid isPermaLink="false">http://danathan.jloreview.com/2007/03/02/giant-still-a-good-buy/</guid>
		<description><![CDATA[While shopping at the Giant this weekend, I noticed a bunch of bruised, green oranges under plastic.  Upon closer inspection, it appears that Giant has has a sense of humor about its nastier products:

]]></description>
			<content:encoded><![CDATA[<p>While shopping at the Giant this weekend, I noticed a bunch of bruised, green oranges under plastic.  Upon closer inspection, it appears that Giant has has a sense of humor about its nastier products:</p>
<p><center><img src="http://danathan.jloreview.com/wp-content/images/giant.jpg" alt="Giant: Not the best, but still a good buy" /></center></p>
]]></content:encoded>
			<wfw:commentRss>http://danathan.jloreview.com/2007/03/02/giant-still-a-good-buy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Happy Valentine&#8217;s Day!</title>
		<link>http://danathan.jloreview.com/2007/02/14/happy-valentines-day/</link>
		<comments>http://danathan.jloreview.com/2007/02/14/happy-valentines-day/#comments</comments>
		<pubDate>Thu, 15 Feb 2007 01:09:14 +0000</pubDate>
		<dc:creator>check</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://danathan.jloreview.com/2007/02/14/happy-valentines-day/</guid>
		<description><![CDATA[Jessica has put together a Valentine&#8217;s Day card for y&#8217;all.  Enjoy!
]]></description>
			<content:encoded><![CDATA[<p><a href="http://jessica.jloreview.com/"target="_blank"  >Jessica</a> has put together a Valentine&#8217;s Day card for y&#8217;all.  <a href="http://www.moanmovie.com/ecard/pv_bsm_final.php?id=24a07bad5e50020033249a0a03f7253a"target="_blank"  onclick="javascript:urchinTracker ('/outbound/article/www.moanmovie.com');">Enjoy!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://danathan.jloreview.com/2007/02/14/happy-valentines-day/feed/</wfw:commentRss>
		</item>
		<item>
		<title>One LA IAF Site</title>
		<link>http://danathan.jloreview.com/2007/02/10/one-la-iaf-site/</link>
		<comments>http://danathan.jloreview.com/2007/02/10/one-la-iaf-site/#comments</comments>
		<pubDate>Sat, 10 Feb 2007 21:17:54 +0000</pubDate>
		<dc:creator>check</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://danathan.jloreview.com/2007/02/10/one-la-iaf-site/</guid>
		<description><![CDATA[Last week I finished up a website for One LA, which is an ]]></description>
			<content:encoded><![CDATA[<p>Last week I finished up a website for <a href="http://onela-iaf.org/" onclick="javascript:urchinTracker ('/outbound/article/onela-iaf.org');">One LA</a>, which is an <a href="http://richardavedon.com/"href=http://industrialareasfoundation.org/">Industrial Areas Foundation</a> affiliate located in and around the City of Angels.  It was a fun site to work on, and it adds to the relatively small set of <a  onclick="javascript:urchinTracker ('/outbound/article/richardavedon.com');">public-facing</a> <a href="http://westtown.edu/" onclick="javascript:urchinTracker ('/outbound/article/westtown.edu');">html</a> <a href="http://bartonlandsman.com" onclick="javascript:urchinTracker ('/outbound/article/bartonlandsman.com');">sites</a> that I&#8217;ve worked on that are still standing.</p>
]]></content:encoded>
			<wfw:commentRss>http://danathan.jloreview.com/2007/02/10/one-la-iaf-site/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Female Chauvinist Pigs Review</title>
		<link>http://danathan.jloreview.com/2006/03/02/female-chauvinist-pigs-review/</link>
		<comments>http://danathan.jloreview.com/2006/03/02/female-chauvinist-pigs-review/#comments</comments>
		<pubDate>Thu, 02 Mar 2006 17:56:16 +0000</pubDate>
		<dc:creator>check</dc:creator>
		
		<category><![CDATA[Culture]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://danathan.jloreview.com/2006/03/02/female-chauvinist-pigs-review/</guid>
		<description><![CDATA[I recently finished reading Female Chauvinist Pigs by Ariel Levy, and I was impressed enough that I wrote a review of it, which I posted on Amazon.com. And now I&#8217;m posting it here:
Female Chauvinist Pigs is really about two things: sexual pleasure and freedom. Specifically, Levy wants to know why &#8220;post-feminist&#8221; freedom and sexuality &#8212; [...]]]></description>
			<content:encoded><![CDATA[<p>I recently finished reading <a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&#038;tag=dancheck-20&#038;camp=1789&#038;creative=9325&#038;path=http%3A%2F%2Fwww.amazon.com%2Fgp%2Fproduct%2F0743249895%2Fsr%3D8-1%2Fqid%3D1141321413%2Fref%3Dpd_bbs_1%3F%255Fencoding%3DUTF8"target="_blank"  onclick="javascript:urchinTracker ('/outbound/article/www.amazon.com');">Female Chauvinist Pigs</a><img width="1" height="1" border="0" style="border: medium none  ! important; margin: 0px ! important" src="http://www.assoc-amazon.com/e/ir?t=dancheck-20&amp;l=ur2&amp;o=1" /> by Ariel Levy, and I was impressed enough that I wrote a review of it, which I posted on Amazon.com. And now I&#8217;m posting it here:</p>
<p>Female Chauvinist Pigs is really about two things: sexual pleasure and freedom. Specifically, Levy wants to know why &#8220;post-feminist&#8221; freedom and sexuality &#8212; epitomized by Girls Gone Wild, Playboy bunnies, and the glorification of porn stars and strippers &#8212; looks so much like its opposite: a pre-feminist world in which women try their damnedess to please their partners (or crowds, or video cameras) without a strong sense of their own sexual desires.<br />
<span id="more-11"></span><br />
There are two different identities that Levy describes: first, that of the &#8220;empowered&#8221; sex object, personified in the idea of the sex worker (porn stars, strippers) as the ultimate women; and second, the woman who is actually one of the guys, personified successful corporate women who, like Judith Reagan, seem to talk about the the size of their penises a lot, while professing a general distrust of women, especially &#8220;girly-girls&#8221;, who are generally referred to as &#8220;pussies&#8221;.</p>
<p>The two identities generally overlap (combining into the &#8220;Female Chauvinist Pig&#8221;), and even people in the first group seem to hate &#8220;girly-girls&#8221;. But people solidly in the former group seem to be drunk, unhappy, and prone to eating disorders, whereas people in the latter group are more likely to be successful and tend not to make out with other women in bars. But a lot of women seem to spend time in both categories, and sometimes you get a Paris Hilton, who perfectly embodies both sides of the coin.</p>
<p>The book really focuses on the peusdo-stripper aspect of the identity, which makes its way down to girls who are younger and younger (think middle school), and older and older (think thirty-something lawyer). The problem with this identity, for Levy, is that strippers and porn stars are inappopriate sexual role models, not because they are too sexual, but because they are paid to pretend that they enjoy something that they wouldn&#8217;t be doing otherwise.</p>
<p>And in interview after interview, Levy finds sexually libertine females of all ages who don&#8217;t seem to enjoy sex at all, in no small part because they don&#8217;t seem to really know what it is that they would want from a partner (other than attention), or what they would want sexually (other than to please someone else). For Levy, it would seem, the ultimate sin is having sex and not enjoying it. And it&#8217;s a sin that has its roots in a culture that teaches women to be sexy and men to be sexual.</p>
<p>Some reviews have said that Levy doesn&#8217;t offer solutions; I don&#8217;t think that that&#8217;s true. Levy brings in a brief history of feminism from the 1950s to the 1980s to argue that freedom (through equality) and honest female pleasure were really what feminists were after, and the breakdown of feminism around issues like pornography and the universality of lesbianism has left modern women less able to understand the idea that women share a fate.</p>
<p>Levy argues over and over that if women, as a whole, are thought of negatively, then the mere fact of being female will continue to be a taint on all females, even those who most solidly identify with masculinity. So the beginnings of a solution are fairly obvious; women should understand that their fates are linked, and people should generally work to destigmatize womanhood.</p>
<p>Barring that, individuals should look at their own sexuality and sexual behavior and ask themselves if they&#8217;re really getting what it is that they want, and if not, they should pursue a different strategy for sexual fulfillment.</p>
<p><a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&#038;tag=dancheck-20&#038;camp=1789&#038;creative=9325&#038;path=http%3A%2F%2Fwww.amazon.com%2Fgp%2Fproduct%2F0743249895%2Fsr%3D8-1%2Fqid%3D1141321413%2Fref%3Dpd_bbs_1%3F%255Fencoding%3DUTF8" onclick="javascript:urchinTracker ('/outbound/article/www.amazon.com');">Female Chauvinist Pigs</a><img width="1" height="1" border="0" style="border: medium none  ! important; margin: 0px ! important" src="http://www.assoc-amazon.com/e/ir?t=dancheck-20&amp;l=ur2&amp;o=1" /> at Amazon.com</p>
]]></content:encoded>
			<wfw:commentRss>http://danathan.jloreview.com/2006/03/02/female-chauvinist-pigs-review/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Moana is America&#8217;s Sweetheart</title>
		<link>http://danathan.jloreview.com/2006/02/27/moana-is-americas-sweetheart/</link>
		<comments>http://danathan.jloreview.com/2006/02/27/moana-is-americas-sweetheart/#comments</comments>
		<pubDate>Tue, 28 Feb 2006 04:17:51 +0000</pubDate>
		<dc:creator>check</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://danathan.jloreview.com/2006/02/27/moana-is-americas-sweetheart/</guid>
		<description><![CDATA[Okay, so I only watched 10 minutes of the Bachelor, but I&#8217;ll tell you this: Moana is &#8220;America&#8217;s Sweetheart&#8221;.  Like that lady in a different Bachelor season whose family member died during the filming, thereby forcing her to cancel a precious date.  I think the Bachelor &#8212; maybe his name was Bob?  [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, so I only watched 10 minutes of the Bachelor, but I&#8217;ll tell you this: Moana is &#8220;America&#8217;s Sweetheart&#8221;.  Like that lady in a different Bachelor season whose family member died during the filming, thereby forcing her to cancel a precious date.  I think the Bachelor &#8212; maybe his name was Bob?  Maybe he&#8217;s &#8220;reality TV famous&#8221;, and married a soap star?  &#8212; felt that going to a family funeral was a sign that she wasn&#8217;t serious about dating him.  It was also kind of a downer, and it took away from his camera time.  That lady &#8212; whose name I can&#8217;t remember &#8212; now she was also &#8220;America&#8217;s Sweetheart&#8221;, but America has a short attention span and is constantly in need of new sweethearts.  And now it&#8217;s Moana&#8217;s turn.</p>
<p class="tags">Tags: <a href="http://technorati.com/tag/bachelor" title="See the Technorati tag page for 'bachelor'." rel="tag" onclick="javascript:urchinTracker ('/outbound/article/technorati.com');">bachelor</a>, <a href="http://technorati.com/tag/moana" title="See the Technorati tag page for 'moana'." rel="tag" onclick="javascript:urchinTracker ('/outbound/article/technorati.com');">moana</a></p>]]></content:encoded>
			<wfw:commentRss>http://danathan.jloreview.com/2006/02/27/moana-is-americas-sweetheart/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

