<?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>John Petrie’s LifeBlag</title>
	<atom:link href="http://www.jpetrie.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jpetrie.net</link>
	<description>Intemperate thoughts and desultory musings</description>
	<lastBuildDate>Thu, 02 Feb 2012 15:40:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>How to change the WordPress admin area text field/edit post font</title>
		<link>http://www.jpetrie.net/2012/01/26/how-to-change-the-wordpress-admin-area-text-field-font/</link>
		<comments>http://www.jpetrie.net/2012/01/26/how-to-change-the-wordpress-admin-area-text-field-font/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 20:46:48 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Blagging]]></category>
		<category><![CDATA[Morans]]></category>

		<guid isPermaLink="false">http://www.jpetrie.net/?p=1227</guid>
		<description><![CDATA[After upgrading to WordPress version 3.3.1 recently, I was puzzled and frustrated to find that the text in the text area/entry field where you type the content of each post (the Add New Post page or /wp-admin/post-new.php) looked funky, awkward, &#8230; <a class="more-link" href="http://www.jpetrie.net/2012/01/26/how-to-change-the-wordpress-admin-area-text-field-font/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After upgrading to WordPress version 3.3.1 recently, I was puzzled and frustrated to find that the text in the text area/entry field where you type the content of each post (the Add New Post page or /wp-admin/post-new.php) looked funky, awkward, and all mono-spacey. I knew this was obviously the fault of some new CSS file I had &#8220;upgraded&#8221; to with the new WordPress release, but I had no idea how to find the offending bit of code in the mass of files that comes with WordPress. Well, Googling key words like &#8220;wordpress&#8221;, &#8220;font&#8221;, &#8220;text&#8221;, and even &#8220;admin area&#8221; gave me mostly tutorials and discussion threads about how to change fonts displayed on websites run by WordPress. But eventually I found <a href="http://www.ghacks.net/2011/07/05/how-to-change-the-wordpress-admin-interface-fonts/">this post by Martin Brinkmann at ghacks.net</a>, who is a gentleman and a scholar and who explains that the offending string of CSS is in the file wp-admin.css located in the wp-admin/css directory, which specifies that <b>#editorcontainer</b> should have the font-family Consolas, Monaco, monospace.</p>
<p>That apparently is no longer true in WordPress 3.3.1. The wp-admin.css file has no <b>editorcontainer</b> text anywhere in the document, and I changed a few Consolas,Monaco,monospace fonts to something a human would like to type with, to no effect. (No effect that I have noticed yet.)</p>
<p>So I simply did what I should have done from the beginning: used Firebug to determine what CSS selector was specified for this text box/entry field and what CSS document it was located in. It was <b>wp-includes/css/editor-buttons.css</b>, and the CSS selector was <b>wp-editor-area</b>. Therefore, to correct this stupid lapse on WordPress&#8217;s end, you can either download the <a href="http://wordpress.org/wordpress-3.3.1.zip">WordPress .zip file</a> to a temporary place like your Desktop, unzip it there, and find <b>wp-includes/css/editor-buttons.css</b>, or connect to your home directory with an FTP program like Filezilla to download the editor-buttons.css file that WordPress automatically placed on your server. Open editor-buttons.css with a text editor or more advanced programming software, and search for:</p>
<blockquote><p>
<span class="code">wp-editor-area</span>
</p></blockquote>
<p>Immediately or shortly after that text should be:</p>
<blockquote><p>
<span class="code">{font-family:Consolas,Monaco,monospace; &#8230;</span>
</p></blockquote>
<p>I recommend just deleting those three fonts and adding normal fonts in their place, like so:</p>
<blockquote><p>
<span class="code">{font-family: Verdana, Tahoma, Helvetica, Arial, sans-serif; &#8230;</span><br />
[or, you know, whatever other good fonts you want]
</p></blockquote>
<p><b><i>Don&#8217;t delete the semicolon!</i></b></p>
<p>Finally, use an FTP program to upload the new file to your home directory/wp-includes/css/, overwriting the old file.</p>
<p>It turns out that using the Visual editor option to edit posts (and pages, I&#8217;m sure), as opposed to the HTML option, uses a normal font like Verdana or something, but I hate the visual editor. I always feel like I know exactly what I&#8217;m getting with the HTML editor and can control everything better with it.</p>
<p>So if you&#8217;re annoyed like I am at the puzzling decision to change the font of the text in the edit post/edit page text boxes in the wp-admin interface, you have Martin Brinkmann to thank for finding the offending code and pointing us in the right direction.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpetrie.net/2012/01/26/how-to-change-the-wordpress-admin-area-text-field-font/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>No, in fact, languages don&#8217;t want that</title>
		<link>http://www.jpetrie.net/2012/01/24/no-in-fact-languages-dont-want-that/</link>
		<comments>http://www.jpetrie.net/2012/01/24/no-in-fact-languages-dont-want-that/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 18:54:20 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Language]]></category>

		<guid isPermaLink="false">http://www.jpetrie.net/?p=1218</guid>
		<description><![CDATA[Because they are incapable of wanting anything. Earlier I remarked that Geoffrey Pullum, Ph.D., professional linguist, ardent descriptivist, and language blagger extraordinaire surely didn&#8217;t really think this but wrote it in Language Log posts for rhetorical effect: that languages want &#8230; <a class="more-link" href="http://www.jpetrie.net/2012/01/24/no-in-fact-languages-dont-want-that/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Because they are incapable of wanting anything.</p>
<p><a href="http://www.jpetrie.net/2012/01/17/on-correctness-ambiguity-and-precision-in-language/">Earlier I remarked</a> that Geoffrey Pullum, Ph.D., professional linguist, ardent descriptivist, and language blagger <i>extraordinaire</i> surely didn&#8217;t really think this but wrote it in Language Log posts for rhetorical effect: that languages <i>want</i> to change and <i>love</i> ambiguity and <i>show no interest</i> in avoiding <a href="http://ahdictionary.com/word/search.html?q=polysemy">polysemy</a> or ambiguity. Perhaps he really does, without the purpose of irony, cuteness, rhetorical effect, or simple convenience/time-saving in informal blag posts, anthropomorphose languages to such a great extent. We&#8217;ve all heard about real-life and fictional animal researchers becoming attached to their research subjects the way they would a pet or loved one, artistic creators <a href="http://www.quotationspage.com/quote/330.html">feeling more love and devotion to their creations than to real people</a>, entrepreneurs exhibiting more devotion to their businesses than their families, car or boat lovers thinking of their cars or boats almost as people, etc. I guess some linguists can become so immersed in and attached to the subject of their life&#8217;s work that they ascribe to it human qualities that it doesn&#8217;t deserve.</p>
<p>Geoffrey Pullum has <a href="http://languagelog.ldc.upenn.edu/nll/?p=2335">repeatedly</a>, <a href="http://languagelog.ldc.upenn.edu/nll/?p=3083">over</a> and <a href="http://languagelog.ldc.upenn.edu/nll/?p=2079">over</a> and <a href="http://languagelog.ldc.upenn.edu/nll/?p=2148">over</a> again, written that languages love ambiguous meanings and show no interest in avoiding ambiguity or polysemy. No, of course they don&#8217;t, because they are abstract <i>things</i>, basically concepts, that are incapable of thought or emotion. People, on the other hand, very obviously are interested in avoiding ambiguity. At least, some of us are. I doubt very many people, even those dreaded prescriptivists whom Dr. Pullum basically makes into a caricature of intolerant, unthinking, dogmatic unreasonableness, which in itself makes me wary of intellectually associating myself too closely with descriptivists of his type, care too much about the polysemy that is so typical of short, one-syllable words that we&#8217;ve inherited from ages past. But I find myself sympathetic to prescriptivists, if that&#8217;s what it makes them (me), who object to a rarer word with an established meaning acquiring a new one that it doesn&#8217;t need and doesn&#8217;t help anyone communicate.</p>
<p>The point of those posts by Dr. Pullum was to point out that polysemy does not mean ambiguity and thereby prove that prescriptivists are wrong in wanting words to maintain constant meanings, or even in believing that they can.</p>
<p>I would say the archetypal ongoing definition shift that divides descriptivists from prescriptivists is the adjective &#8220;disinterested&#8221;. It means impartial or not having a stake in either side. In contrast, &#8220;uninterested&#8221; means bored or not engaged. I don&#8217;t know if it&#8217;s descriptivist, prescriptivist, or neither to note that &#8220;impartial&#8221; is basically a synonym of &#8220;disinterested&#8221;, so do we really need the latter at all?, and that it is kind of stupid to have two <i>negation-of-&#8221;interested&#8221;</i> words mean different things. Then again, the word &#8220;interest&#8221; means different things, so I have no problem with &#8220;disinterested&#8221; and &#8220;uninterested&#8221; meaning different things. The sentences, &#8220;I&#8217;m not interested in that,&#8221; and, &#8220;I don&#8217;t have an interest in that,&#8221; can have distinct meanings from each other&#8212the first would mean &#8220;uninterested&#8221;, and the second would typically (or at least occasionally) mean &#8220;disinterested&#8221;. Ah, but &#8220;interested&#8221; isn&#8217;t the same word as &#8220;interest&#8221;; maybe that influenced the meanings of the sentences more than just the polysemy did. How about, &#8220;I have no interest in that,&#8221; vs., &#8220;I don&#8217;t have an interest in that&#8221;? Phrased and juxtaposed thusly, more ambiguity certainly seems to creep in. Normally, when we use &#8220;interest&#8221; to mean <i>stake</i> in a matter, we use &#8220;matter&#8221; or other contextual clues to clarify our meaning (&#8220;I don&#8217;t have an interest in that matter&#8221;).</p>
<p>The &#8220;interest&#8221; examples provide yet more support for my point that in contrast to languages, <i>people</i> are quite obviously interested in avoiding ambiguity and avoiding problems caused by polysemy. For example, if we wanted to write a sentence with a structure like one of those in the previous paragraph but were worried about the ambiguity of the word &#8220;interest&#8221; (meaning fascination/attraction/intrigue vs. stake/bias/potential benefit or loss), <i>we would use a different word</i>. This is because <i>we are interested in avoiding ambiguity and the problems that polysemy causes</i>. The languages we&#8217;ve inherited and were able to evolve on our own have plenty of polysemy, occasional ambiguity, and also plenty of ways to avoid both, so we can further influence our language through usage to enable as much precision, clarity, and anti-ambiguity as possible.</p>
<p>One way to achieve this in the &#8220;interest(ed)&#8221; examples is to choose a different (coincidentally, also polysemic) word that could, despite its polysemy, have only one meaning in the sentence at hand: &#8220;I have no stake in the matter,&#8221; or, &#8220;I don&#8217;t have a stake in the matter.&#8221; Or, you know, something completely different but still constructed in the same way: the colloquial, &#8220;I don&#8217;t have a horse in that race.&#8221; Another way to achieve clarity in a short sentence like that is to use a word with a specific meaning for this purpose, &#8220;disinterested&#8221;. We wouldn&#8217;t be compelled by <i>Language</i> to choose the word it wants us to use and has devised for this specific purpose; we ourselves would choose a different word, possibly the polysemic &#8220;stake&#8221;, which people themselves have come to use for certain meanings because of the benefit of doing so, not caring whether it were polysemic or what it meant in other, irrelevant contexts.</p>
<p>On this point I both agree and disagree with Dr. Pullum: polysemy doesn&#8217;t (necessarily) cause ambiguity, certainly not enough to paralyze our use of language, but at the same time, we are not slaves to a disconnected, extra-societal, self-evolving <i>Language</i> that dictates what words mean and how they must be used. We have words with multiple meanings or one meaning because of how our ancestors used them, and we can continue to influence our usage of our language by conscious choice to achieve or at least maintain as much precision and clarity as is reasonable. What is reasonable can be debated extensively but also largely agreed upon, by either the linguistics community specifically or by society at large, and can include the maintenance of a word&#8217;s definition when it seems beneficial to do so and, especially, when it is obviously not necessary and not helpful for its meaning to change.</p>
<p>Language shows no interest in having &#8220;disinterested&#8221; and &#8220;uninterested&#8221; mean the same thing or different things or doing anything else. People, on the other hand&#8212;at least some people&#8212;seem to have an interest in keeping both &#8220;disinterested&#8221; and &#8220;uninterested&#8221; at one meaning each. Descriptivists are quick to remind us that &#8220;disinterested&#8221; used to mean what &#8220;uninterested&#8221; means today. This either occurred because the abstract concept of <i>Language</i> wanted and willed its meaning to change, or it happened because people came up with two different, non-overlapping meanings for these two words, which became standard and popular because it was helpful. Maybe it was the latter, and maybe people can choose, by way of usage, to keep it that way. Maybe it&#8217;s worth considering that people who use &#8220;disinterested&#8221; incorrectly are only doing so out of ignorance of its definition or a simple lapse of prefix distinction, not because <i>Language</i> wants oh-so-badly for it be polysemic, and that we could actually influence usage in a good way by simply reminding people of its definition while sparing ourselves half of the effort we expend arguing over whether this polysemic shift is a good, bad, or completely neutral thing.</p>
<p>Language Log commenter <a href=http://languagelog.ldc.upenn.edu/nll/?p=3708#comment-165151">Jeff Rembetikoff said</a>,</p>
<blockquote><p>
I don&#8217;t think the more reasonable breeds of prescriptivists object to each and every word with multiple meanings. Instead, they object to a rarer word losing a distinction between it and a more common word due to perceived sloppiness. Their frequent objections to certain uses of, for example, collide and comprise seemed reasonable enough to have influenced my own usage.
</p></blockquote>
<p>I agree. I don&#8217;t want words to have a certain, static meaning <i>per se</i>; rather, I want their meanings and distinctions to be clear and precise, and I want people separated by time and space to mean the same thing when they write, say, hear, and read the same words. Ardent descriptivists, in contrast, seem to consider any change a good and desirable thing <i>per se</i> because it&#8217;s what language does and is therefore by definition good. They spend hours and hours and millions of words defending their complete lack of a position, which seems to border on pointless, to me, except in such cases as people&#8217;s communication or understanding is impaired by undue prescriptivism or other strictness. I don&#8217;t really care about the polysemic words that we have, despite their meanings being broad and ambiguous, because the phrases and sentences they are used in are clear, unambiguous, and easily distinguishable from their other uses.</p>
<p>Going back to Dr. Pullum&#8217;s examples of completely unambiguous, unconfusing polysemy, I was particularly interested in <a href="http://languagelog.ldc.upenn.edu/nll/?p=2335">his example &#8220;see&#8221;</a>. Here are the definitions he lists for &#8220;see&#8221;, which exclude the original vision-related one:<br />
1. understanding: <i>I see what you&#8217;re saying.</i><br />
2. judging: <i>I see honesty as the fundamental prerequisite.</i><br />
3. experiencing: <i>Our business saw some hard times last year.</i><br />
4. finding out: <i>I&#8217;ll see whether he&#8217;s available.</i><br />
5. dating: <i>I heard that she&#8217;s seeing someone.</i><br />
6. consulting: <i>You need to see a doctor.</i><br />
7. visiting: <i>I&#8217;d be go and see my aunt for a while.</i><br />
8. ensuring: <i>I&#8217;ll see that this is done immediately.</i><br />
9. escorting: <i>Let me see you to your car.</i><br />
10. sending away: <i>I&#8217;ll come to the airport and see you off.</i></p>
<p>The thing that struck me about all of these uses is that in my world of scientific writing and editing, and possibly in the primary literature of most academic fields, every single one of these uses of the word &#8220;see&#8221; would be inappropriate. We would never use &#8220;see&#8221; to convey any one of these meanings (<i>maaaayyyybe</i> &#8220;see a physician&#8221;). Using &#8220;see&#8221; to mean any of those things in a biological or medical paper would be imprecise and inexact because we have better words with more specific, specialized meanings that would more precisely convey the meaning of the sentence. In everyday speech, such pomposity wouldn&#8217;t be necessary, but in higher-level writing, it&#8217;s often beneficial and even necessary, my objections to bombasticness in general notwithstanding. In the case of &#8220;see&#8221; as used with any of the meanings listed above, I would consider a replacement necessary, for clarity and precision. The reason &#8220;see&#8221; would be inappropriate in primary literature is not because <i>Language</i> wants and compels us to write differently for different situations, nor would it be (only) because scientists and scientific editors are bad writers who conflate &#8220;more syllables&#8221; with &#8220;better writing&#8221;. We would use more specific words because <i>we</i> want to and <i>we</i> see the benefits of doing so.</p>
<p>I see the benefit of keeping many words&#8217; meanings distinct and constant, the best example of which is &#8220;disinterested&#8221; vs. &#8220;uninterested&#8221;. Many more I don&#8217;t care about. I think it&#8217;s reasonable to agree with me on any or all of them (if I ever compile a list, I&#8217;ll let you know), and it doesn&#8217;t make me ignorant, intolerant, pompous, unrealistic, or prescriptivist to advocate lexicographical constancy for some words when there are clear reasons to do so and unclear benefits of change.</p>
<p>My desire is not to avoid polysemy or change <i>per se</i>, but rather to promote things that make sense and discourage things that don&#8217;t. All of those different uses of &#8220;set&#8221;, &#8220;draft/draught&#8221;, &#8220;charge&#8221;, and &#8220;put down&#8221; make sense and don&#8217;t cause ambiguity, so there is no problem with them. Advocating the use of &#8220;disinterested&#8221; to mean &#8220;uninterested&#8221; probably doesn&#8217;t cause much lack of clarity, either, but it&#8217;s stupid, so I oppose it. It&#8217;s stupid because it already means something else and there is already a word that means &#8220;uninterested&#8221;. It&#8217;s not a short, simple, common word with lots of everyday uses, especially uses that are distinguished in prepositional and adverbial clauses. It&#8217;s a long, uncommon adjective whose meaning it makes more sense to preserve, so I advocate its preservation and constancy. This position is simple, beneficial, common-sensical, and very nearly unobjectionable, as far as I can tell.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpetrie.net/2012/01/24/no-in-fact-languages-dont-want-that/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web fonts</title>
		<link>http://www.jpetrie.net/2012/01/18/web-fonts/</link>
		<comments>http://www.jpetrie.net/2012/01/18/web-fonts/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 03:49:41 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Blagging]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://www.jpetrie.net/?p=1204</guid>
		<description><![CDATA[I&#8217;ve been a little bit giddy over the last couple days at my discovery that the fonts used on my website are not limited to the fonts I have or others are likely to have on their computers. Rather, a &#8230; <a class="more-link" href="http://www.jpetrie.net/2012/01/18/web-fonts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been a little bit giddy over the last couple days at my discovery that the fonts used on my website are not limited to the fonts I have or others are likely to have on their computers. Rather, a website owner can use CSS to refer everyone&#8217;s browser to a publicly available font at a web font service, thereby allowing everyone&#8217;s browser to display exactly the font that the designer wants and not just one of the several that are likely to be available on the visitor&#8217;s computer.</p>
<p>This is a really simple concept, but I&#8217;m not surprised I didn&#8217;t think about it before. When an application on your computer (say, Microsoft Word or Mozilla Firefox) loads text of a certain font, it has a certain folder(s) on the hard drive where it goes to look for fonts and then displays each bit of text in the correct font. Instead of limiting the browser to fonts stored on the same hard drive as itself, or at least the same computer (with multiple drives) as itself, why not tell the browser to fetch the font from a location on a hard drive on a different computer, connected to it via the internet? That&#8217;s exactly how web fonts work!</p>
<p>I first realized this when I came across <a href="http://www.typekit.com">Typekit</a>, a web font service that several blags I&#8217;ve encountered use. I&#8217;m a little too obsessed with typefaces, so naturally I was curious about what those blags&#8217; fonts were called and where they came from and how it was possible that they displayed as normal text in my browser, not as a static image or snapshot or anything. I eventually decided to click on the little Typekit logo in the bottom-right of the screen of one of those blags, which says &#8220;Fonts from&#8221; and then the logo. </p>
<p>So I signed this domain up for a free account (which gives you two fonts at a time, which can be switched out any number of times, and I only needed one font) and started trying a few different serif fonts that would serve me better than my all-time favorite font of Times/Times New Roman had. These will always both be my favorite font because they&#8217;re just so&#8230;classical, functional, straightforward, unassuming, readable without being bland, elegant without being flashy.</p>
<p>The only problem is that it wasn&#8217;t as readable as I&#8217;d like on my laptop. I love how the text of my posts looked on my 19&#8221; desktop monitor (on Ubuntu Linux), but in every single browser I tried on my Windows 7 laptop (a 13&#8221; Toshiba), the text was just too small for the Times New Roman font. It isn&#8217;t just a matter of size, because many smaller sans-serif fonts on most web pages are the same size as this text was; the font doesn&#8217;t scale down well or something, because it is just hard to read at that size. Too much serif or too small spaces between letters or something. Part of the problem could be my beige parchment background, which looks very pale on my desktop monitor but quite red-tinged on my laptop. I&#8217;ve spent probably upwards of an hour among several different occasions trying to get my laptop&#8217;s display closer to my desktop&#8217;s, but it seems impossible. I think I would need hardware buttons like the RGB balance and gamma, but they don&#8217;t seem to exist on this laptop. </p>
<p>When I work in Microsoft Word for my editing job, 90% of the papers are, thankfully, written in Times New Roman, most of those in 12-point size. When I zoom Word in to 120%, the text looks perfect in every way; my ideal font. In contrast, in Microsoft OneNote, which I use to jot things down and take notes while editing, Times New Roman 12-point font has the same problem as above (suggesting the website readability problem was not due mainly to the parchment background). The dilemma was that if I made it any larger, it would be way too large on my desktop monitor. I don&#8217;t know how they would look on visitors&#8217; displays, but if my two computers were any guide, Times New Roman wasn&#8217;t achieving a happy medium between readability on a laptop and aesthetics on a desktop monitor. It just isn&#8217;t a web font.</p>
<p>The same was unfortunately true with a font I quickly became enamored of from Typekit, Adobe Garamond Pro. When I applied that font to my blag at 16px, it looked wonderful on my desktop, elegantly simple, with a little extra flare or style that Times doesn&#8217;t have. However, it was probably even less readable on my laptop. Increasing the size was an option, but not a great one.</p>
<p>The free account at Typekit.com doesn&#8217;t give you access to all of their fonts, so I didn&#8217;t have many Times- or Garamond Pro&#8211;like options, and most available serif fonts again looked too small on my laptop or too big and awkward on my desktop. Liberation Serif initially seemed a good option, but on my laptop it looked even too narrow and almost like the letters were too close together. I want a serif font for my main entry content because it seems a little more professional and academic, more classically stylish and not newfangled-computer-stylish, which matches the brown/red/beige/earthy theme of my website better. Serif fonts also display em dashes and en dashes better than some sans-serif fonts, such as two of my favorites, Lucida Grande (which displays en dashes and hyphens identically) and Trebuchet MS. Looking around at other websites recently, I suppose I could go with Georgia at around 14px, but I have disliked Georgia on other websites before, probably at 16px, so I&#8217;ve acquired a little bias against it. It seems to be basically a web font while Times is a word processing font.</p>
<p>To make a long story short, I found the <a href="http://www.google.com/webfonts">Google Web Fonts</a> service and am now using that with Sebastian Kosch&#8217;s Crimson Text as the text you are reading. I have no idea how long I&#8217;ll keep it as that. </p>
<p>I have discovered three large advantages of Google Web Fonts over Typekit. 1) There are thousands more fonts available for free, many of which are the same as those available with the free Typekit account (PT Serif, Droid Serif, and Prociono, just to name a few). The free Typekit account has plenty of good ones, hence its popularity, but not all of the open-source ones. 2) Some of the Google web fonts seem to look better, at least on my laptop, than the same font from Typekit does. I am not sure if it&#8217;s possible that Google Web Fonts&#8217; version of PT Serif looks better, but something has convinced me it does. Sebastian Kosch has apparently uploaded two different versions of Crimson: Crimson to Typekit and Crimson Text to Google Web Fonts. I <i>am</i> completely sure that these two look different on my two computers, in favor of the latter. 3) <a href="https://developers.google.com/webfonts/docs/getting_started">Google Web Fonts&#8217; API</a> is much easier and is open-source, so you don&#8217;t need an account, username, download, special access, or anything other than minimal CSS knowledge to apply a certain font to a certain type of text on your web page. All you do is add the link rel tag to the appropriate place in a CSS document, with the name of the font at the end of it, and the font will display properly on your web page. I was successful on my first try. You don&#8217;t need any WordPress (or other blagging platform) plugin, you don&#8217;t have to download, activate, or sign up for anything, and you don&#8217;t technically even have to visit the web fonts gallery; if you know the syntax of the CSS tag and the name of the font, you can type it in yourself. You just need access to the right CSS document(s).</p>
<p>In case you&#8217;re wondering, some of the other fonts I was attracted to and might cycle through again later were <font face="Lusitana">Lusitana</font>, <font face="Cambo">Cambo</font>, <font face="PT Serif">PT Serif</font>, <font face="Gentium Basic">Gentium Basic</font>, <font face="Ovo">Ovo</font>, and <font face="Poly">Poly</font>. The main reason I probably won&#8217;t use Lusitana, Ovo, and Poly is because they are a little too squat&#8212;too short and wide and not tall and narrow enough. I use those terms relatively, of course, because I hate really narrow fonts like Arial Narrow and other compressed/condensed fonts. I like the fonts that are very slightly on the taller and narrower side. They just seem more elegant and stylized to me. Another one I&#8217;m interested in if I can figure out the API or CSS is <a href="http://levien.com/type/myfonts/ofl.html">Century Catalogue</a>. It is listed at <a href="http://webfonts.info/wiki/index.php?title=Fonts_available_for_%40font-face_embedding">webfonts.info<a> as being available for @font-face embedding, but I&#8217;m missing some knowledge about how to link to or embed this font. Maybe just link to the .sfd source file?&#8230; Its author says it is still a work in progress, so maybe it&#8217;s not embeddable yet?&#8230;</p>
<p>I know my friends would think I&#8217;m nuts for even noticing any font except if it&#8217;s unreadable, but given the thousands of font designers and typography afficionados out there, I&#8217;m far from alone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpetrie.net/2012/01/18/web-fonts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>On correctness, ambiguity, and precision in language</title>
		<link>http://www.jpetrie.net/2012/01/17/on-correctness-ambiguity-and-precision-in-language/</link>
		<comments>http://www.jpetrie.net/2012/01/17/on-correctness-ambiguity-and-precision-in-language/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 01:42:55 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Language]]></category>

		<guid isPermaLink="false">http://www.jpetrie.net/?p=1192</guid>
		<description><![CDATA[In the linguistics blagosphere last week, prescriptivists got all indignant because some British company I&#8217;d never heard of, Waterstone&#8217;s, dropped the apostrophe from its name, and descriptivists got all agitated at the prescriptivists for making undue proclamations about correctness, rules, &#8230; <a class="more-link" href="http://www.jpetrie.net/2012/01/17/on-correctness-ambiguity-and-precision-in-language/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In the linguistics blagosphere last week, prescriptivists got all indignant because some British company I&#8217;d never heard of, Waterstone&#8217;s, dropped the apostrophe from its name, and descriptivists got all agitated at the prescriptivists for making undue proclamations about correctness, rules, and history.</p>
<p>Well, I don&#8217;t really care about a company changing its name, because it&#8217;s a trademark and it&#8217;s their prerogative to make a change for marketing and advertising purposes. The descriptivists are obviously right that it&#8217;s not so much a grammatical issue as it is a marketing one. That said, I do think it&#8217;s a little stupid for a company to, (1) change its name from what it&#8217;s always been; (2) change it to something that, regardless of the history or the future, does not currently express a possessive, which was the whole purpose of the letter <i>s</i> in its name in the first place, so to the extent that people in and out of the Waterstones company want it to express a possessive concept, it decidedly does not; and, (3) make a change that does nothing to prevent confusion, because no one is going to type www.waterstone&#8217;s.com in their browser&#8217;s address bar and be confused when its web page doesn&#8217;t load. People know to leave out the apostrophe when typing URLs. </p>
<p>The Waterstones powers that be might not care or intend for the new name to express a possessive. They do assert that the name change was motivated&#8212;or perhaps rationalized <i>post facto</i>&#8212;by the <a href="http://stancarey.wordpress.com/2012/01/12/waterstones-apostrophe-a-victim-of-rebranding/">&#8220;altogether truer picture of our business today which, while created by one, is now built on the continued contribution of thousands of individual booksellers.&#8221;</a> Either way, I think Waterstones&#8217; dropping of the apostrophe is about as unnecessary, silly, and possibly unwise as Barnes &#038; Noble would be to drop the ampersand from its name because it can&#8217;t be part of a URL or file name. (I will say, however, that now that Waterstones&#8217; trade name lacks an apostrophe, it makes it much easier, or at least more natural-looking, to make its name into a possessive!)</p>
<p>But this post isn&#8217;t about Waterstones. It&#8217;s about descriptivist claims regarding the nature and purpose of language that I think are only marginally relevant to the prescriptivists&#8217; complaints about rule breaking, incorrect punctuation, and ambiguity creation.</p>
<p>I am not a linguist, nor ever will be, and I would not dream of challenging any assertions about meaning, ambiguity, or linguistic history put forth by <a href="http://languagelog.ldc.upenn.edu/nll/?p=3705">Geoffrey Pullum</a> and <a href="http://michaelrosenblog.blogspot.com/2012/01/politics-and-lies-of-apostrophe.html">Michael Rosen</a> in recent blag posts about prescriptivists and the apostrophe. I will, however, go so far as to at least question the conclusions or implications&#8212;or lack thereof&#8212;that a completely indifferent, disinterested, historical descriptivist viewpoint entails.</p>
<p>A fair summary of many grammatical descriptivist vs. prescriptivist battles could be phrased thusly: Descriptivists point out that everything about language changes over time and with usage, for convenience, clarity, technology, and other reasons, especially English; in fact, the exact way we&#8217;ve gotten to our current state of usage [e.g., of the apostrophe] is by a series of changes that began in some locale or industry [e.g., typesetting], that might have been considered wrong if there had been prescriptivists around, and whose current &#8220;end&#8221; result is now considered &#8220;right&#8221; by pedantic prescriptivists today. Prescriptivists counter that people occasionally had good reasons to change how language and punctuation were used, either consciously or subconsciously, and many things have changed for the better, and they don&#8217;t have to change again; we should strive for the ideal of logic, clarity, and uniformity in language to maintain ease of communication across time and space, and if prescriptivists can point out why something is more or less clear or logical than an alternative and they can influence people&#8217;s usage, then by god, they&#8217;re going to do so.</p>
<p>The key point as I see it regarding the topic I&#8217;m writing about today&#8212;ambiguity, precision, and declarations of &#8220;correctness&#8221; and &#8220;rules&#8221; in language&#8212;is that language is not some amorphous, physical, animate or inanimate object that has a will or behavior of its own. <i>People</i> use the language and <i>people</i> change the language.</p>
<p>Dr. Pullum writes:</p>
<blockquote><p>
English could easily have a distinct letter sequence for every different meaning, using letter sequences much shorter than the present ones. It doesn&#8217;t because the language in general shows no signs of being the slightest bit interested in that.
</p></blockquote>
<p>I know he doesn&#8217;t really think it, but the insinuation that I&#8217;m refuting is there nonetheless: that language is just some extra-human, extra-societal thing that changes with a mind of its own and that we are powerless to stop. Language is not &#8220;the slightest bit interested&#8221; in perfect logical clarity or reducing ambiguity because <i>it is not interested in anything because it cannot be</i>. Humans, on the other hand, very obviously <i>are</i> interested in logic, clarity, and consistency, and the very nature of our brains, at least if Chomsky is right, is to think in words and not just pictures, movies, actions, and feelings. (Even if Chomsky&#8217;s hypothesis about the basic nature of our brains as opposed to animals&#8217; isn&#8217;t right, it is undoubtedly true that civilized humans who grow up in a social environment do think primarily in language.) Therefore, it makes perfect sense to me that we as thinkers, doers, and language users should both consciously and subconsciously strive to <i>create</i> rules and <i>affect</i> our language to suit our myriad purposes as well as possible. The apostrophe does a decent job of expressing genitive nouns, inconsistently though it may be used in pronouns, and it&#8217;d be nice to have different symbols to represent <a href="http://ahdictionary.com/word/search.html?q=elision">elision</a> and possession, but this is what we&#8217;ve inherited and everyone knows how to use it, so let&#8217;s guard against its decay and misuse.</p>
<p>Descriptivists would counter that prescriptivists are failing even on their own terms: if we&#8217;re supposed to strive for logic, consistency, and clarity, then that means we have to allow language to change in order to improve, and the apostrophe clearly isn&#8217;t used very consistently even now, so maintaining the status quo clearly isn&#8217;t amenable to the prescriptivists&#8217; own ends, save for the desire for uniformity across time: the desire for our language to be similar to the English of future centuries. Well, I don&#8217;t know how many other characters are even available to introduce into orthography, and no one is going to just start using or start teaching the use of a completely different, non-standard symbol, so keeping the apostrophe just where it is is fine by me.</p>
<blockquote><p>
people who say that the ridiculous orthographic mess we have inherited is a finely tuned system for clear communication and avoidance of ambiguity are simply fools.
</p></blockquote>
<p>Well, I don&#8217;t know, I think it&#8217;s pretty clear almost all of the time. I think Dr. Pullum&#8217;s main point here is that language and orthography have not been &#8220;tuned&#8221;, and certainly not &#8220;finely&#8221;, by any wise or learned body, and certainly not for any purpose or according to any plan. I can&#8217;t argue with a professional linguist about how finely it has been tuned, but the history lessons related by him, Dr. Rosen, and other descriptivists seem to indicate that people have, in fact, tuned the language in many specific ways by tweaking their usage and following different rules over the centuries. Many of these tweaks were made consciously and intentionally for clear, verifiable reasons, with clear, logical goals, and with clear, lasting effects. Typesetters made conscious decisions for specific reasons to start using apostrophes, and English-speaking people adopted some or all of those uses because of the advantages they saw in them&#8212;clarity, consistency, or a function the apostrophe fulfilled that seemed desirable, or some combination of these. People are omitting them for a clear reason: convenience, laziness, and no real loss of clarity. (They also add them where they don&#8217;t belong for a clear reason: they are ignorant or perhaps stupid.)</p>
<blockquote><p>
The fact is that <i>dogs</i>, <i>dog&#8217;s</i>, and <i>dogs&#8217;</i> are all pronounced exactly the same, so the fact that we can understand each other when we talk about dogs is as good a proof as one could expect for the proposition that there is no real danger of irresolvable confusion here.
</p></blockquote>
<p>True, but I bet few literate societies have ever talked just the way they wrote, and our writing (and understanding of written language) shouldn&#8217;t be&#8212;in fact, isn&#8217;t&#8212;limited by what our mouths can pronounce, so I think it&#8217;s a fine thing that we can distinguish on paper those three words that all sound identical when spoken. We have the ability to distinguish those three concepts clearly with a simple, tiny symbol, which many other languages don&#8217;t even have, so its use in making small distinctions like this has clear value in orthography and was seemingly introduced by real, living people who consciously decided to use it in that way. Maybe we&#8217;d be better off speaking and writing like Romance languages and saying &#8220;of the dog&#8221; or &#8220;of the dogs&#8221;, but I have a feeling those bulky phrases can create as many problems (though surely of different types) as our apostrophe does. Thanks to the apostrophe, <i>dogs</i>, <i>dog&#8217;s</i>, and <i>dogs&#8217;</i> do all mean different things, which we all understand perfectly and immediately, and I think that&#8217;s worth something. That&#8217;s an accomplishment of conscious human effort combined with circumstance (as Dr. Rosen&#8217;s <i>dogges</i> -> <i>dog&#8217;s</i> explanation shows), not unknowing, detached, extra-societal linguistic evolution. I&#8217;m proud of us for reaching even this level of precision and anti-ambiguity, inadequate though our minds may be for grasping the deeper nature of the universe and insufficient though our languages may be for expressing what our distant descendants may discover about it. I&#8217;d be proud if future generations continued to improve the logic, consistency, precision, and clarity of our language, and I, for one, especially hope that English speakers of the year 2400 can understand our writing much more easily than we can understand Shakespeare&#8217;s. As a layman, I can&#8217;t see any need for English vocabulary to change very much at all (except for the invention and borrowing of new words, which don&#8217;t change the comprehensibility of current English), and I can&#8217;t see how English could be improved by any unforeseen, unprecedented, major grammatical or syntax changes, so how is anyone harmed by advocating&#8212;I&#8217;ll say it&#8212;stagnation? How would anyone be harmed by the occurrence of stagnation (except, again, the introduction of new and additional words)? Why do descriptivists get so indignant when prescriptivists recommend that something be standardized or held constant?</p>
<p>I think a better question than &#8220;Why do prescriptivists want this or that?&#8221; or &#8220;Why does what prescriptivists want matter?&#8221; or even &#8220;What do strict descriptivists want?&#8221; is &#8220;Do strict descriptivists want anything?&#8221; Do strict descriptivists have any opinion on any grammatical or vocabulary matter whatsoever? Do they ever take a position on anything other than how ignorant and overly restrictive prescriptivists are? What viewpoint or recommendation has any descriptivist ever put forth on an accessible web page that could be considered a specific rule or proscription that it would be wise for English speakers to follow? Is there an example of a descriptivist saying, &#8220;Yes, I think this grammatical convention is better, and we&#8217;d all be wise to follow it for clarity and uniformity,&#8221; or, &#8220;Yes, it is true that this word currently has such-and-such meaning, and it&#8217;d be a shame if the ignorant misuse of this word led to an accepted alteration in meaning&#8221;? What is the point of studying something you have no opinion about other than &#8220;anything goes&#8221;? </p>
<p>Or is it more accurate to classify descriptivists as linguists and other interested grammarians who agree with the prescriptivists and the conventions of the world on 95% of issues but define themselves as descriptivist (and, complementarily, their detractors as prescriptivist) by their refusal to take a side on the issues that they think we shouldn&#8217;t take sides on? Obviously, being agnostic and saying &#8220;either/or&#8221; <i>is</i> a position and <i>is</i> an opinion&#8230;but when they go so far as to say it really doesn&#8217;t matter whether the apostrophe lives or dies and it really doesn&#8217;t matter if 21st-century English sounds like a foreign language in 500 years, I think they&#8217;re going overboard in their desire to remain impartial and avoid influencing usage. </p>
<p>Saying that language just changes on its own and that it&#8217;s pointless for us to opine on, care about, or try to influence it seems to me like saying, &#8220;All of the continents once existed in a single land mass called Pangaea, and land masses are all constantly moving and will all crash into each other again someday, so it&#8217;s meaningless to refer to seven different continents today or to take precautions against earthquakes.&#8221; We might be powerless to stop continental drift, but we&#8217;re not powerless to influence language and usage. We use it every day, and we influence it and it influences us, so insisting on certain grammatical conventions and striving for vocabulary constancy seems preferable to descriptivist indifference.</p>
<p>If some people are fine with the complete elimination of the apostrophe from the English language, which would be a widespread, large-scale, major overhaul of a grammar, why not instead advocate the development of computer programs and operating systems that can tolerate more characters in URL names? Which is more impossible to achieve, and which would require more major overhauls of how we conduct our daily lives? I honestly don&#8217;t know the answer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpetrie.net/2012/01/17/on-correctness-ambiguity-and-precision-in-language/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Amazon vs. Barnes &amp; Noble</title>
		<link>http://www.jpetrie.net/2012/01/17/amazon-vs-barnes-noble/</link>
		<comments>http://www.jpetrie.net/2012/01/17/amazon-vs-barnes-noble/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 11:51:07 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.jpetrie.net/?p=1188</guid>
		<description><![CDATA[It&#8217;s not hard to find people, especially book lovers, who lament the downfall of brick-and-mortar bookstores thanks to the rise to dominance of Amazon.com. I could say &#8220;online retailers&#8221;, but let&#8217;s face it: it&#8217;s only Amazon. Barnes &#038; Noble has &#8230; <a class="more-link" href="http://www.jpetrie.net/2012/01/17/amazon-vs-barnes-noble/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s not hard to find people, especially book lovers, who lament the downfall of brick-and-mortar bookstores thanks to the rise to dominance of Amazon.com. I could say &#8220;online retailers&#8221;, but let&#8217;s face it: it&#8217;s only Amazon. Barnes &#038; Noble has always been just about my favorite store to go into, look around in, and shop in, but my most recent experience made me extol the virtues of Amazon&#8217;s vast selection and ease of shopping even more than I usually do. (I am not one of those people who lament the decline of brick-and-mortar stores, local stores, or any other type of business or industry of any kind, really, because the market must change constantly to meet the new realities of the world, every industry drastically changes over time, and many companies must die for better ones to supplant them. Despite some people&#8217;s despair at the bankruptcy of Borders bookstores, I was not particularly sad to see it go; if it wasn&#8217;t giving people what they wanted at the prices they wanted, then it represented an inefficient use of resources and would serve humanity better by making way for companies that could better meet the demands of the masses).</p>
<p>I recently had to return a movie that I received two copies of for Christmas, and I chose to return the one that had come from Barnes &#038; Noble because I knew their movies (and CD&#8217;s) are all over-priced and that I could get a more valuable store credit from there than wherever the other copy came from. Also I wasn&#8217;t planning on exchanging one over-priced movie for another; rather, I was going to buy two or three books with the store credit.</p>
<p>My frustration with Barnes &#038; Noble (and, when you think about it, all brick-and-mortar bookstores) reached a peak when I couldn&#8217;t find a single one of the first 12 books I looked for. Going on memory and the Amazon wish list on my phone&#8217;s Amazon app, I walked back and forth and all around the fiction &#038; literature section looking for all of these titles, none of which was carried by this particular Barnes &#038; Noble:</p>
<p><a href="http://www.amazon.com/Certain-Slant-Light-Laura-Whitcomb/dp/061858532X/ref=wl_it_dp_o_npd?ie=UTF8&#038;coliid=I3378OTTCJN6ER&#038;colid=KFQUHQ1J1P3R"><i>A Certain Slant of Light</i></a> by Laura Whitcomb<br />
<a href="http://www.amazon.com/Handful-Dust-Evelyn-Waugh/dp/0316926051/ref=wl_it_dp_o_npd?ie=UTF8&#038;coliid=IAL4V7SZ208WS&#038;colid=KFQUHQ1J1P3R"><i>A Handful of Dust</i></a> by Evelyn Waugh<br />
<a href="http://www.amazon.com/Riddle-Master-Patricia-McKillip/dp/0441005969/ref=wl_it_dp_o_npd?ie=UTF8&#038;coliid=I2WJRMJQHBBFR8&#038;colid=KFQUHQ1J1P3R"><i>Riddle-Master</i></a> by Patricia McKillip<br />
<a href="http://www.amazon.com/Smillas-Sense-Snow-Peter-Hoeg/dp/0385315147/ref=wl_it_dp_o_npd?ie=UTF8&#038;coliid=I2EF78RFS8W1SV&#038;colid=KFQUHQ1J1P3R"><i>Smilla&#8217;s Sense of Snow</i></a> by Peter Høeg<br />
<a href="http://www.amazon.com/History-Danish-Dreams-Novel/dp/0312428014/ref=wl_it_dp_o_pd_T1?ie=UTF8&#038;coliid=I1XBXDY13LNVQZ&#038;colid=KFQUHQ1J1P3R"><i>The History of Danish Dreams</i></a> by Peter Høeg<br />
<a href="http://www.amazon.com/Bridge-Birds-Novel-Ancient-China/dp/0345321383/ref=wl_it_dp_o_npd?ie=UTF8&#038;coliid=I2MQ3AOYCYR8SK&#038;colid=KFQUHQ1J1P3R"><i>Bridge of Birds: A Novel of Ancient China That Never Was</i></a> by Barry Hughart<br />
<a href="http://www.amazon.com/Lamb-Gospel-According-Christs-Childhood/dp/0380813815/ref=wl_it_dp_o_npd?ie=UTF8&#038;coliid=I2M3KNLT80468&#038;colid=KFQUHQ1J1P3R"><i>Lamb: The Gospel According to Biff, Christ&#8217;s Childhood Pal</i></a> by Christopher Moore<br />
<a href="http://www.amazon.com/Invention-Morel-Review-Books-Classics/dp/1590170571/ref=wl_it_dp_o_npd?ie=UTF8&#038;coliid=I38R08Q8YUCVRW&#038;colid=KFQUHQ1J1P3R"><i>The Invention of Morel</i></a> by Adolfo Bioy Casares (I looked under both Bi- and Ca-)<br />
<a href="http://www.amazon.com/Ubik-Philip-K-Dick/dp/0679736646/ref=wl_it_dp_o_npd?ie=UTF8&#038;coliid=I3CFXQUGKIER1O&#038;colid=KFQUHQ1J1P3R"><i>Ubik</i></a> by Philip K. Dick<br />
<a href="http://www.amazon.com/Alternate-Realities-C-J-Cherryh/dp/0886779464/ref=wl_it_dp_o_npd?ie=UTF8&#038;coliid=I6V0ZFRL0SGG9&#038;colid=KFQUHQ1J1P3R"><i>Alternate Realities</i></a> by C.J. Cherryh<br />
<a href="http://www.amazon.com/Stars-My-Destination-Alfred-Bester/dp/1876963468/ref=wl_it_dp_o_npd?ie=UTF8&#038;coliid=I31DPQRMA3QY7H&#038;colid=KFQUHQ1J1P3R"><i>The Stars My Destination</i></a> by Alfred Bester<br />
<a href="http://www.amazon.com/Blindsight-Peter-Watts/dp/0765319640/ref=wl_it_dp_o_npd?ie=UTF8&#038;coliid=I10NONOBTW6SW7&#038;colid=KFQUHQ1J1P3R"><i>Blindsight</i></a> by Peter Watts</p>
<p>(I looked only in the English-language fiction &#038; literature section because I only care about translations of the foreign-language novels, which is obviously why I listed their English titles.)</p>
<p>Every single one of those books has over a dozen to hundreds of reviews at Amazon.com, and I only ever heard about them because they were recommended by others over the internet as fascinating, memorable, unique, must-read, or even life-changing books. In other words, these aren&#8217;t just run-of-the-mill novels that I might kind of like to read someday. </p>
<p>They also didn&#8217;t carry Bryan Garner&#8217;s <a href="http://www.amazon.com/Garners-Modern-American-Usage-Garner/dp/0195382757/ref=sr_1_1?s=books&#038;ie=UTF8&#038;qid=1326749190&#038;sr=1-1">Modern American Usage</a> or the <a href="http://www.amazon.com/Merriam-Websters-Dictionary-English-Usage-Merriam-Webster/dp/0877791325/ref=sr_1_1?s=books&#038;ie=UTF8&#038;qid=1326749238&#038;sr=1-1">Merriam-Webster Dictionary of English Usage</a> in the reference section, although they did carry other usage guides (Chicago and MLA, for example), so up the total number of absent books <i>in a row</i> to 14.</p>
<p>I did eventually find five that I was looking for. Three I didn&#8217;t buy: <a href="http://www.amazon.com/Brothers-K-David-James-Duncan/dp/055337849X/ref=sr_1_1?s=books&#038;ie=UTF8&#038;qid=1326800463&#038;sr=1-1"><i>The Brothers K</i></a> by David James Duncan for $3 or $4 more than Amazon sells it for, <a href="http://www.amazon.com/Creatures-Light-Darkness-Roger-Zelazny/dp/B0064X81O4/ref=sr_1_1?s=books&#038;ie=UTF8&#038;qid=1326749335&#038;sr=1-1"><i>Creatures of Light and Darkness</i></a> by Roger Zelazny for a hell of a lot more than the $5 Amazon is currently selling it for, and <a href="http://www.amazon.com/Fire-Upon-Deep-Zones-Thought/dp/0765329824/ref=sr_1_1?s=books&#038;ie=UTF8&#038;qid=1326749386&#038;sr=1-1"><i>A Fire Upon the Deep</i></a> by Vernor Vinge for either $3 or $5 more than Amazon is selling it for. I don&#8217;t mind Barnes &#038; Noble charging a little more for a book than Amazon, but for a standard mass-market paperback, I think more than a $3 difference is quite high. The two I ended up buying were <a href="http://www.amazon.com/Yiddish-Policemens-Union-Novel-P-S/dp/0007149832/ref=sr_1_1?s=books&#038;ie=UTF8&#038;qid=1326762941&#038;sr=1-1"><i>The Yiddish Policemen&#8217;s Union</i></a> by Michael Chabon and <a href="http://www.amazon.com/Spin-Robert-Charles-Wilson/dp/076534825X/ref=sr_1_1?s=books&#038;ie=UTF8&#038;qid=1326762983&#038;sr=1-1"><i>Spin</i></a> by Robert Charles Wilson.</p>
<p>In all fairness to Barnes &#038; Noble, if I had really gone into the store with a pre-planned list of books to look for in the order that I wanted them, <i>The Yiddish Policemen&#8217;s Union</i> would almost certainly have been number 1, perhaps behind only <i>The Invention of Morel</i>, which Octavio Paz has described as <a href="http://www.nybooks.com/books/imprints/classics/the-invention-of-morel/">&#8220;without exaggeration&#8230;a perfect novel&#8221;</a>, an extolment many others agree with. It seems to me that any respectable bookstore would carry the English version of this novel.</p>
<p>I probably would only have ended up with two novels in the end anyway, so I&#8217;m glad I found the two that I did. <i>The Yiddish Policemen&#8217;s Union</i> was in the main literature section, although I&#8217;ve heard it described as science fiction, so both of these science-fiction novels should be very interesting to read in the near future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpetrie.net/2012/01/17/amazon-vs-barnes-noble/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Times&#8221; and &#8220;folds&#8221;</title>
		<link>http://www.jpetrie.net/2012/01/15/times-and-folds/</link>
		<comments>http://www.jpetrie.net/2012/01/15/times-and-folds/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 14:09:16 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Grammar]]></category>
		<category><![CDATA[Language]]></category>

		<guid isPermaLink="false">http://www.jpetrie.net/?p=1163</guid>
		<description><![CDATA[Bill Walsh is absolutely, completely, 100%, unequivocally, and in all other ways right in his position on the meanings of &#8220;times&#8221; and &#8220;fold&#8221; in his recent disagreement that is as much mathematical as it is semantic. If I start with &#8230; <a class="more-link" href="http://www.jpetrie.net/2012/01/15/times-and-folds/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://theslot.blogspot.com/2011/12/times-that-try-mens-souls.html">Bill Walsh is absolutely, completely, 100%, unequivocally, and in all other ways right in his position on the meanings of &#8220;times&#8221; and &#8220;fold&#8221;</a> in his recent disagreement that is as much mathematical as it is semantic.</p>
<blockquote><p>
If I start with $100 and end up with $250, did that money grow 2 1/2 times?</p>
<p>A reporter and I are having a good-natured disagreement: He says yes, and I say no.
</p></blockquote>
<p>There is simply no way to construe and contort the English language in such a way that &#8220;grow 2 1/2 times&#8221; can mean &#8220;grow 1 1/2 times&#8221;. They are written and pronounced differently because they mean different things.</p>
<p>When anything in the real world grows, one dimension or another increases, gets added to, becomes larger, acquires a greater value. When a physical thing grows by a certain concrete amount, that concrete amount gets added to the original size. That&#8217;s what the word &#8220;grows&#8221; means. When a child grows one inch taller, an inch has been added to his previous height to reach the new height. The concept of growth or addition is simple. In the above example, &#8220;grow 1 1/2 times&#8221; is not the same as &#8220;multiply 1 1/2 times&#8221;. To become 2 1/2 times larger is not to grow by 2 1/2 times. Grow means increase or add to; it does not mean multiply by. At least, it shouldn&#8217;t. Saying &#8220;grows by&#8221; instead of just &#8220;grows&#8221; can make it clearer, but it shouldn&#8217;t be necessary.</p>
<p>When anything in the abstract world of math and numbers grows, the concepts do not change. In the above example, $250 is 2 1/2 times $100, but $250 is 1 1/2 times <i>more than</i> $100. When we say &#8220;grew by <i>x</i> times&#8221;, the original number appears <i>twice</i> in the calculation: once as the starting value that gets added to, and once in the multiplication to determine how much gets added to the original number. The word &#8220;times&#8221; and the factor written before it (or the word &#8220;percent&#8221; and the number written before it) represent real, actual quantities&#8212;numbers that could be written in a different way with no factors, percentages, fractions, ratios, or other relationships involved. In our example, the &#8220;times&#8221; part represents 1.5 times 100 = 150. Therefore, &#8220;grew (by) 1 1/2 times&#8221; here means &#8220;grew (by) $150&#8221;, not &#8220;multiplied by 1.5&#8221;. If the calculation in question were only multiplication, then we would say $250 is 2.5 times 100, but the calculation does not involve only multiplication. It involves multiplication and then the addition of that product onto the original value.</p>
<p>A simple equation can explain this nicely. </p>
<blockquote><p>
Let <i>x</i> = 100<br />
Solve for <i>y</i></p>
<p><i>x</i> + 1.5<i>x</i> = <i>y</i><br />
100 + (1.5)(100) = <i>y</i><br />
250 = <i>y</i>
</p></blockquote>
<p>In a different version of this equation:</p>
<blockquote><p>
Let <i>x</i> = 100<br />
Solve for <i>y</i></p>
<p><i>x</i> + 2.5<i>x</i> = <i>y</i><br />
100 + (2.5)(100) = <i>y</i><br />
350 = <i>y</i>
</p></blockquote>
<p>Addition means &#8220;grows&#8221;. The + sign means &#8220;grows&#8221;. Because the <i>times</i> operation is invoked, you have to do multiplication to determine how much gets added, and then you have to add that product to the starting value. If a value, quantity, or measurement grows by 1.5 times, the final value is 2.5 times the original. Not 2.5 times <i>greater</i>, just 2.5 times the original value. It is 1.5 times <i>greater than</i> the original value.</p>
<p>If you respond, &#8220;Oh, well, yeah, if you put it that way, it works out in your favor, but that&#8217;s not what I meant,&#8221; then you are not speaking English and you suck at math. You are speaking your own version of a language that sounds mostly like English and using a misinterpretation of simple arithmetic that would preclude the existence of the universe as we know it.</p>
<p>You might counter, &#8220;Well, if you had $100 and end up with $200, would you say your money grew 1 time?&#8221; No, I would say it grew 100%. Or grew by 100%. Or increased (by) 100%. In the original example, $250 is 250% of $100 but is 150% <i>greater than</i> $100. In other words, $100 would have to grow by 150% to reach $250 but would have to multiply by (or be multiplied by) 250% to reach $250.</p>
<p>Now, the word &#8220;fold&#8221;. As far as the word &#8220;fold&#8221; goes, I thought its meaning seemed clear to me, but its meaning <i>as used</i> seems different, and I would typically avoid using it if I were writing a scientific paper and not just editing others&#8217; papers. In my job as a scientific editor, I think every time I&#8217;ve ever seen the word &#8220;fold&#8221;, it has meant &#8220;entailing multiplication by a factor of [the number that comes before it]&#8221;. In other words, a 2.5-fold increase always is used to mean &#8220;multiplied by 2.5 times&#8221;. Therefore, people would say both that $250 is 2.5-fold greater than $100 and that $250 is 2.5-fold $100. That makes no sense to me. Well, no, it does make some kind of sense, but it is inconsistent sense. Well, no, it&#8217;s consistent mathematically, because regardless of the construction of the sentence, you just always multiply the original by the fold factor, but it is inconsistent semantically.</p>
<p>Folds are also frustrating when referring to decreases, but I&#8217;ve come to accept formerly non-sensical fold decreases and not care anymore. For example, in the real, physical world, nothing can decrease more than 100%. If some quantity decreases 100%, none of it is left, and there is no such thing as negative matter or energy, so it is non-sensical and meaningless to say something decreased by more than 100%. If something decreases by half, 50% of it is left. If something decreases by two-thirds, one-third of it is left.</p>
<p>Well, if you took &#8220;fold&#8221; to mean &#8220;percent of&#8221; or &#8220;fraction of&#8221;, then the most anything could ever decrease would be 1-fold. If something decreased 0.5-fold, that would be decreasing 50%. Etc. That, however, is not how any biomedical research scientist has ever used &#8220;fold&#8221; that I&#8217;ve seen. They say something &#8220;decreased 7-fold&#8221;, meaning the final value was 1/7th of the original. If something decreased 150-fold, the final value was 1/150th of the original. That&#8217;s stupid, but I guess everyone&#8217;s consistent, so now &#8220;fold&#8221; means &#8220;involving a factor or ratio of the original value&#8221;.</p>
<p>Bill Walsh has experienced similar frustration with &#8220;fold&#8221;:</p>
<blockquote><p>
My friendly adversary pointed me to a dictionary that defines the verb <i>triple</i> as meaning &#8220;to increase three times in size or amount.&#8221; And there is the <i>-fold</i> model. A <i>twofold increase</i> is doubling, a <i>threefold increase</i> is tripling, and so on. To which I respond: None of the dictionaries on my shelves are that sloppy, and those shelves also hold an otherwise wonderful usage book in which the author is tripped up by <i>-fold</i>, insisting that tripling would be a twofold increase. (It&#8217;s a special case, <i>-fold</i>, because &#8220;a onefold increase&#8221; is not only never used but also impossible. You can fold something in two or three or more, but you can&#8217;t fold it in one.)<br />
[I would love to know what wonderful usage book that is. &#8212;JTP]
</p></blockquote>
<p>His friendly adversary&#8217;s dictionary would, unfortunately, agree with most biomedical scientists on the use of <i>-fold</i>: they use a twofold increase to mean multiplying by a factor of 2 (doubling), even though multiplying by and increasing (growing) by ought to mean different things. I suppose you could argue that increasing (growing) by can mean adding to <i>or</i> multiplying by according to the whims of the author and following no consistent or pre-defined rule, but that is illogical to me and goes against the meanings of the words &#8220;increase&#8221; and &#8220;grow&#8221; as I understand them, especially when the word &#8220;by&#8221; is added after them. (This is a perfect example of why I am largely prescriptivist: so that meanings can stay as consistent as possible and people separated by time and space (and mathematical ability) will mean the same thing when they use the same words. I will stop being prescriptivist when I gain the ability to understand how people can not care that the same words mean substantially, crucially different things from different people.)</p>
<p>Anyway, with our earlier lesson on percent decreases under our belts, let&#8217;s conclude by returning briefly to the concept of growing a certain number of times or by a certain percent, except let&#8217;s consider the opposite of growing: shrinking or decreasing.</p>
<p>If Bill Walsh&#8217;s interlocutor were right and $250 were 2 1/2 times <i>more than</i> $100, then by extension $150 would have to be 1 1/2 times <i>more than</i> $100, and $100 would also have to be 1 time <i>more than</i> $100. If that weren&#8217;t incoherent enough, going in the money-losing direction, $75 would have to be 3/4 <i>less than</i> $100, i.e., the quantity of money would have decreased or shrunk (the opposite of increased or grew) by 3/4 times or by .75 times or by 75%. If you started with $100 and ended up with $30, your money would have shrunk by .3 times or by 30%. These calculations are non-sensical and, again, are not based in any actual language that has any logical consistency or any math that would permit the existence of the universe as we know it. (Incidentally, I can&#8217;t use $50 for this example because shrinking by 1/2 or .5 times or 50% is correct.)</p>
<p>If &#8220;shrink&#8221; is not the perfect opposite of &#8220;grow&#8221;, &#8220;less than&#8221; not the opposite of &#8220;more than&#8221;, and &#8220;decrease&#8221; not the opposite of &#8220;increase&#8221;, then, well, I don&#8217;t know anything and it&#8217;s pointless to write or talk about anything.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpetrie.net/2012/01/15/times-and-folds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Young American female vowel shift</title>
		<link>http://www.jpetrie.net/2012/01/14/young-american-female-vowel-shift/</link>
		<comments>http://www.jpetrie.net/2012/01/14/young-american-female-vowel-shift/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 14:04:18 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Language]]></category>

		<guid isPermaLink="false">http://www.jpetrie.net/?p=1157</guid>
		<description><![CDATA[In a recent post about a different topic, Bill Walsh mentions some annoying vowel shifts exhibited by young-ish American females. These mainly involve changing the short e to the short u sound, so that &#8220;desk&#8221;, &#8220;test&#8221;, and &#8220;better&#8221; become &#8220;dusk&#8221;, &#8230; <a class="more-link" href="http://www.jpetrie.net/2012/01/14/young-american-female-vowel-shift/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In a recent <a href="http://theslot.blogspot.com/2012/01/no-problem-im-fine.html">post about a different topic</a>, Bill Walsh mentions some annoying vowel shifts exhibited by young-ish American females. These mainly involve changing the short <i>e</i> to the short <i>u</i> sound, so that &#8220;desk&#8221;, &#8220;test&#8221;, and &#8220;better&#8221; become &#8220;dusk&#8221;, &#8220;tust&#8221;, and &#8220;butter&#8221;, respectively. &#8220;Dad&#8221; also becomes &#8220;Dodd&#8221;. I&#8217;ve also noticed these and been annoyed by them. It&#8217;s kind of a California valley-girl accent creeping into all parts of the country in teenage girls and 20-something women, and now probably even women in their 30&#8217;s.</p>
<p>I tried to post a comment reporting my observation of another pair of vowel shifts that have annoyed me much more than those have, but his blag only allows posts from Google Blagger users, which I am not. (What kind of foolish isolationism is that? How many insightful comments and loyal frequent visitors has that practice precluded over the years at the blags that employ it? I&#8217;ve only ever seen it at Blagspot blags, but I know the owner has to choose to enable that restriction, so I can&#8217;t place the blame entirely on Google.)</p>
<p>Instead, I&#8217;ll post it to my own blag and reap the sweet, sweet internet karma it&#8217;ll bring me: The annoying vowel shift I&#8217;ve noticed that is unique to young-ish American females is pronouncing &#8220;thank you&#8221; as &#8220;think yo&#8221;. I guess the &#8220;yo&#8221; is actually more of a Minnesota/Midwestern type of &#8220;yoh&#8221;, but it&#8217;s not like it&#8217;s ever stressed or enunciated so strongly that it makes you think of Marge Gunderson. Maybe it&#8217;s just halfway between &#8220;you&#8221; and &#8220;yo&#8221;, and maybe the first word is more of a &#8220;thenk&#8221; than a &#8220;think&#8221;, but whatever it is with each individual girl, it&#8217;s annoying.</p>
<p>I haven&#8217;t noticed any prevalence of vowel shifts among American males, although a little bit of the valley accent certainly can be heard in some college guys&#8217; (especially frat guys&#8217;) speech, as in &#8220;mahn&#8221; for &#8220;man&#8221;, &#8220;cuhl&#8221; for &#8220;cool&#8221;, etc. Sort of a surfer accent by guys who are trying too hard to sound casual and indifferent (or who have tried to sound casual and indifferent for so long that <a href="http://www.youtube.com/watch?v=3Pje34fUgLQ">they no longer can tell any difference</a>).</p>
<p>Maybe some nit-picky female linguists are equally as annoyed at males&#8217; dropping of entire consonant sounds, as in &#8220;&#8217;anks&#8221; for &#8220;thanks&#8221;?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpetrie.net/2012/01/14/young-american-female-vowel-shift/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Observations from our Christmas road trip</title>
		<link>http://www.jpetrie.net/2012/01/06/observations-from-our-christmas-road-trip/</link>
		<comments>http://www.jpetrie.net/2012/01/06/observations-from-our-christmas-road-trip/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 00:35:01 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.jpetrie.net/?p=1150</guid>
		<description><![CDATA[Kathy and I recently drove from Ann Arbor to Atlanta for Christmas, from Atlanta to Tampa to visit her grandmother, and from Tampa back to Michigan with an overnight layover in my parents&#8217; house in Atlanta again. The trip between &#8230; <a class="more-link" href="http://www.jpetrie.net/2012/01/06/observations-from-our-christmas-road-trip/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Kathy and I recently drove from Ann Arbor to Atlanta for Christmas, from Atlanta to Tampa to visit her grandmother, and from Tampa back to Michigan with an overnight layover in my parents&#8217; house in Atlanta again. The trip between Ann Arbor and Atlanta (actually, Johns Creek) is 12 to 13 hours, and that between Atlanta and Tampa 8 or 8.5. We drove instead of flew for two reasons: to take a lot of puppy- and gift-related stuff in both directions and to save money.</p>
<p>The first and most important thing to remark on about our trip was the nearly ideal whether. On the way down, it was drizzling and extremely foggy in Michigan and Ohio, but that&#8217;s a hell of a lot better than snow or ice and didn&#8217;t impede our travel in any way. Between Atlanta and Tampa both ways was dry and warm. The final leg of our trip, from Atlanta to Ann Arbor, was completely dry and not the least bit dangerous. We were very lucky in this regard, I think. That was Dec. 31, and on New Year&#8217;s Day it rained a little and created ice on the ground (which I felt as I was bringing groceries in from the car), and on Jan. 2 it snowed an inch or two. We missed dangerous or at least slow-driving weather by a day, or two at most.</p>
<p>The most important observation I can make or thing I learned from the trip is that Ohio totally sucks. I already knew that from having lived near it for 6 years and having driven through it on our summer road trip to Atlanta and New Orleans, but, man, what a shitty state. On our way down south, we saw either four or five (let&#8217;s call it four to give them the benefit of the doubt) speed traps along I-75, compared to a total of zero in Kentucky and Tennessee. There was one that we saw in Georgia. There was nothing close to a speed trap on I-75 in Florida going north or south, as everybody there drives 85&#8211;90 mph and I was being passed going 85 in the middle lane. That was the only positive point that has ever made Florida a slightly less odious state to me, not that I&#8217;ve changed my tune from never wanting to live there. On the way back north, I&#8217;m not sure if there was any speed trap in Georgia, but there were a total of zero in Tennessee and Kentucky, compared to six&#8212;yes, <i>six</i>&#8212;in Ohio alone. Combine this with the lower speed limit of 65 throughout the state, and you get an entire state-wide heap of shittiness and pettiness. Luckily, we have not been pulled over on any of our road trips, but I saw two people get pulled over behind us after we passed the cops, one in Georgia and one in Ohio. </p>
<p>The absurdity of Ohio&#8217;s 65-mph speed limit and its numerous speed traps also emphasizes the fact that speed limits on interstates generally do nothing to increase safety. If they did, then German autobahns would have the highest death rate in the world, but instead they have a <a href="http://autos.aol.com/article/driving-the-autobahn/">remarkably low death rate</a>. Michigan and Ohio routinely have similar traffic fatality rates on interstates; for instance, in 2006, <a href="http://www.census.gov/statab/ranks/rank39.html">Michigan&#8217;s interstate highway death rate was lower than Ohio&#8217;s</a>. When we crossed the border into Michigan that night, I didn&#8217;t feel the least bit more endangered when we increased our speed from about 68 to about 78. This is because it <i>wasn&#8217;t</i> more dangerous. I&#8217;ve never felt safer going the other direction, either. I could understand a city, county, and state wanting to increase its police presence on the roads on New Year&#8217;s Eve, but at midnight and after, when people are actually drunk and are actually driving home, not at 9:00 when people are going <i>to</i> the places of imbibement. My god, <i>six</i> speed traps on a 3-hour stretch of interstate? I know Jersey Shore has really increased in prominence throughout American culture in the last few years, but you don&#8217;t have to try quite so hard to edge out New Jersey for the Shittiest State in the Union award, guys.</p>
<p>On the way down south in the rain and fog, we noticed one additional advantage to those cool-white LED headlights in addition to their looking cooler: they stand out in precipitation far more than traditional headlights do. A lot of them are annoying and probably even unsafe because of how bright they are in your rear-view mirror, and I hope automakers fix that in the near future, but their superiority in fog and rain and their cool, futuristic, science-fictiony look make me really, really want them in my next car. Obviously there are many different kinds of LED headlights, and I want a kind that is not overly bright and not very blue. I like the cool-white look, which is very pure white with probably a hint of blueness in them, but the ones that look <i>blue</i> are just retarded.</p>
<p>On our way home on I-75 north in Florida, we saw a Georgia fan with four Georgia Bulldogs window flags driving down south, presumably to go to the Outback Bowl.</p>
<p>Also on I-75 north just north of Tampa, we saw a billboard for Bronner&#8217;s Christmas Wonderland&#8230;which is in Michigan. No, there&#8217;s not another branch in Florida; the billboard said &#8220;Frankenmuth, Michigan&#8221;. No, it wasn&#8217;t just an advertisement for their website for all those retirees to order piles of tacky Christmas decorations, although the website was listed on there. Just a normal billboard for a store that is over 1,000 miles away. Weird!</p>
<p>Finally, I recently found this new blag <a href="http://worstdriver.blogspot.com/">You are a bad driver and I hate you</a>, which I will read regularly and eagerly. Dean, sir, you are a gentleman and a scholar.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpetrie.net/2012/01/06/observations-from-our-christmas-road-trip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stupid NFL</title>
		<link>http://www.jpetrie.net/2012/01/06/stupid-nfl/</link>
		<comments>http://www.jpetrie.net/2012/01/06/stupid-nfl/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 22:51:24 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Morans]]></category>
		<category><![CDATA[Sports]]></category>

		<guid isPermaLink="false">http://www.jpetrie.net/?p=1144</guid>
		<description><![CDATA[Between these two NFC quarterbacks, the first of which played in a more difficult division and finished with a 10&#8211;6 record, and the second of which finished 9&#8211;7 to win his shitty division, which one would be more deserving of &#8230; <a class="more-link" href="http://www.jpetrie.net/2012/01/06/stupid-nfl/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Between these two NFC quarterbacks, the first of which played in a more difficult division and finished with a 10&#8211;6 record, and the second of which finished 9&#8211;7 to <i>win his shitty division</i>, which one would be more deserving of being selected to the Pro Bowl?</p>
<table>
<tr>
<td>Quarterback 1</td>
<td>Quarterback 2</td>
</tr>
<tr>
<td>41 TD</td>
<td>29 TD</td>
</tr>
<tr>
<td>16 INT</td>
<td>16 INT</td>
</tr>
<tr>
<td>5038 yds</td>
<td>4933 yds</td>
</tr>
<tr>
<td>63.5% completions</td>
<td>61.0% completions</td>
</tr>
<tr>
<td>97.2 rating</td>
<td>92.9 rating</td>
</tr>
</table>
<p>Quarterback 1 is superior in <i>every single meaningful category</i>, including wins, so obviously I&#8217;m writing about this because Quarterback 2 was selected to the NFC Pro Bowl team and Quarterback 1 wasn&#8217;t. Who are they? Quarterback 1 is Matthew Stafford, and Quarterback 2 is Eli Manning.</p>
<p>What a bunch of bullshit. The Pro Bowl rosters are currently voted on by players, coaches, and fans, so it&#8217;s probably the idiot New York fans who voted Eli Manning in. As shown nearly every year by the baseball All-Star voting at some position or another, fans are idiots and shouldn&#8217;t be allowed to vote on anything because they make it a popularity contest instead of an accomplishment contest.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpetrie.net/2012/01/06/stupid-nfl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Overhaul college football overtime!</title>
		<link>http://www.jpetrie.net/2012/01/05/overhaul-college-football-overtime/</link>
		<comments>http://www.jpetrie.net/2012/01/05/overhaul-college-football-overtime/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 22:51:02 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Morans]]></category>
		<category><![CDATA[Sports]]></category>

		<guid isPermaLink="false">http://www.jpetrie.net/?p=1137</guid>
		<description><![CDATA[The college football overtime format is pretty stupid. It&#8217;s not as bad as the sudden-death NFL overtime format, but seriously. Both teams start in field goal range? It makes scoring way too easy. The teams should have to mount an &#8230; <a class="more-link" href="http://www.jpetrie.net/2012/01/05/overhaul-college-football-overtime/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The college football overtime format is pretty stupid. It&#8217;s not as bad as the sudden-death NFL overtime format, but seriously. Both teams <i>start</i> in field goal range? It makes scoring way too easy. The teams should have to mount an actual drive with, you know, a few first downs, to get into scoring position. Each team should start at its own 20- or 25-yard line instead of the opponent&#8217;s 25-yard line.</p>
<p>In the ESPN broadcast of the Fiesta Bowl on January 2, 2012, in which Oklahoma State beat Stanford in overtime, Sean McDonough expressed exactly those sentiments:</p>
<blockquote><p>
Some critics of this format don&#8217;t like the fact that you&#8217;re in field goal range, really, when it starts.
</p></blockquote>
<p>Amen to that. That&#8217;ll probably get fixed as soon as the inherent bias and traditional-power favoritism of rankings and bowl selections are eliminated&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpetrie.net/2012/01/05/overhaul-college-football-overtime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

