<?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>Anterotesis</title>
	<atom:link href="http://anterotesis.com/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://anterotesis.com/wordpress</link>
	<description>Answering one question with another</description>
	<lastBuildDate>Fri, 03 Feb 2012 15:43:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Installing Zotero standalone on Ubuntu 11.10</title>
		<link>http://anterotesis.com/wordpress/2011/11/installing-zotero-standalone-on-ubuntu-11-10/</link>
		<comments>http://anterotesis.com/wordpress/2011/11/installing-zotero-standalone-on-ubuntu-11-10/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 21:52:19 +0000</pubDate>
		<dc:creator>johnl</dc:creator>
				<category><![CDATA[geekery]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[zotero]]></category>

		<guid isPermaLink="false">http://anterotesis.com/wordpress/?p=618</guid>
		<description><![CDATA[Zotero is an open source reference manager, produced by the Roy Rosenzweig Center for History and New Media.  To say &#8216;reference manager&#8217; understates what it is capable of: you can use it to organize your reading, collaborate with others, and &#8230; <a href="http://anterotesis.com/wordpress/2011/11/installing-zotero-standalone-on-ubuntu-11-10/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a title="Zotero" href="http://www.zotero.org/" target="_blank">Zotero</a> is an open source reference manager, produced by the <a title="Roy Rosenzweig Center for History and New Media" href="http://chnm.gmu.edu/" target="_blank">Roy Rosenzweig Center for History and New Media</a>.  To say &#8216;reference manager&#8217; understates what it is capable of: you can use it to organize your reading, collaborate with others, and produce bibliographies in <a title="Video: Make a Bibliography the Easy Way! Zotero Tutorial " href="http://www.youtube.com/watch?v=Z_OUM-bZrMw" target="_blank">a matter of seconds</a>.</p>
<p>Having started off as a Firefox plug-in, it has recently released a <a title="Zotero 3 beta release announcement" href="http://www.zotero.org/blog/announcing-zotero-3-0-beta-release/" target="_blank">beta of a stand-alone application</a>. More versatile than the browser-based version, it is however a little more tricky to install on Linux. (On OS X it installs via the usual click, drag and drop.) Hence this post. These instructions are based on Ubuntu 11.10, with the Unity desktop, but they should work for any variant. Certainly it works for my preferred flavour, <a title="Xubuntu: a lighter version of Ubuntu" href="http://www.xubuntu.org/" target="_blank">Xubuntu</a>.</p>
<p>Warning: this is beta software! Warning 2: these instructions come with no guarantee of success!</p>
<p>1: Download the <a title="Zotero 3.0b1 downloads page" href="http://www.zotero.org/support/3.0" target="_blank">Zotero standalone beta tarball</a>. For a 32bit chip, you&#8217;ll want the x86 version, for a 64bit get the x86_64. If you don&#8217;t know what type of system you have, open a terminal and type:</p>
<pre>uname -m</pre>
<p>You&#8217;ll get something like i686 if you are running a 32 bit system, and x86_64 if you have a 64 bit system. Note that you may be able to run the 32 bit version of Zotero on a 64 bit system, and that even if you have a 64 bit chip, your version of linux might be 32 bit.</p>
<p>2: Unzip it. You&#8217;ll now have a folder called Zotero_linux, appended with -i686 for the 32-bit version, and -x86_64 for the 64bit. Right click on it, choose &#8216;properties&#8217; from the menu, and then the permissions tab, and tick the &#8216;Program&#8217; box to allow it to run as a program.</p>
<p>3: As it stands, Zotero will work. But having the package in your home directory is a bit messy, and means it isn&#8217;t available for all users of the computer. So to be both neat and useful, open a terminal and type</p>
<pre>sudo mv ~/Downloads/Zotero_linux-i686/ /opt</pre>
<p>This will move Zotero to your /opt directory. Note that because this is Ubuntu, the command has to be run with sudo. For many other linux distros, you&#8217;ll have to log in as root.</p>
<p>4: So far so good, and so easy. The next step is to get the system to recognize that it has been installed. To do this you have to make a <a title="Spec for .desktop files" href="http://standards.freedesktop.org/desktop-entry-spec/latest/" target="_blank">.desktop</a> file in usr/share/applications. Copy and paste the following text into a file called zotero.desktop:</p>
<pre>#!/usr/bin/env xdg-open
[Desktop Entry]
Type=Application
Name=Zotero
GenericName=Bibliography Manager
Icon=/opt/zotero_linux-i686/chrome/icons/default/default48.png
Exec= /opt/Zotero_linux-i686/zotero %f
Categories=Office
Terminal=false</pre>
<p>Then send it to usr/share/applications, where most of the .desktop files reside:</p>
<pre>sudo mv zotero.desktop /usr/share/applications</pre>
<p>5: And finally, find and run it. Go to the &#8216;dash&#8217; in the dock &#8211; or Application Finder, under Accessories in the Xubuntu menu &#8211; search for zotero, and it should show up under applications. Click and all being well, Zotero will start up. If you want to keep it in the dock, right-click the icon and tick the option to keep it there.</p>
<p>Uninstalling: To remove Zotero, open a terminal and type: sudo rm -r /opt/Zotero_linux-[version] and sudo rm /usr/share/applications/zotero.desktop. The users own files are in the hidden folder ~/.zotero.</p>
<p>Further support for Zotero can be found on their <a title="Zotero documentation" href="http://www.zotero.org/support/" target="_blank">documentation pages</a> and <a title="Zotero forums" href="http://forums.zotero.org/" target="_blank">forums</a>. This post is copyright under the <a title="Creative Commons CC BY License" href="http://creativecommons.org/licenses/by/3.0/" target="_blank">CC BY license</a>. Use to your heart&#8217;s content, but please acknowledge me!</p>
]]></content:encoded>
			<wfw:commentRss>http://anterotesis.com/wordpress/2011/11/installing-zotero-standalone-on-ubuntu-11-10/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Locating London&#8217;s Pasts</title>
		<link>http://anterotesis.com/wordpress/2011/10/locating-londons-pasts/</link>
		<comments>http://anterotesis.com/wordpress/2011/10/locating-londons-pasts/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 10:18:34 +0000</pubDate>
		<dc:creator>johnl</dc:creator>
				<category><![CDATA[digital history]]></category>
		<category><![CDATA[archives]]></category>
		<category><![CDATA[gis]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[maps]]></category>

		<guid isPermaLink="false">http://anterotesis.com/wordpress/?p=698</guid>
		<description><![CDATA[Last week I attended a seminar on the latest venture from Sheffield and Hertfordshire Universities&#8217; family of digital history projects, Locating London&#8217;s Past. The aim is to create a sort of geographical front end to a number of London-centred datasets, &#8230; <a href="http://anterotesis.com/wordpress/2011/10/locating-londons-pasts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Last week I attended a seminar on the latest venture from Sheffield and Hertfordshire Universities&#8217; family of digital history projects, <a title="Locating London's Past blog" href="http://locatinglondonspast.wordpress.com/" target="_blank">Locating London&#8217;s Past</a>. The aim is to create a sort of geographical front end to a number of London-centred datasets, among them its sister project, the famed <a title="Old Bailey Proceedings Online" href="http://www.oldbaileyonline.org/" target="_blank">Old Bailey Proceedings Online</a>. Using a remarkable rasterized version of John Rocque&#8217;s 1746 map of London, the first Ordnance Survey map, parish boundaries, and underpinned by the ubiquitous Google map, the data can be plotted in the context of a contemporary city.</p>
<p>The site isn&#8217;t live yet, but attendees were able to have a play with the beta version, and I found it very impressive. First thing I did was check for cases of monetary crime in the 17th and 18th centuries, and their distribution across the region. In a couple of minutes, I had formulated a query and got it displayed in front of me. St James Clerkenwell, St Giles in the Fields and St Martins in the Fields, all outside the City of London, came out top. It has been suggested that coining was a pursuit often practiced in slums; all three areas contained notorious rookeries.</p>
<p>This was a quick experiment and one shouldn&#8217;t jump to conclusions. The number of cases was quite low &#8211; just 9 in St Giles, if memory serves. Population density and geographical size of the parish need to be taken into account. But it does illustrate the possibilities, and the ease of use, of this site.</p>
<p>There were a few bugs and problems. The old difficulty of markers overlapping one another hasn&#8217;t been solved with this site. A toggleable, full-window view of the map would be useful, as zooming in on an area pushes its neighbours out of sight, diminishing context. The lack of unique URLs makes bookmarking and referencing very difficult.</p>
<p>I also felt that it was difficult to see landmarks and thus orient oneself: a number of the test cases claimed to show marked differences between the City proper and Westminster, but without this political geography being explicitly marked on the map it looked more like a contrast between an indistinct west and east. And if this boundary had been explicit, the picture may have been described in a different way. I have a hunch that there are very important divergences between the City of London <em>within</em> the Walls, and the extramural wards. This is not easy to see on the site as it stands.</p>
<p>A concluding discussion on digital history and GIS covered issues such as the lack of an academic GIS infrastructure, the lack of training available and the possibilities of importing and exporting data. The need for easy mapping software was only briefly raised, although the website <a title="Dotspotting" href="http://dotspotting.org/" target="_blank">dotspotting</a> was recommended.</p>
<p>What struck me later was that Locating London&#8217;s Past wasn&#8217;t your standard GIS-based website but a real investigative tool, requiring a high level of engagement on the part of the user. With many map-centric websites one can do little more than take a virtual walk through an area, looking at a restricted range of points. With LLP, one has to formulate a question, translate it into a search query and then analyze the output, which may be suggestive in itself but by no means obvious. The difference is partly due to the enormous quantity of geo-referenced data LLP has, so much that it cannot all fit on a map. But there&#8217;s a qualitative aspect as well, that puts the stress not on cartography but on the database. Without a question, there is nothing to see.</p>
<p><a title="Tim Hitchcock's blog" href="http://historyonics.blogspot.com/" target="_blank">Tim Hitchcock</a> has said that London is the most digitized city in the world. More of its records have been made available online than anywhere else in the world. There&#8217;s more to do of course, most notably in relation to areas transpontine, but the focus now has to be on how we use this material. Locating London&#8217;s Past offers not just a visualization of data, but also a way of thinking about different uses of it.</p>
]]></content:encoded>
			<wfw:commentRss>http://anterotesis.com/wordpress/2011/10/locating-londons-pasts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making the TCP-ECCO texts accessible</title>
		<link>http://anterotesis.com/wordpress/2011/08/making-the-tcp-ecco-texts-accessible/</link>
		<comments>http://anterotesis.com/wordpress/2011/08/making-the-tcp-ecco-texts-accessible/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 10:47:29 +0000</pubDate>
		<dc:creator>johnl</dc:creator>
				<category><![CDATA[commons]]></category>
		<category><![CDATA[digital history]]></category>
		<category><![CDATA[archives]]></category>
		<category><![CDATA[c18th]]></category>
		<category><![CDATA[historical commons]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[textcamp]]></category>

		<guid isPermaLink="false">http://anterotesis.com/wordpress/?p=605</guid>
		<description><![CDATA[In April, the Text Creation Partnership released into the public domain over 2,000 eighteenth century works,  in plain text. You can read more about this project and the texts on their blog: TCP Releases Over 4,000 New EEBO-TCP Texts What the &#8230; <a href="http://anterotesis.com/wordpress/2011/08/making-the-tcp-ecco-texts-accessible/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In April, the <a title="Text Creation Partnership blog" href="http://textcreate.wordpress.com/" target="_blank">Text Creation Partnership</a> released into the public domain over 2,000 eighteenth century works,  in plain text. You can read more about this project and the texts on their blog:</p>
<p><a title="TCP blog: release announcement" href="http://textcreate.wordpress.com/2011/04/06/tcp-releases-over-4000-new-eebo-tcp-texts/" target="_blank">TCP Releases Over 4,000 New EEBO-TCP Texts</a></p>
<p><a title="TCP blog: what the TCP-ECCO release means" href="http://textcreate.wordpress.com/2011/04/27/what-the-public-release-of-ecco-tcp-texts-means-for-you-now-and-in-the-future/" target="_blank">What the Public Release of ECCO-TCP Texts Means for You, Now and in the Future</a></p>
<p>Unfortunately, they didn&#8217;t make the texts easily accessible. To obtain them one had to apply by email to be subscribed to a Dropbox folder. There is a <a title="TCP-ECCO database" href="http://quod.lib.umich.edu/e/eebogroup/" target="_blank">database and search interface</a>, but it requires registration, and is unclear as to who qualifies for an account. I think that the database holds the marked up, XML texts, which have not (yet) been publicly released.</p>
<p>So I have created a package via the Open Knowledge Foundation&#8217;s <a title="OKFN Data Hub" href="http://ckan.net/" target="_blank">Data Hub</a>. You can download the zip package and an index in csv format from <a title="TCP-ECCO c18th texts CKAN page" href="http://ckan.net/package/tcp-ecco-18th-century-texts" target="_blank">ckan</a>. Note the zip bundle is around 142 mb. Don&#8217;t try this on dial-up. Check the <a title="Index to the TCP-ECCO texts, CSV format" href="http://ckan.net/storage/f/file/60b1cb40-8ace-46a0-aab8-c9d1946d2bc8" target="_blank">index</a> first. When I have time, I&#8217;ll work on a web interface that allows easy searching and sorting of it. I hope also that these texts will be made available individually, but given the number of them that&#8217;s not a trivial task.</p>
<p>What to do with these texts will be discussed tomorrow, Saturday 13th August, at <a title="Text Camp 2011" href="http://wiki.openliterature.net/Text_Camp_2011" target="_blank">Textcamp (London)</a>; the twitter hashtag is <a title="Search twitter for textcamp hashtag #tcamp11" href="http://twitter.com/#!/search/%23tcamp11" target="_blank">#tcamp11</a>.</p>
<p>Update: xml (.tei) and epub versions are available from <a title="TCP-ECCO texts from tei-oxford" href="http://tei.oucs.ox.ac.uk/ecco/" target="_blank">tei-Oxford</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://anterotesis.com/wordpress/2011/08/making-the-tcp-ecco-texts-accessible/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Economics of JSTOR</title>
		<link>http://anterotesis.com/wordpress/2011/07/economics-of-jstor/</link>
		<comments>http://anterotesis.com/wordpress/2011/07/economics-of-jstor/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 16:13:24 +0000</pubDate>
		<dc:creator>johnl</dc:creator>
				<category><![CDATA[edubiz]]></category>
		<category><![CDATA[archives]]></category>
		<category><![CDATA[jstor]]></category>

		<guid isPermaLink="false">http://anterotesis.com/wordpress/?p=545</guid>
		<description><![CDATA[Aaron Swartz was arrested a few days ago for the unauthorized bulk downloading of files from JSTOR, the academic journal archive. According to the indictment [pdf] , he faces up to 35 years in prison and a fine of up &#8230; <a href="http://anterotesis.com/wordpress/2011/07/economics-of-jstor/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a title="Aaron Swartz homepage" href="http://www.aaronsw.com/" target="_blank">Aaron Swartz</a> was arrested a few days ago for the <a title="Ars Technica report on arrest of Aaron Swartz" href="http://arstechnica.com/tech-policy/news/2011/07/reddit-founder-arrested-for-excessive-jstor-downloads.ars" target="_blank">unauthorized bulk downloading of files</a> from JSTOR, the academic journal archive. According to the <a title="Swartz's indictment [pdf]" href="http://web.mit.edu/bitbucket/Swartz,%20Aaron%20Indictment.pdf" target="_blank">indictment</a> [pdf] , he faces up to 35 years in prison and a fine of up to $1 million. Alongside charges of &#8220;unlawfully obtaining information from a protected computer&#8221;, said indictment also makes <a title="Max Kennerly: Examining The Outrageous Aaron Swartz Indictment For Computer Fraud" href="http://www.litigationandtrial.com/2011/07/articles/series/special-comment/aaron-swartz-computer-fraud-indictment/" target="_blank">outlandish claims of wire-fraud</a>; the hyperbole is further ramped up by the Department of Justice&#8217;s <a title="DOJ press release on Swartz [pdf]" href="www.wired.com/images_blogs/threatlevel/2011/07/Swartz-Aaron-PR.pdf" target="_blank">Press Release</a> [pdf]. Oddly, JSTOR have put out a <a title="JSTOR statement on Swartz case" href="http://about.jstor.org/news-events/news/jstor-statement-misuse-incident-and-criminal-case" target="_blank">statement</a> saying they did not want to prosecute Swartz.</p>
<p>At the moment, there&#8217;s more heat than light in the commentary around this case. We don&#8217;t know what Swartz intended to do with the documents he downloaded, nor why he obtained them the way he did. He has a strong track record for opening up information and analysing it: witness his <a title="Wired on Swartz, PACER and the FBI" href="http://www.wired.com/threatlevel/2009/10/swartz-fbi/" target="_blank">liberation of court records</a>, and his analysis of <a title="Barclay, Punitive Damages, Remunerated Research, and the Legal Profession" href="http://www.stanfordlawreview.org/content/article/punitive-damages-remunerated-research-and-legal-profession" target="_blank">funding academic writing</a>. But this case led me to think about JSTOR, what it claims to do, and the way it acts as a gatekeeper of academic knowledge.</p>
<p>When you visit the <a title="About JSTOR" href="http://about.jstor.org/" target="_blank">JSTOR about page</a>, you are greeted with the statement:</p>
<blockquote><p>JSTOR is a not–for–profit service that helps scholars, researchers, and students discover, use, and build upon a wide range of content in a trusted digital archive of over one thousand academic journals and other scholarly content. We use information technology and tools to increase productivity and facilitate new forms of scholarship.</p></blockquote>
<p>Sounds good! Who could possibly have anything against a not-for-profit helping spread knowledge? Well, if you don&#8217;t have an institutional affiliation, if you&#8217;re one of the general public, reading the journals is an expensive business. There is no option to subscribe to the archive as a whole, and the pricing of individual articles is astronomical.</p>
<p>(Academics and students generally have access to these archives through their institutions; for them it&#8217;s seemingly free, but the University is paying. How much I don&#8217;t know, although an indication can be had from JSTORs <a title="JSTOR institutional subscriptions price calculator" href="http://support.jstor.org/csp/PriceCalculator/" target="_blank">price calculator</a>. According to <a title="AP report on the Swartz case" href="http://www.google.com/hostednews/ap/article/ALeqM5j2-afgO1QLrxtDL8k6e0ILjSyiwg?docId=623b4183ef3648d5976d2377c48af910" target="_blank">AP</a>, &#8220;Its annual subscription fees can cost a large research university as much as $50,000.&#8221;)</p>
<p>Take, for example, the journal <a title="19th Century Music journal" href="http://ucpressjournals.com/journalBuy.asp?j=ncm" target="_blank">19th Century Music</a>. A single issue from the publishers costs $18 for an individual, a subscription for 3 issues $50 (discounted to $28 for students and the retired). The latest issue has 6 full articles, as well as various supporting material. On JSTOR, each article is priced at $12. That&#8217;s $72 for the substantive content of just one issue. JSTOR are even charging $12 for the <a title="12 bucks for two page preface!" href="http://www.jstor.org/pss/10.1525/ncm.2011.34.3.iii" target="_blank">two page preface</a>. This is by no means exceptional: another University of California publication <a title="The Public Historian journal" href="http://ucpressjournals.com/journal.asp?j=tph" target="_blank">The Public Historian</a> &#8211; oh the irony &#8211; is $17 for a single issue direct, but $12 an article on JSTOR, again even for<a title="History is Leaking, $12 a drop" href="http://www.jstor.org/pss/10.1525/tph.2011.33.1.7" target="_blank"> two page editorials</a>. Or again, a standard individual subscription to <a title="Radical Teacher subscriptions from the University of Illinois" href="http://www.press.uillinois.edu/journals/rt.html" target="_blank">Radical Teacher</a> is $24 &#8211; $28; a single article is $18 at JSTOR, even just for the <a title="9 bucks a page!" href="http://www.jstor.org/pss/10.5406/radicalteacher.90.0001" target="_blank">front matter</a>. One more time: $14 for an article from the <a title="$14 an article" href="http://www.jstor.org/pss/10.1086/ahr.116.3.577" target="_blank">American Historical Review</a> when joining the AHA <a title="American Historical Association membership" href="http://www.historians.org/members/" target="_blank">starts from $40</a> and gets you the journal plus many other benefits.</p>
<p>As far as I can tell, these prices are around the average but some are much higher. <a title="Draconian indeed" href="http://www.jstor.org/pss/2638385" target="_blank">Rogers&#8217; article on the Black Act</a>, published in the Historical Journal in 1974, is $34, which is $4 more than even Cambridge U.P.&#8217;s <a title="The Historical Journal, vol 17, no 3 at C.U.P." href="http://journals.cambridge.org/action/displayIssue?decade=1970&amp;jid=HIS&amp;volumeId=17&amp;issueId=03&amp;iid=3228536" target="_blank">own inflated price</a>.</p>
<p>Some articles are being sold even though they have been legitimately released for free. For example, <em>A Descriptive and Phylogenetic Analysis of Plumulaceous Feather Characters in Charadriiformes</em> is available from <a title="A Descriptive and Phylogenetic Analysis of Plumulaceous Feather Characters in Charadriiformes for $15" href="http://www.jstor.org/pss/40166844" target="_blank">JSTOR for $15</a> but can be obtained for free at the <a title="A Descriptive and Phylogenetic Analysis of Plumulaceous Feather Characters in Charadriiformes for $0" href="http://elibrary.unm.edu/sora/om/index.php" target="_blank">Searchable Ornithological Research Archive</a>. Other material, like <a title="Law and History Review at JSTOR" href="http://www.jstor.org/action/showPublication?journalCode=lawhistoryreview" target="_blank">Law and History Review</a>, doesn&#8217;t seem to be accessible at all to the public, yet there is no indication that the volumes for 1999 to 2009 are <a title="Law and History Review at the History Co-operative" href="http://www.historycooperative.org/lhrindex.html" target="_blank">archived for free at the History Co-operative</a>. This is not aiding the discovery and use of scholarly content.</p>
<p>(And while we&#8217;re talking about L&amp;HR, Cambridge UP are <a title="Expensive article" href="http://journals.cambridge.org/action/displayAbstract?fromPage=online&amp;aid=7788499&amp;fulltextType=RA&amp;fileId=S0738248000000043" target="_blank">flogging off articles</a> at $30 / £20, again even those legitimately available for free at the <a title="Free article" href="http://www.historycooperative.org/journals/lhr/23.1/clarke.html" target="_blank">History Co-operative</a>.)</p>
<p>Then there is the murky area of those materials that are out of copyright. The William and Mary Quarterly from 1899? <a title="$9 for out-of-copyright material" href="http://www.jstor.org/pss/1915788" target="_blank">$9 an article</a>. Likewise, it&#8217;s $14 for a single article from the <a title="$14 for an article for which the copyright has expired" href="http://www.jstor.org/pss/1824497" target="_blank">Journal of Political Economy for 1892</a>. This may be the fault of the publishers rather than JSTOR, but it points to a relationship between the two that excludes academic and public interests. This also raises the question of publicly-funded research being mined for profit by private institutions, as pointed out by <a title="Moody: How Should We Liberate Knowledge?" href="http://blogs.computerworlduk.com/open-enterprise/2011/07/the-art-of-liberating-knowledge/index.htm" target="_blank">Glyn Moody</a>.</p>
<p>It is not just a case that JSTOR is charging too high a price, whether in relation to other vendors, with comparable products or the pockets of those who would like to read this material. In economic terms, they could increase sales and revenue by lowering the price to hit that sweet spot where they maximise returns. My feeling is that they are deliberately trying to put the public off, restricting access through their pricing mechanism.</p>
<p>I also have the feeling that charging these prices is directly contradictory to their status as a non-profit. I have found nothing on their website explaining how they price materials, or how they work with publishers. I find it extremely unlikely that they have absolutely no say in the prices they charge individuals for individual articles. Nor is there any information on how much revenue goes to the publishers. (It&#8217;s well-known that the authors don&#8217;t get paid through the current academic journal system.) Furthermore, I have found no financial information as to JSTORs revenues or outgoings, or whether it has, as a non-profit, tax-exempt status; nor have I found any information for Ithaka, with which JSTOR merged in 2009. Accountancy is not one of my skills, but I feel such information should be easily accessible on the website of a non-profit. This lack of transparency and openness I find disturbing.</p>
<p>JSTOR is not living up to its declaration. It is obstructing the dissemination of scholarly, publicly-funded and public domain writing. It clearly has a commercial aspect, yet is shy of stating this. I can&#8217;t even be sure it is a not-for-profit in any meaningful, legal sense. It is a contributor to, not a solution for, the crisis in academic publishing.</p>
<p>You can support Aaron Swartz via <a title="Support Aaron at Demand Progress" href="http://act.demandprogress.org/sign/support_aaron/" target="_blank">DemandProgress.org</a>.</p>
<p>UPDATE: The Philosophical Transactions of the Royal Society freed from JSTOR and the Royal Society, bittorrent at <a title="Papers from Philosophical Transactions of the Royal Society, torrent via Pirate Bay" href="http://thepiratebay.org/torrent/6554331" target="_blank">Pirate Bay</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://anterotesis.com/wordpress/2011/07/economics-of-jstor/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>The Clerkenwell House of Detention</title>
		<link>http://anterotesis.com/wordpress/2011/05/the-clerkenwell-house-of-detention/</link>
		<comments>http://anterotesis.com/wordpress/2011/05/the-clerkenwell-house-of-detention/#comments</comments>
		<pubDate>Sat, 28 May 2011 00:11:52 +0000</pubDate>
		<dc:creator>johnl</dc:creator>
				<category><![CDATA[history]]></category>
		<category><![CDATA[london]]></category>
		<category><![CDATA[archaeology]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[prisons]]></category>

		<guid isPermaLink="false">http://anterotesis.com/wordpress/?p=444</guid>
		<description><![CDATA[The recent Clerkenwell Design Week offered a rare chance to visit the vaults of the Clerkenwell House Of Detention, opened up to host an exhibition. These cellars are all that remain of the 1847 prison, demolished at the end of &#8230; <a href="http://anterotesis.com/wordpress/2011/05/the-clerkenwell-house-of-detention/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The recent<a title="Clerkenwell Design Week" href="http://www.clerkenwelldesignweek.com/" target="_blank"> Clerkenwell Design Week </a>offered a rare chance to visit the vaults of the Clerkenwell House Of Detention, opened up to host an exhibition. These cellars are all that remain of the 1847 prison, demolished at the end of the nineteenth century to make way for a school, which in turn has been converted into flats.</p>
<p>It&#8217;s a site with a long carceral history: the Clerkenwell Bridewell and the New Prison were established there in the early seventeenth century. Tens of thousands of unfortunates, including children, passed through its gates. It also has a parallel counter-history: scene of one of Jack Sheppard&#8217;s many escapes, attacked during the Gordon Riots, and the site of the first Irish bombing in London, the &#8216;<a title="No more wriggling out of writing woman… blog post on the Clerkenwell Outrage" href="http://nowrigglingoutofwriting.wordpress.com/2011/05/17/the-clerkenwell-outrage-of-1867-irish-republicanism-in-london/" target="_blank">Clerkenwell Outrage</a>&#8216; of 1867.</p>
<p>Since the prison&#8217;s demolition, the cellars have only been opened to the public occasionally. They were shelters during the second world war, have been used for office and storage space (according to <a title="New Prison at Wikipedia" href="http://en.wikipedia.org/wiki/New_Prison" target="_blank">wikipedia</a>), turn up as TV settings fairly regularly and recently were the stage for performances of Oliver Twist and Macbeth. It was also a museum between 1993 and 2000, apparently closed down by Customs and Excise due to non-payment of tax. Rumour has it that it is going to be redeveloped, but rumour also has it that the site is subject to some legal dispute.</p>
<p>I recall visiting it some 15 years ago, when it hosted a somewhat sparse display in a subdued light. In a way, that was to its credit; one could be captivated by the material remains, the pokey cells, dark tunnels leading off into the distance (apparently, one led to the local courthouse), the whole purgatorial atmosphere. Today the vaults are much cleaner, there&#8217;s been both restoration work and a general tidying up, and there was more than enough illumination. Walking around it now my feeling is of excitement, rather than horror as previously. There is a different sense of the underground, one of art and play, rather than infernal depths. Certainly, it&#8217;s a great venue for a party, with so much to explore, so many places to hide and seek. And it&#8217;s far better than being used as a prison. But I have a lingering unease at the banishment of its terrors, of its history as a penal institution.</p>

	
		<div class="gallery_clear"></div> 
		<div id="gallery_444" class="photospace"> 
	
			<!-- Start Advanced Gallery Html Containers -->
			<div class="thumbs_wrap2">
				<div class="thumbs_wrap">
					<div id="thumbs_444" class="thumnail_col " >
						 
						<ul class="thumbs noscript">				
						
									<li><a class="thumb" href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDententionPlan-400x464.jpg" title="Plan of Clerkenwell House of Detention" >								
											<img src="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDententionPlan-50x50.jpg" alt="Plan of Clerkenwell House of Detention" title="Plan of Clerkenwell House of Detention" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">Plan of Clerkenwell House of Detention</div>
													
													<div class="image-desc">The ground floor plan off the House of Detention, taken from Mayhew's The Criminal Prisons of London, 1862, page 612.</div>
													
												<div class="download"><a href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDententionPlan.jpg"></a></div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention0-400x475.jpg" title="Plaque outside the Clerkenwell House of Detention cellars" >								
											<img src="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention0-50x50.jpg" alt="Plaque outside the Clerkenwell House of Detention cellars" title="Plaque outside the Clerkenwell House of Detention cellars" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">Plaque outside the Clerkenwell House of Detention cellars</div>
													
												<div class="download"><a href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention0.jpg"></a></div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention2-372x500.jpg" title="House of Detention Central Corridor " >								
											<img src="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention2-50x50.jpg" alt="House of Detention Central Corridor" title="House of Detention Central Corridor " />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">House of Detention Central Corridor </div>
													
												<div class="download"><a href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention2.jpg"></a></div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention1-336x500.jpg" title="House of Detention cell" >								
											<img src="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention1-50x50.jpg" alt="House of Detention cell" title="House of Detention cell" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">House of Detention cell</div>
													
													<div class="image-desc">Cell in the House of Detention, illuminated by one of the exhibitors at Clerkenwell Design Week</div>
													
												<div class="download"><a href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention1.jpg"></a></div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention6-356x500.jpg" title="House of Detention door" >								
											<img src="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention6-50x50.jpg" alt="House of Detention door" title="House of Detention door" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">House of Detention door</div>
													
													<div class="image-desc">A rusting iron door on one of the cells.</div>
													
												<div class="download"><a href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention6.jpg"></a></div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention3-375x500.jpg" title="Cell doorway, Clerkenwell House of Detention" >								
											<img src="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention3-50x50.jpg" alt="Cell doorway, Clerkenwell House of Detention" title="Cell doorway, Clerkenwell House of Detention" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">Cell doorway, Clerkenwell House of Detention</div>
													
													<div class="image-desc">This cell seems to have had some sort of portcullis arrangement, rather than the usual door.</div>
													
												<div class="download"><a href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention3.jpg"></a></div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention7-375x500.jpg" title="House Of Detention Doorway" >								
											<img src="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention7-50x50.jpg" alt="House Of Detention Doorway" title="House Of Detention Doorway" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">House Of Detention Doorway</div>
													
												<div class="download"><a href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention7.jpg"></a></div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention9-400x300.jpg" title="House of Detention, Brickwork Arch" >								
											<img src="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention9-50x50.jpg" alt="House of Detention, Brickwork Arch" title="House of Detention, Brickwork Arch" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">House of Detention, Brickwork Arch</div>
													
													<div class="image-desc">Solid brick vaulting in a large open-plan space.</div>
													
												<div class="download"><a href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention9.jpg"></a></div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention8-340x500.jpg" title="House Of Detention Staircase" >								
											<img src="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention8-50x50.jpg" alt="House Of Detention Staircase" title="House Of Detention Staircase" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">House Of Detention Staircase</div>
													
													<div class="image-desc">Stairs leading to the main prison, mirrored by one of the exhibitors at Clerkenwell Design Week</div>
													
												<div class="download"><a href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention8.jpg"></a></div>
												
										</div>
										
									</li>
								
									<li><a class="thumb" href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention5-400x470.jpg" title="Outside Corner of the Clerkenwell House of Detention" >								
											<img src="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention5-50x50.jpg" alt="Outside Corner of the Clerkenwell House of Detention" title="Outside Corner of the Clerkenwell House of Detention" />
										</a>
										
										<div class="caption">
											
														<div class="image-caption">Outside Corner of the Clerkenwell House of Detention</div>
													
													<div class="image-desc">This building, on the corner of the site, looks as is if it predates the school. The absence of street-facing windows makes me think it might have been part of the prison.</div>
													
												<div class="download"><a href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/HouseOfDetention5.jpg"></a></div>
												
										</div>
										
									</li>
								
						</ul>
								<div class="photospace_clear"></div>
								<a class="pageLink prev" style="display:none" href="#" title="Previous Page"></a>
						<a class="pageLink next" style="display:none" href="#" title="Next Page"></a>
					</div>
				</div>
			</div>
			
			<!-- Start Advanced Gallery Html Containers -->
			<div class="gal_content">
				
				<div class="slideshow-container">
					<div id="loading_444" class="loader"></div>
					<div id="slideshow_444" class="slideshow"></div>
					<div id="caption_444" class="caption-container"></div>
				</div>
				
			</div>
	
	</div>
	
	<div class="gallery_clear"></div>
	
	
	
	<script type='text/javascript'>
			
			jQuery(document).ready(function($) {
				
				// We only want these styles applied when javascript is enabled
				$('.gal_content').css('display', 'block');
				$('.thumnail_col').css('width', '181px');
				
				// Initialize Advanced Galleriffic Gallery 
				var gallery = $('#thumbs_444').galleriffic({ 
					delay:                     3500,
					numThumbs:                 12,
					preloadAhead:              12,
					enableTopPager:            0,
					enableBottomPager:         false,
					imageContainerSel:         '#slideshow_444',
					controlsContainerSel:      '#controls_444',
					captionContainerSel:       '#caption_444',  
					loadingContainerSel:       '#loading_444',
					renderSSControls:          true,
					renderNavControls:         true,
					playLinkText:              '<span></span>',
					pauseLinkText:             '<span></span>',
					prevLinkText:              '<span></span>',
					nextLinkText:              '<span></span>',
					nextPageLinkText:          '&rsaquo;',
					prevPageLinkText:          '&lsaquo;',
					enableHistory:              0,
					autoStart:                 	0,
					enableKeyboardNavigation:	true,
					syncTransitions:           	true,
					defaultTransitionDuration: 	300,
						
					onTransitionOut:           function(slide, caption, isSync, callback) {
						slide.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0, callback);
						caption.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0);
					},
					onTransitionIn:            function(slide, caption, isSync) {
						var duration = this.getDefaultTransitionDuration(isSync);
						slide.fadeTo(duration, 1.0);
	
						// Position the caption at the bottom of the image and set its opacity
						var slideImage = slide.find('img');
						caption.width(slideImage.width())
							.css({
								//'bottom' : Math.floor((slide.height() - slideImage.outerHeight()) / 2 - 40),
								'top' : slideImage.outerHeight(),
								'left' : Math.floor((slide.width() - slideImage.width()) / 2) + slideImage.outerWidth() - slideImage.width()
							})
							.fadeTo(duration, 1.0);
						
					},
					onPageTransitionOut:       function(callback) {
						this.hide();
						setTimeout(callback, 100); // wait a bit
					},
					onPageTransitionIn:        function() {
						var prevPageLink = this.find('a.prev').css('display', 'none');
						var nextPageLink = this.find('a.next').css('display', 'none');
						
						// Show appropriate next / prev page links
						if (this.displayedPage > 0)
							prevPageLink.css('display', 'block');
		
						var lastPage = this.getNumPages() - 1;
						if (this.displayedPage < lastPage)
							nextPageLink.css('display', 'block');
		
						this.fadeTo('fast', 1.0);
					}
					
				}); 
				
				
				
				/**************** Event handlers for custom next / prev page links **********************/
		
				gallery.find('a.prev').click(function(e) {
					gallery.previousPage();
					e.preventDefault();
				});
		
				gallery.find('a.next').click(function(e) {
					gallery.nextPage(); 
					e.preventDefault();
				});
		
			});
		</script>
		
		
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>More: <a title="Clerkenwell Prison on Wikipedia" href="http://en.wikipedia.org/wiki/Clerkenwell_Prison" target="_blank">Wikipedia</a>, <a title="Clerkenwell House of Detention at Victorian London" href="http://www.victorianlondon.org/prisons/houseofdetention.htm" target="_blank">Victorian London</a>, <a title="Mayhew, The Criminal Prisons of London at archive.org" href="http://www.archive.org/details/cu31924024894481" target="_blank">Mayhew, The Criminal Prisons of London</a>, <a title="Stanford map of Clerkenwell area" href="http://www.oldlondonmaps.com/stanfordpages/finsbury08a.html" target="_blank">1872 map of Clerkenwell</a>, <a title="Londonist visitis the House of Detention" href="http://londonist.com/2010/03/in_pictures_catacombs_of_the_clerke.php" target="_blank">Londonist</a>, <a title="House of Detention location rental" href="http://www.itascalocations.com/library.php?reference=4434" target="_blank">Itasca Locations</a>.</p>
<p><a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img style="border-width: 0;" src="http://i.creativecommons.org/l/by-sa/3.0/80x15.png" alt="Creative Commons License" /></a> Text and photos licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike 3.0 Unported License</a>.<br />
<a rel="license" href="http://creativecommons.org/publicdomain/mark/1.0/"><img style="border-style: none;" src="http://i.creativecommons.org/p/mark/1.0/80x15.png" alt="Public Domain Mark" /></a> Plan of the House of Detention free of known copyright restrictions.</p>
]]></content:encoded>
			<wfw:commentRss>http://anterotesis.com/wordpress/2011/05/the-clerkenwell-house-of-detention/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I Learned From &#8216;Luddites without condescension&#8217;</title>
		<link>http://anterotesis.com/wordpress/2011/05/what-i-learned-from-luddites-without-condescension/</link>
		<comments>http://anterotesis.com/wordpress/2011/05/what-i-learned-from-luddites-without-condescension/#comments</comments>
		<pubDate>Mon, 16 May 2011 18:43:33 +0000</pubDate>
		<dc:creator>johnl</dc:creator>
				<category><![CDATA[history]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[luddites]]></category>
		<category><![CDATA[ngram]]></category>

		<guid isPermaLink="false">http://anterotesis.com/wordpress/?p=416</guid>
		<description><![CDATA[A couple of Fridays ago (6th May 2011) I attended the Luddites Without Condescension event at Birkbeck. What I took away: 1: The Luddites are politically charged. The word is commonly used today as a slur to anyone questioning modern &#8230; <a href="http://anterotesis.com/wordpress/2011/05/what-i-learned-from-luddites-without-condescension/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A couple of Fridays ago (6th May 2011) I attended the Luddites Without Condescension event at Birkbeck. What I took away:</p>
<p>1: The Luddites are politically charged. The word is commonly used today as a slur to anyone questioning modern technologies. The impetus behind many of the commemorations is coming from activists involved in campaigns against the likes of genetically modified foods and cloning. This isn&#8217;t an academic or antiquarian history.</p>
<p>2: The word has a history. This was brought up by one of the audience in the midday discussion session, which had me reaching for my ngrams:</p>
<div id="attachment_421" class="wp-caption aligncenter" style="width: 910px"><a href="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/ludditesngram.png"><img class="size-full wp-image-421" title="ludditesngram" src="http://anterotesis.com/wordpress/wp-content/uploads/2011/05/ludditesngram.png" alt="Luddites" width="900" height="330" /></a><p class="wp-caption-text">Luddites ngram, English corpus, smoothing 3</p></div>
<p><a title="Google ngram for Luddite, Luddites, Luddism" href="http://ngrams.googlelabs.com/graph?content=Luddite%2CLuddites%2CLuddism&amp;year_start=1800&amp;year_end=2000&amp;corpus=0&amp;smoothing=3" target="_blank">Full ngram link</a></p>
<p>The remarkable aspect of this graph is that it shows four periods of sustained use of the terms Luddite and Luddites after the initial movement subsided. The late 1960s peak can be understood as part of the rising green, ecological movements, and the 1830s due to Captain Swing, but I can&#8217;t see easy explanations for the other periods. Perhaps  the 1880s relates to the &#8216;new unionism&#8217;, and the 1930s the great depression and a corresponding lack of faith in progress. The 1930s also see the first concerted use of the term &#8216;Luddism&#8217;, as a theorization of their practice. There&#8217;s also a jump in the late 1940s; a consequence of Hiroshima and Nagasaki perhaps? One of the problems of this data is it&#8217;s not clear who is using the word, or how; is it a smear thrown at one&#8217;s enemies, or a claiming of one&#8217;s own tradition? (The results pre-1810 are due to Google&#8217;s dodgy metadata.)</p>
<p>3: There&#8217;s a history of rocketry that predates &#8211; and subverts &#8211; that of <a title="Tom Lehrer, 'Wernher von Braun&quot;" href="http://www.guntheranderson.com/v/data/wernherv.htm" target="_blank">Wernher Von Braun</a>. Peter Linebaugh mentioned the early uses of rockets as weapons, by the Kingdom of Mysore against the East India Company in the late eighteenth century.  They were then taken up by the British military, and used for signaling as well as for artillery. States <a title="An Historical Account of the Luddites, Google Books" href="http://books.google.com/books?id=pjoIAAAAQAAJ&amp;pg=PA13#v=onepage&amp;q&amp;f=false" target="_blank">one account</a> of the Luddites:</p>
<blockquote><p>In some instances, signals were made by rockets and  blue lights, by which they communicated intelligence to the parties,  and the system evinced an extraordinary degree of concert, secrecy and  organization.</p></blockquote>
<p>This quite confuses the traditional view of the Luddites as being indiscriminately against all technology. There&#8217;s judicious adoption of modern communications here!</p>
<p>4: Peter Linebaugh needs to write about his historiography. I felt his talk, rich though it was, full of anecdote and story, didn&#8217;t come together. From the Comet of 1811, via a couple of earthquakes, Indian and Slave revolts, enclosures (133 bills passed in 1811), grain exports from Egypt to the Peninsular army, an Irishman searching for a teacher of classics, ballooning and Bardology,  to Queen Mab by Shelly and the Ratcliffe Highway murders, it was always suggestive but more jigsaw pieces than a well-woven tapestry. Yet it wasn&#8217;t a random assemblage; a theme of global cotton &#8211; grown in India and America, worked up in England by machine and worker &#8211; was starting to emerge. Linebaugh made mention of his technique as &#8216;pulling at a thread&#8217;, but that isn&#8217;t explicit enough a description for what he does</p>
<p>5: Were the Luddites successful? Iain Boal made an important point about what success means. Just putting off mechanization for a generation, to safe-guard the livelihoods of weavers, is a victory (of sorts).</p>
<p>The talks were recorded by the <a title="Backdoor Broadcasting Co.s recordings of 'Luddites without Condescension'" href="http://backdoorbroadcasting.net/2011/05/the-luddites-without-condescension/" target="_blank">Backdoor Broadcasting Co.</a>, and are available now. Meanwhile, follow the <a title="Luddite Bicentenary blog" href="http://ludditebicentenary.blogspot.com/" target="_blank">Luddite Bicentenary</a> blog and <a title="Luddites 200" href="http://www.luddites200.org.uk/" target="_blank">Luddittes 200</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://anterotesis.com/wordpress/2011/05/what-i-learned-from-luddites-without-condescension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mapping Petersburg</title>
		<link>http://anterotesis.com/wordpress/2011/04/mapping-petersburg/</link>
		<comments>http://anterotesis.com/wordpress/2011/04/mapping-petersburg/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 10:34:32 +0000</pubDate>
		<dc:creator>johnl</dc:creator>
				<category><![CDATA[digital humanities]]></category>
		<category><![CDATA[My Projects]]></category>
		<category><![CDATA[dostoevsky]]></category>
		<category><![CDATA[literature]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[petersburg]]></category>
		<category><![CDATA[russia]]></category>

		<guid isPermaLink="false">http://anterotesis.com/wordpress/?p=387</guid>
		<description><![CDATA[After months of work, Mapping Petersburg is now live! Built in collaboration with Dr Sarah J. Young, it is a pilot for a much larger project taking in two centuries of the Petersburg text. The aim is not only to &#8230; <a href="http://anterotesis.com/wordpress/2011/04/mapping-petersburg/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After months of work, <a title="Mapping Petersburg" href="http://www.mappingpetersburg.org" target="_blank">Mapping Petersburg</a> is now live! Built in collaboration with <a title="Dr Sarah J. Young's blog" href="http://sarahjyoung.com/site/" target="_blank">Dr Sarah J. Young</a>, it is a pilot for a much larger project taking in two centuries of the Petersburg text. The aim is not only to investigate the actual writings, but also to see what tools and techniques are applicable to &#8216;literary cartography&#8217;, and to theorize just what it means to read a book in such a fashion. This test case focuses on Dostoevsky&#8217;s <em>Crime and Punishment</em>, plotting the places, events and characters of that novel upon a backdrop currently provided courtesy of Google via <a title="Mapstraction" href="http://www.mapstraction.com/" target="_blank">Mapstraction</a>.</p>
<p>Building the site has been an intense and rewarding experience, especially as the deadline drew closer, and one that requires mulling over. In the meantime, to go with <a title="Dr Sarah J Young on Mapping Petersburg" href="http://sarahjyoung.com/site/2011/04/06/mapping-petersburg/" target="_blank">Dr Young&#8217;s first thoughts</a>, here are eight things I learned from it:</p>
<p>1: Data sets are hard. It&#8217;s painstaking work generating data, especially from an unstructured, subjective text like <em>Crime and Punishment</em>.</p>
<p>2: Get into the source. The first map took ages to make, hand-coded as it was. But being close up to the code taught me alot.</p>
<p>3: A little code goes a long way. The first script to automate data-plotting took ages to write. But once it was done, I was able to generate a map in a few minutes.</p>
<p>4: We need research, theory, design. There are many possibilities when making maps, and even something seemingly simple, like icons, requires a lot of thought.</p>
<p>5: We need documentation. There were a number of promising tools that had to be put aside, because without documentation they were little more than black boxes. No, source code isn&#8217;t enough. And similarly, it behoves the ethical webmaker to describe how they constructed their site.</p>
<p>6: Geo-rectification is complex. We had wanted to use maps contemporary to Dostoevsky, but ran into all sorts of difficulties. Tools like <a title="Mapwarper" href="http://warper.geothings.net/" target="_blank">Mapwarper</a> are great, but without understanding it, and understanding the mathematics behind it, I was unable to surmount the problems we faced.</p>
<p>7: Maps are to be read. They are not transparent depictions of place. One can just as much read the map through the book as the book through the map.</p>
<p>8: The Digital Humanities is all about <a title="Stephen Ramsey &quot;On Building&quot;" href="http://lenz.unl.edu/wordpress/?p=340" target="_blank">building things</a>. The experience of doing is irreplaceable and inexhaustible.</p>
]]></content:encoded>
			<wfw:commentRss>http://anterotesis.com/wordpress/2011/04/mapping-petersburg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Digital Humanities GIS projects</title>
		<link>http://anterotesis.com/wordpress/2011/03/digital-humanities-gis-projects/</link>
		<comments>http://anterotesis.com/wordpress/2011/03/digital-humanities-gis-projects/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 22:49:40 +0000</pubDate>
		<dc:creator>johnl</dc:creator>
				<category><![CDATA[digital humanities]]></category>
		<category><![CDATA[digital history]]></category>
		<category><![CDATA[gis]]></category>
		<category><![CDATA[maps]]></category>

		<guid isPermaLink="false">http://anterotesis.com/wordpress/?p=354</guid>
		<description><![CDATA[Being involved in a number of projects with a spatial dimension, I&#8217;ve been teaching myself digital cartography for over a year. The code, however, is only half the story. Maps are not transparent depictions of reality, there are many problems, &#8230; <a href="http://anterotesis.com/wordpress/2011/03/digital-humanities-gis-projects/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Being involved in a number of projects with a spatial dimension, I&#8217;ve been teaching myself digital cartography for over a year. The code, however, is only half the story. Maps are not transparent depictions of reality, there are many problems, conceptual and technical, with combining older mapping technologies with modern cartography, and let&#8217;s not even get started on the problems of usability (the computer screen is as difficult as manipulating a fold-out map or an A-Z book).</p>
<p>One part of answering these questions is simply looking at what others are doing. So I&#8217;ve begun to <a title="List of DH GIS projects" href="http://anterotesis.com/wordpress/dh-gis-projects/">compile a list</a> of Digital Humanities projects where GIS (Geographical Information Systems) has a leading part. Aside from my own bookmarks, I&#8217;ve drawn on two similar lists: that at <a title="Historical GIS Research Network" href="http://www.hgis.org.uk/resources.htm" target="_blank">Historical GIS Research Network</a> and the <a title="AAG Historical GIS Clearing House" href="http://www.aag.org/cs/projects_and_programs/historical_gis_clearinghouse/hgis_projects_programs" target="_blank">AAG Historical GIS Clearing House</a>. It is a list of <em>academic</em> projects: although there are many excellent extra-mural mapping projects I specifically wanted to see how the digital and the humanities are combining in the university. It is also heavily weighted towards history and literary studies, as those are what I am involved in and know about. Please tell me of any other projects through the comments.</p>
<p>I&#8217;ve used GIS in a rather loose way, taking in what has been termed &#8216;neogeography&#8217; and &#8216;webmapping.&#8217; A couple of the projects I&#8217;ve listed don&#8217;t even aim to produce maps, but gazetteers of old place names, and utilize text processing technologies rather than anything that could be considered GIS. Part of this exercise is to see how space and place are being analysed, and what technologies are being used to do so; GIS seemed a useful catch-all term. I hope the purists will forgive me.</p>
<p>This list takes a snapshot of the state of the &#8216;spatial turn&#8217; in (some of) the (digital) humanities up to early 2011. The technologies used fall into four types: flash animations, Google Maps, server-side delivery and old-style downloadable shapefiles. The focus is frequently based on geographical units &#8211; cities, regions, countries, continents &#8211; and less often on particular subjects. Suprisingly, there&#8217;s only one project on the <a title="Holocaust Geographies at Stanford" href="http://www.stanford.edu/group/spatialhistory/cgi-bin/site/project.php?id=1015" target="_blank">Holocaust</a> and that barely begun; I heard of two other projects, but both seem to be defunct. Further analysis will follow as time allows.</p>
<p>Thanks to all who responded to my query on the Humanist list; the relevant postings can be found in the <a title="Humanist email list, March 2011" href="http://lists.digitalhumanities.org/pipermail/humanist/2011-March/thread.html" target="_blank">March 2011 archives</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://anterotesis.com/wordpress/2011/03/digital-humanities-gis-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Luddite Bicentenary and Luddite Song</title>
		<link>http://anterotesis.com/wordpress/2011/03/luddite-bicentenary-and-luddite-song/</link>
		<comments>http://anterotesis.com/wordpress/2011/03/luddite-bicentenary-and-luddite-song/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 09:56:43 +0000</pubDate>
		<dc:creator>johnl</dc:creator>
				<category><![CDATA[history]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[luddites]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://anterotesis.com/wordpress/?p=338</guid>
		<description><![CDATA[Alerted today that this year &#8211; and the next two &#8211; is the bicentenary of the great Luddite movement. Still much maligned as backwards-looking, anti-progressive, and if I may be permitted an anarchronism, &#8216;technophobic&#8217;, it is important to remember these &#8230; <a href="http://anterotesis.com/wordpress/2011/03/luddite-bicentenary-and-luddite-song/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Alerted today that this year &#8211; and the next two &#8211; is the bicentenary of the great Luddite movement. Still much maligned as backwards-looking, anti-progressive, and if I may be permitted an anarchronism, &#8216;technophobic&#8217;, it is important to remember these workers in their full richness &#8211; their bravery, intelligence, despair and suffering -  against such easy dismissals. So many thanks to the <a title="Luddite Bicentenary Blog" href="http://ludditebicentenary.blogspot.com/" target="_blank">Luddite Bicentenary Blog</a> for bringing this anniversary to my attention, and for continuing the never-ending task of rescuing them &#8220;from the enormous condescension of posterity&#8221;, as E.P. Thompson put it.</p>
<p>Through that blog I found that Birkbeck are holding a <a title="The Luddites, without condescension conference at Birkbeck" href="http://www.bbk.ac.uk/bih/news/luddites" target="_blank">free one-day conference</a> in London, to discuss not only the Luddites, but also other opponents of capitalist modernization across the world. Speakers include Peter Linebaugh of London Hanged fame, T.J. Clark once of <a title="King Mob entry on Wikipedia" href="http://en.wikipedia.org/wiki/King_Mob" target="_blank">King Mob</a>, Iain Boal (whose history of enclosure I&#8217;m eagerly awaiting), and Amita Baviskar, critic of <a title="Amita Baviskar on Indian Environmentalism" href="http://www.carnegiecouncil.org/education/006/forging_environmentalism/01/contents/part_1/5284.html" target="_blank">Indian environmentalism</a>.</p>
<p>Songs are an important historical source, yet without music can read rather drily. Even where a tune is referenced &#8211; which may be unfamiliar, or worse lost &#8211; to read is not to sing nor to hear. The Luddites had some fine songs in their repertoire, and in remembering them it would be good to give them full voice. So embedded below, the<a title="Chumbawamba, English Rebel Songs part 1 on Youtube" href="http://www.youtube.com/watch?v=cuBgeGKPGZI" target="_blank"> first part</a> of Chumbawamba&#8217;s English Rebel Songs, including the Luddite song &#8216;General Ludd&#8217;s Triumph&#8217;, which starts at the 6.52 mark. You Tube also hosts <a title="Chumbawamba, English Rebel Songs, part 2 on YouTube" href="http://www.youtube.com/watch?v=t6KR8M7ikgk" target="_blank">part two</a>; a full track listing can be found on <a title="Chumbabwamba's English Rebel Songs on Wikipedia" href="http://en.wikipedia.org/wiki/English_Rebel_Songs_1381%E2%80%931984" target="_blank">Wikipedia</a>. I don&#8217;t know if the music is accurate; the Luddites sung it to the tune &#8216;Poor Jack&#8217;, appropriating the work of the patriot and composer of war songs <a title="Charles Dibdin on Wikipedia" href="http://en.wikipedia.org/wiki/Charles_Dibdin" target="_blank">Charles Dibdin</a>. The lyrics below &#8211; so you can sing along &#8211; were found <a title="General Ludd's Triumph lyrics" href="http://orion.it.luc.edu/~sjones1/triumph.htm">here</a>. For some background on Luddite song, and annotated lyrics, see the fine article by <a title="Kevin Binfield on Luddite songs" href="http://campus.murraystate.edu/academic/faculty/kevin.binfield/songs.htm">Kevin Binfield</a>, who has compiled an anthology of Luddite writings, selections of which are available via <a title="Binfield, Writings of the Luddites, on Google Books" href="http://books.google.co.uk/books?id=NG6ABlDQ10MC&amp;printsec=frontcover&amp;dq=Writings+of+the+Luddites&amp;source=bl&amp;ots=NaqjaNIbMa&amp;sig=Zh0hJkImcfsy5k4Iqr21UOn-hw8&amp;hl=en&amp;ei=Me15TaP3BJGbhQeD99X5Bg&amp;sa=X&amp;oi=book_result&amp;ct=result&amp;resnum=2&amp;ved=0CCYQ6AEwAQ#v=onepage&amp;q&amp;f=false">Google Books</a>.</p>
<p><object width="640" height="480"><param name="movie" value="http://www.youtube.com/v/cuBgeGKPGZI?version=3&#038;feature=oembed"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/cuBgeGKPGZI?version=3&#038;feature=oembed" type="application/x-shockwave-flash" width="640" height="480" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<blockquote><p>Chant no more your old rhymes about bold Robin Hood,<br />
His feats I but little admire<br />
I will sing the Achievements of General Ludd<br />
Now the Hero of Nottinghamshire<br />
Brave Ludd was to measures of violence unused<br />
Till his sufferings became so severe<br />
That at last to defend his own Interest he rous&#8217;d<br />
And for the great work did prepare</p>
<p>Now by force unsubdued, and by threats undismay&#8217;d<br />
Death itself can&#8217;t his ardour repress<br />
The presence of Armies can&#8217;t make him afraid<br />
Nor impede his career of success<br />
Whilst the news of his conquests is spread far and near<br />
How his Enemies take the alarm<br />
His courage, his fortitude, strikes them with fear<br />
For they dread his Omnipotent Arm!</p>
<p>The guilty may fear, but no vengeance he aims<br />
At [the] honest man&#8217;s life or Estate<br />
His wrath is entirely confined to wide frames<br />
And to those that old prices abate<br />
These Engines of mischief were sentenced to die<br />
By unanimous vote of the Trade<br />
And Ludd who can all opposition defy<br />
Was the grand Executioner made</p>
<p>And when in the work of destruction employed<br />
He himself to no method confines<br />
By fire and by water he gets them destroyed<br />
For the Elements aid his designs<br />
Whether guarded by Soldiers along the Highway<br />
Or closely secured in the room<br />
He shivers them up both by night and by day<br />
And nothing can soften their doom</p>
<p>He may censure great Ludd&#8217;s disrespect for the Laws<br />
Who ne&#8217;er for a moment reflects<br />
That foul Imposition alone was the cause<br />
Which produced these unhappy effects<br />
Let the haughty no longer the humble oppress<br />
Then shall Ludd sheath his conquering Sword<br />
His grievances instantly meet with redress<br />
Then peace will be quickly restored</p>
<p>Let the wise and the great lend their aid and advice<br />
Nor e&#8217;er their assistance withdraw<br />
Till full fashioned work at the old fashioned price<br />
Is established by Custom and Law<br />
Then the Trade when this arduous contest is o&#8217;er<br />
Shall raise in full splendour its head<br />
And colting and cutting and squaring no more<br />
Shall deprive honest workmen of bread.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://anterotesis.com/wordpress/2011/03/luddite-bicentenary-and-luddite-song/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Victorian Books: The Frequency of Revolution</title>
		<link>http://anterotesis.com/wordpress/2011/02/victorian-books-the-frequency-of-revolution/</link>
		<comments>http://anterotesis.com/wordpress/2011/02/victorian-books-the-frequency-of-revolution/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 00:07:18 +0000</pubDate>
		<dc:creator>johnl</dc:creator>
				<category><![CDATA[digital history]]></category>
		<category><![CDATA[digital humanities]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[revolution]]></category>
		<category><![CDATA[text mining]]></category>
		<category><![CDATA[victorian]]></category>

		<guid isPermaLink="false">http://anterotesis.com/wordpress/?p=235</guid>
		<description><![CDATA[Opened to the public late last year was the long awaited Victorian Books, &#8216;a Distant Reading of Victorian Publications.&#8217; Working with data from Google Books,  Dan Cohen and Fred Gibbs are text mining every book published in Britain in the &#8230; <a href="http://anterotesis.com/wordpress/2011/02/victorian-books-the-frequency-of-revolution/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Opened to the public late last year was the long awaited <a title="Victorian Books" href="http://victorianbooks.org/" target="_blank">Victorian Books</a>, &#8216;a Distant Reading of Victorian Publications.&#8217; Working with data from Google Books,  <a title="Dan Cohen's homepage" href="http://www.dancohen.org/">Dan Cohen</a> and Fred Gibbs are text mining every book published in Britain in the long (meaning 1789 to 1914) nineteenth century. That&#8217;s 1,681,161 titles. And they&#8217;re releasing the data, not just the <a title="Victorian Books: The graphs" href="http://victorianbooks.org/words-in-titles-1789-1914/" target="_blank">graphs</a> showing the frequency of selected words, from &#8216;Agnosticism&#8217; to &#8216;Worship&#8217;, but also the <a title="Victorian Books: The data" href="http://victorianbooks.org/open-access-data/" target="_blank">actual counts</a> of 99 terms, in .xls (Microsoft Excel*) and .tsv (tab separated) formats.</p>
<p>Cohen&#8217;s specific historical object is the Victorian &#8216;frame of mind.&#8217; How did they think, how did they see the world, and how did they believe? His method is to use Google&#8217;s vast digitization program to read the Victorians, or at least those who were published, <em>en masse</em>, rather than rely on a canon of notable authors. The move from the anecdotal and elite selection of Houghton&#8217;s <em><a title="Open Library Record for Houghton, Victorian Frame of Mind" href="http://openlibrary.org/works/OL8070678W/The_Victorian_frame_of_mind_1830-1870" target="_blank">The Victorian Frame of Mind, 1830-1870</a>, </em>to a truly comprehensive survey of all Victorian authors, will hopefully give a broader, more accurate and more subtle view of Victorian modes of thought, and perhaps a more open one that allows for discordance and diversity.</p>
<p>This isn&#8217;t a simple matter of chucking a load of material into a database, pushing a button and then having the computer throw out unambiguous facts and truths. Cohen and Gibbs have posted <a title="Victorian Books: Some Caveats" href="http://victorianbooks.org/some-caveats/" target="_blank">some caveats</a>: the data isn&#8217;t perfect, meaning of words change over time, as yet only the titles of books are being mined, no collocation or context is given. It also requires some careful methodology, and weighing for all sorts of extraneous factors: <a title="Victorian Book Title Statistics" href="http://wmbriggs.com/blog/?p=3252" target="_blank">William Briggs </a>has done some very interesting analysis bringing in population statistics. But with freely available data, anyone with a spreadsheet program can try out ideas and run checks, allowing for the collaborative development of analytical techniques.</p>
<div id="attachment_265" class="wp-caption aligncenter" style="width: 370px"><a href="http://anterotesis.com/wordpress/wp-content/uploads/2010/11/revolutionchart.png"><img class="size-full wp-image-265 " title="revolutionchart" src="http://anterotesis.com/wordpress/wp-content/uploads/2010/11/revolutionchart.png" alt="Percentage of British books with 'revolution' in the title, 1789-1914" width="360" height="300" /></a><p class="wp-caption-text">Percentage of British books with &#39;revolution&#39; in the title, 1789-1914</p></div>
<p>Of the words Cohen and Gibbs have chosen, one stands out as being more <em>temporal</em> than the others: revolution. None of the other terms is so event-related, or has a specific chronological location. Many are abstract, like &#8216;God&#8217; or &#8216;honour&#8217;; some are names (&#8216;Aristotle, &#8216;Jesus&#8217;, &#8216;Plato&#8217; and &#8216;Socrates&#8217;); and there&#8217;s one place, Rome. That does not mean that there is no relation between these words and contemporary events &#8211; Rome has a startling <a title="Victorian Books graph for 'Rome'" href="http://chart.apis.google.com/chart?chxp=0,1790,1800,1810,1820,1830,1840,1850,1860,1870,1880,1890,1900,1910|1,0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1&amp;chxr=0,1789,1914|1,0,1&amp;chxs=0,676767,11.5,0,lt,676767&amp;chxt=x,y&amp;chs=600x500&amp;cht=lc&amp;chco=3D7930&amp;chds=0,1&amp;chd=t:0.12,0.09,0.07,0.08,0.13,0.12,0.04,0.08,0.15,0.26,0.22,0.18,0.21,0.08,0.09,0.08,0.09,0.02,0.11,0.05,0.33,0.12,0.18,0.2,0.16,0.24,0.17,0.3,0.16,0.44,0.29,0.25,0.28,0.07,0.27,0.21,0.24,0.45,0.36,0.31,0.27,0.33,0.13,0.19,0.12,0.2,0.31,0.33,0.18,0.34,0.37,0.27,0.32,0.25,0.24,0.34,0.38,0.47,0.3,0.5,0.44,0.44,0.96,0.63,0.32,0.27,0.26,0.27,0.2,0.26,0.32,0.24,0.27,0.24,0.15,0.19,0.23,0.28,0.53,0.42,0.38,0.38,0.41,0.26,0.33,0.23,0.22,0.38,0.42,0.15,0.37,0.24,0.18,0.22,0.23,0.15,0.18,0.27,0.2,0.25,0.17,0.14,0.14,0.2,0.21,0.16,0.22,0.21,0.25,0.14,0.19,0.13,0.22,0.22,0.22,0.21,0.2,0.18,0.26,0.14,0.19,0.25,0.22,0.2,0.22,0.15&amp;chg=8,10,1,1,1,0&amp;chls=2,4,0&amp;chm=B,C5D4B5BB,0,0,0&amp;chtt=Rome&amp;chts=000000,16" target="_blank">peak in 1851</a>, possibly related to the French occupation in the aftermath of 1848. Nor does revolution refer only to moments of uprising; it can equally mean the movement of the planets and the development of industry (Google&#8217;s ngram machine has the latter taking off in the <a title="Google Ngram for 'industrial revolution'" href="http://ngrams.googlelabs.com/graph?content=industrial+revolution&amp;year_start=1789&amp;year_end=1914&amp;corpus=0&amp;smoothing=0" target="_blank">1880s</a>). But it is the only chosen term that has a specific chronological collorary. Although the project is oriented around more long-term and subtle concerns, the changes in Victorian mentalities, I began to wonder how much the data reflected more immediate responses to human affairs.</p>
<p>Unsurprisingly, in the case of revolution, we have a mass of titles registering in the 1790s, and a very sharp peak in 1848. There are two other clear spikes in 1817 and 1830/1. A little bit of scrutiny, and you&#8217;ll see that 1871, the year of the Paris Commune, shows a marked increase. From prior knowledge of revolutions and threats of them, we can validate the data as reflecting events. As yet the statistics are not telling us anything new. There are some differences if one visualizes the data as the number of publications rather than percentages. 1830-1 and 1848 still stand out, 1817 and the Paris Commune less so. There also seems to be a different distribution: the last few decades have far more occurrences more evenly distributed than the first half of the century.</p>
<div id="attachment_321" class="wp-caption aligncenter" style="width: 602px"><a href="http://anterotesis.com/wordpress/wp-content/uploads/2011/01/revolution.png"><img class="size-full wp-image-321  " title="Revolution in English book titles" src="http://anterotesis.com/wordpress/wp-content/uploads/2011/01/revolution.png" alt="Graph of no. of English books published 1789 - 1914 with 'Revolution' in the title" width="592" height="225" /></a><p class="wp-caption-text">Graph of no. of English books published 1789 - 1914 with &#39;Revolution&#39; in the title</p></div>
<p>Although it is important to check the data against what is already known, one must guard against presumptions of correlation. Can we be sure we know what revolution is being reflected? 1848 saw revolutions throughout Europe, but were the titles referring to all of them, a subset, or even just the domestic radicalism of the Chartists? Similarly, Cohen considers the <a title="Cohen, Searching for the Victorians" href="http://www.dancohen.org/2010/10/04/searching-for-the-victorians/" target="_blank">1830 spike</a> to point to &#8220;the successful 1830 revolution in France&#8221;; but given the figures for 1831, it could be a result of the turmoil preceding the reform act of 1832. <a title="Libcom articles on Merthy Tydfil uprising, 1831" href="http://libcom.org/library/1831-merthyr-tydfil-uprising" target="_blank">Merthyr Tydfil</a> saw perhaps the first industrial working class uprising in Britain; <a title="Spartacus Schoolnet on Bristol Riots of 1831" href="http://www.spartacus.schoolnet.co.uk/PRbristol.htm" target="_blank">Bristol</a> and <a title="People's Histreh booklet on the Nottingham Reform riots" href="http://peopleshistreh.wordpress.com/2010/10/19/to-the-castle-booklet/" target="_blank">Nottingham</a> saw state institutions go up in flames; there were incidents across the country, from Exeter to Huddersfield. The British publishing trade may have taken more note of this than three glorious days in Paris: the small rise around 1871 may also indicate that British publishing would register domestic concerns far more dramatically than events abroad. Against this, the jump in 1857 is probably due to the Indian Mutiny. In turn, the 1831 figures could indicate that the situation in Britain was far more volatile than todays historians have judged it.</p>
<p>So although there is evidence of a causal relationship between events and book titles, it is not transparent. It is further clouded by changes in the meaning of the word. The sustained increase over the last 25 years suggests a change in the conception of revolution from taking to the streets to building working class organizations, from riot and insurgency to factory strikes and the new unionism, from an immediate event to a longer term social struggle.  This indicates a fundamental change in class structure &#8211; the growth of an industrial proletariat &#8211; and consistent class antagonism. But note that events still affect the numbers: the increase from 1904 to 1905 is probably due to the first Russian revolution.</p>
<p>The greater concern with domestic events and the change in meaning of the word &#8216;revolution&#8217; are working hypotheses. Hopefully, the full corpus from which the numbers are drawn will be opened up, allowing these to be checked. I&#8217;d also like to investigate the 1853 spike, after the defeat of the Chartists and with no foreign correlate that I can think of.</p>
<p>Finally, a curious absence, and a warning against presuming an easy reflection of reality in words. The following graph is of the occurrence of the word &#8216;money&#8217; in book titles, expressed as a percentage.</p>
<div id="attachment_329" class="wp-caption aligncenter" style="width: 370px"><a href="http://anterotesis.com/wordpress/wp-content/uploads/2011/02/moneychart.png"><img class="size-full wp-image-329 " title="Money" src="http://anterotesis.com/wordpress/wp-content/uploads/2011/02/moneychart.png" alt="Money in Book Titles, 1789-1914" width="360" height="300" /></a><p class="wp-caption-text">Percentage of British books with &#39;money&#39; in the title, 1789-1914</p></div>
<p>See that dip for 1825? Yet there was a banking crisis that year!</p>
<p>* Insert standard complaint about proprietary file formats here. However, it&#8217;s a simple spreadsheet, and neither Open Office nor <a title="Libre Office, the free software office suite" href="http://www.libreoffice.org/download/" target="_blank">Libre Office</a> had any difficulties opening it.</p>
]]></content:encoded>
			<wfw:commentRss>http://anterotesis.com/wordpress/2011/02/victorian-books-the-frequency-of-revolution/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

