<?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/" version="2.0">

<channel>
	<title>David Herrera (.org)</title>
	
	<link>http://www.dherrera.org</link>
	<description>Reader, writer, coder</description>
	<lastBuildDate>Wed, 10 Mar 2010 04:13:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/dherrera" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="dherrera" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Randomized home page: One solution to filter failure</title>
		<link>http://www.dherrera.org/pressed/2010/03/09/randomized-home-page-one-solution-to-filter-failure/</link>
		<comments>http://www.dherrera.org/pressed/2010/03/09/randomized-home-page-one-solution-to-filter-failure/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 04:12:56 +0000</pubDate>
		<dc:creator>Dave Herrera</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[al jazeera]]></category>
		<category><![CDATA[bbc]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[filter failure]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[new york times]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[reuters]]></category>

		<guid isPermaLink="false">http://www.dherrera.org/?p=241</guid>
		<description><![CDATA[I use mostly RSS for online updates &#8212; except for day-to-day, &#8220;what&#8217;s happening worldwide&#8221; hard news.
For my RSS reader to present me with 100+ unread stories from the BBC, Al Jazeera, Reuters, and The New York Times, two or three times a day, simply overwhelms. 
I tried, unsuccessfully, to adopt Dave Winer&#8217;s river of news [...]]]></description>
			<content:encoded><![CDATA[<p>I use mostly <a href="http://www.whatisrss.com/">RSS</a> for online updates &#8212; except for day-to-day, &#8220;what&#8217;s happening worldwide&#8221; hard news.</p>
<p>For my RSS reader to present me with 100+ unread stories from the <a href="http://news.bbc.co.uk/low">BBC</a>, <a href="http://english.aljazeera.net/">Al Jazeera</a>, <a href="http://reuters.com/">Reuters</a>, and <a href="http://nytimes.com">The New York Times</a>, two or three times a day, simply overwhelms. </p>
<p>I tried, unsuccessfully, to adopt Dave Winer&#8217;s <a href="http://www.reallysimplesyndication.com/riverOfNews">river of news</a> mentality.  I can&#8217;t shake the pressure to try each story when I see the list of unreads, however irrational a task it is to try.</p>
<p>So, the problem: Wanting the variety of those four sources (and whatever ones I fall into later) without having to confront everything they offer each time I check in. In short, I wanted a better filter.</p>
<p>My solution: A random page home page generator, created using a mix of HTML and Javascript.</p>
<p>Each time I open a new browser window, or click to my home page, I see one of my four sites. The amount of news with which I&#8217;m confronted is decreased by 75% of what it was with the RSS firehose. Yet, I keep source diversity through encountering a different news site every time.</p>
<p>I&#8217;ve unsubscribed from the four news sites in my RSS reader, and I&#8217;m enjoying the results so far. I wanted to share the code so that you could create a similar page if you wanted to. Here are the steps.</p>
<ol>
<li>
<p>Create a new plain text document (Mac users, open TextEdit and, from the Format menu, select &#8220;Make Plain Text.&#8221; Windows users, try Notepad).</p>
</li>
<li>
<p>Paste the following: </p>
<pre><code>&lt;script&gt;
    function homepage () {
        var pages = ['http://news.bbc.co.uk/low',
	'http://english.aljazeera.net/',
	'http://reuters.com/',
	'http://nytimes.com'];
        var page = Math.floor(Math.random()*4);
        window.location = pages[page];
&lt;/script&gt;
&lt;body onload="homepage();"&gt;&lt;/body&gt;
</code></pre>
<p>Unless you&#8217;re interested in the code itself, the only lines you have to worry about are the ones in square brackets, and the one with &#8220;Math.floor.&#8221;</p>
<p>(If you <em>are</em> interested, the code says: When the browser opens this page, run the function called &#8216;homepage.&#8217; &#8216;homepage&#8217;, in turn, chooses a number at random between 0 and 3, then opens the URL associated with that number in the &#8216;pages&#8217; array, where the BBC is 0, Al Jazeera is 1, etc.)</p>
</li>
<li>
<p>In the square brackets, paste the URLs of the sites you want included in your random site generator. Be sure to follow correct syntax: Enclose the URL in quotes, and separate each URL with a comma.</p>
</li>
<li>
<p>In the line below the URLs, change the number in <code>var page = Math.floor(Math.random()*4);</code> to equal the number of URLs you included above. I have four URLs, so my number is &#8220;4&#8243;. Be sure to write the numeral, not &#8220;four.&#8221;</p>
</li>
<li>
<p>Save the file as &#8220;home-page.html&#8221;. Ignore any warnings about saving your file as .html.</p>
</li>
<li>
<p>Place the file wherever you want on your hard drive. Remember where you stored it.</p>
</li>
<li>
<p>This is the tricky step, if you&#8217;re unfamiliar with how your Web browser can also navigate folders on your hard drive. </p>
<p>In your Web browser preferences, set your home page to the file you stored on your hard drive. This is different on different computers; on my Mac, the address is <code>file:///Users/dave/Documents/home-page.html</code>.  Perhaps a Windows user could post where one might find the file if you put it somewhere in your user folder.</p>
</li>
<li>
<p>Open your home page. Hopefully, you&#8217;ll be spirited away to one of your chosen sites.</p>
<p>Alternatively, you could save yourself a few minutes and download my home-page file, which I&#8217;ve posted as a zip file <a href="/home-page.zip">here</a>.</p>
</li>
</ol>
<p>Questions or improvements? What do you think?</p>
<p>Short URL for this post: http://wp.me/pDmIJ-3T</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dherrera.org/pressed/2010/03/09/randomized-home-page-one-solution-to-filter-failure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Washington Post: Speak only when spoken to</title>
		<link>http://www.dherrera.org/pressed/2010/01/28/washington-post-speak-only-when-spoken-to/</link>
		<comments>http://www.dherrera.org/pressed/2010/01/28/washington-post-speak-only-when-spoken-to/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 01:53:12 +0000</pubDate>
		<dc:creator>Dave Herrera</dc:creator>
				<category><![CDATA[Journalism]]></category>
		<category><![CDATA[arrogance]]></category>
		<category><![CDATA[authority]]></category>
		<category><![CDATA[objectivity]]></category>
		<category><![CDATA[reporters]]></category>
		<category><![CDATA[washington post]]></category>

		<guid isPermaLink="false">http://www.dherrera.org/?p=238</guid>
		<description><![CDATA[We discussed some institutional legacies of journalism in one of my classes today, such as the idea that the newspaper or the broadcast anchor holds authority over what&#8217;s important in the world; the idea, as Walter Cronkite might have put it, that mainstream media control &#8220;the way it is.&#8221;
Wouldn&#8217;t you know it? That view reared [...]]]></description>
			<content:encoded><![CDATA[<p>We discussed some institutional legacies of journalism in one of my classes today, such as the idea that the newspaper or the broadcast anchor holds authority over what&#8217;s important in the world; the idea, as Walter Cronkite might have put it, that mainstream media control &#8220;the way it is.&#8221;</p>
<p>Wouldn&#8217;t you know it? That view <a href="http://voices.washingtonpost.com/ombudsman-blog/2010/01/an_inappropriate_blog_item_cau.html">reared its head in the Washington Post</a>:</p>
<blockquote>
<p>“I don’t think it’s appropriate for a reporter in our newsroom to be challenging the views, or challenging the integrity, of our editorial board&#8221;</p>
</blockquote>
<p>speaketh Liz Spayd, the Post&#8217;s managing editor.</p>
<p>A reporter challenging authority? Perish the thought!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dherrera.org/pressed/2010/01/28/washington-post-speak-only-when-spoken-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diversions</title>
		<link>http://www.dherrera.org/pressed/2010/01/20/diversions/</link>
		<comments>http://www.dherrera.org/pressed/2010/01/20/diversions/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 04:20:09 +0000</pubDate>
		<dc:creator>Dave Herrera</dc:creator>
				<category><![CDATA[Journalism]]></category>

		<guid isPermaLink="false">http://www.dherrera.org/?p=234</guid>
		<description><![CDATA[Jan. 22: Added dropped words so the post makes sense.
It&#8217;s a news industry truism that most people read newspapers for the comics and the sports. Assuming it&#8217;s a true truism, and even given that most readers of The New York Times are not comparable to the rest of the country, doesn&#8217;t Michael Roston&#8217;s advice on [...]]]></description>
			<content:encoded><![CDATA[<p class="updates">Jan. 22: Added dropped words so the post makes sense.</p>
<p>It&#8217;s a news industry truism that most people read newspapers for the comics and the sports. Assuming it&#8217;s a true truism, and even given that most readers of The New York Times are not comparable to the rest of the country, doesn&#8217;t Michael Roston&#8217;s advice on <a href="http://trueslant.com/level/2010/01/20/why-the-new-york-times-should-and-shouldnt-charge-for-online/" target="_blank">what the Times should charge for on its Web site</a> make sense? Charge them for the diversions! Wedding listings, maybe crosswords. Hey, it might work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dherrera.org/pressed/2010/01/20/diversions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Supervertical?</title>
		<link>http://www.dherrera.org/pressed/2010/01/20/supervertical/</link>
		<comments>http://www.dherrera.org/pressed/2010/01/20/supervertical/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 14:40:17 +0000</pubDate>
		<dc:creator>Dave Herrera</dc:creator>
				<category><![CDATA[Journalism]]></category>

		<guid isPermaLink="false">http://www.dherrera.org/?p=230</guid>
		<description><![CDATA[From a recent story on paidContent:

PBS has confirmed its plans to create a stand-alone news website in partnership with its local New York affiliate, WNET. &#8230; The company describes the site as a “supervertical” that will allow PBS to aggregate all of its news and public affairs content along with content from other partners.

Can anybody [...]]]></description>
			<content:encoded><![CDATA[<p>From <a href="http://paidcontent.org/article/419-pbs-unveils-plans-for-stand-alone-news-site-need-to-know/">a recent story on paidContent</a>:</p>
<blockquote>
<p>PBS has confirmed its plans to create a stand-alone news website in partnership with its local New York affiliate, WNET. &#8230; The company describes the site as a “supervertical” that will allow PBS to aggregate all of its news and public affairs content along with content from other partners.</p>
</blockquote>
<p>Can anybody explain the &#8220;supervertical&#8221; concept? Please do so in the comments.</p>
<p>All of the possible definitions I know for &#8220;vertical&#8221; lead me, I suspect, in the wrong direction: That the site will aggregate reports from its CEOs down to the janitors, for example, or that its home page will take a very long time to scroll down.</p>
<p>Short URL for this post: http://bit.ly/5wWRPi</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dherrera.org/pressed/2010/01/20/supervertical/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>First Amendment musing</title>
		<link>http://www.dherrera.org/pressed/2010/01/17/first-amendment-musing/</link>
		<comments>http://www.dherrera.org/pressed/2010/01/17/first-amendment-musing/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 06:42:42 +0000</pubDate>
		<dc:creator>Dave Herrera</dc:creator>
				<category><![CDATA[Journalism]]></category>
		<category><![CDATA[Law]]></category>

		<guid isPermaLink="false">http://www.dherrera.org/?p=224</guid>
		<description><![CDATA[I&#8217;ve offered some more two-bit commentary over at Digi-Docket, the blog covering law and technology. My latest post involves a thought experiment about the future of the First Amendment, inspired by Robert A. Arcamona of Protecting the Source. The post is called The big hurt (someday, maybe) coming for journalists.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve offered some more two-bit commentary over at <a href="http://digi-docket.com">Digi-Docket</a>, the blog covering law and technology. My latest post involves a thought experiment about the future of the First Amendment, inspired by Robert A. Arcamona of <a href="http://protectingthesource.blogspot.com/" target="_blank">Protecting the Source</a>. The post is called <a href="http://www.digi-docket.com/2010/01/16/the-big-hurt-someday-maybe-coming-for-journalists/">The big hurt (someday, maybe) coming for journalists</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dherrera.org/pressed/2010/01/17/first-amendment-musing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On argumentation in reporting</title>
		<link>http://www.dherrera.org/pressed/2010/01/15/on-argumentation-in-reporting/</link>
		<comments>http://www.dherrera.org/pressed/2010/01/15/on-argumentation-in-reporting/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 15:57:27 +0000</pubDate>
		<dc:creator>Dave Herrera</dc:creator>
				<category><![CDATA[Government]]></category>
		<category><![CDATA[Journalism]]></category>
		<category><![CDATA[Philosophy]]></category>
		<category><![CDATA[andrew stern]]></category>
		<category><![CDATA[arguing]]></category>
		<category><![CDATA[labor]]></category>
		<category><![CDATA[logic]]></category>
		<category><![CDATA[new york times]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[reporting]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.dherrera.org/?p=209</guid>
		<description><![CDATA[Perhaps I&#8217;m being unfair to journalists, or to writers in general, but I can&#8217;t understand how an article like &#8220;Labor Campaigns Against Tax on Health Plans,&#8221; in The New York Times, could make sense as a piece of writing trying to inform me of something.
Consider (what I think is) the article&#8217;s conclusion:

Having failed to persuade [...]]]></description>
			<content:encoded><![CDATA[<p>Perhaps I&#8217;m being unfair to journalists, or to writers in general, but I can&#8217;t understand how an article like <a href="http://www.nytimes.com/2010/01/13/health/policy/13health.html">&#8220;Labor Campaigns Against Tax on Health Plans,&#8221;</a> in The New York Times, could make sense as a piece of writing trying to inform me of something.</p>
<p>Consider (what I think is) the article&#8217;s conclusion:</p>
<blockquote>
<p>Having failed to persuade President Obama to scrap a proposed tax on high-cost health insurance policies, labor leaders took their case Tuesday to Speaker Nancy Pelosi, and they said they received a more favorable response.</p>
</blockquote>
<p>&#8220;[Labor leaders] said they received a more favorable response [from Pelosi].&#8221; Shouldn&#8217;t this be an extraordinarily easy argument to prove? All I need is a to read a labor leader telling me how they were received by Obama, and how much better their reception from Pelosi was.</p>
<p>But what are we told about the reactions of &#8220;labor leaders&#8221;? Only Andrew Stern saying: “I love the House, and I love the speaker.&#8221; </p>
<p>By what rules of logic and argumentation can we reach the conclusion from Stern&#8217;s statement?</p>
<p>If no such rule exists, <em>why should we believe what the article is arguing</em>? Why couldn&#8217;t the article have simply featured a few quotes?</p>
<p>What upsets me is that the kind of logic on display seems to be common among journalists&#8211;those who describe their role as helping people know about what their government is doing. It frustrates me that what passes for political journalism is appears to be devoid of basic argumentative skill.</p>
<p>But, I can&#8217;t back up with data the feeling that this writing style is common. It is just memory talking. So, I would welcome arguments to the contrary. </p>
<p>Shortened URL for this post: http://bit.ly/78feOZ</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dherrera.org/pressed/2010/01/15/on-argumentation-in-reporting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cyberwar</title>
		<link>http://www.dherrera.org/pressed/2009/12/16/cyberwar/</link>
		<comments>http://www.dherrera.org/pressed/2009/12/16/cyberwar/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 02:11:01 +0000</pubDate>
		<dc:creator>Dave Herrera</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://www.dherrera.org/?p=205</guid>
		<description><![CDATA[My friend Curtis Bunner graciously allows me to contribute to Digi-Docket, a group blog dedicated to discussing ideas related to technology and law. Today, I posted my first Digi-Docket entry, which addresses the underdeveloped laws of war as they relate to cyberwar. If you have time, check it out: Fighting fire with firewalls.
]]></description>
			<content:encoded><![CDATA[<p>My friend <a href="http://blog.curtisbunner.com/">Curtis Bunner</a> graciously allows me to contribute to <a href="http://digi-docket.com">Digi-Docket</a>, a group blog dedicated to discussing ideas related to technology and law. Today, I posted my first Digi-Docket entry, which addresses the underdeveloped laws of war as they relate to cyberwar. If you have time, check it out: <a href="http://www.digi-docket.com/2009/12/16/fighting-fire-with-firewalls/">Fighting fire with firewalls</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dherrera.org/pressed/2009/12/16/cyberwar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Differences between reporting and journalism</title>
		<link>http://www.dherrera.org/pressed/2009/12/14/differences-between-reporting-and-journalism/</link>
		<comments>http://www.dherrera.org/pressed/2009/12/14/differences-between-reporting-and-journalism/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 16:18:19 +0000</pubDate>
		<dc:creator>Dave Herrera</dc:creator>
				<category><![CDATA[Government]]></category>
		<category><![CDATA[Journalism]]></category>
		<category><![CDATA[argument]]></category>
		<category><![CDATA[faa]]></category>
		<category><![CDATA[federal aviation administration]]></category>
		<category><![CDATA[gao]]></category>
		<category><![CDATA[george f snell]]></category>
		<category><![CDATA[government accountability office]]></category>
		<category><![CDATA[logic]]></category>
		<category><![CDATA[plane crash]]></category>
		<category><![CDATA[reporting]]></category>
		<category><![CDATA[taxes]]></category>

		<guid isPermaLink="false">http://www.dherrera.org/?p=197</guid>
		<description><![CDATA[George F. Snell recently argued that &#8220;reporting&#8221; is distinguishable from &#8220;journalism&#8221; in the following way:

Reporting: A 747 aircraft crashed in the middle of the Atlantic Ocean yesterday.
Journalism: A review of maintenance reports of the 747 aircraft that crashed last month revealed that the airplane had a faulty engine parts.  Reports indicate that airline management [...]]]></description>
			<content:encoded><![CDATA[<p>George F. Snell <a href="http://hightalk.net/2009/12/08/reporting-is-now-a-commodity-but-journalism-isnt/" target="_blank" target="_blank">recently argued</a> that &#8220;reporting&#8221; is distinguishable from &#8220;journalism&#8221; in the following way:</p>
<blockquote>
<p><em>Reporting</em>: A 747 aircraft crashed in the middle of the Atlantic Ocean yesterday.</p>
<p><em>Journalism</em>: A review of maintenance reports of the 747 aircraft that crashed last month revealed that the airplane had a faulty engine parts.  Reports indicate that airline management ignored warnings that the parts were malfunctioning.</p>
<p>Journalism is getting beneath the news.  It&#8217;s investigation, analysis and thoughtful commentary.  It&#8217;s in-depth expository reporting.  And people are still willing to pay for good journalism.  That&#8217;s why newspapers and magazines that have placed a premium on providing good journalism have done better &mdash; for the most part &mdash; than those that focused more on reporting (the Wall Street Journal and New York Times come to mind). </p>
</blockquote>
<h2>Whose journalism?</h2>
<p>&#8220;It&#8217;s in-depth expository reporting.&#8221; How can journalism be different from reporting if it&#8217;s a particular form of reporting?</p>
<p>Setting that question aside, is it correct to say that Snell&#8217;s definition makes no assumptions as to <em>who</em> is investigating, analyzing, and commenting? If so, is it true that &#8220;people [I assume he's thinking primarily of Americans] are willing to pay for good journalism&#8221;? Were they ever willing to pay for it?</p>
<p>I present Exhibit A: the federal government. The government happens to have a Federal Aviation Administration, which, <a href="http://www.faa.gov/about/mission/activities/" target="_blank">according to its Mission</a>, &#8220;[issues] and [enforces] regulations and minimum standards covering manufacturing, operating, and maintaining aircraft.&#8221; The FAA issues <a href="http://www.faa.gov/about/plans_reports/" target="_blank">reports</a> on such matters. The <a href="http://www.gao.gov/" target="_blank">Government Accountability Office</a> also issues reports <a href="http://www.gao.gov/products/GAO-10-314T" target="_blank">investigating</a>, <a href="http://www.gao.gov/products/GAO-10-290T" target="_blank">analyzing</a>, and <a href="http://www.gao.gov/products/GAO-10-34" target="_blank">commenting</a> on government activities, reports that news organizations generally find trustworthy <a href="#1">[1]</a>. </p>
<p>Although it&#8217;s incorrect to say that federal agencies are the only groups capable of producing journalism (as Snell points out, the major newspapers and magazines do so as well), were we to support a higher taxation rate, of course, we would also be supporting for the invaluable journalism of the FAA, GAO, and others. But, I think I can just assert that Americans shudder at the word &#8220;taxes.&#8221; Is it then fair to assert that Americans are still willing to pay for good journalism? Or, does the question require additional clarification: Whose journalism? </p>
<h2>Journalism and argument</h2>
<p>Why is the distinction between journalism and reporting important? Is not the quality of a claim &#8212; its evidence and reasoning &#8212; more important than naming the species of the claim? </p>
<p>What if I were to tell you that a plane crashed outside my apartment yesterday. Would you believe me? Not unless you were given additional evidence, such as a quote from an airline official, or images from the scene. So long as a reader uses critical thinking skills, and thereby recognizing that some claims are more difficult to prove than others, shouldn&#8217;t we be discussing which kinds of claims are more important for us to preserve?</p>
<h2>Notes</h2>
<p><a name=1></a>1. Here&#8217;s a <a href="http://www.nytimes.com/2009/12/12/world/americas/12cuba.html" target="_blank">report</a> from The New York Times, which Snell approvingly cites, that uses a GAO report to add background to a story.</p>
<p>Shortened URL for this post: http://bit.ly/8o5Ly9</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dherrera.org/pressed/2009/12/14/differences-between-reporting-and-journalism/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Incoming!</title>
		<link>http://www.dherrera.org/pressed/2009/12/04/incoming/</link>
		<comments>http://www.dherrera.org/pressed/2009/12/04/incoming/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 05:24:00 +0000</pubDate>
		<dc:creator>Dave Herrera</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[War]]></category>
		<category><![CDATA[central intelligence agency]]></category>
		<category><![CDATA[cia]]></category>
		<category><![CDATA[drones]]></category>
		<category><![CDATA[pakistan]]></category>
		<category><![CDATA[taliban]]></category>
		<category><![CDATA[united states]]></category>
		<category><![CDATA[usa]]></category>
		<category><![CDATA[war on terror]]></category>

		<guid isPermaLink="false">http://www.dherrera.org/?p=189</guid>
		<description><![CDATA[The New York Times reports that the CIA plans to increase its use of pilotless drones over Pakistan.
I&#8217;ve found fascinating the ongoing use of these drones. If you&#8217;d like to learn more, I suggest starting with Jane Mayer&#8217;s recent New Yorker article, or Wired for War, by P.W. Singer (who&#8217;s quoted in the CIA and [...]]]></description>
			<content:encoded><![CDATA[<p>The New York Times reports that the CIA <a href="http://www.nytimes.com/2009/12/04/world/asia/04drones.html" target="_blank">plans to increase its use of pilotless drones over Pakistan</a>.</p>
<p>I&#8217;ve found fascinating the ongoing use of these drones. If you&#8217;d like to learn more, I suggest starting with <a href="http://www.newyorker.com/reporting/2009/10/26/091026fa_fact_mayer" target="_blank">Jane Mayer&#8217;s recent New Yorker article</a>, or <a href="http://www.amazon.com/dp/0143116843" target="_blank">Wired for War</a>, by P.W. Singer (who&#8217;s quoted in the CIA and New Yorker articles).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dherrera.org/pressed/2009/12/04/incoming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Journalism: worth philosophy’s time?</title>
		<link>http://www.dherrera.org/pressed/2009/11/26/journalism-worth-philosophys-time/</link>
		<comments>http://www.dherrera.org/pressed/2009/11/26/journalism-worth-philosophys-time/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 04:01:43 +0000</pubDate>
		<dc:creator>Dave Herrera</dc:creator>
				<category><![CDATA[Journalism]]></category>
		<category><![CDATA[Philosophy]]></category>
		<category><![CDATA[brian leiter]]></category>
		<category><![CDATA[carlin romano]]></category>
		<category><![CDATA[critique]]></category>
		<category><![CDATA[leiter report]]></category>
		<category><![CDATA[philosphy]]></category>
		<category><![CDATA[study]]></category>

		<guid isPermaLink="false">http://www.dherrera.org/?p=184</guid>
		<description><![CDATA[Should people study the philosophy of journalism? Take it away, Brian Leiter:

As to why &#8220;philosophy of journalism&#8221; is not a major topic of philosophical study, I would have thought the answer obvious:  it&#8217;s not a central or substantial intellectual or cultural practice, unlike science, art, or law.

John Merrill or Clifford Christians et al. might [...]]]></description>
			<content:encoded><![CDATA[<p>Should people study the philosophy of journalism? <a href="http://leiterreports.typepad.com/blog/2009/11/why-is-brian-leiter-so-mean-to-me-asks-carlin-romano.html">Take it away, Brian Leiter</a>:</p>
<blockquote>
<p>As to why &#8220;philosophy of journalism&#8221; is not a major topic of philosophical study, I would have thought the answer obvious:  it&#8217;s not a central or substantial intellectual or cultural practice, unlike science, art, or law.</p>
</blockquote>
<p><a href="http://www.amazon.com/Imperative-Freedom-John-C-Merrill/dp/0932088449/">John Merrill</a> or <a href="http://www.amazon.com/dp/0195084322">Clifford Christians et al.</a> might disagree. But, I dunno. What do you say, journalists? Can you defend your profession?</p>
<p>Short URL for this post: http://bit.ly/7spY3U</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dherrera.org/pressed/2009/11/26/journalism-worth-philosophys-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
