<?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>(b)logophile</title>
	<atom:link href="http://www.logophile.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.logophile.org/blog</link>
	<description>blog of a logophile (not "logos", but "λόγος")</description>
	<lastBuildDate>Fri, 20 Aug 2010 10:21:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4813</generator>
		<item>
		<title>A bad sentence</title>
		<link>http://www.logophile.org/blog/2010/08/20/a-bad-sentence/</link>
		<comments>http://www.logophile.org/blog/2010/08/20/a-bad-sentence/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 10:21:14 +0000</pubDate>
		<dc:creator>tikitu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[amusement]]></category>
		<category><![CDATA[dyspepsia]]></category>
		<category><![CDATA[proofing]]></category>

		<guid isPermaLink="false">http://www.logophile.org/blog/?p=977</guid>
		<description><![CDATA[What excellent timing! I have a spate of proofreading coming up, and I&#8217;m going to try to work this sentence in somewhere: [T]o correct a bad sentence satisfactorily is not always possible; it should never have existed, that is all that can be said. From The King&#8217;s English, spotted by Maud Newton.]]></description>
			<content:encoded><![CDATA[<p>What excellent timing! I have a spate of proofreading coming up, and I&#8217;m going to try to work this sentence in somewhere:</p>

<blockquote>
  <p>[T]o correct a bad sentence satisfactorily is not always possible; it should never have existed, that is all that can be said.</p>
</blockquote>

<p>From <a href="http://www.librarything.com/work/58727/"><em>The King&#8217;s English</em></a>, spotted by <a href="http://maudnewton.com/blog/?p=13220">Maud Newton</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logophile.org/blog/2010/08/20/a-bad-sentence/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Python datetime conversions</title>
		<link>http://www.logophile.org/blog/2010/08/15/python-datetime-conversions/</link>
		<comments>http://www.logophile.org/blog/2010/08/15/python-datetime-conversions/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 15:21:59 +0000</pubDate>
		<dc:creator>tikitu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[(La)TeX]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[tikz]]></category>

		<guid isPermaLink="false">http://www.logophile.org/blog/?p=964</guid>
		<description><![CDATA[Recently for my work I had to do some date/time-wrangling in Python. We have a database containing unix timestamp values, and the front-end application needs to talk local time. The necessary conversions aren&#8217;t so complicated, but Python makes life a bit harder by having three relevant modules, three relevant data types (not matching the modules), [...]]]></description>
			<content:encoded><![CDATA[<p>Recently for my work I had to do some date/time-wrangling in Python. We have a database containing unix timestamp values, and the front-end application needs to talk local time. The necessary conversions aren&#8217;t so complicated, but Python makes life a bit harder by having three relevant modules, three relevant data types (not matching the modules), and a complicated web of conversion possibilities between them.</p>

<p>For instance:</p>

<ul>
<li>the <code>datetime</code> class lives in the <code>datetime</code> module; careful with your imports, you will want both!</li>
<li>the <code>datetime</code> module has a <code>time</code> class, but there&#8217;s also a <code>time</code> module</li>
<li>the documentation talks at different places about &#8220;time tuples&#8221; and also about &#8220;<code>time.struct_time</code>&#8221; objects; they&#8217;re the same thing</li>
<li>to convert a unix timestamp to a time tuple representing UTC time, you use <code>time.gmtime()</code>; for the reverse conversion, you use <code>calendar.timegm()</code> (this is the only place you&#8217;ll use the <code>calendar</code> module)</li>
<li>to get <em>now</em> you use:

<ul>
<li><code>time.localtime()</code> if you want a timetuple</li>
<li><code>time.time()</code> if you want a unix timestamp</li>
<li><code>datetime.now()</code> if you want a datetime object</li>
<li><code>time.gmtime()</code> if you want a timetuple representing UTC time</li>
<li><code>datetime.utcnow()</code> if you want a datetime object representing UTC time</li>
<li>a crowbar if necessary</li>
</ul></li>
<li>to build a <code>datetime</code> object from a time-tuple, you can set the fields one-by-one&#8230; or you can slice the time-tuple and unpack the list: <code>datetime(*a_time_tuple[:6])</code></li>
</ul>

<p>In other words, there&#8217;s a lot of fiddly detail to remember. So I made a chart.</p>

<div id="attachment_969" class="wp-caption aligncenter" style="width: 610px"><a href="http://www.logophile.org/blog/wp-content/uploads/2010/08/python-date.pdf"><img src="http://www.logophile.org/blog/wp-content/uploads/2010/08/python-date.jpg" alt="Blurry overview of python date/time wrangling" title="python-date-img" width="600" height="424" class="size-full wp-image-969" /></a><p class="wp-caption-text">Click through for (non-blurry) PDF.</p></div>

<p>It&#8217;s formatted for a4 paper and prints nicely. I used the incredible LaTeX drawing system <a href="http://www.texample.net/tikz/examples/">TikZ</a>. (On my screen the arrows have a little glitch at start and finish, but it doesn&#8217;t appear in my printout. Possibly a TikZ bug? Not sure.)</p>

<p>Note that it doesn&#8217;t show <em>everything</em> you can do; apart from the more egregious omissions (like timezone handling on <code>datetime</code> objects, which actually seems quite straight-forward but didn&#8217;t fit nicely into the design), I didn&#8217;t include arrows for nonsensical operations. For example you could feed a UTC time-tuple into <code>time.mktime()</code> (which takes a <em>localtime</em> time-tuple to a unix timestamp), but the result would be nonsense: the number of seconds since a date similar to, but probably not quite the same as, the unix epoch.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logophile.org/blog/2010/08/15/python-datetime-conversions/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Games and prices</title>
		<link>http://www.logophile.org/blog/2010/08/08/games-and-prices/</link>
		<comments>http://www.logophile.org/blog/2010/08/08/games-and-prices/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 19:19:16 +0000</pubDate>
		<dc:creator>tikitu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[economics]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[luxury]]></category>

		<guid isPermaLink="false">http://www.logophile.org/blog/?p=959</guid>
		<description><![CDATA[Machinarium, a game by the makers of Samarost (1 and 2), is being offered for $51 in a &#8220;pirate amnesty&#8221; (down from $20); the makers estimate that only 5-15% of people playing it paid. (No idea how they did that estimation. They&#8217;ve also, in a belated fit of sanity, added a note to the blog [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://machinarium.net/"><em>Machinarium</em></a>, a game by the makers of <a href="http://amanita-design.net/samorost-1/"><em>Samarost</em></a> (<a href="http://amanita-design.net/samorost-1/">1</a> and <a href="http://amanita-design.net/samorost-2/">2</a>), is being offered for $5<sup>1</sup> in a &#8220;<a href="http://machinarium.net/blog/2010/08/05/machinarium-pirate-amnesty/">pirate amnesty</a>&#8221; (down from $20); the makers estimate that only 5-15% of people playing it paid. (No idea how they did that estimation. They&#8217;ve also, in a belated fit of sanity, added a note to the blog post saying they don&#8217;t really believe everyone buying it now has already pirated it&#8230;)</p>

<p><span id="more-959"></span></p>

<p>I bought it, at the reduced price.<sup>2</sup> But I <em>didn&#8217;t</em> buy it at the full price.</p>

<p>I&#8217;m supporting <a href="http://www.kickstarter.com/projects/1116655413/publishing-perfect-unrevised-a-story-game"><em>Perfect</em></a> on Kickstarter (and you could be too &#8212; it&#8217;s at 30% or so, with 15 days still to run). I made the minimum pledge that gets you anything: $5 for a pdf (its a story game).</p>

<p>This weekend I went on a bit of a games kick; I tried out my <a href="http://en.wikipedia.org/wiki/Humble_indie_bundle">Humble Indie Bundle</a> games<sup>3</sup> which have been sitting there since May, and I bought and played <a href="http://www.hemispheregames.com/osmos/"><em>Osmos</em></a>. I was tempted by, but did not buy, <a href="http://www.positech.co.uk/gratuitousspacebattles/"><em>Gratuitous Space Battles</em></a>.</p>

<p>I paid $20 for the Humble Indie Bundle (five games, released on a pay-what-you-want basis); the pirate amnesty <em>Machinarium</em> was $5, <em>Osmos</em> was $10. Compare that with the two I didn&#8217;t take: original <em>Machinarium</em> at $20, and <em>GSB</em> for $25 (the &#8220;Collectors Edition&#8221; with expansion packs; $20 for the standard).</p>

<p>Sometime last year I also bought <a href="http://en.wikipedia.org/wiki/Fallout_2"><em>Fallout 2</em></a> (a nostalgia trip, as well as a great game) from <a href="http://www.gog.com/">GOG.com</a> (&#8220;Good Old Games&#8221;) for $6; on someone&#8217;s advice I also bought <a href="http://en.wikipedia.org/wiki/Arcanum:_Of_Steamworks_and_Magick_Obscura"><em>Arcanum</em></a> for the same price.</p>

<p>The point of this litany (besides horrifying my mother and my girlfriend) is that all these games are <em>insanely cheap</em>. So cheap that I passed up a fun-looking game for $25, because it was a bit pricey. That&#8217;s totally insane.</p>

<p>I think what happens is that sub-$20 prices don&#8217;t even register as spending money (for comparison, an average weekly grocery shopping trip costs me about twice that), whereas a higher price (no matter how reasonable) makes me think &#8220;Is it worth it?&#8221; which starts me thinking &#8220;Do I really need this?&#8221; (Answer for games: no.)</p>

<p>Judging by what the <em>Machinarium</em> folk are doing, I must be fairly representative of the market, except that I don&#8217;t pirate (any more: my Fallout nostalgia is for someone else&#8217;s copy). Which must really suck for game developers.</p>

<p>I like creative people making creative games.<sup>4</sup> So today I&#8217;m upgrading my Kickstarter support for <a href="http://www.kickstarter.com/projects/1116655413/publishing-perfect-unrevised-a-story-game"><em>Perfect</em></a>, and I&#8217;m buying <em>GSB</em>. Do I <em>need</em> it? No. But I can spare the cash to help support someone&#8217;s creativity. And looking at the lineup of games I own and prices I paid, it seems like I owe a bit to the industry.</p>
<p>Notes:</p><ol class="footnotes"><li id="footnote_0_959" class="footnote">All prices in this post are in USD.</li><li id="footnote_1_959" class="footnote">And then discovered it won&#8217;t run on 64-bit linux&#8230; ah well, they <em>did</em> warn linux users to try it first&#8230;</li><li id="footnote_2_959" class="footnote"><a href="http://www.worldofgoo.com/"><em>World of Goo</em></a> was the big hit; I didn&#8217;t try <a href="http://www.gishgame.com/"><em>Gish</em></a> and the others didn&#8217;t scratch my itches.</li><li id="footnote_3_959" class="footnote">And I like them releasing them without DRM. That&#8217;s part of the <em>Machinarium</em> story, and applies to everything mentioned above.</li></ol>]]></content:encoded>
			<wfw:commentRss>http://www.logophile.org/blog/2010/08/08/games-and-prices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Olympus (or: What I Missed)</title>
		<link>http://www.logophile.org/blog/2010/08/06/olympus-or-what-i-missed/</link>
		<comments>http://www.logophile.org/blog/2010/08/06/olympus-or-what-i-missed/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 15:49:28 +0000</pubDate>
		<dc:creator>tikitu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[envy]]></category>
		<category><![CDATA[greece]]></category>
		<category><![CDATA[tramping]]></category>

		<guid isPermaLink="false">http://www.logophile.org/blog/?p=951</guid>
		<description><![CDATA[I came back from Greece last week, and have settled comfortably back into work. But Olga stayed a bit longer, and did something awesome: she climbed Mt Olympus. Here are just a couple of photos; you can find more on her blog. Check out Olga&#8217;s gallery for more fit Greeks, toe-curling alpine views, lovely wildflowers, [...]]]></description>
			<content:encoded><![CDATA[<p>I came back from Greece last week, and have settled comfortably back into work. But Olga stayed a bit longer, and did something awesome: she climbed Mt Olympus.</p>

<p>Here are just a couple of photos; you can find more <a href="http://www.ipernity.com/doc/ftaneipia/album/199530">on her blog</a>.</p>

<div id="attachment_952" class="wp-caption aligncenter" style="width: 385px"><a href="http://www.ipernity.com/doc/ftaneipia/8693931/sizes/in/album/199530"><img src="http://www.logophile.org/blog/wp-content/uploads/2010/08/DSC01050_500.jpg" alt="A horse posing in front of the peak of My Olympus" width="375" height="500" class="size-full wp-image-952" /></a><p class="wp-caption-text">Bare country for horses.</p></div>

<div id="attachment_953" class="wp-caption aligncenter" style="width: 385px"><a href="http://www.ipernity.com/doc/ftaneipia/8695519/in/album/199530?from=8695567&amp;at=1281050148"><img src="http://www.logophile.org/blog/wp-content/uploads/2010/08/DSC00873_500.jpg" alt="Cloudy on the tops" title="Cloudy on the tops" width="375" height="500" class="size-full wp-image-953" /></a><p class="wp-caption-text">The road goes ever on and on...</p></div>

<div id="attachment_954" class="wp-caption aligncenter" style="width: 385px"><a href="http://www.ipernity.com/doc/ftaneipia/8695759/in/album/199530"><img src="http://www.logophile.org/blog/wp-content/uploads/2010/08/DSC00815_500.jpg" alt="Who&#039;s that hotty?" title="Who&#039;s that hotty?" width="375" height="500" class="size-full wp-image-954" /></a><p class="wp-caption-text">Is she taking the pic herself? Concentrating face...</p></div>

<div id="attachment_955" class="wp-caption aligncenter" style="width: 385px"><a href="http://www.ipernity.com/doc/ftaneipia/8693989/in/album/199530?from=8694029&amp;at=1281037463"><img src="http://www.logophile.org/blog/wp-content/uploads/2010/08/DSC01022_500.jpg" alt="Wild country" title="Wild country" width="375" height="500" class="size-full wp-image-955" /></a><p class="wp-caption-text">Spot the people. Keep looking... keep looking...</p></div>

<p>Check out <a href="http://www.ipernity.com/doc/ftaneipia/album/199530">Olga&#8217;s gallery</a> for more fit Greeks, toe-curling alpine views, lovely wildflowers, and for some reason a couple of candid shots of donkey and horse anatomy (parental discretion advised). I&#8217;m deeply envious.<sup>1</sup></p>
<p>Notes:</p><ol class="footnotes"><li id="footnote_0_951" class="footnote">Of Olga, not the horse.</li></ol>]]></content:encoded>
			<wfw:commentRss>http://www.logophile.org/blog/2010/08/06/olympus-or-what-i-missed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Books, naturalists, and footnotes</title>
		<link>http://www.logophile.org/blog/2010/07/31/books-naturalists-footnotes/</link>
		<comments>http://www.logophile.org/blog/2010/07/31/books-naturalists-footnotes/#comments</comments>
		<pubDate>Sat, 31 Jul 2010 18:41:18 +0000</pubDate>
		<dc:creator>tikitu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[footnotes]]></category>
		<category><![CDATA[naturalists]]></category>

		<guid isPermaLink="false">http://www.logophile.org/blog/?p=947</guid>
		<description><![CDATA[The latest TLS has a nice review, by Jim Endersby, of a book they call Books and Naturalists, and which LibraryThing calls Nature Publishing in Britain (the latter title wouldn&#8217;t have caught my eye quite so effectively, I have to say).1 Packed into the half-page review are several moments of quality comedy. We learn of [...]]]></description>
			<content:encoded><![CDATA[<p>The latest <em>TLS</em> has a nice review, by Jim Endersby, of a book they call <em>Books and Naturalists</em>, and which LibraryThing calls <a href="http://www.librarything.com/work/9595630/book/62901687"><em>Nature Publishing in Britain</em></a> (the latter title wouldn&#8217;t have caught my eye <em>quite</em> so effectively, I have to say).<sup>1</sup></p>

<p>Packed into the half-page review are several moments of quality comedy. We learn of George Montagu, &#8220;who brought his sense of military discipline, keen observational eye and shotgun to bear on Britain&#8217;s birds.&#8221; Also of the elusive <em>List of the Birds that have been Observed to Breed in the Island of Arran Scotland, since the year 1835</em> &#8212; elusive because it was never printed, being invented &#8220;by an unscrupulous egg dealer&#8221; who claimed to be able to supply eggs from the author&#8217;s collection.</p>

<p>But these days I hardly bother to post unless there&#8217;s something to get annoyed by. And there is.</p>

<blockquote>
  <p>Sadly, it lacks footnotes, which is a loss to real nerds but in keeping with the New Naturalist goal of accessibility.</p>
</blockquote>

<p>Now really. What on earth is inaccessible about the footnote?<sup>2</sup> I am speaking, yes, as a &#8220;real nerd&#8221;, but what possible reason can there be to deny me the pleasure (and an educational pleasure, at that) of my footnotes?</p>

<p>I can only presume that the publishers believe that some might be put off by the humble footnote; might be (heavens forbid) even discouraged from reading, overawed by the sheer weight of academic seriousness it implies.</p>

<p>Against this view, in the generous hope of educating the public (and drawing on my many years of academic experience and the still-raw memories of completing a PhD) I&#8217;m going to tell you an important, but not often admitted-to, secret about footnotes.</p>

<p>You don&#8217;t have to read them.</p>
<p>Notes:</p><ol class="footnotes"><li id="footnote_0_947" class="footnote">Seriously, <em>Books and Naturalists</em> reads like someone in the PR department decided, &#8220;We are marketing this book to Tikitu.&#8221; Why oh why would you change something so perfect?</li><li id="footnote_1_947" class="footnote">The <em>end</em>note, I&#8217;ll grant you, is inaccessible &#8212; although only in comparison to the footnote, not to the absence of any referencing whatsoever, which seems to be what the review implies. My spine comes out in shivers at the very thought.</li></ol>]]></content:encoded>
			<wfw:commentRss>http://www.logophile.org/blog/2010/07/31/books-naturalists-footnotes/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Breakfast in Tübingen</title>
		<link>http://www.logophile.org/blog/2010/07/11/breakfast-in-tubingen/</link>
		<comments>http://www.logophile.org/blog/2010/07/11/breakfast-in-tubingen/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 15:04:12 +0000</pubDate>
		<dc:creator>tikitu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[breakfast]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://www.logophile.org/blog/?p=941</guid>
		<description><![CDATA[Last weekend I was in Tübingen for a wedding.1 We hit on a great solution for the extraordinarily hot weather: The chappy on the right is my ex-officemate and ex-yoga-teacher, whose place I was staying at. Beside him his girlfriend, and the other two are flatmates. Notes:I failed to take any good wedding shots; haven&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Last weekend I was in Tübingen for a wedding.<sup>1</sup> We hit on a great solution for the extraordinarily hot weather:</p>

<p><a href="http://www.logophile.org/blog/wp-content/uploads/2010/07/IMGP3373.jpg"><img src="http://www.logophile.org/blog/wp-content/uploads/2010/07/IMGP3373.jpg" alt="" title="IMGP3373" width="800" class="aligncenter size-full wp-image-942" /></a></p>

<p>The chappy on the right is my ex-officemate and ex-yoga-teacher, whose place I was staying at. Beside him his girlfriend, and the other two are flatmates.</p>

<p><a href="http://www.logophile.org/blog/wp-content/uploads/2010/07/IMGP3375.jpg"><img src="http://www.logophile.org/blog/wp-content/uploads/2010/07/IMGP3375.jpg" alt="" title="IMGP3375" width="800" class="aligncenter size-full wp-image-943" /></a></p>
<p>Notes:</p><ol class="footnotes"><li id="footnote_0_941" class="footnote">I failed to take any good wedding shots; haven&#8217;t yet sorted through the Tübingen walking tour ones but my expectations are not high.</li></ol>]]></content:encoded>
			<wfw:commentRss>http://www.logophile.org/blog/2010/07/11/breakfast-in-tubingen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Musical instrument auction</title>
		<link>http://www.logophile.org/blog/2010/07/05/musical-instrument-auction/</link>
		<comments>http://www.logophile.org/blog/2010/07/05/musical-instrument-auction/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 20:50:11 +0000</pubDate>
		<dc:creator>tikitu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[amusement]]></category>
		<category><![CDATA[drooling]]></category>
		<category><![CDATA[instruments]]></category>

		<guid isPermaLink="false">http://www.logophile.org/blog/?p=934</guid>
		<description><![CDATA[We spent a weekend in Bath recently. Among other attractions of the area, it turns out there is a quarterly auction of musical instruments quite close by. This trip didn&#8217;t synchronise, but I&#8217;ve been browsing the catalogues of previous auctions to see if it&#8217;s worth trying to be there at the right time next year. [...]]]></description>
			<content:encoded><![CDATA[<p>We spent a weekend in Bath recently. Among other attractions of the area, it turns out there is a <a href="http://www.gardinerhoulgate.co.uk/">quarterly auction of musical instruments</a> quite close by. This trip didn&#8217;t synchronise, but I&#8217;ve been browsing the catalogues of previous auctions to see if it&#8217;s worth trying to be there at the right time next year. In the process, I&#8217;ve come across some wonderfully odd things to buy at auction.</p>

<ul>
<li>A <a href="http://en.wikipedia.org/wiki/Serpent_%28instrument%29">serpent</a>. These seem to turn up quite often, but sell for rather large amounts of money.</li>
<li>&#8220;Large quantity of Phillips London auction musical instrument catalogues.&#8221; Because what you <em>need</em> to buy at an auction is the catalogue for a different auction. Which has closed.</li>
<li>A fife and piccolo. &#8220;Old&#8221; (which seems to be code for &#8220;broken-down but not antique&#8221;), went for 32 quid.</li>
<li>&#8220;Fourteen various cast-iron flute key presses.&#8221; &#8230; For &#8230; pressing the keys on a cast-iron flute?</li>
<li>Twenty cases: one hard cello case, three double-bass cases, and sixteen (<em>sixteen</em>) soft cello cases. Useful, I imagine, if you plan to bid on:</li>
<li>Lot 206, six cellos;</li>
<li>Lot 207, six 3/4 size cellos;</li>
<li>Lot 208, <em>another</em> six 3/4 size cellos; or</li>
<li>Lot 209, three 1/2 size cellos.</li>
<li>Five trombones. Which sold, collectively, for 30 quid. </li>
<li>Four basoon crooks. (&#8212;I bought five trombones, what about you? &#8212;Well, I bid on the &#8220;quantity of various bassoon sections&#8221; but lost. So I&#8217;m left with these. Fancy a bassoon crook?)</li>
<li>A <a href="http://en.wikipedia.org/wiki/Sousaphone">sousaphone</a>.</li>
<li>An <a href="http://en.wikipedia.org/wiki/Ophicleide">ophicleide</a> (which I honestly thought was a made-up instrument).</li>
<li>A marching lyre.</li>
<li>A <em>marching lyre</em>.</li>
</ul>

<p>There are also some fine examples of the cataloguer&#8217;s art. Savour this one, for instance:</p>

<blockquote>
  <p>Early 20th century brass adjustable music stand, the shaped spindle ledge supported upon a circular column
  terminating in triple curving legs and pad feet; also a ukulele banjo, case.</p>
</blockquote>

<p>Or the crisply implied distinctions between a &#8220;quantity&#8221; of bows and a &#8220;bundle&#8221; of bows, both as distinct from a &#8220;small bundle&#8221; of bows. (One bow, incidentally, sold for 1500 pounds. The small bundle, for in the region of 12.)</p>

<p>I have to say, I&#8217;m tempted to try to pick up a sousaphone or ophicleide. Although I can imagine some difficulties with RyanAir on the way back to Amsterdam&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logophile.org/blog/2010/07/05/musical-instrument-auction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another reason I hate Facebook</title>
		<link>http://www.logophile.org/blog/2010/07/05/another-reason-i-hate-facebook/</link>
		<comments>http://www.logophile.org/blog/2010/07/05/another-reason-i-hate-facebook/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 20:39:14 +0000</pubDate>
		<dc:creator>tikitu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[annoyance]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://www.logophile.org/blog/?p=938</guid>
		<description><![CDATA[So someone asked to be Facebook friends with a message saying they read and enjoy this blog. Great!1 Only, I pretty much hate Facebook and wish I didn&#8217;t have to be there (to keep up with a few family and friends who aren&#8217;t online anywhere else). All my Bookface &#8220;friends&#8221; I&#8217;ve met face-to-face, and there [...]]]></description>
			<content:encoded><![CDATA[<p>So someone asked to be Facebook friends with a message saying they read and enjoy this blog. Great!<sup>1</sup> Only, I pretty much hate Facebook and wish I didn&#8217;t have to be there (to keep up with a few family and friends who aren&#8217;t online anywhere else). All my Bookface &#8220;friends&#8221; I&#8217;ve met face-to-face, and there are still too many of them. So I&#8217;d like to reject the request, with a polite note explaining why.</p>

<p>Can I do that? No I can&#8217;t.</p>

<p>Presumably they&#8217;ve got their privacy settings locked down so non-friends can&#8217;t contact them. Smart move&#8230; except Bookface doesn&#8217;t make an exception for replying to a friend request.<sup>2</sup></p>

<p>It&#8217;s probably a bug. But a cynical little voice keeps reminding me that this is yet another source of social pressure to accept yet more invitations, just what Bookface wants&#8230;</p>

<p>Lucky for me, I can presume this person will see <em>this</em> post instead. Or that they&#8217;re not a human. Problem solved.</p>
<p>Notes:</p><ol class="footnotes"><li id="footnote_0_938" class="footnote">Assuming it&#8217;s a human being, of course. Oh I <em>am</em> cynical today.</li><li id="footnote_1_938" class="footnote">There&#8217;s a &#8220;Send a message&#8221; link, but when the message window pops up it needs the recipient filled in &#8230; which has to already be a friend.</li></ol>]]></content:encoded>
			<wfw:commentRss>http://www.logophile.org/blog/2010/07/05/another-reason-i-hate-facebook/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>London infested with feral pigs</title>
		<link>http://www.logophile.org/blog/2010/07/02/london-infested-with-feral-pigs/</link>
		<comments>http://www.logophile.org/blog/2010/07/02/london-infested-with-feral-pigs/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 20:37:12 +0000</pubDate>
		<dc:creator>tikitu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[hilarity]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[swine]]></category>

		<guid isPermaLink="false">http://www.logophile.org/blog/?p=932</guid>
		<description><![CDATA[In the fourteenth century, that is. I&#8217;m reading The Time Traveller&#8217;s Guide to Medieval England, which is turning out much better than its title would suggest. The gimmick is to try to bring the period to life by focusing on the things we would be confused or puzzled by, whether because our stereotypes are off-beam [...]]]></description>
			<content:encoded><![CDATA[<p>In the fourteenth century, that is. I&#8217;m reading <a href="http://www.librarything.com/work/6352021"><em>The Time Traveller&#8217;s Guide to Medieval England</em></a>, which is turning out much better than its title would suggest. The gimmick is to try to bring the period to life by focusing on the things we would be confused or puzzled by, whether because our stereotypes are off-beam or simply because things were done <em>really</em> differently.</p>

<p>Which brings me to the pigs. Apparently London was so filthy (ditches but no sewer system; slaughtering of animals all over the city; bucket-based toilets for much of the populace) that it was infested not just with rats but also with dogs and pigs. The first in a succession of moves to clean up the city is &#8220;the establishment of a mechanism for appointing official swine killers, who are paid 4d for every pig they remove.&#8221; (And in 1311 &#8220;the flaying of dead horses is prohibited within the city walls&#8221;, which I imagine improved the atmosphere.)</p>

<p>In closely related news, very likely the first thing you would notice on arriving in fourteenth-century London would be your nose shutting down in protest. Or possibly falling off.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logophile.org/blog/2010/07/02/london-infested-with-feral-pigs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An unexpected hedgehog</title>
		<link>http://www.logophile.org/blog/2010/06/30/an-unexpected-hedgehog/</link>
		<comments>http://www.logophile.org/blog/2010/06/30/an-unexpected-hedgehog/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 20:59:46 +0000</pubDate>
		<dc:creator>tikitu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[typography]]></category>
		<category><![CDATA[wonderful]]></category>

		<guid isPermaLink="false">http://www.logophile.org/blog/?p=923</guid>
		<description><![CDATA[I&#8217;ve been sitting on this a while, trying to coaxe out some prose worthy of the subject, but coaxing doesn&#8217;t seem to be working and the thanks grow ever more overdue&#8230; So, plainly and simply: Alan Brignull of the Hedgehog Press very kindly sent me, more than a month ago, a package of his letterpress [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been sitting on this a while, trying to coaxe out some prose worthy of the subject, but coaxing doesn&#8217;t seem to be working and the thanks grow ever more overdue&#8230; So, plainly and simply: <a href="http://www.flickr.com/people/alan98/">Alan Brignull</a> of the Hedgehog Press very kindly sent me, more than a month ago, a package of his letterpress print work. It&#8217;s absolutely delightful.</p>

<div id="attachment_924" class="wp-caption aligncenter" style="width: 460px"><a href="http://www.logophile.org/blog/wp-content/uploads/2010/06/rambling-600.jpg"><img src="http://www.logophile.org/blog/wp-content/uploads/2010/06/rambling-600.jpg" alt="A selection of Rambling Urchin issues" title="Rambling Urchin selection" width="450" height="600" class="size-full wp-image-924" /></a><p class="wp-caption-text"><i>The Rambling Urchin</i>, a letterpress production by Alan Brignull of the Hedgehog Press</p></div>

<p><em>The Rambling Urchin</em> is his periodical, printed on an Adana letterpress machine (presumably something <a href="http://britishletterpress.co.uk/presses/small-presses/adana/">like this</a>). There are issues of pure whimsy (&#8220;Numbo-jumbo / Mind Dribble&#8221;), type showcases (&#8220;BRAVE BADDIES GIVE ROTTEN STINGO [...] relates to the illegal brewers of Adanaland [...] It also uses every letter of 72-pt Albertus owned by Henry Morris of the Bird &amp; Bull Press.&#8221;), poems, quotations apposite or otherwise, and little texts on (mainly) print-related issues.<sup>1</sup> He&#8217;s a clever man with an ornament (see his virtuoso display for the <a href="http://blog.typoretum.co.uk/2009/09/01/letterpress-exchange-group-bundle-%E2%80%93-august-2009/">August 2009 Letterpress Exchange Group</a>, but also his cunning <a href="http://segalbooks.blogspot.com/2010/05/dispatches-from-adanaland.html">volcano</a>). And his selections and writings have a gentle wit to them that complements his artistry wonderfully.</p>

<p>The package arrived announcing that it was &#8220;Real mail: certified not junk&#8221;, on a perforated strip bearing a six-digit serial number.<sup>2</sup> As well as the <em>Rambling Urchin</em> issues, he sent me stamps from the Perfect State of Flatby (<a href="http://www.cvphm.org/Stamps.html">as seen here</a>) and from Adanaland (including something like <a href="http://jas.faximum.com/asg/asg_1886.html">this one</a>, although not overprinted and thus presumably less rare).</p>

<p>As you might guess from my linking all over the web, he doesn&#8217;t have a website. But googling will very likely turn up a few more gems; the <em>Rambling Urchin</em> has been running (in various formats) for more than 20 years and lots of other people have appreciated it along the way. Of course it&#8217;s not the same as the print version<sup>3</sup> but it will have to do until you visit Adanaland.</p>

<p>And to Alan: thank you again for the tourist visa. I hope I&#8217;ll come back someday.</p>
<p>Notes:</p><ol class="footnotes"><li id="footnote_0_923" class="footnote">But not <em>only</em> printing. November 2007, the &#8220;Tuvan Edition&#8221;, gives the national anthem of the Republic of Tuva, along with a banner which &#8220;is supposed to say &#8216;Rambling Urchin&#8217; but it could be &#8216;Nomad Spit-cunning&#8217; as Tuvan dictionaries are hard to find&#8221;.</li><li id="footnote_1_923" class="footnote">The post office had rather disrespectfully gummed something machine-readable over it, but thankfully it came off without causing any damage. Probably it read &#8220;Real Mail: certified not junk&#8221;, in some encoding or other.</li><li id="footnote_2_923" class="footnote">Also included in the package: some wet ink, for the full sensory experience: the smell of letterpress!</li></ol>]]></content:encoded>
			<wfw:commentRss>http://www.logophile.org/blog/2010/06/30/an-unexpected-hedgehog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
