<?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>Donkey Hottie &#187; Computing</title>
	<atom:link href="http://moacir.com/donkeyhottie/category/computing/feed/" rel="self" type="application/rss+xml" />
	<link>http://moacir.com/donkeyhottie</link>
	<description>Revolution!</description>
	<lastBuildDate>Wed, 25 Apr 2012 17:10:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Sinatra gets all jazzed up with splats</title>
		<link>http://moacir.com/donkeyhottie/2012/04/12/sinatra-gets-all-jazzed-up-with-splats/</link>
		<comments>http://moacir.com/donkeyhottie/2012/04/12/sinatra-gets-all-jazzed-up-with-splats/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 13:14:44 +0000</pubDate>
		<dc:creator>m</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[sinatra]]></category>

		<guid isPermaLink="false">http://moacir.com/donkeyhottie/?p=3217</guid>
		<description><![CDATA[One of the neat things about my personal web site, I think, is how it refuses to dump a bunch of information at you at once. Because there are effectively no graphics on the site, it could very easily serve up pages that are nothing but giant blocks of text, which is something I have [...]]]></description>
			<content:encoded><![CDATA[<p>One of the neat things about <a href="http://moacir.com" target="_blank">my personal web site</a>, I think, is how it refuses to dump a bunch of information at you at once. Because there are effectively no graphics on the site, it could very easily serve up pages that are nothing but giant blocks of text, which is something I have wanted to avoid.</p>
<p>So, as a result, each page appears as a list of topics, with an arrow pointing away from the topic, suggesting &#8220;click here for more information.&#8221; And, sure enough, if you click on the topic, via jQuery&#8217;s <code>toggle()</code>, automagically appears the contents of that topic. The result is that I give the user just as much text as the user wants. If a topic is done, click to hide it. Or click on the following topic to see both at once.</p>
<p>There are two obvious problems with this approach, however, and they have been annoying me since the page went live a few months ago.</p>
<ul>
<li>URLs are fixed. If I want to point someone to, say, my list of publications in the popular press, I have to say &#8220;Go to <code>http://moacir.com/academics</code> and then click on &#8216;Publications&#8217; and then click on…&#8221; It&#8217;s a mouthful. I should be able to just say &#8220;Go to <code>http://moacir.com/academics/blah blah</code>&#8221; and be done with it. That url would give precisely the information I want to give, and it would let the user, then, snoop around the site.</li>
<li>Uses JavaScript. The toggle is neat, but it requires the use of jQuery. If one goes to my site with JavaScript disabled, the pages are useless.</li>
</ul>
<p>So the goal here was to solve both problems. I wanted it to be the case that, if one clicked on a topic, the toggle would fire, but it would also change the url in the location bar, so that the new url could be copy-pasted in an email. And this url should change if a second topic was opened so that it would be possible to see both topics open at once. And if a topic was closed, that section of the url had to be removed. And, then, I wanted a way to do all this (though minus the AJAX, of course) without JavaScript.</p>
<p>Turns out it was not so difficult, but it&#8217;s certainly not the kind of behavior I have seen on the web before, so, below, I explain what is going on. I&#8217;m a dilettante when it comes to coding, so if there are unnecessary redundancies, etc., please let me know. I know that, at the very least, the creation of the <code>showmes</code> array could be done with a <code>def</code> block, but I got a bit lazy.</p>
<p>The only solving these problems is at all possible, it seems, is because my website is not a set of static html files, but, rather, a web application. It&#8217;s built with <a href="http://www.sinatrarb.com/" target="_blank">Sinatra</a>, a decision I made initially just for fun. Yet now, to add this functionality, I&#8217;m glad it&#8217;s a choice I made. If I had static webpages, then I would basically need a different web page for every possible combination of shown topics (or utilize extensive <code>mod_rewrite</code> magic?). For a site like mine, that isn&#8217;t so bad, but even at my scale, it&#8217;s outrageously inefficient. Sinatra, by being an application framework, lets me catch the <code>GET</code> request sent to the server and manipulate it accordingly. The task, hence, can scale, and I just made everything a whole lot easier for myself.</p>
<p>So here&#8217;s the previous setup. Each topic had an id that was some kind of string with <code>subhead</code> at the end, and it was of class <code>trigger</code>. The text of a topic had the same string, but with &#8220;<code>body</code>&#8221; at the end, and the class was <code>toggle</code>. As a result, the original jQuery was stupidly easy. For each element of class <code>trigger</code>, strip <code>subhead</code> off the end of the id, add <code>body</code>, and, when one clicks on that trigger, toggle the toggle-class div with the new id.</p>
<pre class="brush: jscript; title: ; notranslate">$('.trigger').click(function() {
	var togglediv = $(this).attr('id').replace('subhead', 'body');
	  $('#'+togglediv).toggle();
});</pre>
<p>Ridiculously easy. No logic needed, no nothing.</p>
<p>So the first step is to change this code to add to or subtract from the url in the location bar based on whether the topic is being shown or hidden. That is, check if a thing is not visible. If it is not visible, add the name to the url and make it visible. If it <i>is</i> visible, hide it and delete its name from the url.</p>
<pre class="brush: jscript; title: ; notranslate">$('.trigger').click(function() {
	var stateobj = { foo: &quot;bar&quot; }; // Just some data for replaceState…
	var pathname = location.pathname; // the current url after 'moacir.com'
	var togglename = $(this).attr('id').replace('subhead', '');
	var togglediv = togglename + 'body';
	var togglepatt = new RegExp(togglename);
	var trailslash = new RegExp(/\/$/);
	if (!$('#'+togglediv).is(':visible')){
		// is the toggle not visible?
		// if yes, make the url without double slashes:
		if (trailslash.test(pathname)){
			history.replaceState(stateobj, togglename, pathname + togglename);
		}else{
			history.replaceState(stateobj, togglename, pathname + '/' + togglename);
		}
		$('#'+togglediv).show(); // and now we use show() instead of toggle()
	}else{
		// so the toggle is visible. Hide it and delete it from the URL
		pathname = pathname.replace(togglepatt, ''); // erase it!
		pathname = pathname.replace('//', '/'); // and the double slashes!
		history.replaceState(stateobj, '-' + togglename, pathname);
		$('#'+togglediv).hide(); // use hide() instead of toggle()
	}
});</pre>
<p>Note that I use the <a href="https://developer.mozilla.org/en/DOM/Manipulating_the_browser_history#The_replaceState%28%29.C2.A0method" target="_blank"><code>history.replaceState()</code> method</a>. This is so that I can manipulate the location bar without making new <code>GET</code> requests. This is great for creating bookmarkable urls in an AJAXy environment. Because I use <code>history.replaceState()</code> and not <code>history.pushState()</code>, all this clicking around does not change anything if the user clicks on the back button. They will be sent to the previously <code>GET</code>ted page.</p>
<p>That&#8217;s all the JavaScript necessary, which is great, since I hate using JavaScript. The rest of the work is done in Sinatra.</p>
<p>Once we&#8217;ve got this long url with all the shown topics added to it, if we paste the url into a new window, it will break, since the application does not know how to route it. In Sinatra, we&#8217;ll handle this by turning everything after the original url into a splat. For now, I&#8217;ll be working specifically on <a href="http://moacir.com/about/" target="_blank"><code>http://moacir.com/about/</code></a>.</p>
<p>The basic route, then, tells Sinatra that we are expecting a splat after <code>/about/</code> and that the delimiter will be a slash. The splat then becomes an array, called <code>topics</code>. Next we have a hand built array, called <code>subheads</code>, that corresponds to every possible <code>togglename</code> variable from the JavaScript above. Each main route (<code>/about/</code> and <code>/academics/</code>, for now) will have a different value for this array. The third object will be a hash called <code>showmes</code>. The key in showmes will be one of the <code>subheads</code>, and the value will be either blank or <code>style='display: block;'</code>, depending on whether that certain <code>subhead</code>&#8216;s body should be shown or not.</p>
<pre class="brush: ruby; title: ; notranslate">get '/about/*' do
	topics = params[:splat].first.split(&quot;/&quot;)
	subheads = [&quot;bio&quot;, &quot;name&quot;]
	showmes = Hash.new
	for subhead in subheads
		if topics.index(subhead)
			showmes[subhead] = &quot;style='display: block;'&quot;
		else
			showmes[subhead] = &quot;&quot;
		end
	end
	erb :about, :locals =&gt; {:showmes =&gt; showmes}
end</pre>
<p>The penultimate line tells Sinatra to load the <code>about.erb</code> view and to send <code>showmes</code> to it. Now, in that view, I have lines like this:</p>
<pre class="brush: xml; title: ; notranslate">&lt;h2 id=&quot;biosubhead&quot; class=&quot;trigger&quot;&gt;Bio →&lt;/h2&gt;
&lt;div id=&quot;biobody&quot; class=&quot;toggle&quot; &lt;%= showmes[&quot;bio&quot;] %&gt;&gt;</pre>
<p>and</p>
<pre class="brush: xml; title: ; notranslate">&lt;h2 id=&quot;namesubhead&quot; class=&quot;trigger&quot;&gt;Name →&lt;/h2&gt;
&lt;div id=&quot;namebody&quot; class=&quot;toggle&quot; &lt;%= showmes[&quot;name&quot;] %&gt;&gt;</pre>
<p>It&#8217;s a bit clumsy, but it <em>freaking works</em>. Since the CSS loaded style for <code>toggle</code> class divs is <code>display: none</code>, I can pass a blank value for a key in <code>showmes</code>, and that means that div will be hidden.</p>
<p>Of course, now that the routing works as expected, this means that I can now add backwards compatibility for browsers which do not support JavaScript. In the original code, there are no anchor tags. The JavaScript toggles based on whether the topic object is of the <code>trigger</code> class. So, the first thing to do is add anchor tags to the topics. But I want to be able to send different anchors depending on whether the topic is to be shown or hidden. That is, if clicking on the subhead should make the topic appear, it will look like this:</p>
<pre class="brush: xml; title: ; notranslate">&lt;a href='bio/'&gt;&lt;h2 id=&quot;biosubhead&quot; class=&quot;trigger&quot;&gt;Bio →&lt;/h2&gt;&lt;/a&gt;</pre>
<p>But if the topic is to disappear, it will look like this:</p>
<pre class="brush: xml; title: ; notranslate">&lt;a href='-bio/'&gt;&lt;h2 id=&quot;biosubhead&quot; class=&quot;trigger&quot;&gt;Bio →&lt;/h2&gt;&lt;/a&gt;</pre>
<p>So let&#8217;s add a second hash in addition to <code>showmes</code>, now called <code>anchors</code>. This hash behaves more or less exactly like <code>showmes</code> does, and we add lines like this in the <code>about.erb</code>:</p>
<pre class="brush: xml; title: ; notranslate">&lt;a href='&lt;%= anchors[&quot;bio&quot;]%&gt;'&gt;&lt;h2 id=&quot;biosubhead&quot; class=&quot;trigger&quot;&gt;Bio →&lt;/h2&gt;&lt;/a&gt;</pre>
<p>Now we need to trick out the Sinatra code to strip out any parts of urls that include minus signs. So it would turn <code>http://moacir.com/about/bio/name/-bio/</code> into just <code>http://moacir.com/about/name/</code>. This requires a little bit of clumsy string manipulation, since I have to match the part that includes the minus sign (<code>-bio</code>), strip it, then strip its positive cousin (<code>bio</code>), and then strip all double slashes, as usual.</p>
<p>The whole route reads:</p>
<pre class="brush: ruby; title: ; notranslate">get '/about/*' do
	if /-/.match(params[:splat].first)
		path = params[:splat].first
		/-[a-z]*/ =~ path
		parttohide = Regexp.last_match(0).gsub(/-/, '')
		path = path.gsub(/-([a-z]*)\//i, '')
		path = path.gsub(parttohide, '')
		path = path.gsub(/^/, '/about/')
		path = path.gsub('//', '/')
		redirect path
	else # as before, but note the addition of the anchors hash
		topics = params[:splat].first.split(&quot;/&quot;)
		subheads = [&quot;bio&quot;, &quot;name&quot;]
		showmes = Hash.new
		anchors = Hash.new
		for subhead in subheads
			if topics.index(subhead)
				showmes[subhead] = &quot;style='display: block;'&quot;
				anchors[subhead] = &quot;-#{subhead}/&quot;
			else
				showmes[subhead] = &quot;&quot;
				anchors[subhead] = &quot;#{subhead}/&quot;
			end
		end
		erb :about, :locals =&gt; {:showmes =&gt; showmes, :anchors =&gt; anchors}
	end
end</pre>
<p>Everything looks nice, except for one problem: the Academics page has nested topics! If I request <code>http://moacir.com/academics/presentations/</code>, then it is as good as getting the regular page, since <code>presentations</code> is nested within <code>publishing</code>. Similarly, if I click all those subtopics open and then close the publishing topic, they remain part of the url. Unfortunately, the only way I can think of dealing with this is with more string manipulation that is now hyper-specified.</p>
<p>These two <code>if</code> blocks seem to cover the two situations: ensuring that <code>publishing</code> is in the url if a subtopic is and obliterating all the subtopics if <code>publishing</code> is being closed. The latter can go inside the general <code>/-/.match</code>. For the former, I need an extra twist to the regexp so that while looking for <code>publishing</code> it does not get a false positive from <code>selfpublishing</code>.</p>
<pre class="brush: ruby; title: ; notranslate">get '/academics/*' do
	# Add this if block
	if /(poparticles|presentations|selfpublishing|cartography)/.match(params[:splat].first)
		redirect params[:splat].first.gsub(/^/, '/academics/publishing/') unless /(\/publishing|^publishing)/.match(params[:splat].first)
	end
	if /-/.match(params[:splat].first)
		path = params[:splat].first
		# Add this if block, too
		if /-publishing/.match(path)
			path = path.gsub(/(poparticles|presentations|selfpublishing|cartography)\//, '')
		end
		/-[a-z]*/ =~ path
# etc…</pre>
<p>Almost done…</p>
<p>So it worked with JavaScript, and now it works without. But if I turn JavaScript back on, I lose the AJAXyness that was the point of all of this in the first place. I need to do two things here. First, I name the id and class in the <code>&lt;a&gt;</code> tag instead of in the <code>&lt;h2&gt;</code> tag as before. So what was:</p>
<pre class="brush: xml; title: ; notranslate">&lt;a href='&lt;%= anchors[&quot;bio&quot;]%&gt;'&gt;&lt;h2 id=&quot;biosubhead&quot; class=&quot;trigger&quot;&gt;Bio →&lt;/h2&gt;&lt;/a&gt;</pre>
<p>is now</p>
<pre class="brush: xml; title: ; notranslate">&lt;a href='&lt;%= anchors[&quot;bio&quot;]%&gt;' id=&quot;biosubhead&quot; class=&quot;trigger&quot;&gt;&lt;h2&gt;Bio →&lt;/h2&gt;&lt;/a&gt;</pre>
<p>Then, in the JavaScript, I add a line that strips the <code>href</code> attribute from all <code>trigger</code> class anchors:</p>
<pre class="brush: jscript; title: ; notranslate">$('.trigger').removeAttr('href');</pre>
<p>While I&#8217;ve got the JavaScript open, I&#8217;ll quickly add some logic to the <code>$('.trigger').click()</code> expression that obliterates the subtopics inside <code>publishing</code>:</p>
<pre class="brush: jscript; title: ; notranslate">	}else{ // so the toggle is visible. Hide it and delete it from the URL
		pathname = pathname.replace(togglepatt, ''); // erase it!
		// Add this if() clause
		if (togglename == 'publishing'){ // get rid of specific subtopics, too
			subtopics = [&quot;poparticles&quot;, &quot;presentations&quot;, &quot;selfpublishing&quot;, &quot;cartography&quot;]
			for (x in subtopics){
				pathname = pathname.replace('/' + subtopics[x], '');
				$('#'+subtopics[x]+'body').hide();
			}
		}
// etc.…</pre>
<p>Finally, I prefer urls without trailing slashes. I think <code>http://moacir.com/academics</code> is more handsome than <code>http://moacir.com/academics/</code>. So I&#8217;ll add a general route without the trailing slash. that assumes that everything is hidden. Notice the subtle addition of <code>about/</code> to the <code>anchors</code> values. This is necessary to maintain the structure when JavaScript is disabled.</p>
<pre class="brush: ruby; title: ; notranslate">get '/about' do
	subheads = [&quot;bio&quot;, &quot;name&quot;]
	showmes = Hash.new
	anchors = Hash.new
	for subhead in subheads
		showmes[subhead] = &quot;&quot;
		anchors[subhead] = &quot;about/#{subhead}/&quot;
	end
	erb :about, :locals =&gt; {:showmes =&gt; showmes, :anchors =&gt; anchors}
end</pre>
<p>And, finally, (for real this time) I add some logic to the previous route at the top to redirect if the url ends in a slash at the root level.</p>
<pre class="brush: ruby; title: ; notranslate">get '/about/*' do
	# Add this if block
	if params[:splat].first.empty?
		redirect '/about'
	end
# etc.…</pre>
<p>And that&#8217;s about all I need to do! Nothing all that tricky, and it gave yet another opportunity to do some serious problem solving while learning just a bit more about Ruby, Sinatra, and jQuery.</p>
<p>Of course, none of this probably works on IE. Life is tough.</p>
]]></content:encoded>
			<wfw:commentRss>http://moacir.com/donkeyhottie/2012/04/12/sinatra-gets-all-jazzed-up-with-splats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do bot characters from Ulysses dream of electric Blazes Boylans?</title>
		<link>http://moacir.com/donkeyhottie/2012/01/08/do-bot-characters-from-ulysses-dream-of-electric-blazes-boylans/</link>
		<comments>http://moacir.com/donkeyhottie/2012/01/08/do-bot-characters-from-ulysses-dream-of-electric-blazes-boylans/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 01:52:25 +0000</pubDate>
		<dc:creator>m</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[humanities computing]]></category>
		<category><![CDATA[James Joyce]]></category>
		<category><![CDATA[Molly Bloom]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[ulysses]]></category>

		<guid isPermaLink="false">http://moacir.com/donkeyhottie/?p=3115</guid>
		<description><![CDATA[Twitter blew up over the new year because, apparently, among other texts, Ulysses finally made it into the public domain in the EU. And there&#8217;s a copy of it on Project Gutenberg. Despite what I saw that some were saying, I have been using that electronic version of the novel for a while now to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://moacir.com/donkeyhottie/wp-content/uploads/2012/01/Screen-Shot-2012-01-08-at-00.31.32.png"><img class="alignright size-full wp-image-3116" title="Screen Shot 2012-01-08 at 00.31.32" src="http://moacir.com/donkeyhottie/wp-content/uploads/2012/01/Screen-Shot-2012-01-08-at-00.31.32.png" alt="" width="367" height="250" /></a>Twitter blew up over the new year because, apparently, among other texts, <em>Ulysses</em> finally made it into the public domain in the EU. And <a href="http://www.gutenberg.org/files/4300/4300-8.txt">there&#8217;s a copy of it on Project Gutenberg</a>. Despite what I saw that <a href="https://twitter.com/#!/shaviro/status/153604652464746497">some were saying</a>, I have been using that electronic version of the novel for a while now to power my absolutely useless “<a href="http://moacir.com/donkeyhottie/showsomeulysseslines.php">25 random lines from <em>Ulysses</em></a>” page that I describe <a href="http://www.1984produkts.com/donkeyhottie/archives/2009/02/01/how-to-write-25-randomer-things-on-facebook/">here</a>.</p>
<p>What really matters, though, is that I couldn&#8217;t sleep last night from too much Diet Coke, and I was too out of it to do regular, real work. So I dreamt up this idea of having a Molly Bloom twitter bot randomly tweeting lines from the final episode of the novel. The pieces fit together in my head while staring at the ceiling in bed, and I spent much of today writing it.</p>
<p>So now I can unveil <a href="http://twitter.com/mollybloombot">@MollyBloombot</a>. If you @ the bot (I cannot quite call it &#8220;her,&#8221; because I created it, and my vestigial essentialism is uncomfortable about the trope of males creating female avatars online and in modernist novels) and say &#8220;random,&#8221; you will get a random stream of text. If you say &#8220;word&#8221; followed by some kind of word, the bot will tweet you back a line featuring that word. If the word is not in the text, the bot will try to guess a similar word based on the <a href="http://en.wikipedia.org/wiki/Metaphone">Metaphone algorithm</a>. If it fails, the bot will get dreamily flustered. The same happens if you just @ it all kinds of jibberish.</p>
<p>If you @ it &#8220;info,&#8221; it will tell you about this post. If you @ it &#8220;help,&#8221; it will tell you what I just wrote.</p>
<p>If you follow the bot, it will (eventually) follow you back. Following it might be fun, since it .@s its string responses, meaning you can see what kinds of things people are asking it to tweet about as well as seeing what kinds of random tweets get generated.</p>
<p>If you ask it about a word that it finds, it&#8217;ll send a second tweet, not .@&#8217;ed, just to you describing a little about the instance of the word you chose.</p>
<p>Finally, it&#8217;s a bit poky, but, really, what else could you expect?</p>
<p>The bot is written in ruby and interacts with Twitter via <a href="https://github.com/muffinista/chatterbot">chatterbot</a>. The Metaphone algorithm comes from the <a href="https://github.com/threedaymonk/text">text</a> gem.</p>
]]></content:encoded>
			<wfw:commentRss>http://moacir.com/donkeyhottie/2012/01/08/do-bot-characters-from-ulysses-dream-of-electric-blazes-boylans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google and publishers vs. free stuff from the Feds</title>
		<link>http://moacir.com/donkeyhottie/2011/05/05/google-and-publishers-vs-free-stuff-from-the-feds/</link>
		<comments>http://moacir.com/donkeyhottie/2011/05/05/google-and-publishers-vs-free-stuff-from-the-feds/#comments</comments>
		<pubDate>Thu, 05 May 2011 16:35:55 +0000</pubDate>
		<dc:creator>m</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Snobbery]]></category>
		<category><![CDATA[articles]]></category>
		<category><![CDATA[free stuff]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.1984produkts.com/donkeyhottie/?p=2582</guid>
		<description><![CDATA[Why is it that when I search for a specific article on Google Scholar, all of the first hits lead me to pay repositories, despite the fact that the journal, published by the U.S. government, is free for all?]]></description>
			<content:encoded><![CDATA[<p>A quick note, which did not really fit inside a single tweet, <a href="http://twitter.com/#!/muziejus/status/66068745692516352" target="_blank">though</a> <a href="http://twitter.com/#!/muziejus/status/66069921980874752" target="_blank">I</a> <a href="http://twitter.com/#!/muziejus/status/66070237203804160" target="_blank">tried</a>. I&#8217;m writing my chapter on <em>For Whom the Bell Tolls</em>, and I wanted to know a bit more about <a href="http://en.wikipedia.org/wiki/John_S._Mosby" target="_blank">John Mosby</a> than I already did, so figured I would ask Google Scholar if anything recent has been written about him.<sup><a href="http://moacir.com/donkeyhottie/2011/05/05/google-and-publishers-vs-free-stuff-from-the-feds/#footnote_0_2582" id="identifier_0_2582" class="footnote-link footnote-identifier-link" title="Despite the fact that I&amp;#8217;m pretty sure I don&amp;#8217;t like For Whom the Bell Tolls or consider it particularly good, I could probably write a book about how crazy it is in important and interesting ways without repeating any of the work in Blowing the Bridge.">1</a></sup> Turns out there is an article from 1994 by Maj. William E. Boyle, Jr. about Mosby&#8217;s (retaliatory) execution of a handful of captured Union prisoners during the Civil War. Boyle&#8217;s question is whether that act, or the act to which it was a response, could be considered a war crime at the time. Now, they would certainly be considered war crimes, unless &lt;insert comment about US policy&gt;.</p>
<div id="attachment_2583" class="wp-caption alignright" style="width: 310px"><a href="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2011/05/Screen-shot-2011-05-05-at-17.48.08.png"><img class="size-medium wp-image-2583" title="Screen shot 2011-05-05 at 17.48.08" src="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2011/05/Screen-shot-2011-05-05-at-17.48.08-300x119.png" alt="" width="300" height="119" /></a><p class="wp-caption-text">Google Scholar search. (click to enlarge)</p></div>
<p>Now if I search for the article on Google Scholar, using the search term  &#8220;&#8216;Under the Black Flag&#8217; Mosby,&#8221; the top hit is to the article in  question, appearing in <em>Military Law Review</em> in 1994. And if you click on the link, it takes you to HeinOnline, a web journal gatekeeper with which I was previously unfamiliar. It asked $30 for the privilege of browsing the site for the day.</p>
<p>So I did what I normally do in this case: try again, this time through my university&#8217;s proxy. Nothing changed, and the article remained elusive. But when I tried my Plan B, which is looking up the journal through the university&#8217;s library catalogue to see where they consider the electronic archive of the journal to be, I was forwarded to the Library of Congress, which offered not only the issue in question but <a href="http://www.loc.gov/rr/frd/Military_Law/Military-Law-Review-home.html" target="_blank">an entire back catalog of <em>Military Law Review</em> for <em>free</em></a>, for everyone. No proxies, no nothing.</p>
<p>What gives? Google Scholar only links to the pay version of an article that is free from the US government?</p>
<p>Ah, but then look: there&#8217;s that link to &#8220;all 4 versions&#8221; of the article in the Google Scholar database. These versions include the HeinOnline one already mentioned, a citation of some sort, and two links that take you to LexisNexis, another for-pay gatekeeper. <em>There is no link on Google Scholar for the free version of the article</em>.<sup><a href="http://moacir.com/donkeyhottie/2011/05/05/google-and-publishers-vs-free-stuff-from-the-feds/#footnote_1_2582" id="identifier_1_2582" class="footnote-link footnote-identifier-link" title="A regular Google search yields the free version at the bottom of the first page of hits, after the links to HeinOnline and LexisNexis.">2</a></sup> At least not that I can see. And if you search just on &#8220;military law review,&#8221; the first free pdf&#8211;offered by the military, not the LoC&#8211;comes only on the third page of hits. You have to click to the <em>fifth</em> page before the loc.gov pdfs start showing up in the Google Scholar search results.</p>
<p>I know publishers are pleading poverty left and right, but something about this situation stinks and stinks badly. If there&#8217;s a gateway to the free version of this article via HeinOnline, I was certainly unable to find it. The same is true via LexisNexis.</p>
<p>So fair warning: always, always, always exercise a little legwork before considering parting with $30 for an article whose value is uncertain from reading just the first page. And Google Scholar is certainly not providing the most useful results.</p>
<p>(I guess part of the issue here could be that the <em>Military Law Review</em> at the LoC does not seem to be indexed by articles, just by issues. Perhaps that is why the Google robots do not find them. Still, boo to paying for free things!)</p>
<ol class="footnotes"><li id="footnote_0_2582" class="footnote">Despite the fact that I&#8217;m pretty sure I don&#8217;t like <em>For Whom the Bell Tolls</em> or consider it particularly good, I could probably write a book about how crazy it is in important and interesting ways without repeating any of the work in <a href="http://www.amazon.com/Blowing-Bridge-Hemingway-Contributions-American/dp/0313284512" target="_blank"><em>Blowing the Bridge</em></a>.</li><li id="footnote_1_2582" class="footnote">A regular Google search yields the free version at the bottom of the first page of hits, after the links to HeinOnline and LexisNexis.</li></ol>]]></content:encoded>
			<wfw:commentRss>http://moacir.com/donkeyhottie/2011/05/05/google-and-publishers-vs-free-stuff-from-the-feds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On comparing Paris and Chicago public transit</title>
		<link>http://moacir.com/donkeyhottie/2011/04/29/on-comparing-paris-and-chicago-public-transit/</link>
		<comments>http://moacir.com/donkeyhottie/2011/04/29/on-comparing-paris-and-chicago-public-transit/#comments</comments>
		<pubDate>Fri, 29 Apr 2011 14:56:21 +0000</pubDate>
		<dc:creator>m</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[The Real]]></category>
		<category><![CDATA[France]]></category>
		<category><![CDATA[geography]]></category>
		<category><![CDATA[Métro]]></category>
		<category><![CDATA[Paris]]></category>
		<category><![CDATA[Public trans snob]]></category>
		<category><![CDATA[Public Transportation]]></category>
		<category><![CDATA[velib]]></category>

		<guid isPermaLink="false">http://www.1984produkts.com/donkeyhottie/?p=2572</guid>
		<description><![CDATA[After my maps of public transportation distribution in Chicago and Paris got a bit of publicity, people started asking for more. Here, I try to consider issues of population density as well as the role of buses.]]></description>
			<content:encoded><![CDATA[<p>Whet <a href="http://www.chicagomag.com/Chicago-Magazine/The-312/April-2011/How-Close-Do-You-Live-and-Work-to-the-Chicago-El/" target="_blank">wrote up my maps on his blog</a>, and now they&#8217;re getting a bit of attention. One thing I was asked by a friend was what percentage of the area of Chicago and Paris is within 700m of an El/Métro stop. Using clips in the software, I was able to find out that about 33% (199 of 598 km2) in Chicago fits that bill, while about 83% of Paris (88 of 105km2) fit the bill. I announced my results.</p>
<p>Immediately, <a href="http://twitter.com/#!/rmisra/statuses/63746778494799872" target="_blank">out came the haters</a>. But Ravi&#8217;s two points are worth addressing: population density counts for something, as does bus access, right? Fine. But, most markedly, I&#8217;m explicitly not asking about transportation access as a whole. To do that would then also involve bringing in questions of commuting and the like&#8211;and I only coded Parisian (and near Parisian) Métro stops, not the system as a whole, and I only measured my Chicago maps for Chicago, not Chicagoland. It goes on. My question was simple: no matter where I am in Paris, what&#8217;s the furthest I am from a Métro station? The answer is about 700m. What would that same number look like in Chicago? This then explains why in Chicago I seldom feel close to an El stop, whereas in Paris, the Métro is unavoidable. So I was explicitly not asking the questions Ravi asked. And I&#8217;d argue that I didn&#8217;t ask them since they don&#8217;t change the answer.</p>
<p>So let&#8217;s tackle population density: First, in my area calculations of Paris, I included the two <em>huge</em> forests. “No one” lives there. If you take the forests out, then basically all of Paris is within 700m of a Métro station. That was the point of the initial exercise, and that&#8217;s why I&#8217;m hung up on this dumb number of 700m. So there you are: about 2.2 million of a <a href="http://www.paris.fr/politiques/paris-d-hier-a-aujourd-hui/demographie/plus-de-2-millions-de-parisiens/rub_5427_stand_16185_port_11661" target="_blank">possible 2.2 million Parisians</a> live within 700m of a Métro station. The number of Chicagoans is, clearly, different. Some percentage of the possible 2.6 million Chicagoans live within 700m of an El stop. I&#8217;m going to guess that it&#8217;s not 100%. I&#8217;m going to guess it&#8217;s not even 84%, which would yield 2.2 million Chicagoans, making the number equivalent to Parisians. Whatever the number is, it&#8217;s much, much lower, as is evident from any acquaintance with Chicago. So even if I cut out O’Hare, the Stockyards, the Port, Beverly, whatever, it&#8217;s still simply not the case that everyone lives in the teeny little disks on the Chicago map. My <em>point</em>, however, is that everyone <em>does</em> live in the teeny disks in Paris. In that case, this is all self-evident: Paris is denser than Chicago in terms of population <em>and</em> train station coverage. Cheers.</p>
<p>As for the bus question, I&#8217;m not a crook explaining Chicago&#8217;s terrible transportation coverage in order to sell you a monorail. I&#8217;m making a comparison between like modes of transit. As I <a href="http://twitter.com/#!/muziejus/status/63764016375402496" target="_blank">responded</a>, in Chicago the bus system is obviously there, in part, to cover up massive holes in El coverage (as well as provide redundancy). As in, it&#8217;s evident that the bus goes to places that the trains just don&#8217;t. But saying that &#8220;Chicago ain&#8217;t that bad. We got buses, too!&#8221; is not the answer here, since even if El + bus + Metra provides public transit within 700m of everyone in the city, Paris manages a similar level of coverage <em>with just a subway system</em>.<sup><a href="http://moacir.com/donkeyhottie/2011/04/29/on-comparing-paris-and-chicago-public-transit/#footnote_0_2572" id="identifier_0_2572" class="footnote-link footnote-identifier-link" title="I think it is probably the case in Chicago that one is rather close to a bus at all times, considering that Chicago buses tend to run on the grid at half-mile increments. That means that you can expect to be .25mi (or 400m) from a bus at all times.">1</a></sup> If you add in the buses &amp; trams, then public transportation becomes ubiquitous in Paris. Taking note, then, of the density of the bus system within the city, which runs not redundantly with the Métro, it&#8217;s possible that we start hitting numbers like 250m when it comes to the question of &#8220;how close is public transportation at all times?&#8221;</p>
<div id="attachment_2573" class="wp-caption alignright" style="width: 310px"><a href="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2011/04/Screen-shot-2011-04-29-at-11.17.03.png"><img class="size-medium wp-image-2573" title="Screen shot 2011-04-29 at 11.17.03" src="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2011/04/Screen-shot-2011-04-29-at-11.17.03-300x264.png" alt="" width="300" height="264" /></a><p class="wp-caption-text">Five Parisian commutes. (click to enlarge)</p></div>
<p>Which brings me back to what spurred this little investigation: the anecdotal feeling that public transportation has a profile in Paris that it simply does not have in Chicago. I don&#8217;t think there exists a &#8220;what about…?&#8221; that makes my anecdotal suspicion turn out to be wrong. It&#8217;s just a question of how right it is.</p>
<p>Also, I can only get population data at the Arrondissement level for Paris, which is probably not terribly interesting.</p>
<p>Finally, for fun, I close with this quick little Google Map I made of the five possible commutes I can take between home and work. The shortest distance, in blue, is the walk. It is about 4.35km and takes me about 50 minutes. I could also take the 62 bus along most of the same route. It would shave time off the total, but I don&#8217;t know how much; I don&#8217;t time myself when I take it. The next shortest is the bike ride, which is in green and 4.55km in length. It takes less than 20 minutes. The more commonly taken bus solution for me is the T3 tram with a transfer at Porte d’Ivry to the PC2 bus. It&#8217;s aqua on the map. It takes less than 40 minutes and runs 4.96km.</p>
<p>Next are the two Métro solutions: in pink is taking the M4 from Porte d’Orléans to Saint-Michel and switching to the RER C to go to Bibliothèque Nationale. It takes over a half hour and runs 9.95km. I can&#8217;t believe that there was a time when this was my daily commute. Finally, in purple, is the University&#8217;s recommended commute, which involves taking the RER B from Cité Universitaire to Châtelet and swtiching to the M14 to Bibliothèque Nationale. It also takes over a half hour and runs 10.35km. Anyone who knows me well knows what kind of existential pain these last two commute options bring, but they do serve to make my ancillary point about the Parisian bus system: it&#8217;s there to cover up holes in the Métro system, which already doesn&#8217;t have much in the way of holes. But, yes, getting from the southern edge of the city to the southeastern edge can be tricky if you don&#8217;t have recourse to the bus or tram.</p>
<ol class="footnotes"><li id="footnote_0_2572" class="footnote">I think it is probably the case in Chicago that one is rather close to a bus at all times, considering that Chicago buses tend to run on the grid at half-mile increments. That means that you can expect to be .25mi (or 400m) from a bus at all times.</li></ol>]]></content:encoded>
			<wfw:commentRss>http://moacir.com/donkeyhottie/2011/04/29/on-comparing-paris-and-chicago-public-transit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>And now, Vélib’ coverage</title>
		<link>http://moacir.com/donkeyhottie/2011/04/26/velib%e2%80%99-coverage/</link>
		<comments>http://moacir.com/donkeyhottie/2011/04/26/velib%e2%80%99-coverage/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 17:12:15 +0000</pubDate>
		<dc:creator>m</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[The Real]]></category>
		<category><![CDATA[France]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[Paris]]></category>
		<category><![CDATA[Public trans snob]]></category>
		<category><![CDATA[Public Transportation]]></category>
		<category><![CDATA[qGIS]]></category>
		<category><![CDATA[velib]]></category>

		<guid isPermaLink="false">http://www.1984produkts.com/donkeyhottie/?p=2561</guid>
		<description><![CDATA[When I made my Paris Métro map, the joke was that the next step would be the leap in order of magnitude between subway stations and Vélib’ stations. For those who don&#8217;t know what Vélib’ is, it&#8217;s the Parisian bike-sharing system that I&#8217;ve already described in great detail. But I knew there was no way [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_2562" class="wp-caption alignright" style="width: 310px"><a href="http://www.flickr.com/photos/moacir/5657596431/sizes/o/in/photostream/"><img class="size-medium wp-image-2562" title="Screen shot 2011-04-26 at 17.52.27" src="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2011/04/Screen-shot-2011-04-26-at-17.52.27-300x195.png" alt="" width="300" height="195" /></a><p class="wp-caption-text">Vélib’ coverage in Paris. (click to enlarge / make useful)</p></div>
<p>When I made my <a href="http://www.1984produkts.com/donkeyhottie/2011/04/12/metro-coverage-in-paris/" target="_blank">Paris Métro map</a>, the joke was that the next step would be the leap in order of magnitude between subway stations and Vélib’ stations. For those who don&#8217;t know what Vélib’ is, it&#8217;s the Parisian bike-sharing system that <a href="http://www.1984produkts.com/donkeyhottie/2010/04/16/velib-and-generally-using-a-bicycle-in-paris/" target="_blank">I&#8217;ve already described in great detail</a>. But I knew there was no way that I would hand geocode each station (there are over 1200 of them), so I put the affair off. But this morning, I wondered if I could possibly reverse engineer a list from snooping around the <a href="http://www.velib.paris.fr/Trouver-une-station" target="_blank">Google Maps widget that Vélib’ offers</a>. This widget I use every morning when deciding where I&#8217;ll get my bike and where I&#8217;ll park it. Luckily, a bit of sleuthery led to <a href="http://www.velib.paris.fr/service/carto" target="_blank">this XML file</a>, which has the latitude and longitude of each station.</p>
<p>Once I&#8217;ve got that, the rest is kids&#8217; play. Parse, parse, plot, plot. And now I&#8217;ve got this map here, which is so busy and full of information that it&#8217;s nearly impossible to understand. But one thing is certain: my initial guess was that one was hardly ever more than 350m from a Vélib’ station. That turns out to be about true. Not including the two Parisian forests, there are only handfuls of areas within Paris itself that are more than 400m from a Vélib’ station. It&#8217;s a remarkable amount of coverage that makes me realize how outrageously extensive this project was (and continues to be).</p>
<p>Still, there were a few kinks in the data that I found worth a remark. Two stations, 20018 and 20048, both in the 20th Arrondissement, had latitudes and longitudes that were, well, identical, and, also, <a href="http://goo.gl/maps/rv3R" target="_blank">in Algeria</a>, prompting more than just me to <a href="http://twitter.com/#!/muziejus/status/62872355126513665" target="_blank">make jokes about racist civil servants</a> in the Mairie. What&#8217;s interesting, further, is that neither of the two stations appear on StreetView (I&#8217;m not about to bike up to the 20th to check in person). One, 20048, is marked on OpenStreetMap at the proper address, <a href="http://goo.gl/maps/c16T" target="_blank">110 rue de Bagnolet</a>. The other, however, is listed at 2 rue Hartignies, which does not seem to exist. There is a <a href="http://goo.gl/maps/auQF" target="_blank">2 rue Harpignies</a> in the 20th, but there is no Vélib’ station there on OpenStreetMap. Now if you go to the <a href="http://www.velib.paris.fr/Trouver-une-station" target="_blank">Vélib’ Google Maps widget</a> and type in either station number, it will take you to Algeria and tell you that bikes are available there. Is this an error? Maybe. Is it coding trickery to prevent copying, along the lines of a <a href="http://en.wikipedia.org/wiki/Trap_street" target="_blank">trap street</a>? Also possible.</p>
<div id="attachment_2563" class="wp-caption alignright" style="width: 310px"><a href="http://goo.gl/maps/AoZ2"><img class="size-medium wp-image-2563" title="Screen shot 2011-04-26 at 18.46.38" src="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2011/04/Screen-shot-2011-04-26-at-18.46.38-300x165.png" alt="" width="300" height="165" /></a><p class="wp-caption-text">Vélib’ wastelands in Paris. (click for Google Maps interactive)</p></div>
<p>Back to the coverage, though. In short, the map is so dense that I decided to experiment a bit further, so I created a shapefile featuring <em>only</em> the places in Paris that were more than 250m from a Vélib’ station. I then converted it to a KMZ, and you can <a href="http://goo.gl/maps/AoZ2" target="_blank">open it in Google Maps by clicking here</a>. I&#8217;m a bit proud of this interactive little Google Maps thing, so please have some fun with it, if you like. I used a quickly drawn outline of Paris for the clip shape, so it&#8217;s not a perfect fit to the Maps interface, but we can notice a few things right away about Vélib’ coverage in Paris proper. First, if you&#8217;re in a forest, you&#8217;re more or less completely out luck. This makes sense. Also, if you are in the middle of a railyard, you probably are rather far from a Vélib’ station. Most of the swaths along the northern edge of the city, as with Métro patches, are devoted to trains racing out of the city, so it&#8217;s not terribly necessary to have bikes where only trains go.</p>
<p>But I find it more interesting that along the Seine, it is <em>hardest</em> to find a Vélib’ stand where tourists are <em>most</em> likely to be: between the Louvre and the Palais Royal as well as near the Eiffel Tower. It&#8217;s not a complete dead zone, of course.<sup><a href="http://moacir.com/donkeyhottie/2011/04/26/velib%e2%80%99-coverage/#footnote_0_2561" id="identifier_0_2561" class="footnote-link footnote-identifier-link" title="Of course, Saint Michel and H&ocirc;tel de Ville do not suffer for lack of V&eacute;lib&rsquo; stands. My imagination says that the tourists drift more westward, though, once they have seen Notre Dame.">1</a></sup> All of Champs de Mars is within 400m of a Vélib’ stand, and only a teeny bit of the park by Trocadero is more than 400m from a stand. But, still, Vélib’ing is trickier if you&#8217;re engaged in touristy activities, which is, actually, only fair. Vélib’ is useful for tourists, and they can use it all they want, but it should not be (and obviously was not) designed with the tourist in mind. The rest of the patches within the city largely correspond to either parks, railways, or hospitals.</p>
<p>I will close out this post with a <a href="http://www.esrifrance.fr/Velib.asp" target="_blank">link to a short presentation</a> on the French ESRI site about Vélib’, which shows what a huge GIS project this was, involving planning at massively different levels of scale, such that the system works exactly as it should, despite a huge population in constant transit with shifting demands. Hopefully I&#8217;ll be able to supplement my own maps here in the future with Parisian demographic data or something else entirely.</p>
<ol class="footnotes"><li id="footnote_0_2561" class="footnote">Of course, Saint Michel and Hôtel de Ville do not suffer for lack of Vélib’ stands. My imagination says that the tourists drift more westward, though, once they have seen Notre Dame.</li></ol>]]></content:encoded>
			<wfw:commentRss>http://moacir.com/donkeyhottie/2011/04/26/velib%e2%80%99-coverage/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Chicago train coverage</title>
		<link>http://moacir.com/donkeyhottie/2011/04/26/chicago-train-coverage/</link>
		<comments>http://moacir.com/donkeyhottie/2011/04/26/chicago-train-coverage/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 01:57:51 +0000</pubDate>
		<dc:creator>m</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[The Real]]></category>
		<category><![CDATA[Chicago]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[Public trans snob]]></category>
		<category><![CDATA[Public Transportation]]></category>
		<category><![CDATA[Quantum GIS]]></category>

		<guid isPermaLink="false">http://www.1984produkts.com/donkeyhottie/?p=2555</guid>
		<description><![CDATA[The last time I rapped at you, I talked about Métro coverage in Paris. I felt like Paris was exceptionally well covered by the Métro, and I used math to prove that basically one is never more than 700m from a Métro station in the city. How, though, does that coverage compare with Chicago? Would [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_2556" class="wp-caption alignright" style="width: 261px"><a href="http://www.flickr.com/photos/moacir/5655577175/sizes/l/in/photostream/"><img class="size-medium wp-image-2556" title="Screen shot 2011-04-26 at 03.43.17" src="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2011/04/Screen-shot-2011-04-26-at-03.43.17-251x300.png" alt="" width="251" height="300" /></a><p class="wp-caption-text">El coverage in Chicago (click to enlarge).</p></div>
<p>The last time I rapped at you, I talked about <a href="http://www.1984produkts.com/donkeyhottie/2011/04/12/metro-coverage-in-paris/" target="_blank">Métro coverage in Paris</a>. I felt like Paris was exceptionally well covered by the Métro, and I used math to prove that basically one is never more than 700m from a Métro station in the city. How, though, does that coverage compare with Chicago? Would you be surprised if I said that Chicago ends up looking rather awful in comparison? How much worse, would you guess? If 700m is the maximum in Paris, what would you guess is the maximum distance from an el stop in Chicago? 1km? 2km? More?</p>
<p>After wrangling a bit with the GIS data available from the <a href="http://www.cityofchicago.org/city/en/depts/doit/supp_info/gis_data.html" target="_blank">city itself</a> as well as the CTA data from <a href="http://www.stevevance.net/planning/download-transit-gis-data/" target="_blank">Steven Vance</a>, I can build a simple buffer map much like the Paris map from the previous exercise, and the results? They ain&#8217;t pretty.</p>
<p>It is a bloodbath, in fact. Whereas in the previous exercise, the buffers were 250, 500, and 700m from the Métro, In this map on this post, the buffers are 1, 2.5, and 5km from the stop. In other words, everything that is dark purple is between 2.5 and 5km from a CTA El stop. Areas that are tan are parts of Chicago that are <em>over 5km from a CTA El stop</em>. But even if we just look at the 2.5km discs, we see that what feels like a third of the South Side is abandoned when it comes to the El. Pullman, Beverly, Rainbow Beach. All these neighborhoods are, literally, miles from the El. Even the parts of Hyde Park east of the Metra tracks (hot pink) are over 2.5km from the Green Line.</p>
<p>Ah, but what about the Metra, then? Surely some of these coverage gaps can be accounted for with the Metra, right? OK, let&#8217;s add them, as I included RER stations in my Métro map. And, fair enough, <a href="http://www.flickr.com/photos/moacir/5655576907/sizes/l/in/photostream/" target="_blank">once you add in the Metra, nearly none of Chicago is more than 2.5km from a train station of some sort</a> (dark blue for CTA, dark green for Metra). But, still, I&#8217;m using largely inflated scales for these maps to try and get something like the coverage of Paris. So, as a final map, <a href="http://www.flickr.com/photos/moacir/5655577023/sizes/l/in/photostream/" target="_blank">I&#8217;ll dial the buffers back down to Parisian size</a>: 250m, 500m, and 750m, just so you can compare, side-by-side, <a href="http://flic.kr/p/9xSptf" target="_blank">Parisian coverage</a> with Chicagoan coverage.</p>
]]></content:encoded>
			<wfw:commentRss>http://moacir.com/donkeyhottie/2011/04/26/chicago-train-coverage/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Is there value to a GIS curriculum?</title>
		<link>http://moacir.com/donkeyhottie/2011/01/20/is-there-value-to-a-gis-curriculum/</link>
		<comments>http://moacir.com/donkeyhottie/2011/01/20/is-there-value-to-a-gis-curriculum/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 14:11:38 +0000</pubDate>
		<dc:creator>m</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Snobbery]]></category>
		<category><![CDATA[Amy Hillier]]></category>
		<category><![CDATA[Anne Kelly Knowles]]></category>
		<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[Daniel Lewis]]></category>
		<category><![CDATA[digital humanities]]></category>
		<category><![CDATA[geography]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[John Pickles]]></category>
		<category><![CDATA[Marianna Pavlovskaya]]></category>
		<category><![CDATA[Meghan Cope]]></category>
		<category><![CDATA[Mei-Po Kwan]]></category>
		<category><![CDATA[Sarah Elwood]]></category>
		<category><![CDATA[statistics]]></category>

		<guid isPermaLink="false">http://www.1984produkts.com/donkeyhottie/?p=2412</guid>
		<description><![CDATA[[This post is a slightly enhanced version of an email I sent to the Humanist mailing list today in response to this message asking about the value of GIS curriculum in scholarship. Here, I begin by quoting the relevant parts of the original post] At my university, a vice president has been arguing that there [...]]]></description>
			<content:encoded><![CDATA[<p><em>[This post is a slightly enhanced version of an email I sent to the Humanist mailing list today in response to <a href="http://lists.digitalhumanities.org/pipermail/humanist/2011-January/001875.html" target="_blank">this message</a> asking about the value of GIS curriculum in scholarship. Here, I begin by quoting the relevant parts of the original post]</em></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Courier} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Courier; min-height: 14.0px} --></p>
<blockquote><p>At my university, a vice president has been arguing that there is no place for a GIS (geographic information systems) curriculum because now everybody can get that kind of data and everyone can make maps.</p>
<p>…</p>
<p>What is your sense of it? Is GIS really dead as a discipline? (And have I thus completely missed what&#8217;s going on?) What arguments would you put forward? What are the arguments stronger than the ones I have suggested above?</p></blockquote>
<p>Thinking that GIS has no place in a curriculum anymore because of the proliferation of GPS devices and (let&#8217;s say) Google Maps strikes me as a rather ill-informed position to take, considering practitioners of GIS have not even figured out what it is (or what the &#8220;S&#8221; in it stands for). How can a moment be over before it is even a moment?</p>
<p>During the past two decades, geography journals have repeatedly flared up with arguments over whether GIS is a <a href="http://onlinelibrary.wiley.com/doi/10.1111/0004-5608.00058/abstract" target="_blank">tool or a science</a> (thereby becoming a (sub-)discipline), whether use of GIS automatically aligns the practitioner with the military/corporatist history of GIS, and whether such a thing as a qualitative GIS can possibly exist, thereby &#8221;freeing&#8221; GIS from its allegedly quantitative and positivist roots. <a href="http://www.geo.hunter.cuny.edu/~mpavlov/Articles/Pavlovskaya%202005%20Theorizing%20with%20GIS.pdf" target="_blank">Recent articles</a> by Marianna Pavlovskaya give general histories (and useful bibliographies) of the debates, from John Pickles&#8217;s <a href="http://books.google.fr/books?id=QMqyxi4xRTkC&amp;lpg=PP1&amp;dq=pickles%20ground%20truth&amp;pg=PA1#v=onepage&amp;q&amp;f=false" target="_blank">broadsides in the late 90s</a> to Mei-Po Kwan&#8217;s <a href="http://www.geography.osu.edu/faculty/mkwan/Paper/Annals_2002.pdf" target="_blank">feminist rehabilitation of GIS</a> in the last decade.</p>
<p>Furthermore, collected volumes published in the past few years, like Hillier and Knowles&#8217;s <em><a href="http://esripress.esri.com/display/index.cfm?fuseaction=display&amp;websiteID=133" target="_blank">Placing History</a></em>, published by ESRI (the publishers of the <a href="http://www.esri.com/products/index.html#desktop_gis_panel" target="_blank">ArcGIS software package</a>), and Cope and Elwood&#8217;s <em><a href="http://www.uk.sagepub.com/books/Book231637" target="_blank">Qualitative GIS</a> </em>(usefully and succinctly <a href="http://danieljlewis.org/2009/12/19/review-qualitative-gis-a-mixed-methods-approach/" target="_blank">reviewed</a> by Daniel Lewis), published by Sage, give accounts of several GIS projects that could simply not be accomplished without GIS (as well as geography!) training that goes beyond hours of asking the internet for driving directions or geotagging photos.</p>
<p>What the vice-president seems to have in mind is what many have called &#8221;<a href="http://oreilly.com/catalog/9780596529956" target="_blank">Neogeography</a>,&#8221; the sort of DIY punk geography that could be the equivalent of the cheap handheld movie camera or portable four-track recorder. But film schools did not close because of the cheap handheld (this seems a useful comparison to me), nor did, and this is vitally important, film studies departments or the companies that make large, pro cameras.</p>
<p>That is, neogeography is a new approach to the creation/collection of geographical data, but the old forms (<a href="http://www.census.gov/geo/www/tiger/" target="_blank">census tract tables</a>, for example) have not lost their importance at all&#8211;nor have they become, I suspect, more intuitive. Similarly, assuming that GIS is &#8220;only&#8221; making maps on Google Earth would probably be considered an insult by even the people whose chapters were rejected in the volumes mentioned above.</p>
<p>Additionally, for historians, the ease of creating maps of today&#8217;s world means virtually nothing when what one cares about is the world from over a century ago&#8211;a massively labor-intensive project documented, for example, by Anne Kelly Knowles in her effort to imagine, using GIS software, what <a href="http://books.google.fr/books?id=VN1v7rzhSQEC&amp;lpg=PA236&amp;ots=juaLfPtBpr&amp;dq=what%20general%20lee%20saw%20%22anne%20kelly%20knowles%22&amp;pg=PA236#v=onepage&amp;q&amp;f=false" target="_blank">General Lee was able to see from his post at Gettysburg</a>. The data she used was not available to &#8221;everybody.&#8221; She had to create the data by hand from historical topographical maps. That also means she had to know&#8211;have been trained&#8211;how to create that data.</p>
<p>Finally, I can give my own personal experience, which was that of a year-long course in GIS, for which a course in statistics (not ownership of a Tomtom) was a prerequisite. Outside of a short unit on using GPS devices to make a small map of campus, nothing we did in those 30 weeks fits the description of Neogeography <a href="http://en.wikipedia.org/wiki/Neogeography" target="_blank">given on Wikipedia</a> (or is recognizable in the VP&#8217;s concern). An iPhone won&#8217;t teach spatial analysis, how to measure clustering, what a nearest neighbor is (and why that is or is not important), how to correlate income data from the federal census with crime or transportation data provided by the city, or how to answer even a basic personal (non-academic) question, like, &#8221;where should I live if I want to live within 200m of the subway, within 20km of work, in a neighborhood with an average per capita income of at least $20k, and with &lt; 20 property crimes in the past month?&#8221;</p>
<p>Hopefully this email has given some arguments (and suggestions for further reading) about how GIS (or geography) can&#8217;t be simply brushed off because of the ease with which one can make &#8220;mashups&#8221; on the internet.</p>
]]></content:encoded>
			<wfw:commentRss>http://moacir.com/donkeyhottie/2011/01/20/is-there-value-to-a-gis-curriculum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>xkcd and the Global South</title>
		<link>http://moacir.com/donkeyhottie/2010/06/16/xkcd-and-the-global-south/</link>
		<comments>http://moacir.com/donkeyhottie/2010/06/16/xkcd-and-the-global-south/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 16:19:23 +0000</pubDate>
		<dc:creator>m</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[The Real]]></category>
		<category><![CDATA[geography]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[Global South]]></category>
		<category><![CDATA[Quantum GIS]]></category>
		<category><![CDATA[Randall Munroe]]></category>
		<category><![CDATA[xkcd]]></category>

		<guid isPermaLink="false">http://www.1984produkts.com/donkeyhottie/?p=2080</guid>
		<description><![CDATA[This xkcd comic from Monday has been forwarded around a bit. My own reaction was heavily influenced by @sepoy&#8217;s comment that maybe JFK was talking about the &#8220;global south (po folk)&#8221; avant la lettre. I think it&#8217;s funny that JFK could have merged the idea of the &#8220;Global South&#8221; with the literal southern hemisphere. Randall [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://imgs.xkcd.com/comics/southern_half.png"><img class="aligncenter size-full wp-image-2081" title="southern_half" src="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2010/06/southern_half.png" alt="" width="346" height="376" /></a>This <a href="http://xkcd.com/753/" target="_blank">xkcd comic from Monday</a> has been forwarded around a bit. My own reaction was heavily influenced by @sepoy&#8217;s comment that maybe JFK was talking about the &#8220;<a href="http://twitter.com/sepoy/status/16128016847" target="_blank">global south (po folk)</a>&#8221; avant la lettre.</p>
<p>I think it&#8217;s funny that JFK could have merged the idea of the &#8220;Global South&#8221; with the literal southern hemisphere. Randall Munroe&#8217;s snarky joke doesn&#8217;t change the metaphorical power of the expression.</p>
<p>But what a glance at Munroe&#8217;s own map shows is that the bulk of the land on Earth is located north of the Equator, so if we picked a speck of terrain at random, it&#8217;ll more often fall north of the Equator. What if, I then wondered, I got rid of the Equator and split the Earth in half by area, in effect making an &#8220;Area Equator,&#8221; so that a randomly selected point on land would have a 50% chance of landing in the &#8220;South&#8221; as opposed to the &#8220;North.&#8221; What might that world look like?</p>
<p>Enter <a href="http://www.qgis.org/" target="_blank">Quantum GIS</a>. I <a href="http://www.aprsworld.net/gisdata/world/" target="_blank">downloaded a shapefile</a> of the world, and it had area already keyed in as an attribute for each country.<sup><a href="http://moacir.com/donkeyhottie/2010/06/16/xkcd-and-the-global-south/#footnote_0_2080" id="identifier_0_2080" class="footnote-link footnote-identifier-link" title="There were some errors. A handful of small countries and Eritrea reported 0 for their area.">1</a></sup> I was ready to calculate the areas of each polygon, but I&#8217;m glad I didn&#8217;t have to. Then I added polygons until the sum of the areas of the selected polygons was about half of the total sum of the area. Next, I chose an outrageous color scheme. The results:<sup><a href="http://moacir.com/donkeyhottie/2010/06/16/xkcd-and-the-global-south/#footnote_1_2080" id="identifier_1_2080" class="footnote-link footnote-identifier-link" title="I ran the test twice, with and without Antarctica. Mostly adding in that frozen landmass means that I have to deselect much of the Middle East, Pakistan, and, I think, Algeria. So it&amp;#8217;s not terribly different. Remember: Antarctica is never as big as it seems on unprojected maps.">2</a></sup></p>
<div id="attachment_2082" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2010/06/globalsouth.png"><img class="size-medium wp-image-2082" title="globalsouth" src="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2010/06/globalsouth-300x211.png" alt="" width="300" height="211" /></a><p class="wp-caption-text">The world, split by area. (click to enlarge)</p></div>
<p>What&#8217;s interesting is that this map is not so terribly different than the <a href="http://en.wikipedia.org/wiki/Global_South" target="_blank">map of the North-South Divide</a> provided by Wikipedia. The main difference is that I include Australia, while they include much more of Asia. China by itself has a larger area than Australia, so subtracting the Aussies from my area list and adding China would already knock the swing out. But my point is, at this stage, strictly cartographical.<sup><a href="http://moacir.com/donkeyhottie/2010/06/16/xkcd-and-the-global-south/#footnote_2_2080" id="identifier_2_2080" class="footnote-link footnote-identifier-link" title="Another caveat: I have no idea where the &amp;#8220;area&amp;#8221; calculation came from, so who knows how reliable my results are.">3</a></sup> One can now sort of see where the &#8220;Area Equator&#8221; of the Earth is.</p>
<p>So this doesn&#8217;t let JFK off the hook, but it might nuance the point a bit.</p>
<ol class="footnotes"><li id="footnote_0_2080" class="footnote">There were some errors. A handful of small countries and Eritrea reported 0 for their area.</li><li id="footnote_1_2080" class="footnote">I ran the test twice, with and without Antarctica. Mostly adding in that frozen landmass means that I have to deselect much of the Middle East, Pakistan, and, I think, Algeria. So it&#8217;s not terribly different. Remember: Antarctica is never as big as it seems on unprojected maps.</li><li id="footnote_2_2080" class="footnote">Another caveat: I have no idea where the &#8220;area&#8221; calculation came from, so who knows how reliable my results are.</li></ol>]]></content:encoded>
			<wfw:commentRss>http://moacir.com/donkeyhottie/2010/06/16/xkcd-and-the-global-south/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Image vs. Text (also quant. vs. qual.)</title>
		<link>http://moacir.com/donkeyhottie/2010/06/07/image-vs-text-also-quant-vs-qual/</link>
		<comments>http://moacir.com/donkeyhottie/2010/06/07/image-vs-text-also-quant-vs-qual/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 01:02:35 +0000</pubDate>
		<dc:creator>m</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Snobbery]]></category>
		<category><![CDATA[Anne Kelly Knowles]]></category>
		<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[Barney Warf]]></category>
		<category><![CDATA[digital humanities]]></category>
		<category><![CDATA[Edward W. Soja]]></category>
		<category><![CDATA[Environment and Planning A]]></category>
		<category><![CDATA[Gearóid Ó Tuathail]]></category>
		<category><![CDATA[GeoDa]]></category>
		<category><![CDATA[geography]]></category>
		<category><![CDATA[Geoinst]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[Henri Bergson]]></category>
		<category><![CDATA[Literary and Linguistic Computing]]></category>
		<category><![CDATA[manifesto]]></category>
		<category><![CDATA[Marianna Pavlovskaya]]></category>
		<category><![CDATA[Mark Monmonier]]></category>
		<category><![CDATA[Martyn Jessop]]></category>
		<category><![CDATA[Mei-Po Kwan]]></category>
		<category><![CDATA[Michel Foucault]]></category>
		<category><![CDATA[positivism]]></category>
		<category><![CDATA[Richard Rorty]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[Thirdspace]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://www.1984produkts.com/donkeyhottie/?p=2069</guid>
		<description><![CDATA[[A lot of the below is meandering toward what I suspect is a rather obvious conclusion to hardened veterans of the digital humanities. Since I'm not one of those, my own shoes needed to walk the mile. Of what transpires below, what might be new is, quickly, how while there is a call for digital [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_2070" class="wp-caption alignright" style="width: 310px"><a href="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2010/06/Screen-shot-2010-06-07-at-02.02.56.png"><img class="size-medium wp-image-2070" title="Screen shot 2010-06-07 at 02.02.56" src="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2010/06/Screen-shot-2010-06-07-at-02.02.56-300x196.png" alt="" width="300" height="196" /></a><p class="wp-caption-text">ArcGIS in action. (click to enlarge)</p></div>
<p>[A lot of the below is meandering toward what I suspect is a rather obvious conclusion to hardened veterans of the digital humanities. Since I'm not one of those, my own shoes needed to walk the mile. Of what transpires below, what might be new is, quickly, how while there is a call for digital humanists to move past prose to include other forms of analysis (maps, in this specific example), geographers have a different approach to the post-prose moment, one steeped in skepticism over the value of visual representations of data. Are geographers scaredy cats? Or might digital humanists be overexuberant? Or some combination of neither?]</p>
<p>Aside from the &#8220;reflexive vs. positivist&#8221; opposition in <a href="http://www.cch.kcl.ac.uk/legacy/tmp/profiles/mj.htm" target="_blank">Martyn Jessop</a>&#8216;s talk at the <a href="http://www2.lib.virginia.edu/scholarslab/geospatial/" target="_blank">Institute for Enabling Geospatial Research</a> and his <a href="http://llc.oxfordjournals.org/cgi/content/abstract/23/1/39" target="_blank">similar article in <em>Literary and Linguistic Computing</em></a> (discussed briefly <a href="http://www.1984produkts.com/donkeyhottie/2010/06/02/curating-and-analyzing-or-curating-vs-analyzing/" target="_blank">here</a>), the opposition that caught me most off-guard in Jessop&#8217;s article was one that was reasserted a few times at Geoinst:</p>
<blockquote><p>there are fundamental issues concerning the status and function of images in humanities scholarship, this includes the images produced by digital visualization tools. Humanists are used to expressing themselves, and assessing the work of others, through the medium of prose. There is a belief that the visual cannot be as rigorous as the written. It is seen, as, at best, a supplement to the written word and stands in a subordinate position.</p></blockquote>
<p>Jessop continues to explain how images in &#8220;modern educational texts&#8221; tend to be merely distractions to break up the flow of the text as opposed to being an integral part of the argument. There are &#8220;very few instances where the visual is treated on an equal pedagogical footing with the written.&#8221;</p>
<p>This line of reasoning from Jessop&#8217;s article continued in his talk, and <a href="http://www.middlebury.edu/academics/geog/faculty/knowles/node/18901" target="_blank">Anne Kelly Knowles</a> referred to it as well, explaining that history tends to be verbal, whereas geography tends to be visual, setting up the situation in history where the text is privileged over the map, which requires more critical response.</p>
<p>Now it is certainly not the case that the humanities value the textual over the visual as objects of study. I know a few art historians, musicologists, and students of film who would spit milk over their keyboards upon reading an assertion like that online. But it feels true to say that, as a mode of scholarship, the prose work lays claim to the most prestigious form of knowledge creation in academe.</p>
<p>From my reading of the dizzying <a href="http://manifesto.humanities.ucla.edu/2009/05/29/the-digital-humanities-manifesto-20/" target="_blank">Digital Humanities Manifesto 2.0</a> at UCLA, I get the sense that this tension is a relatively well-investigated and argued one within the digital humanities.<sup><a href="http://moacir.com/donkeyhottie/2010/06/07/image-vs-text-also-quant-vs-qual/#footnote_0_2069" id="identifier_0_2069" class="footnote-link footnote-identifier-link" title="I&amp;#8217;m new around here, remember.">1</a></sup> Part of the appeal of DH, it seems, is precisely attacking the primacy of prose as the form good scholarship should take, which is reflected in the value given the curatorial (as opposed to the straight analytical). As the UCLA manifesto asserts,</p>
<blockquote><p>[W]e are advocating for a<strong> neo- or post-print model</strong> where print becomes embedded within a multiplicity of media practices and forms of knowledge production… Digital Humanists recognize <strong>curation</strong> as a central feature of the future of the Humanities disciplines… Curation means <strong>making arguments through objects as well as words, images, and sounds</strong>… All of which is to say that we consider curation on a par with traditional narrative scholarship.<sup><a href="http://moacir.com/donkeyhottie/2010/06/07/image-vs-text-also-quant-vs-qual/#footnote_1_2069" id="identifier_1_2069" class="footnote-link footnote-identifier-link" title="&amp;#8220;Narrative scholarship&amp;#8221; here, I think, means &amp;#8220;prose scholarship,&amp;#8221; not scholarship of narratives. But I&amp;#8217;m not positive.">2</a></sup></p></blockquote>
<p>What&#8217;s interesting here, to me, is the interest of the digital humanities to move toward the visual precisely when geography is having its own crises, especially among critical geographers, regarding the visual. The visual is attached to the &#8220;scopic regime,&#8221; an &#8220;ocularcentrism&#8221; derived from Descartes, who posited &#8220;an epistemological standpoint of early modernity that subscribed to the notion of a detached, objective observer capable of a &#8216;<a href="http://books.google.com/books?id=iJzdsFVVS58C&amp;printsec=frontcover&amp;dq=the+spatial+turn+warf&amp;hl=lt&amp;cd=1#v=onepage&amp;q=god%27s%20eye&amp;f=false" target="_blank">god&#8217;s eye</a>&#8216; view of the world.&#8221; Barney Warf here is drawing a history of geography&#8217;s relationship with &#8220;capital accumulation [and] the rise of the nation-state,&#8221; a relationship helped by the illusion of the &#8220;certainty of visual knowledge.&#8221;</p>
<p>As the visual arts came to be dominated by linear perspective, so, too, did geography come to be dominated by the idea of homogenous, infinite, Newtonian space containing interlocked nation-states or other rigidly bounded entities, within the metaphor of the surface. &#8220;The <a href="http://books.google.com/books?id=iJzdsFVVS58C&amp;printsec=frontcover&amp;dq=the+spatial+turn+warf&amp;hl=lt&amp;cd=1#v=onepage&amp;q=%22rise%20of%20logical%20positivism%22&amp;f=false" target="_blank">rise of logical positivism</a> in the late nineteenth century,&#8221; Warf continues, &#8220;added a aura of scientism to this view, mathematicizing it with the disciplines concerned with space such as geography and urban planning in the forms of isotropic planes, surface in which the distribution of social features is evenly distributed.&#8221; This scopic regime continued in geography, more or less, until the critical geographers began to break away from it and the quantitative revolution in the 1970s.<sup><a href="http://moacir.com/donkeyhottie/2010/06/07/image-vs-text-also-quant-vs-qual/#footnote_2_2069" id="identifier_2_2069" class="footnote-link footnote-identifier-link" title="Soja on the quantitative revolution: &amp;#8220;This increasingly technical and mathematized version of geographical description, however, differed only superficially from the neo-Kantian tradition that helped to justify the isolation of geography from history, the social sciences, and Western Marxism.&amp;#8221;">3</a></sup></p>
<p>But it is not the case that the critical geographers are asserting for &#8220;more prose&#8221; in their work. Instead, they were looking for ways to get out from the empirical burden, which, as Soja remarks, though producing &#8220;significant and useful factual knowledge about the objective, real world,&#8221; had a &#8220;<a href="http://books.google.com/books?id=iJzdsFVVS58C&amp;printsec=frontcover&amp;dq=the+spatial+turn+warf&amp;hl=lt&amp;cd=1#v=onepage&amp;q=%22tendency%20to%20fixate%20on%20materialized%20surface%20appearances%22&amp;f=false" target="_blank">tendency to fixate on materialized surface appearances</a> and directly measurable patterning, creating an illusion of opaqueness that could block deeper understanding of the causal forces underpinning these surface expressions.&#8221; These &#8220;idealized visions of the world&#8221; led to a &#8220;luminous search for deep structures of causality as the imagined took precedence over the real.&#8221;</p>
<p>Soja himself, one of the fiercest proponents of a larger role of spatial thinking in attempts to understand the world, does not argue for &#8220;more maps / less prose&#8221; but for merely an approach that treats the spatial as an equal party in the trialectic of <a href="http://books.google.com/books?id=FwdBBwCgtsoC&amp;pg=PA10&amp;dq=%22spatiality-historicality-sociality%22&amp;hl=lt&amp;cd=1#v=onepage&amp;q=%22spatiality-historicality-sociality%22&amp;f=false" target="_blank">spatiality-historicality-sociality</a>. In fact, it seems that it is the reliance on the visual that gives geography its static and synchronic sense, a rigidity (in comparison to history&#8217;s richness and dialecticity) that Michel Foucault suspects is the result of Henri Bergson.<sup><a href="http://moacir.com/donkeyhottie/2010/06/07/image-vs-text-also-quant-vs-qual/#footnote_3_2069" id="identifier_3_2069" class="footnote-link footnote-identifier-link" title="&ldquo;Est-ce que &ccedil;a a commenc&eacute; avec Bergson ou avant ? L&rsquo;espace, c&rsquo;est ce qui &eacute;tait mort, fig&eacute;, non dialectique. En revanche, le temps, c&rsquo;&eacute;tait riche, f&eacute;cond, vivant, dialectique.&rdquo;">4</a></sup></p>
<p>I bring up this brief history of geography since it shows how the emergence of GIS can be seen (and is often seen) as a reaction to the work of the critical geographers. Soja calls it a &#8220;<a href="http://books.google.com/books?id=iJzdsFVVS58C&amp;pg=PA24&amp;dq=%22defensive+disciplinary+response%22&amp;hl=lt&amp;cd=1#v=onepage&amp;q=%22defensive%20disciplinary%20response%22&amp;f=false" target="_blank">defensive disciplinary response</a>.&#8221; &#8220;Over the past ten years,&#8221; he continues, &#8220;the positivist and descriptive core of geographical analysis has refortified its centrality, sustained in part by large flows of financial support for the advancement of Geographical Information Systems (GIS).&#8221; The apparent intellectual offspring of the quantitative revolution in geography, &#8220;today GIS,&#8221; as Marianna Pavlovskaya explains in a <a href="http://www.envplan.com/abstract.cgi?id=a37326" target="_blank">2006 article in <em>Environment and Planning A</em></a>, &#8220;sustains an industry worth $6 billion a year… and remains a corporate and state-sponsored technology widely used for profit making and control.&#8221; If GIS was not so appealing as a means of state and capital control, it wouldn&#8217;t be getting the funding it is today, especially in contrast with critical geography.<sup><a href="http://moacir.com/donkeyhottie/2010/06/07/image-vs-text-also-quant-vs-qual/#footnote_4_2069" id="identifier_4_2069" class="footnote-link footnote-identifier-link" title="For a tour de force of geography in the service of state control, I encourage one to read the opening pages of Gear&oacute;id &Oacute; Tuathail&amp;#8217;s Critical Geopolitics. The short version is that Ireland did not exist until the English crown needed to control it, so they sent in their surveyors to create an Ireland by mapping and dividing up the land.">5</a></sup></p>
<div id="attachment_2071" class="wp-caption alignright" style="width: 310px"><a href="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2010/06/Screen-shot-2010-06-07-at-02.35.03.png"><img class="size-medium wp-image-2071" title="Screen shot 2010-06-07 at 02.35.03" src="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2010/06/Screen-shot-2010-06-07-at-02.35.03-300x182.png" alt="" width="300" height="182" /></a><p class="wp-caption-text">GeoDa, now available for Mac and Linux! (click to enlarge)</p></div>
<p>But Pavlovskaya&#8217;s article does not to simply criticize GIS: she explains that the reception of GIS as the latest guise of state-control/positivism is misguided, and that, in fact, GIS is beginning to be used as a qualitative method, that is, one of the methods that has &#8220;become an accepted strategy for those advocating nonpositivist knowledge production and aspiring for emancipatory change.&#8221; GIS, Pavlovskaya argues, gives the <em>illusion</em> of precision and exactness, which subsequently gives the illusion of quantitative analysis. But putting something in a database doesn&#8217;t guarantee accuracy, just like relying on fieldnotes doesn&#8217;t guarantee sloppiness. Furthermore, computers don&#8217;t guarantee logic: one can behave illogically with them and logically without them. Both quantitative and qualitative approaches involve interpretive efforts at pattern detecting, at reading textual fields.</p>
<p>Next, and on this point I&#8217;m not sure I stand with Pavlovskaya, it&#8217;s not the case that the math used in GIS analysis is actually complex enough to qualify as &#8220;quantitative&#8221; or even &#8220;statistical.&#8221; A lot of it is, at its root, just counting or not notably different from regular human interaction with space. She writes,</p>
<blockquote><p>In truth, most spatial techniques available in GIS are only marginally &#8216;quantitative&#8217; despite being very illuminating. Using simple math (such as distance measurements or calculations between raster layers), they require spatial imagination skills (such as buffering or overlay) and logical thinking (such as combining layers in site selection of multicriteria evaluation). As such, these core functions replicate human spatial thinking about places and phenomena that is common to all geographic research. Overall, spatial analysis in GIS today is largely qualitative, visual, and intuitive despite its insistent labeling as a quantitative method.</p></blockquote>
<p>She further offers that even cutting edge &#8220;quantitative&#8221; work in GIS using AI or Bayesian probability is just an &#8220;attempt to replicate human reasoning.&#8221; In my mere year&#8217;s worth of GIS training, we definitely started feeding legitimate statistical beasts, doing spatial regressions and clustering calculations. These don&#8217;t replicate human reasoning&#8211;in fact, they exist precisely to slow down human reasoning, which is often terrible at detecting randomness, or the lack thereof. Pavlovskaya certainly isn&#8217;t asserting that all GIS is qualitative, of course, but I know that, in my work, I felt like I was eating at the kid&#8217;s table until I started being able to attach <em>p</em>-values.<sup><a href="http://moacir.com/donkeyhottie/2010/06/07/image-vs-text-also-quant-vs-qual/#footnote_5_2069" id="identifier_5_2069" class="footnote-link footnote-identifier-link" title="On the other hand, Pavlovskaya mentions that even with the hard core quantitative work, &amp;#8220;GIS technology has fulfilled its promise for quantitative analysis only marginally.&rdquo;">6</a></sup> This is my own bias, though, that I&#8217;ll unpack another day.</p>
<p>Pavlovskaya does approach the leading question of this post head on, however, in terms of visualization&#8211;the image over/with the text. Data visualization is what GIS&#8217;s core strength seems to be, as GIS can output maps quickly and efficiently, with both quantitative or qualitative data. She points to Mei-Po Kwan&#8217;s <a href="http://www.geography.osu.edu/faculty/mkwan/WebCV/Annals_2002.html" target="_blank">work on irrational responses to data visualization</a> to argue that it&#8217;s &#8220;the most telling example of nonquantitative functionality in GIS.&#8221; The visualization is, in fact, quite the alluring song that attracts people&#8211;myself included&#8211;to GIS. If part of our charge, as digital humanists, is to move past prose, to visualize our data, the satisfaction of GIS is really right up our alley. And it&#8217;s easy to get striking results: &#8220;Visualization is so powerful a technique that often the manipulation of data within GIS does not go beyond querying the data and displaying the results.&#8221; Feed in a spreadsheet of census data, dial up a chloropleth, export to .jpg, and move on.</p>
<p>This is a bit flip, but I think it&#8217;s important to assert it. Visualization shouldn&#8217;t be an end in itself, and engagement with and understanding the tool of visualization deserves the highest priority. Pavlovskaya warns about how maps are tools of control. Maps over-assert their reliability by relying on a metaphor in the mind of the viewer in which space is scientific and exact, so, as a result, maps are true. Here I cue, again, of course, Mark Monmonier, who warns <a href="http://www.semcoop.com/book/9780226534213" target="_blank">in his epilogue</a> about using a map with the &#8220;dual role of both informing and impressing its audience.&#8221; After all, &#8220;a flashy map… touts its author&#8217;s sense of innovation, and cartographic window dressing in a doctoral dissertation… suggests that the work is scholarly or scientific.&#8221; With GIS, we have the added authority of having a computer that&#8217;s making the map, so the stink of truthiness clings even more formidably to the embedded .jpg.</p>
<p>Warf closes his own article on networks with a bomb detonated in the ocularcentrist modernist&#8217;s favorite street-corner café. Vision&#8217;s attachment to truth &#8220;is essentially a positivist assumption that denies the possibility of other ways of understanding the world.&#8221; Mobilizing <a href="http://www.semcoop.com/book/9780691141329" target="_blank">Richard Rorty</a>, he finishes by declaring that &#8220;once we abandon the positivist metaphor of the mirror as the basis of objective knowledge, we are led to the metaphor of the conversation, in which language, positionally, and dialogue are central.&#8221; Strangely, to me, this sounds like, in part, a call for less image-based analysis and more dialogue-based thinking, which gets recreated in prose.</p>
<p>I plan on not introducing any more new sources from here on in, so a recap is in order: there is a move to advance past prose-based scholarship in the digital humanities. This means curating various kinds of objects, this means incorporating non-prose forms of analysis (like maps) and data visualizations in general.</p>
<p>Visualization, however, is an approach to data that, along with its current big-budget exponent, GIS, is attached to quantitative analysis, and, hence, to forms of state and corporate control, power relations that move in direct opposition to projects in the digital humanities that are interested in the empowering capability of digital humanistic scholarship. Furthermore, visualization as an end to itself is still wrapped up in questions of power and control that, in my reading of the UCLA Manifesto, remain unaddressed, pushed aside to make room for unrelated emancipatory rhetoric.</p>
<p>On the other hand, GIS itself has not managed to live up to the hype surrounding it as a quantitative tool. In fact, the revolutionaries in the qualitative world can exploit its power for their own purposes.</p>
<p>But is quantitative work necessarily bad? Can&#8217;t there be a quant/qual matrix that people like? This is probably a terribly boring discussion that&#8217;s been had at every social sciences get together where there are as many bottles of wine as graduate students, but it&#8217;s still new to me.</p>
<p>I find it interesting, for example, that the UCLA manifesto separates quantitative and qualitative into historical moments&#8211;a sort of political/developmental timeline that Marx might be proud of:</p>
<blockquote><p>The first wave of digital humanities work was quantitative, mobilizing the search and retrieval powers of the database, automating corpus linguistics, stacking hypercards into critical arrays. The second wave is <strong>qualitative, interpretive, experiential, emotive, generative</strong> in character. It harnesses digital toolkits in the service of the Humanities&#8217; core methodological strengths: attention to complexity, medium specificity, historical context, analytical depth, critique and interpretation.</p></blockquote>
<p>Now there&#8217;s a lot in this snippet that I think is very, very wrong (or, at least, getting carried away in the rhetoric of the manifesto).<sup><a href="http://moacir.com/donkeyhottie/2010/06/07/image-vs-text-also-quant-vs-qual/#footnote_6_2069" id="identifier_6_2069" class="footnote-link footnote-identifier-link" title="These concerns are not appropriately addressed by the backtracking in the sentences that follow the quoted material.">7</a></sup> But it does pitch the digital humanities in a similar historical narrative as that of critical geography. Quantitative geography, however, has not disappeared, so we can&#8217;t talk of geography in waves as much as in branches. And considering the fantasy of the quantitative promise of GIS (which, pace Pavlovskaya, I still have), being encouraged to incorporate it into my digital humanities work certainly doesn&#8217;t seem like a full on, earnest effort to be, also, &#8220;qualitative&#8221; and &#8220;emotive.&#8221;</p>
<p>So I end with two messes on the table for starters: the political/control nature of visualization is unaddressed in relation to the pressure/encouragement to visualize and the role of quantitative work in digital humanities seems to earn the feeling of being old-fashioned or compartmentalized within a larger qualitative framework, at least within the framework of the UCLA manifesto.</p>
<p>Conveniently, I&#8217;m walking away from these messes, citing a lack of space on this page to continue. But I do have a feeling I&#8217;ll be returning to the UCLA manifesto soon enough. The tension over visualization, though, seems like it might be too complex for me right now.</p>
<ol class="footnotes"><li id="footnote_0_2069" class="footnote">I&#8217;m new around here, remember.</li><li id="footnote_1_2069" class="footnote">&#8220;Narrative scholarship&#8221; here, I think, means &#8220;prose scholarship,&#8221; not scholarship of narratives. But I&#8217;m not positive.</li><li id="footnote_2_2069" class="footnote">Soja on the quantitative revolution: &#8220;This increasingly technical and mathematized version of geographical description, however, <a href="http://books.google.com/books?id=xrmaSYfLOQ8C&amp;pg=PA51&amp;dq=%22differed+only+superficially+from+the+neo-Kantian+tradition%22&amp;hl=lt&amp;cd=1#v=onepage&amp;q=%22differed%20only%20superficially%20from%20the%20neo-Kantian%20tradition%22&amp;f=false" target="_blank">differed only superficially from the neo-Kantian tradition</a> that helped to justify the isolation of geography from history, the social sciences, and Western Marxism.&#8221;</li><li id="footnote_3_2069" class="footnote">“<a href="http://www.ronai.org/spip.php?article35" target="_blank">Est-ce que ça a commencé avec Bergson ou avant ? L’espace, c’est ce qui était mort, figé, non dialectique. En revanche, le temps, c’était riche, fécond, vivant, dialectique.</a>”</li><li id="footnote_4_2069" class="footnote">For a tour de force of geography in the service of state control, I encourage one to read the opening pages of Gearóid Ó Tuathail&#8217;s <a href="http://www.semcoop.com/book/9780816626038" target="_blank"><em>Critical Geopolitics</em></a>. The short version is that Ireland did not exist until the English crown needed to control it, so they sent in their surveyors to create an Ireland by mapping and dividing up the land.</li><li id="footnote_5_2069" class="footnote">On the other hand, Pavlovskaya mentions that even with the hard core quantitative work, &#8220;GIS technology has fulfilled its promise for quantitative analysis only marginally.”</li><li id="footnote_6_2069" class="footnote">These concerns are not appropriately addressed by the backtracking in the sentences that follow the quoted material.</li></ol>]]></content:encoded>
			<wfw:commentRss>http://moacir.com/donkeyhottie/2010/06/07/image-vs-text-also-quant-vs-qual/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>South Africa vs. Mexico</title>
		<link>http://moacir.com/donkeyhottie/2010/06/03/south-africa-vs-mexico/</link>
		<comments>http://moacir.com/donkeyhottie/2010/06/03/south-africa-vs-mexico/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 21:56:43 +0000</pubDate>
		<dc:creator>m</dc:creator>
				<category><![CDATA[Baseball and Sports]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Algeria]]></category>
		<category><![CDATA[football]]></category>
		<category><![CDATA[Geoinst]]></category>
		<category><![CDATA[Mexico]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[South Africa]]></category>
		<category><![CDATA[World Cup]]></category>

		<guid isPermaLink="false">http://www.1984produkts.com/donkeyhottie/?p=2061</guid>
		<description><![CDATA[Yet again, I&#8217;m putting off the &#8220;Fieldwork vs. Armchairwork&#8221; post, which began as a joke threat, but is actually slowly turning into a few ideas about methods courses from a total neophyte and non DGS. In the meantime, I&#8217;m getting very excited about 64 other &#8220;vs.&#8221; coming up in the next six weeks, namely the [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_2062" class="wp-caption alignright" style="width: 310px"><a href="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2010/06/IMG_0239.jpg"><img class="size-medium wp-image-2062" title="IMG_0239" src="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2010/06/IMG_0239-300x225.jpg" alt="" width="300" height="225" /></a><p class="wp-caption-text">I have been called a “provocateur” at work for supporting les fennecs. This is my office door. (click to enlarge)</p></div>
<p>Yet again, I&#8217;m putting off the &#8220;Fieldwork vs. Armchairwork&#8221; post, which began as a joke threat, but is actually slowly turning into a few ideas about methods courses from a total neophyte and non DGS.</p>
<p>In the meantime, I&#8217;m getting very excited about 64 other &#8220;vs.&#8221; coming up in the next six weeks, namely the World Cup in South Africa, which opens on June 11th, pitting the hosts against the uncertain Mexican team. I think the Bafana Bafana will need quite a bit of hometown bounce to beat Mexico, but I find that totally within the realm of possible outcomes.</p>
<p>If you fancy yourself a good prognosticator of possible outcomes, I welcome you to join my silly little <a href="http://www.lithchat.com/fifa2010/" target="_blank">World Cup Challenge Pool</a>, where one can pick the results of all 64 matches and win potential prizes.</p>
<p>I like some of the tricks I pulled off with the website, and it is, I promise, the last thing I ever write in procedural PHP (at least, that is, until I feel confident saying &#8220;Give me procedural PHP or give me death!&#8221; In other words, there&#8217;s a lot of progamming pupu platters in perceived future). Furthermore, the site relates a bit to the themes of this week&#8217;s posts in that I worked on it during downtime at Geoinst, despite the fact that it was already live. Oops.</p>
]]></content:encoded>
			<wfw:commentRss>http://moacir.com/donkeyhottie/2010/06/03/south-africa-vs-mexico/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Curating addendum (ok&#8230; “webmapping vs. mapping”)</title>
		<link>http://moacir.com/donkeyhottie/2010/06/02/curating-addendum-ok-webmapping-vs-mapping/</link>
		<comments>http://moacir.com/donkeyhottie/2010/06/02/curating-addendum-ok-webmapping-vs-mapping/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 18:40:01 +0000</pubDate>
		<dc:creator>m</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Snobbery]]></category>
		<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[digital humanities]]></category>
		<category><![CDATA[Fair Use]]></category>
		<category><![CDATA[GeoDa]]></category>
		<category><![CDATA[Geoinst]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[Google Lit Trips]]></category>
		<category><![CDATA[Gutenkarte]]></category>
		<category><![CDATA[John Dos Passos]]></category>
		<category><![CDATA[Mapnik]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Quantum GIS]]></category>
		<category><![CDATA[statistics]]></category>

		<guid isPermaLink="false">http://www.1984produkts.com/donkeyhottie/?p=2052</guid>
		<description><![CDATA[Yesterday&#8217;s post on the tension between curatorial/service-y intellectual work and straight up analytical work was intentionally kept rather general, both for larger appeal and since I&#8217;m trying to figure out my approach to these questions in a way that&#8217;s consistent. Today, I&#8217;ll be a bit more specific, and this is sort of a warning about [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_2053" class="wp-caption alignright" style="width: 310px"><a href="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2010/06/Screen-shot-2010-06-02-at-10.25.44.png"><img class="size-medium wp-image-2053" title="Screen shot 2010-06-02 at 10.25.44" src="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2010/06/Screen-shot-2010-06-02-at-10.25.44-300x212.png" alt="" width="300" height="212" /></a><p class="wp-caption-text">Charlottesville, VA.</p></div>
<p>Yesterday&#8217;s post on <a href="http://www.1984produkts.com/donkeyhottie/2010/06/02/curating-and-analyzing-or-curating-vs-analyzing/" target="_blank">the tension between curatorial/service-y intellectual work and straight up analytical work</a> was intentionally kept rather general, both for larger appeal and since I&#8217;m trying to figure out my approach to these questions in a way that&#8217;s consistent. Today, I&#8217;ll be a bit more specific, and this is sort of a warning about that.<sup><a href="http://moacir.com/donkeyhottie/2010/06/02/curating-addendum-ok-webmapping-vs-mapping/#footnote_0_2052" id="identifier_0_2052" class="footnote-link footnote-identifier-link" title="I know, I promised &amp;#8220;fieldwork vs. armchairwork,&amp;#8221; but that will come later!">1</a></sup> I want to show how geospatial scholarship can be a sort of ground zero of these kinds of discussions and debates, though, about curating and analysis.<sup><a href="http://moacir.com/donkeyhottie/2010/06/02/curating-addendum-ok-webmapping-vs-mapping/#footnote_1_2052" id="identifier_1_2052" class="footnote-link footnote-identifier-link" title="Ooh! maybe this will be &amp;#8220;fieldwork vs. armchairwork&amp;#8221;!">2</a></sup></p>
<p>Whether factually true or not, I got the sense that I was one of the only people at the NEH-sponsored <a href="http://www2.lib.virginia.edu/scholarslab/geospatial/" target="_blank">Institute for Enabling Geospatial Research</a> at UVA&#8217;s Scholar&#8217;s Lab who had never used Google Earth as more than a fun little toy.<sup><a href="http://moacir.com/donkeyhottie/2010/06/02/curating-addendum-ok-webmapping-vs-mapping/#footnote_2_2052" id="identifier_2_2052" class="footnote-link footnote-identifier-link" title="A variant of this arose during our Twitter argument over cartographical aesthetics. I was forwarded links to Mapnik, which I had never even heard of before. As I&amp;#8217;ll show, I&amp;#8217;m still not sure how I&amp;#8217;ll ever use it, though I&amp;#8217;m glad to know about it.">3</a></sup> I&#8217;m still pretty uncomfortable with the interface, I have no idea what the program does, and I really can&#8217;t figure out what role it plays in my life. Most succinctly, finding the url for the following link is the most work I have ever done with the <a href="http://code.google.com/intl/lt/apis/earth/" target="_blank">Google Earth API</a>.</p>
<p>On the other hand, I was probably in the top quintile among participants in the use of ArcGIS. So how is it that I&#8217;m reasonably proficient, by humanities student standards, with ArcGIS, but completely covered in thumbs regarding Google Earth? Curating vs. analyzing. Webmapping vs. mapping (for the argument).</p>
<p>While trying to figure out, during the proposal process, if my approach to literature was crazy or mainstream, I spent a lot of time trying to find similar projects to mine online. Much of the work I found was similar to <a href="http://www.googlelittrips.com/GoogleLit/Home.html" target="_blank">Google Lit Trips</a>, a persistent whipping boy of mine. Google Lit Trips is a curated repository of data from multiple contributors (so, collaborative) leaning on the Google Earth API, available largely to enhance the experiences of the encoded text for K–12 readers. In other words, it features service- and pedagogy-oriented work that leaves the work of analysis and argument to the reader. There are many projects like this online, and we were even shown many over the course of the Institute, either as in-the-world examples or by the &#8220;curators&#8221; themselves.<sup><a href="http://moacir.com/donkeyhottie/2010/06/02/curating-addendum-ok-webmapping-vs-mapping/#footnote_3_2052" id="identifier_3_2052" class="footnote-link footnote-identifier-link" title="I don&amp;#8217;t know that the people involved would agree to such a designation, which is why I isolate it in quotes">4</a></sup></p>
<p>I have no epistemological quarrel with Google Lit Trips (despite the fact that they&#8217;re getting <a href="http://www.googlelittrips.com/GoogleLit/9-12/Entries/2006/11/1_The_Grapes_of_Wrath_by_John_Steinbeck.html" target="_blank">darned close to my datasets</a>!) or similar projects, like (the now defunct?!?) <a href="http://www.gutenkarte.org/" target="_blank">Gutenkarte</a>.<sup><a href="http://moacir.com/donkeyhottie/2010/06/02/curating-addendum-ok-webmapping-vs-mapping/#footnote_4_2052" id="identifier_4_2052" class="footnote-link footnote-identifier-link" title="Gutenkarte&amp;#8217;s domain has expired. Here&amp;#8217;s Metacarta&amp;#8216;s description of it: &amp;#8220;Ever read a book, and wondered where the heck it took place? With  Gutenkarte, we combine books with maps to show where a story is taking  place.&amp;#8221;">5</a></sup>  At this time, I have not made any use of them, as I prefer (and have the luxury of doing so) to collect my own data and code my own representations of the data. Furthermore, though our initial actions are similar&#8211;we make note of where things happen in texts&#8211;the scope of the following step is dramatically different. Google Lit Trips compiles that data into a public fly-through that helps readers orient themselves with a text. Gutenkarte scatters place names from a text on a publicly accessible map. I, on the other hand, process the data (in private) to try and make a (public) argument with it. I play the role not only of the service, but also that of the sole reader, who then transforms into analyzer and broadcasts results of analysis to the public of my dissertation committee.</p>
<p>My argument with Google Lit Trips, and why it&#8217;s &#8220;my whipping boy,&#8221; is that I find it limiting as far as general expectations of what geospatial scholarship in the humanities can do.<sup><a href="http://moacir.com/donkeyhottie/2010/06/02/curating-addendum-ok-webmapping-vs-mapping/#footnote_5_2052" id="identifier_5_2052" class="footnote-link footnote-identifier-link" title="This part is a bit strawmanny, but I think it&amp;#8217;s an important discussion to have, and I sort of regret shying away from it at the Institute.">6</a></sup> I don&#8217;t want it to be the case that saying &#8220;I do geospatial work on novels&#8221; will come to be understood as &#8220;I wrote my own version of Google Lit Trips.&#8221; This is why the tension between curating and analyzing I remarked on yesterday is still not entirely resolved.</p>
<p>To, me, in fact, putting the data out there by itself, as, let&#8217;s say, a table of geolocated and page referenced events, is almost irresponsible, since I feel an obligation to make use of my training to provide some kind of analysis. Sure, anyone can read a .kmz displayed on Google Earth, just like anyone can read a novel. But close reading a novel is a skill that, presumably, adds some kind of value that justifies the extra layer of literary scholar to the interpretation of a text. The same is true of a map, which is basically the same thing as a Google Earth fly-through. I have been trained to close read maps, and I think that&#8217;s a skill worth sharing.<sup><a href="http://moacir.com/donkeyhottie/2010/06/02/curating-addendum-ok-webmapping-vs-mapping/#footnote_6_2052" id="identifier_6_2052" class="footnote-link footnote-identifier-link" title="A quick example: everyone who has taken a statistics course has probably had some kind of exercise to show that humans are awful at detecting or creating randomness. This is true on the spatial plane, too. Eyes are crappy at separating clusters from random distributions, so that it can often be the case that untrained eyes (non-skeptical eyes) can straight up misread a map. That actually may be easier to do than to misread a novel.">7</a></sup></p>
<p>But it gets even more complex. Not only have I been trained to read maps, but I&#8217;ve been trained to make them. And then I&#8217;ve been trained to augment the data on them (&#8220;geoprocess&#8221;) in order to answer questions. Once I introduce other analytical tools (network analysis, geostatistical analysis), not only does the range of possible questions I can ask (and subsequently try to answer) explode, but the answers become much more&#8230; precise. I can start talking about &#8220;confidence&#8221; and &#8220;significance.&#8221; And then I can generate arguments, which lead to chapters, monographs, etc.</p>
<p>At some point in this chain of events, however, I stopped being interested in webmapping, in providing a service for people to &#8220;explore&#8221; the data I&#8217;ve accumulated. I turned inward, engaging in my own play of buffers, directional distributions, and nearest neighbor calculations to see what I could learn from that play. None of this looks anything like &#8220;so you wrote your own version of Google Lit Trips,&#8221; which is why I want to encourage a high enough profile for it, so that people don&#8217;t underestimate the usefulness of geospatial work in the humanities.</p>
<p>But this, then, explains why I&#8217;ve never used the Google Earth API, and it&#8217;s why I only found out about Mapnik for the first time last week. Making web-accessible, pretty, interactive maps has never been the focus of my work. In fact, my maps are pointedly offline, ugly, and frozen, which they have to be for when I start processing them.<sup><a href="http://moacir.com/donkeyhottie/2010/06/02/curating-addendum-ok-webmapping-vs-mapping/#footnote_7_2052" id="identifier_7_2052" class="footnote-link footnote-identifier-link" title="I pretty them up a bit when I prepare them for public presentation. And by &amp;#8220;frozen&amp;#8221; here, I mean in contrast to &amp;#8220;flat,&amp;#8221; which is a distinction I&amp;#8217;ve tackled elsewhere.">8</a></sup> And even now, I&#8217;m not sure I have a great interest in changing my approach. So, at the Institute, I was less interested in the discussions of making webmaps aesthetically appealing than in finding out if there were free ways to recreate the ArcGIS <a href="http://webhelp.esri.com/arcgisdesktop/9.3/index.cfm?TopicName=An_overview_of_the_Spatial_Statistics_toolbox" target="_blank">Spatial Statistics toolbox</a> with something like Quantum GIS (signs point to no). It&#8217;s also why what I was possibly most excited about at the Institute&#8211;as far as &#8220;I can use this in my work immediately!&#8221; value is concerned&#8211;was learning that <a href="http://geodacenter.asu.edu/ogeoda" target="_blank">Open GeoDa</a> had become publicly available.</p>
<p>On the other hand, back when I was planning my dissertation proposal, and back when that project included geocoding the events of a couple dozen novels, I always assumed that, when I was done geocoding, I would make the data available publicly. Maybe not as a interactive webmap, but still. Why not, after all? I can&#8217;t claim proprietary control over mere facts that I collected (as we learned during the fair use presentation at the Institute!). The number of novels I&#8217;ll geocode (and the depth to which I&#8217;m coding them) has greatly shrunk as my project has changed, however, to the point where I stopped thinking about the data I&#8217;m collecting as of any public utility.</p>
<p>In other words, I always assumed some sort of service-y aspect to my dissertation work in addition to the analytical; I was already pursuing an argument via curation, via play, via iterative exploration of my own dataset. I just wasn&#8217;t calling it that, and once I stopped considering my data to be of interest to the public, I even stopped thinking about it as a potential site of service.</p>
<p>But that tension&#8230; that tension remains, since now I&#8217;m saying basically that I would leave the data available in my wake. That is, I&#8217;ll continue building a monograph, and as a side benefit, anyone with a web browser can see where all the activity in Dos Passos&#8217;s <em>U.S.A.</em> occurred. As a result, service becomes the cherry on top, which feels kind of wrong. Or, at least, a copout.</p>
<p>I think I&#8217;ll end here, despite the fact that it feels like my argument has more run out of steam than concluded. These pieces I&#8217;m writing this week&#8211;most everything I&#8217;m writing about the Institute&#8211;is going to be half-baked, since it&#8217;s more a question of relating a response to the events of the Institute to my own interests than presenting finished, tidy thoughts. Oh well.</p>
<ol class="footnotes"><li id="footnote_0_2052" class="footnote">I know, I promised &#8220;fieldwork vs. armchairwork,&#8221; but that will come later!</li><li id="footnote_1_2052" class="footnote">Ooh! maybe this <em>will</em> be &#8220;fieldwork vs. armchairwork&#8221;!</li><li id="footnote_2_2052" class="footnote">A variant of this arose during our Twitter argument over cartographical aesthetics. I was forwarded links to <a href="http://mapnik.org/" target="_blank">Mapnik</a>, which I had never even heard of before. As I&#8217;ll show, I&#8217;m still not sure how I&#8217;ll ever use it, though I&#8217;m glad to know about it.</li><li id="footnote_3_2052" class="footnote">I don&#8217;t know that the people involved would agree to such a designation, which is why I isolate it in quotes</li><li id="footnote_4_2052" class="footnote">Gutenkarte&#8217;s domain has expired. Here&#8217;s <a href="http://labs.metacarta.com/" target="_blank">Metacarta</a>&#8216;s description of it: &#8220;Ever read a book, and wondered where the heck it took place? With  Gutenkarte, we combine books with maps to show where a story is taking  place.&#8221;</li><li id="footnote_5_2052" class="footnote">This part is a bit strawmanny, but I think it&#8217;s an important discussion to have, and I sort of regret shying away from it at the Institute.</li><li id="footnote_6_2052" class="footnote">A quick example: everyone who has taken a statistics course has probably had some kind of exercise to show that humans are awful at detecting or creating randomness. This is true on the spatial plane, too. Eyes are crappy at separating clusters from random distributions, so that it can often be the case that untrained eyes (non-skeptical eyes) can straight up <em>misread</em> a map. That actually may be easier to do than to misread a novel.</li><li id="footnote_7_2052" class="footnote">I pretty them up a bit when I prepare them for public presentation. And by &#8220;frozen&#8221; here, I mean in contrast to &#8220;flat,&#8221; which is a distinction I&#8217;ve tackled elsewhere.</li></ol>]]></content:encoded>
			<wfw:commentRss>http://moacir.com/donkeyhottie/2010/06/02/curating-addendum-ok-webmapping-vs-mapping/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Curating and analyzing (or, curating vs. analyzing)</title>
		<link>http://moacir.com/donkeyhottie/2010/06/02/curating-and-analyzing-or-curating-vs-analyzing/</link>
		<comments>http://moacir.com/donkeyhottie/2010/06/02/curating-and-analyzing-or-curating-vs-analyzing/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 22:58:46 +0000</pubDate>
		<dc:creator>m</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Snobbery]]></category>
		<category><![CDATA[90210]]></category>
		<category><![CDATA[Arthur C. Danto]]></category>
		<category><![CDATA[Bethany Nowviskie]]></category>
		<category><![CDATA[digital humanities]]></category>
		<category><![CDATA[Geoinst]]></category>
		<category><![CDATA[graphesis]]></category>
		<category><![CDATA[HyperCities]]></category>
		<category><![CDATA[Literary and Linguistic Computing]]></category>
		<category><![CDATA[Mark Monmonier]]></category>
		<category><![CDATA[Martyn Jessop]]></category>
		<category><![CDATA[positivism]]></category>
		<category><![CDATA[Robert Scholes]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[Steve Sanders]]></category>
		<category><![CDATA[stochasticity]]></category>
		<category><![CDATA[Todd Presner]]></category>
		<category><![CDATA[Walter Benjamin]]></category>

		<guid isPermaLink="false">http://www.1984produkts.com/donkeyhottie/?p=2044</guid>
		<description><![CDATA[“It seems kind of absurd to expect a 30 year old to be able to produce a monograph,&#8221; one of the attendees of the Institute for Enabling Geospatial Research at UVA said after our dinner in the stunning Dome Room. We were chatting as a group, and the topic moved to how the dissertation as [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_2045" class="wp-caption alignright" style="width: 310px"><a href="http://www.flickr.com/photos/moacir/4653196225/in/set-72157624167980012/"><img class="size-medium wp-image-2045" title="Screen shot 2010-06-01 at 22.57.03" src="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2010/06/Screen-shot-2010-06-01-at-22.57.03-300x225.png" alt="" width="300" height="225" /></a><p class="wp-caption-text">The Rotunda again. (click for original)</p></div>
<p>“It seems kind of absurd to expect a 30 year old to be able to produce a monograph,&#8221; one of the attendees of the <a href="http://www2.lib.virginia.edu/scholarslab/geospatial/" target="_blank">Institute for Enabling Geospatial Research</a> at UVA said after our dinner in the stunning <a href="http://www.virginia.edu/uvatours/rotunda/rotundaExplore.html" target="_blank">Dome Room</a>. We were chatting as a group, and the topic moved to how the dissertation as a project has changed over time. <a href="http://brown.edu/Departments/MCM/people/facultypage.php?id=10114" target="_blank">Robert Scholes</a>, one person pointed out, <a href="http://www.amazon.com/Cornell-Joyce-Collection-Robert-Scholes/dp/B000J2NZZG" target="_blank">catalogued the Cornell Joyce collection</a> to earn his PhD. So no less a luminary than Scholes, whose <a href="http://www.semcoop.com/book/9780300037265" target="_blank"><em>Textual Power</em></a> I had to read twice by the end of my second year of undergrad, did not write a monograph for his dissertation.</p>
<p>Then another person at the table mentioned the frustration that emerged over getting little appreciation for the amount of extra-analytical work that went into the dissertation project… databases, webpages, etc. None of it counted, presumably since none of it would go into the monograph.<sup><a href="http://moacir.com/donkeyhottie/2010/06/02/curating-and-analyzing-or-curating-vs-analyzing/#footnote_0_2044" id="identifier_0_2044" class="footnote-link footnote-identifier-link" title="These memories are intentionally a bit fuzzy and uncertain, since nothing was on the record, but I don&amp;#8217;t think that, if the people involved were to recognize themselves in what I&amp;#8217;ve produced here, they would complain. The details aren&amp;#8217;t terribly important, but what is important is to show that this discussion stretched beyond just the presentations I describe below.">1</a></sup></p>
<p>Personally, I had never really considered these issues. I always figured the non-monograph dissertation was a sort of fluky thing that happened after the fact, like how <em>Tractatus</em> became Wittgenstein&#8217;s dissertation as a formality. Similarly, I had never expected that extra-monograph-y work, like a database, <em>would</em> (or even <em>should</em>) count toward a PhD. In framing my project in the formal document of the proposal, I knew I would need to build a database. And since the proposal is a contract to do certain amount of work, I knew that building a database would be part of the labor, which can include reading (novels, theory, archival material), writing (the dissertation) and other things, like learning a foreign language or programming language or acquiring some other skill. So if I didn&#8217;t want to spend time with a db, I should&#8217;ve invented a project that didn&#8217;t require one.<sup><a href="http://moacir.com/donkeyhottie/2010/06/02/curating-and-analyzing-or-curating-vs-analyzing/#footnote_1_2044" id="identifier_1_2044" class="footnote-link footnote-identifier-link" title="&ldquo;Waste&rdquo; would be the currently appropriate verb, as the mess sits as an .mdb, waiting desperately to get converted to a real format with a web interface, but that&amp;#8217;s a project for another time.">2</a></sup></p>
<p>The Scholes example, though, messes my preconceived notions up a bit. And during the course of the Institute, precisely during <a href="http://www.toddpresner.com/?page_id=2" target="_blank">Todd Presner</a>&#8216;s great presentation on the work he has done with HyperCities, the tension in my preconceived notions was framed in a tidy grudge match: curating vs. analyzing.<sup><a href="http://moacir.com/donkeyhottie/2010/06/02/curating-and-analyzing-or-curating-vs-analyzing/#footnote_2_2044" id="identifier_2_2044" class="footnote-link footnote-identifier-link" title="I think that all of my Geoinst-related posts should be presented in this combative style. We had human (language) vs. machine (language), now this, and next will be, um&amp;#8230; fieldwork vs. armchairwork? Yeah!">3</a></sup></p>
<p><a href="http://hypercities.com/" target="_blank">HyperCities</a> calls itself a &#8220;collaborative research and educational platform for  traveling back in time  					to explore the historical layers of city spaces in an interactive,  hypermedia environment.&#8221; Pulling from various online repositories, the HyperCities project creates something like what &#8220;<em>The Arcades Project</em> would have looked like if Benjamin had Google Earth,&#8221; according to my notes. Layer atop layer of feature-rich historical data spatializes various narratives of the city that is being &#8220;hyperized&#8221; (my term). I instantly saw in it lots of potential for projects that friends of mine are working on (and duly let them know about it), but it left me cold regarding the very narrow silliness that is the argument of the/my dissertation.</p>
<p>Presner anticipated this response, if I recall correctly, by saying that the HyperCities project is &#8220;not an argument, but a curation.&#8221; He later added that curation can be its own argument, and I&#8217;ll get to that, but I want to spend a bit more time on the coarse opposition on the table. As a curated project, HyperCities allows the visitor to &#8220;explore&#8221; a city and a history as one object made up of a staggering number of embedded, spatialized narratives, with no real argument to be found.</p>
<p>And there&#8217;s a weird word in that description of HyperCities: &#8220;visitor.&#8221; I can&#8217;t imagine a dissertation having a &#8220;visitor.&#8221; It has, at best, &#8220;readers,&#8221; and one can usually count those readers on one hand. Further, the monograph dissertation makes an argument. It&#8217;s not a curation. Curation is more like Scholes&#8217;s dissertation, the kind of dissertation that, to me, at this time, sounds totally inconceivable <em>as a dissertation</em>.</p>
<p>Most of the participants, or so it seemed, at the Institute were faculty, so they were not, obviously, dissertating anymore. But wouldn&#8217;t their projects, which were often similarly more aligned along the curatorial side than the arguing (I&#8217;m going to use &#8220;analyzing&#8221; from now on) side, surely have to be eventually converted into the coin of the academic realm, the monograph that posits a thesis and engages in analysis to reach a conclusion? Generating these curatorial projects seem to be great for pedagogy and for &#8220;visitors,&#8221; but I&#8217;m surprised that they get folded into promotion.</p>
<p>In fact, a feature-rich website offered to the public sounds a whole lot like &#8220;service,&#8221; which, one presenter remarked, doesn&#8217;t count for much when it comes to promotion. I certainly think that&#8217;s a crummy state of affairs, and I&#8217;ve written before that I think that if the humanities <a href="http://www.1984produkts.com/donkeyhottie/2010/02/20/making-this-worth-it-by-going-to-the-streets/" target="_blank">wants to get its &#8220;we matter&#8221; mojo back</a>, a great way to do it is precisely via service-oriented projects, especially those with a collaborative element. But those are wishes, and, as <a href="http://en.wikipedia.org/wiki/Steve_Sanders_%2890210%29" target="_blank">Steve Sanders</a> famously remarked, <a href="http://en.wikipedia.org/wiki/If_wishes_were_horses,_beggars_would_ride" target="_blank">if wishes were horses, then beggars would ride</a>.</p>
<p>So as I wrote above, I was left cold by the presentation. I analyze, I said to myself. I don&#8217;t curate. And I still think that&#8217;s true, for what it&#8217;s worth, but Presner&#8217;s saying that &#8220;curation can be its own argument&#8221; requires a bit of expansion, since I think it muddies things up for me rather seriously.</p>
<p>If Presner described what he meant by the above, I didn&#8217;t jot it down. But to me, it reminds me of the role of the cartographer in making a map. Curation isn&#8217;t about collecting every little datapoint about every little thing. That would be a task for Arthur Danto&#8217;s &#8220;<a href="http://books.google.com/books?id=oH_aSwwPoNgC&amp;pg=PA170&amp;dq=%22ideal+chronicler%22&amp;hl=lt&amp;cd=1#v=onepage&amp;q=%22ideal%20chronicler%22&amp;f=false" target="_blank">Ideal Chronicler</a>,&#8221; and, as Danto shows, the Ideal Chronicler cannot exist. Curators, like cartographers, <em>make choices</em>. They have biases. A curation can&#8217;t have everything just like a map can&#8217;t show everything. Cue Monmonier&#8217;s axiom that not only is it &#8220;<a href="http://www.semcoop.com/book/9780226534213" target="_blank">easy to lie with maps… it&#8217;s essential</a>.&#8221; The map and the curation both reflect the choices of the person behind the product—<em>and</em> that person&#8217;s omissions, agenda, and so on.</p>
<p>But, amazingly, this sort of known incompleteness, even if it cannot be totally grasped, resonated with a second theme from the first day of the Institute, which was the conflict between reflexivity and positivism. <a href="http://www.cch.kcl.ac.uk/legacy/tmp/profiles/mj.htm" target="_blank">Martyn Jessop</a>, who presented on issues facing geospatial research in the humanities (a presentation similar to <a href="http://llc.oxfordjournals.org/cgi/content/abstract/23/1/39" target="_blank">his article from 2008 in <em>Literary and Linguistic Computing</em></a>), closes a section of his article by asserting, &#8220;Ultimately, the most significant contribution of GIS to humanities scholarship may not be as a positivist tool but as a reflexive one.&#8221; In his talk, he repeated this sentiment, and both times I did not understand what he meant by &#8220;reflexive.&#8221; Seeing GIS as &#8220;positivist&#8221; is pretty easy (and a possibly wrong&#8230; or, at least, conclusion-jumping… move), but I had no idea what the &#8220;reflexive&#8221; side would look like.</p>
<p>So I asked. Jessop answered that it involved collecting the data and looking at it, thinking about it. Reflecting on it. As I understood it, this meant a strategy of collecting data and not considering the day done once <em>R</em>^2 is calculated. This reflexive move then returned in Presner&#8217;s presentation. HyperCities invites the visitor to explore (or, perhaps, better, &#8220;play with&#8221;) the data, setting up playful situations that generate aleatory encounters that lead to future arguments.<sup><a href="http://moacir.com/donkeyhottie/2010/06/02/curating-and-analyzing-or-curating-vs-analyzing/#footnote_3_2044" id="identifier_3_2044" class="footnote-link footnote-identifier-link" title="I&amp;#8217;m not sure it&amp;#8217;s fair to suggest, which is what&amp;#8217;s implied by setting up this &amp;#8220;reflexive&amp;#8221; or &amp;#8220;play&amp;#8221; mode against the &amp;#8220;positivist&amp;#8221; one, that there isn&amp;#8217;t a certain amount of play and experimentation with data in the positivist social sciences, but that&amp;#8217;s not a terribly crucial point here.">4</a></sup> This idea persisted through to the final day, when <a href="http://nowviskie.org/" target="_blank">Bethany Nowviskie</a> presented on &#8220;graphesis,&#8221; a term I don&#8217;t know, but that I&#8217;ve described in my notes as a sort of &#8220;sketching&#8221; or &#8220;iterative graphical ideation/expression/inquiry&#8221; that generates, through the play of iteration, previously unseen strategies of argument.<sup><a href="http://moacir.com/donkeyhottie/2010/06/02/curating-and-analyzing-or-curating-vs-analyzing/#footnote_4_2044" id="identifier_4_2044" class="footnote-link footnote-identifier-link" title="The role of the random in project planning, inspiration, and execution is way outside of my expertise, but it seems like any and all projects involve a certain amount of randomness in the form of contingency: the agents are at a certain place at a certain time, and the like. As such, there is no dissertation in the world that does not have some stage of spaghetti being thrown against a wall that then moves forward from the contingent circumstances surrounding which spaghetti it was that, finally, stuck. The issue here is whether the play gets suffocated&mdash;straightened out&mdash;in the sclerotizing effort of the PhD candidate to make something Serious that can get the candidate Hired.">5</a></sup></p>
<p>So &#8220;curation can be its own argument&#8221; incorporates reflexivity, play, the aleatory, graphesis. It&#8217;s iterative and unpredictable. Exciting. Oh, <em>and</em> it&#8217;s service-oriented and open to the public. All this against &#8220;analytical,&#8221; which is closed, limited, deliberate. A precision strike. Maybe I should reconsider my earlier pride from declaring that “I analyze” instead of “I curate”?</p>
<p>And maybe, then, the dissertation that is only a monograph might begin to seem antiquated, selfish, and, perhaps, even, problematically élitist?</p>
<ol class="footnotes"><li id="footnote_0_2044" class="footnote">These memories are intentionally a bit fuzzy and uncertain, since nothing was on the record, but I don&#8217;t think that, if the people involved were to recognize themselves in what I&#8217;ve produced here, they would complain. The details aren&#8217;t terribly important, but what is important is to show that this discussion stretched beyond just the presentations I describe below.</li><li id="footnote_1_2044" class="footnote">“Waste” would be the currently appropriate verb, as the mess sits as an .mdb, waiting desperately to get converted to a real format with a web interface, but that&#8217;s a project for another time.</li><li id="footnote_2_2044" class="footnote">I think that all of my Geoinst-related posts should be presented in this combative style. We had human (language) vs. machine (language), now this, and next will be, um&#8230; fieldwork vs. armchairwork? Yeah!</li><li id="footnote_3_2044" class="footnote">I&#8217;m not sure it&#8217;s fair to suggest, which is what&#8217;s implied by setting up this &#8220;reflexive&#8221; or &#8220;play&#8221; mode against the &#8220;positivist&#8221; one, that there isn&#8217;t a certain amount of play and experimentation with data in the positivist social sciences, but that&#8217;s not a terribly crucial point here.</li><li id="footnote_4_2044" class="footnote">The role of the random in project planning, inspiration, and execution is way outside of my expertise, but it seems like any and all projects involve a certain amount of randomness in the form of contingency: the agents are at a certain place at a certain time, and the like. As such, there is no dissertation in the world that does not have some stage of spaghetti being thrown against a wall that then moves forward from the contingent circumstances surrounding which spaghetti it was that, finally, stuck. The issue here is whether the play gets suffocated—straightened out—in the sclerotizing effort of the PhD candidate to make something Serious that can get the candidate Hired.</li></ol>]]></content:encoded>
			<wfw:commentRss>http://moacir.com/donkeyhottie/2010/06/02/curating-and-analyzing-or-curating-vs-analyzing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Learning a language: human vs. machine</title>
		<link>http://moacir.com/donkeyhottie/2010/05/31/learning-a-language-human-vs-machine/</link>
		<comments>http://moacir.com/donkeyhottie/2010/05/31/learning-a-language-human-vs-machine/#comments</comments>
		<pubDate>Mon, 31 May 2010 15:35:52 +0000</pubDate>
		<dc:creator>m</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Snobbery]]></category>
		<category><![CDATA[assemblage]]></category>
		<category><![CDATA[Brian Croxall]]></category>
		<category><![CDATA[Brian Massumi]]></category>
		<category><![CDATA[Deleuze and Guattari]]></category>
		<category><![CDATA[digital humanities]]></category>
		<category><![CDATA[geography]]></category>
		<category><![CDATA[Geoinst]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[HASTAC]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[Matthew Kirschenbaum]]></category>
		<category><![CDATA[natural language processing]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Ryan Cordell]]></category>
		<category><![CDATA[the dead]]></category>

		<guid isPermaLink="false">http://www.1984produkts.com/donkeyhottie/?p=2029</guid>
		<description><![CDATA[Should a foreign language requirement for a literary studies PhD be fulfillable by a machine language? Or maybe even by a methods course (like a course in statistics, GIS, or some other competence in computational technology)? These questions have been on my mind since I flew back Sunday morning from an energizing time at lovely [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_2030" class="wp-caption alignright" style="width: 310px"><a href="http://www.flickr.com/photos/moacir/4653814966/in/set-72157624167980012/"><img class="size-medium wp-image-2030" title="Screen shot 2010-05-30 at 22.37.57" src="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2010/05/Screen-shot-2010-05-30-at-22.37.57-300x217.png" alt="" width="300" height="217" /></a><p class="wp-caption-text">UVA Rotunda. (click for original)</p></div>
<p>Should a foreign language requirement for a literary studies PhD be fulfillable by a machine language? Or maybe even by a methods course (like a course in statistics, GIS, or some other competence in computational technology)?</p>
<p>These questions have been on my mind since I flew back Sunday morning from an energizing time at lovely (since it <a href="http://www.flickr.com/photos/moacir/4653195437/in/set-72157624167980012/" target="_blank">reminds me</a> of high school) UVA, where I participated in the NEH-funded <a href="http://www2.lib.virginia.edu/scholarslab/geospatial/" target="_blank">Institute for Enabling Geospatial Research</a> in the Humanities, run out of UVA&#8217;s impressive <a href="http://www2.lib.virginia.edu/scholarslab/index.html" target="_blank">Scholar&#8217;s Lab</a>. It was a great time, I appreciate the NEH for tossing the cheese the Scholar&#8217;s Lab&#8217;s way, and I especially appreciate all the hard work the UVA people did to pull off a seamless little three-day event.</p>
<p>Over the next few days (read: weeks), I hope to write up more about the various things that went on at UVA, but the one that has been needling me most came from a quick flash of Twitter conversation on the topics in the lede, prompted by Brian (<a href="http://www.twitter.com/briancroxall/" target="_blank">@briancroxall</a>), who wondered <a href="http://twitter.com/briancroxall/status/14709653035" target="_blank">whether GIS methodologies should count toward a &#8220;methods&#8221; course requirement</a> in a PhD program, <a href="http://www.history.upenn.edu/grad/guidelines.shtml#language" target="_blank">as it already does at Penn&#8217;s History Department</a>. This then led toward the suggestion that, perhaps, proficiency in a machine language should be accepted as fulfillment of a foreign language requirement in a PhD program. Ryan (<a href="http://twitter.com/ryancordell/" target="_blank">@ryancordell</a>) even <a href="http://twitter.com/ryancordell/status/14711543473" target="_blank">wished he had spent the time cramming for a French exam learning Ruby, instead</a>.</p>
<p>As I <a href="http://twitter.com/muziejus/status/14711598162" target="_blank">mentioned while recusing myself</a>, I&#8217;m kind of a militant about foreign languages (the more the better), to the point where I would consider basic Spanish proficiency a <em>requirement</em> of any specialist of American (U.S.) literature.</p>
<p>But after thinking about it, I realized that the two languages, human and machine, are, bizarrely, and in most mainstream use scenarios, totally non-comparable. Human language proficiency, at the literature PhD level at least, is measured in <em>ability to read</em>.<sup><a href="http://moacir.com/donkeyhottie/2010/05/31/learning-a-language-human-vs-machine/#footnote_0_2029" id="identifier_0_2029" class="footnote-link footnote-identifier-link" title="I fulfilled the requirement with Russian by showing that I was reading Russian literature and engaging in literary discussion of the texts without translation.">1</a></sup> The mere fact that my classmates can (and have) fulfilled their requirements by taking &#8220;Reading German&#8221; or Latin (dead language!) courses demonstrates that the key skill being taught is reading.</p>
<p>Someday being able to read a machine language, however, is <em>never</em> the goal of learning it. As Matt Kirschenbaum writes in his <a href="http://mkirschenbaum.wordpress.com/2010/05/23/hello-worlds/" target="_blank">appeal to humanities students to learn to program</a> (my emph):</p>
<blockquote><p>Many of us in the humanities miss the extent to which  <strong>programming is a creative and generative activity</strong>…<strong> </strong>Programming is about choices and constraints, and  about how you <strong>choose to model some select slice of the world around you</strong> in the formal environment of a computer. This idea of modeling is vital.</p></blockquote>
<p>From this promising beginning, Kirschenbaum comes out in favor of using machine languages as substitutes for human languages in fulfilling requirements.<sup><a href="http://moacir.com/donkeyhottie/2010/05/31/learning-a-language-human-vs-machine/#footnote_1_2029" id="identifier_1_2029" class="footnote-link footnote-identifier-link" title="He hedges, hardcore, by arguing that, in fact, it should be not only case-by-case but implicitly appropriate only for programs that require two foreign languages, which is not, as I mention, the case at my university, where one foreign language suffices.">2</a></sup>  If one is studying contemporary American literature, in which code can appear, he argues, it has certain value.</p>
<p>But Kirschenbaum&#8217;s understanding of the value of the foreign language requirement seems misplaced.<sup><a href="http://moacir.com/donkeyhottie/2010/05/31/learning-a-language-human-vs-machine/#footnote_2_2029" id="identifier_2_2029" class="footnote-link footnote-identifier-link" title="I am working under a bit of a fantasy here about what the foreign language requirement should do for PhD students. I know the reality is just about always different.">3</a></sup> In the beginning of his article he criticizes those who view what we literary scholars do as little more than correcting spelling and grammar in comparison to those who think wrongly that computer scientists do nothing but fix bugs in code. So why, then, is he willing to imagine the foreign language requirement in such reductive terms when he says explains that (my emph),</p>
<blockquote><p>Knowledge of a foreign language is desirable so that <strong>a scholar does not  have to rely</strong> exclusively on existing translations and so that the <strong> accuracy</strong> of others’ translations can be <strong>scrutinized</strong>. One also learns  something about the idiosyncrasies of the English language in the  process.</p></blockquote>
<p>Really? <em>That&#8217;s it?</em> Nothing about alterity, about imagining different conceptual schemes (<em>pace</em> Davidson), about forcing a disruption in one&#8217;s comfort zones (and comfort Weltanschauungs)? I should learn French just so I can take Massumi to task on how he continues the tradition of the translation of &#8220;<a href="http://en.wikipedia.org/wiki/A_Thousand_Plateaus" target="_blank">agencement</a>”? That seems a bit&#8230; thin.</p>
<p>Furthermore, when he pushes human and machine languages together, since knowing code helps one understand novels in which code appears, he is working against the very point of programming with which he opens his piece: programming is world-making. Sure, if I know C, I can read a novel that has pages of C. But I&#8217;m interpreting it and <em>re</em>-generating there, not generating tout court, as I would be with a &#8220;<a href="http://en.wikipedia.org/wiki/Hello_world_program" target="_blank">Hello World</a>&#8221; program.</p>
<p>So the confusion in the Kirschenbaum piece gets reflected in the argument on Twitter: a willingness to compare human and machine languages, perhaps only since they are both called &#8220;languages,&#8221; emerges. This gets amplified, then, in the academic world; looking back at Penn&#8217;s history requirements, we see that they treat foreign language acquisition as a &#8220;competence&#8221; in a &#8220;technical area&#8221; (if I read the guideline correctly), akin to competence in GIS or statistics. Language is foregrounded&#8211;the technical option seems available more to US history scholars&#8211;but it is still treated as part of the same piece.</p>
<p>But history is not literary study; in an English department, I maintain, knowing French and python are completely different beasts serving two different masters in the scholarly process. The former relates to how stuff goes into the scholar (reading), while the latter relates to what comes out of the scholar (analysis). Exceptions are obvious, as one could publish in French and analysis usually involves quite a bit of feedback looping, but I think that I&#8217;m more or less right for the huge majority of cases.</p>
<p>So, on the one hand, I do wish that I could get the sense that computational methods training had greater appeal in the humanities.<sup><a href="http://moacir.com/donkeyhottie/2010/05/31/learning-a-language-human-vs-machine/#footnote_3_2029" id="identifier_3_2029" class="footnote-link footnote-identifier-link" title="My committee certainly had no issues with my pursuing further foreign language acquisition, or learning statistics, or taking a full year&amp;#8217;s worth of GIS training. The promise to learn and work with GISes was written into my dissertation proposal, even!">4</a></sup> But, on the other, I do not think that it is entirely appropriate to view methods and foreign language as either/or objects in a course of study, when, as at my university, a student needs to show only proficiency in a single foreign language.</p>
<p>Given how my colleagues dismissively look back on their foreign language requirement (something like &#8220;I took &#8216;Reading German&#8217; and remember none of it&#8221; is common), this distinction is probably unnecessary. In fact, as far as real-world skills are concerned, a much more lucrative future can be built up in a quarter-long course on Ruby than in the first quarter of first-year French. Human languages require care and attention, like Gabriel Conroy&#8217;s going to the continent to &#8220;<a href="http://books.google.com/books?id=VjcoLqAToaQC&amp;pg=PA23&amp;dq=%22keep+in+touch+with+the+languages%22&amp;hl=lt&amp;cd=5#v=onepage&amp;q=%22keep%20in%20touch%20with%20the%20languages%22&amp;f=false" target="_blank">keep in touch with the languages</a>.&#8221; But though machine languages also benefit from practice (like any skill), it strikes me that it&#8217;s much easier to get back in the coding swing.</p>
<p>Still, maybe the question gets a bit more provocative if we consider the language requirement not at the PhD level, but, rather, at the undergrad level. Undergrads at my university can fulfill their math requirement by <a href="http://squishee.uchicago.edu/newstudents/mathematical-sciences-courses-and-sequences" target="_blank">taking intro level CS courses</a> that include vocational programming courses for web development, but the math requirement is certainly not the same thing as the foreign language requirement, which can be <a href="http://college.uchicago.edu/academics-advising/course-selection-registration/language-competency" target="_blank">met in a dizzying array of ways</a>. I cannot imagine that my university, which has made a huge deal over the past decade about expanding study abroad opportunities, would start accepting perl proficiency as meeting the foreign language requirement. And I&#8217;m not sure that&#8217;s bad.</p>
<p>Now it seems like we&#8217;re <em>still</em> comparing two things, human and machine languages, that can only really be compared in coarse ways, like through simple, macro-level questions of time management or speculation regarding future employability&#8211;two things, I think, that fall out of consideration at the PhD level (ha!).</p>
<p>So back to Kirschenbaum as I try to wrap up this wandering. HASTAC recently published a response to his article that reminds readers that one shouldn&#8217;t think that <a href="http://www.hastac.org/blogs/evan-donahue/hello-world-apart-why-humanities-students-should-not-learn-program" target="_blank">CS familiarity is demonstrated by machine language proficiency</a>. This is certainly true: I know how to build and manage a GIS, but I don&#8217;t think I&#8217;m at all a geographer. I can code, but I&#8217;m not a computer scientist. And I don&#8217;t think my two years of formal French language study make me a scholar of French.</p>
<p>The article continues to discuss <a href="http://en.wikipedia.org/wiki/Natural_language_processing" target="_blank">NLP</a>, suggesting that the humanistic disciplines and CS have quite a lot in common. This is certainly true, too: my old CS roommate and I were often working on similar projects from different angles. But that then cuts out the final leg from the table that is Kirschenbaum&#8217;s argument. In describing programming as world-making, Kirschenbaum compares the coder to Jane Austen, a formidable world-maker herself of reasonable renown. Yet CSers working on NLP aren&#8217;t making worlds. They are investigating the world around us, just like us boring literary scholars.</p>
<ol class="footnotes"><li id="footnote_0_2029" class="footnote">I fulfilled the requirement with Russian by showing that I was reading Russian literature and engaging in literary discussion of the texts without translation.</li><li id="footnote_1_2029" class="footnote">He hedges, hardcore, by arguing that, in fact, it should be not only case-by-case but implicitly appropriate only for programs that require two foreign languages, which is not, as I mention, the case at my university, where one foreign language suffices.</li><li id="footnote_2_2029" class="footnote">I am working under a bit of a fantasy here about what the foreign language requirement <em>should</em> do for PhD students. I know the reality is just about always different.</li><li id="footnote_3_2029" class="footnote">My committee certainly had no issues with my pursuing further foreign language acquisition, or learning statistics, or taking a full year&#8217;s worth of GIS training. The promise to learn and work with GISes was written into my dissertation proposal, even!</li></ol>]]></content:encoded>
			<wfw:commentRss>http://moacir.com/donkeyhottie/2010/05/31/learning-a-language-human-vs-machine/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Type B Digital Humanist</title>
		<link>http://moacir.com/donkeyhottie/2010/04/23/type-b-digital-humanist/</link>
		<comments>http://moacir.com/donkeyhottie/2010/04/23/type-b-digital-humanist/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 20:55:27 +0000</pubDate>
		<dc:creator>m</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Snobbery]]></category>
		<category><![CDATA[Chronicle of Higher Education]]></category>
		<category><![CDATA[digital humanities]]></category>
		<category><![CDATA[Matthew Jockers]]></category>

		<guid isPermaLink="false">http://www.1984produkts.com/donkeyhottie/?p=2017</guid>
		<description><![CDATA[My little collection of webpages and blog posts (pearltree) grows slowly, but I was glad to add a post today by Matthew Jockers, whose work got highlighted in an article in the Chronicle back in 2008, just as I was designing my dissertation proposal. It was inspiring in the sense that I felt like what [...]]]></description>
			<content:encoded><![CDATA[<p>My little collection of webpages and blog posts (pearltree) grows slowly, but I was glad to add a post today by Matthew Jockers, whose<a href="http://chronicle.com/article/Literary-Geospaces/12442" target="_blank"> work got highlighted in an article in the <em>Chronicle</em></a> back in 2008, just as I was designing my dissertation proposal. It was inspiring in the sense that I felt like what I was doing was related, but cooler. I felt encouraged, in a word. I wasn&#8217;t being as bizarrely idiosyncratic as I feared.</p>
<p>Anyway, Jockers divides the digital humanities into two groups: those that work on digital objects and those who use digital tools on objects (that may or may not be digital). In my department, the former group (“A”) seems to circulate around the <a href="http://cas.uchicago.edu/workshops/descriptions/new_media.shtml" target="_blank">New Media Workshop</a>, and the latter&#8230; well, they don&#8217;t really seem to have a high profile.</p>
<p>I like to imagine myself as part of the second group, the group B, to the point where I&#8217;m not positive I&#8217;d even consider those who are exclusively in group A &#8220;Digital Humanists,&#8221; but that&#8217;s probably not a fight worth having. Point is, I&#8217;ve got some of the cred,<sup><a href="http://moacir.com/donkeyhottie/2010/04/23/type-b-digital-humanist/#footnote_0_2017" id="identifier_0_2017" class="footnote-link footnote-identifier-link" title="Membership in the Alliance of Digital Humanities Organizations, utilizing tools like R, ArcGIS, and GeoDa in my work">1</a></sup> but one glance at the <a href="http://llc.oxfordjournals.org/content/vol25/issue1/index.dtl" target="_blank">latest <em>Literary and Linguistic Computing</em></a> indicates that I&#8217;m still a total n00b.</p>
<p>Still, the reason I bring this all up is that Jockers closes his post by pointing out that there is nothing quite as &#8220;new&#8221; about us Type B Digital Humanists as <a href="http://www.1984produkts.com/donkeyhottie/2010/02/24/cultural-neuroscience-to-the-rescue-of-us-lost-humanists/" target="_blank">current outsider articles</a> seem to be suggesting. As he writes:</p>
<blockquote><p>I came to utilize computation in my research not because the siren&#8217;s song of revolution was tempting me away from my dusty, tired, and antiquated approaches to literature. Rather, computational tools and statistical methods simply offered a way of asking and exploring the questions that I (and others such as those pictured above) have about the literary field. What has changed is not the object of study but the nature of the questions.</p></blockquote>
<p>That&#8217;s right. I mean, it&#8217;s tough to say straight that one did not pursue question <em>x</em> instead of question <em>y</em> without some kind of fantasy of &#8220;revolution”; there&#8217;s a reason a dissertation proposal includes a &#8220;state of the field&#8221; section, after all. But what I extrapolate from Jockers&#8217;s position is dead on: you can&#8217;t digi yourself up in a useful manner until your questions need digi techniques to get answered (cue my usual complaint about Wordles).</p>
<p>And that Wordle complaint is worth cuing again, since the point deserves being repeated over, and over, and over, and over&#8230;</p>
<ol class="footnotes"><li id="footnote_0_2017" class="footnote">Membership in the <a href="http://www.digitalhumanities.org/" target="_blank">Alliance of Digital Humanities Organizations</a>, utilizing tools like <a href="http://www.r-project.org/" target="_blank">R</a>, <a href="http://www.esri.com/software/arcgis/" target="_blank">ArcGIS</a>, and <a href="http://geodacenter.asu.edu/" target="_blank">GeoDa</a> in my work</li></ol>]]></content:encoded>
			<wfw:commentRss>http://moacir.com/donkeyhottie/2010/04/23/type-b-digital-humanist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Task managing a dissertation</title>
		<link>http://moacir.com/donkeyhottie/2010/01/16/task-managing-a-dissertation/</link>
		<comments>http://moacir.com/donkeyhottie/2010/01/16/task-managing-a-dissertation/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 12:57:39 +0000</pubDate>
		<dc:creator>m</dc:creator>
				<category><![CDATA[Humanities Dissertation Project]]></category>
		<category><![CDATA[Deleuze and Guattari]]></category>
		<category><![CDATA[devonthink]]></category>
		<category><![CDATA[Doodle Jump]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[Profhacker]]></category>
		<category><![CDATA[Ryan Cordell]]></category>
		<category><![CDATA[task management]]></category>
		<category><![CDATA[Things]]></category>

		<guid isPermaLink="false">http://www.1984produkts.com/donkeyhottie/?p=1892</guid>
		<description><![CDATA[The problem of the war machine, or the firing squad: is a general necessary for n individuals to manage to fire in unison? Our applications for dissertation fellowships are due at the end of February, which means that I&#8217;ve had my sole chapter on the mind quite a bit lately, even while wasting most of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2010/01/Image-1.png"><img class="alignright size-medium wp-image-1893" title="Image 1" src="http://www.1984produkts.com/donkeyhottie/wordpress/wp-content/uploads/2010/01/Image-1-300x176.png" alt="" width="300" height="176" /></a></p>
<blockquote><p>The problem of the war machine, or the firing squad: <a href="http://books.google.com/books?id=B9xLrS6mpGoC&amp;pg=PA19&amp;dq=The+problem+of+the+war+machine,+or+the+firing+squad:+is+a+general+necessary+for+n+individuals+to+manage+to+fire+in+unison%3F&amp;hl=fr&amp;cd=1#v=onepage&amp;q=The%20problem%20of%20the%20war%20machine%2C%20or%20the%20firing%20squad%3A%20is%20a%20general%20necessary%20for%20n%20individuals%20to%20manage%20to%20fire%20in%20unison%3F&amp;f=false" target="_blank">is a general necessary for <em>n</em> individuals to manage to fire in unison?</a></p></blockquote>
<p>Our applications for dissertation fellowships are due at the end of February, which means that I&#8217;ve had my sole chapter on the mind quite a bit lately, even while wasting most of yesterday playing <em><a href="http://toucharcade.com/2009/03/20/doodle-jump-takes-papijump-to-the-next-level/" target="_blank">Doodle Jump</a></em>. So it was excellent timing that <a href="http://ryan.cordells.us/" target="_blank">Ryan Cordell</a> should come out with his post on using <a href="http://culturedcode.com/" target="_blank">Cultured Code</a>&#8216;s <em>Things</em> to help manage tasks over at <a href="http://www.profhacker.com" target="_blank"><em>Profhacker</em></a> earlier this week. Putting together a dissertation is such a crazy project with pieces all over the place, that I feel that it&#8217;s necessary to rely on some sort of software tools just to save on redundancy.<sup><a href="http://moacir.com/donkeyhottie/2010/01/16/task-managing-a-dissertation/#footnote_0_1892" id="identifier_0_1892" class="footnote-link footnote-identifier-link" title="My handwritten notes of ideas I get in bed or something, for example, are often very, very redundant. Software helps eliminate that duplicated work by showing one that it is duplicated work.">1</a></sup></p>
<p>Anyway, Ryan makes the case for using <em>Things</em> as the general to get the firing squad to shoot in unison, the dissertation being both rhizome and a tree. But more precisely, his post is pretty excellent, <a href="http://www.profhacker.com/2010/01/14/putting-the-things-in-gtd-managing-an-academic-life-with-cultured-codes-things/" target="_blank">because it provides a lot of use scenarios specific to academics</a>&#8211;the sorts of scenarios that are completely obvious, but only in hindsight. Making a task with a deadline from an emailed CFP? Duh! Yet I had never thought of doing that, myself. Mostly, however, the post reminded me that not only had I spent a considerable chunk of change on <em>Things</em>, but that adding tasks can be done via the quick-entry popup in any application, a popup that includes references to the url you were looking at when you summoned it!</p>
<p>See, over the past half year or so, <em>Things</em> had become nothing more than the repository of the list of movies I wanted to see along with reasons why I wanted to see them. My inbox, instead, became my to-do list. This is suboptimal for three main reasons: first, even with Gmail labels, it&#8217;s hard to distinguish tasks from each other or see how some might actually be related. Second, an email won&#8217;t tell you when the deadline has passed. And, third, and most important, your inbox is constantly getting augmented by stuff that isn&#8217;t necessarily tasks, meaning that it is an unnatural blend of to-do list and, well, inbox. And that&#8217;s a mess.</p>
<p>So Ryan&#8217;s piece encouraged me to trim my inbox down to just four emails as well as separate out into discrete tasks the long lists I emailed myself about things I needed to do (read or think about) for my dissertation. Now, in <em>Things</em>, I can order them, group them, etc. And most importantly, I feel like I have some control over the process of thinking about a dissertation again.</p>
<p><em>Things</em> is not perfect. Sharing the task database using <a href="https://www.dropbox.com/referrals/NTEyMDgyNjY5"><em>Dropbox</em></a> is rather risky. Further, syncing with the iPhone is a pain: it doesn&#8217;t sync when cradled&#8211;one has to open <em>Things</em> on the iPhone while it&#8217;s also running on a computer and both are on the same subnet. But why would I ever launch the <em>Things</em> app on my phone when it&#8217;s on the same subnet as my computer? If we&#8217;re on the same subnet, that means I&#8217;m <em>at</em> my computer! It would also be nice, and this may be possible though I just don&#8217;t yet know how, if I could have stuff automatically get sorted into certain areas based on the tags I give; everything tagged &#8220;dissertation&#8221; should land in my &#8220;Dissertation&#8221; area. And, finally, I would love if I could sync <em>Things</em> with Gcal, as right now I&#8217;m sometimes torn between putting something in Gcal and putting something in <em>Things</em>. Usually I opt for the calendar if the stuff is date-specific.<sup><a href="http://moacir.com/donkeyhottie/2010/01/16/task-managing-a-dissertation/#footnote_1_1892" id="identifier_1_1892" class="footnote-link footnote-identifier-link" title="Apparently, the application can sync with iCal. I think I knew this, but there was something about the implementation that I did not like. Still, this means that I can most likely use iCal as a bridge to Gcal, but that has been messy in the past.">2</a></sup></p>
<p>The standard caveats apply about task managers (and any organizational tools, including <a href="http://www.1984produkts.com/donkeyhottie/tag/devonthink/"><em>DevonThink</em></a>): it&#8217;s only useful if you use it, and what&#8217;s useful for one might not be useful for another. But for the time being, I&#8217;m back!</p>
<ol class="footnotes"><li id="footnote_0_1892" class="footnote">My handwritten notes of ideas I get in bed or something, for example, are often very, very redundant. Software helps eliminate that duplicated work by showing one that it <em>is</em> duplicated work.</li><li id="footnote_1_1892" class="footnote">Apparently, the application can sync with <em>iCal</em>. I think I knew this, but there was something about the implementation that I did not like. Still, this means that I can most likely use <em>iCal</em> as a bridge to Gcal, but that has been messy in the past.</li></ol>]]></content:encoded>
			<wfw:commentRss>http://moacir.com/donkeyhottie/2010/01/16/task-managing-a-dissertation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

