<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3295689543166080175</id><updated>2012-01-20T01:39:32.316-08:00</updated><title type='text'>The Chocolate Interrobang</title><subtitle type='html'>where we savor discussions about language &amp; grammar &amp; syntax, and sometimes reminisce about diagramming sentences...</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>67</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-8951599195261971201</id><published>2009-12-02T08:43:00.000-08:00</published><updated>2010-07-04T15:33:41.798-07:00</updated><title type='text'>Salon Letters Beta — The Whole Enchilada</title><content type='html'>&lt;span style="color: red; font-size: 150%;"&gt;[&lt;span style="color: blue;"&gt;(27/06/10)&lt;/span&gt; Salon has randomly changed the message header format on some letter pages causing the reformatting script to crash on those pages. I have written a patch that will fix this and incorporated it in the script posted below. To install, follow the instructions below for installing the script. Don't forget to uninstall the old version before installing the new; otherwise the new version won't be installed.]&lt;/span&gt;&lt;br /&gt;It has now been about three weeks since Salon unveiled its “beta” pages, obviously designed by someone nostalgic for the red, white, and black color scheme so popular at the Nuremberg rallies. While the main pages at Salon are bad enough, the Letters pages were particularly hideous, with the previous more or less uncluttered format replaced with a page design where the letters are crammed into a space half the width of the page or less in order to make room for two additional columns, links were not marked in any way, and HTML tags that had previously been functional no longer worked.&lt;br /&gt;&lt;br /&gt;I offered an update to the Salon Letter Filter that would work on the beta pages and also provided snippets of code that could be integrated into the Letter Filter script to relieve some of the clutter and the the poor design features that made trying to read the letters pages stressful as I developed them.&lt;br /&gt;&lt;br /&gt;Now, by popular demand, a full Greasemonkey script that embodies both the Salon Letter Filter and the Salon Beta letter page reformatter is provided here. I have added some tweaks that let the script run on all Salon letters pages, including the letter posting page and individual author archive pages. The letter filter does not run on these pages as it is unneeded. The Letter Filter also will not run if the ‘killfile’ variable is not configured (i.e., it is empty or contains only the word “authors”). I have also added a switch to disable the Letter Filter even if the ‘killfile’ variable is configured. In short, if you do absolutely nothing after installing the script the Letter Filter will &lt;b&gt;&lt;i&gt;not&lt;/i&gt;&lt;/b&gt; operate &amp;mdash; only the reformatting part of the script will run.&lt;br /&gt;&lt;br /&gt;I have also added some bells and whistles that weren't part of the earlier scripts, including a “linkifier” that makes any properly formulated URL in the letter body into a clickable link. I have added commentary to the script that identifies the purpose of each block of code so that it will be easier for users to modify values or disable unwanted features. Here I give a brief summary of the features of the new script and how to manipulate it to suit the individual user's preferences.&lt;br /&gt;&lt;br /&gt;First, however, and in keeping with the nature of this blog as a forum for language and grammar, a few remarks on the use of the term “comment” by programmers will be useful. All programming and scripting languages have a device that allows the compiler or interpreter to ignore lines in a program. In JavaScript (which is what Greasemonkey uses), the comment marker for an individual line is two slashes (‘//’). Programmers use &lt;i&gt;comment&lt;/i&gt; (usually with “out”) as a verb meaning “to provide with comment markers” and any line with comment markers is said to be “commented out”. To &lt;i&gt;uncomment&lt;/i&gt; a line is to remove the comment markers. I will be using these terms extensively in what follows.&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;The Letter Filter&lt;/li&gt;&lt;br&gt;The Letter Filter itself is essentially unchanged from the previous version. Instructions for configuring the ‘killfile’ variable are included in the script. I have added some tests so that the Filter does not run if the ‘killfile’ variable is not configured or if it is empty. I have also added a switch to disable the Letter Filter even if the ‘killfile’ variable is configured. The switch is found in the line &lt;code&gt;//LetterFilterOn = "false";&lt;/code&gt;. To disable the Letter Filter, simply uncomment this line.&lt;br&gt;&lt;br /&gt;&lt;li&gt;Reformat the name of the author of the letter&lt;/li&gt;&lt;br&gt;For each letter the author’s name is reformatted to make it a) visible and b) legible. The color is changed from gray to black and the font size is increased slightly. If the Letter Filter runs, this is done within the Filter. If not, it is done with a separate block of code. If you want to change the color or font size, the parameters are in &lt;code&gt;&amp;lt;span style='font-size:110%;color:black'&gt;&lt;/code&gt; and are self-explanatory.&lt;br&gt; &lt;font color=red&gt;[&lt;/font&gt;Salon beta has now modified the format of authors’ names on letter pages. However, true to form, the name is now too large rather than too small. The size of the author’s name is now the same as the letter subject. To counter this, I have changed the earlier setting of 110% to 90%. The code is left in the script for those who may wish to further modify the format of the author’s name.&lt;font color=red&gt;]&lt;/font&gt;&lt;br&gt;&lt;br /&gt;&lt;li&gt;Ad Remover&lt;/li&gt;&lt;br&gt;If you really want to see the ads, you can comment out this block of code. If you do, be sure to comment out the entire block, not just a line or two.&lt;br&gt;&lt;br /&gt;&lt;li&gt;Letters Help&lt;/li&gt;&lt;br&gt;This section of the Salon letters page, located at the bottom of the second column, is actually useful and is worth saving before trashing the mostly useless second and third columns. This block of code saves the Letters Help and places it, very unobtrusively, at the beginning of the letter archive for the page.&lt;br&gt;&lt;br /&gt;&lt;li&gt;Remove columns two and three&lt;/li&gt;&lt;br&gt;Now that the Letters Help has been salvaged, it is possible to remove column two containing the scoreboard (“Most Active Letters Threads”), telling which of Salon’s authors is ahead in the battle for clicks and column three containing innumerable shiny objects all begging to be clicked on (“Currently in Salon”). If you want to retain these columns, comment out this block of code. If you do, you won't be able to spread the text of the letters across the page. The letters have been crowded into the small space allotted to them in order to make room for these additional columns of click generators.&lt;br&gt;&lt;br /&gt;&lt;li&gt;Function to make global style changes&lt;/li&gt;&lt;br&gt;Unless you are an experienced programmer, do not mess with this function.  Even if you are an experienced programmer, don't mess with it. It falls into the “if it ain’t broke, don’t fix it” category.&lt;br&gt;&lt;br /&gt;&lt;li&gt;Change link colors&lt;/li&gt;&lt;br&gt;One of the most disgusting things about the Salon beta design is that it does not identify links unless your pointing device hovers over them. From looking at the page there is no way to tell what is a link and what is normal text. Further, visited links are not marked so that there is no difference between visited links and any other links. Presumably, if you can’t see that you’ve already visited a link it’s more likely that you’ll click on it again. What is particularly egregious about this policy is that it means that you cannot tell which letter pages you have already read. You can see what page you’re on and presumably you know that pages on one side of the current page have been read and pages on the other haven’t. But if you have to close the browser or navigate away from the letter page, there is no way to tell when you return which pages of letters have been read and which not. The only way to tell is to write down what page you were on before you leave. This is not just poor web page design; it is outright bad manners and lack of consideration. &lt;font color=red&gt;[&lt;/font&gt;Salon beta has now apparently grudgingly changed the formatting so that letter pages that have been read are now marked. Other visited links, however, seem to be unaffected.&lt;font color=red&gt;]&lt;/font&gt;&lt;br&gt;&lt;br /&gt;To rectify this, I have added three lines of code that provide colors for links:&lt;br&gt;&lt;br /&gt;&lt;span&gt;&lt;ol span style='list-style-type:lower-alpha'&gt;&lt;li&gt;Links&lt;/li&gt;&lt;br /&gt;The first line of code changes the color of links so that they stand out from the default text color.&lt;br&gt;&lt;br /&gt;&lt;li&gt;Visited Links&lt;/li&gt;&lt;br /&gt;The second line of code sets the color of a link that has been visited. This allows you to see at a glance which pages you have already read.&lt;br&gt;&lt;br /&gt;&lt;li&gt;Hover Color&lt;/li&gt;&lt;br /&gt;The third line of code changes the color of a link when the mouse is held over it.&lt;/ol&gt;&lt;/span&gt;&lt;br /&gt;The colors have been chosen on the basis of my own preferences and can be changed by the user to suit his or her own preferences. Colors can be defined in three ways: 1) by name; 2) by a hex number (00 to FF) indicating the Red, Green, and Blue components of the color; or 3) by the rgb() function, which specifies the RGB components as either a decimal number (0 to 255) or a percentage (0% to 100%). I have used each of these methods in one line of code but the user can change them &lt;i&gt;ad libitum&lt;/i&gt;: &lt;code&gt;color:blue&lt;/code&gt;, &lt;code&gt;color:#0000FF&lt;/code&gt;, and &lt;code&gt;color:rgb(0,0,255)&lt;/code&gt; all produce the same color. A list of named colors can be found &lt;a href="http://www.w3schools.com/css/css_colornames.asp"&gt;here&lt;/a&gt; and you can quickly test your colors &lt;a href="http://www.w3schools.com/css/tryit.asp?filename=trycss_color"&gt;here&lt;/a&gt; if you have JavaScript enabled in your browser (or on the page if you use NoScript).&lt;br&gt;&lt;br /&gt;&lt;li&gt;Change width of letter components&lt;/li&gt;&lt;br&gt;Now that the second and third columns are gone, it is possible to expand the text of the letters to utilize some of the empty space. The next block of code resets the width of each letter component except the signature to an absolute width of 650 pixels. This is the width that I find most comfortable for the browser width that I like to use. The user can change the numbers in these lines to suit his or her own preference. Remember, however, that it can be as difficult to read lines that are too long as it is to read those that are too short.&lt;br&gt;&lt;br /&gt;&lt;li&gt;Reformat the &amp;lt;li&gt; HTML tag to display bullet points&lt;/li&gt;&lt;br&gt;Salon letters beta still allows the &amp;lt;ul&gt; (unordered list) and &amp;lt;li&gt; (list item) HTML tags. However, there is no formatting associated with the tags so they have no effect other than allowing a single-spaced list. This block of code sets the parameters of the &amp;lt;li&gt; element so that it displays bullet points and indents the text. Most posters probably will not use the &amp;lt;li&gt; tag because a) they are unfamiliar with HTML and don't know what it is supposed to do and b) it doesn't work properly so even if they know what it is supposed to do, it doesn't do it. But with the Greasemonkey script working the &amp;lt;li&gt; element will display correctly. There is no point in using the &amp;lt;ul&gt; tag because Salon's HTML parser inserts a pair of &amp;lt;ul&gt;/&amp;lt/ul&gt; tags around every &amp;lt;li&gt; element.&lt;br&gt;&lt;br /&gt;&lt;li&gt;Remove the huge navigation panels at the top and bottom of the page&lt;/li&gt;&lt;br&gt;The next line of code removes the gigantic navigation panel (which essentially duplicates the one at the top of the page) at the bottom of the page. Since we know where the panel is and there is only one of it, there is no need to search for it and this task can be handled with a single line of code. The next two lines remove the large cumbersome navigation panel at the top of the page. If you want the navigation panels, simply comment out these lines of code (or turn off Greasemonkey by clicking on the icon in the status bar of your browser and then reload the page).&lt;br&gt;&lt;br /&gt;&lt;li&gt;Change the harsh red background color of the copyright notices at the bottom of the page&lt;/li&gt;&lt;br&gt;I find the red used as background for the copyright notices at the bottom of the page to be both harsh and stressful. In addition, the black text of the notices is very difficult to read against the red background. Trying to do so gives me a headache. I have simply changed the background color to white to match the rest of the page. If you would like some other color, you can change the color in the line &lt;code&gt;foot.style.backgroundColor = 'white';&lt;/code&gt; as described above in item 7. The method is slightly different in this case, however. The color name, hex number color code, or the rgb() function should replace the word ‘white’ inside the quotation marks.&lt;br&gt;&lt;br /&gt;&lt;li&gt;Reformat the letter posting page&lt;/li&gt;&lt;br&gt;All of the foregoing will also run on the page that posts letters. Now that there is more space on that page it is possible to expand the area allotted to the composition of your letter. The following blocks of code accomplish this.&lt;br&gt;&lt;br /&gt;&lt;span&gt;&lt;ol span style='list-style-type:lower-roman'&gt;&lt;li&gt;Expand the space for the letter subject&lt;/li&gt;&lt;br&gt;The first block of code in this section expands the size of the area provided for the subject of the letter. The part that does this is in the line &lt;code&gt;newSize.setAttribute('size','70');&lt;/code&gt;. You can change the size by changing the number in this line. The remainder of the block is very important as it makes sure that the new element you are inserting has the same properties and content as the element you are replacing. This is important because the page has a verification script that looks for these properties and won't post the letter if they aren't there.&lt;br&gt;&lt;br /&gt;&lt;li&gt;Expand the space for the letter text&lt;/li&gt;&lt;br&gt;The next block of code increases the size of the “textarea” element for the body of the letter. The numbers that do this are in the &lt;code&gt;newTextarea.setAttribute('rows','20');&lt;/code&gt; and &lt;code&gt;newTextarea.setAttribute('cols','70');&lt;/code&gt; lines. The “rows” number adjusts the height of the box and the “cols” adjusts the width. These numbers can be changed to suit the individual user. Again, the remainder of the block of code is very important for the same reasons as in i above and should not be changed.&lt;br&gt;&lt;br /&gt;&lt;li&gt;Remove the gray background for the letter preview&lt;/li&gt;&lt;br&gt;There is a light gray background that is configured to the original size of the letter preview. This is distracting if the letter preview now extends outside this block. I found that the simplest solution to this was simply to remove the gray background rather than try to resize it. The final block of code in this section changes the gray background to white in the same manner as in item 11 above.&lt;/ol&gt;&lt;/span&gt;&lt;br /&gt;These changes are, needless to say, specific to the letter posting page and do not affect other Salon letter pages. But what is more important is that they work. I have posted numerous letters using the reformatted pages and they can be used with confidence.&lt;br&gt;&lt;br /&gt;&lt;li&gt;Linkification&lt;/li&gt;&lt;br&gt;The last block of code in this instantiation of the Letter Filter and Reformatter is a routine to convert any properly formulated URL in the body of a letter into a clickable link. There are Firefox add-ons that provide this capability (in fact I use one myself), but for those who are distrustful of add-ons I decided to add this to the Reformatter. This is by way of atonement for the fact that I haven't be able to find a way to sneak a link tag past Salon's HTML parser.&lt;/ol&gt;&lt;br /&gt;INSTRUCTIONS: General instructions are given in the script. To create the Greasemonky user script, copy everything below from &lt;code&gt;//BEGIN CODE&lt;/code&gt; to &lt;code&gt;//END CODE&lt;/code&gt; (you do not need to copy the BEGIN CODE and END CODE lines, but since they are comment lines it won't hurt anything if you do) into a new text file. Do not panic if it appears that the lines of code end in midair on the blog page. It is all there even if it doesn't display because of the Blogger page layout. Simply select the code, copy it, and paste it into a new text file.&lt;br&gt;&lt;br /&gt;IMPORTANT: DO NOT USE A WORD PROCESSOR TO CREATE THIS FILE. Word processors insert formatting codes into files. Scripts must contain nothing but text. If you do use a word processor (such as Wordpad), be sure to save the file as TEXT ONLY. It is recommended to use Notepad or some equivalent text editor (note: a text editor is fundamentally different from a word processor).&lt;br&gt;&lt;br /&gt;Once you have created the file, chose “Save As” and save the file with the extension .user.js. It doesn't matter what you name the file since Greasemonkey takes the name of the script from the “@name” element in the script itself, but it is essential that it have the extension .user.js otherwise Greasemonkey will not recognize it as a Greasemonkey user script.&lt;br&gt;&lt;br /&gt;When you have the file saved and Greasemonkey enabled on your browser, simply drag the file and drop it on the browser.  Greasemonkey will recognize it as a user script and ask if you want to install it. Say yes.&lt;br&gt;&lt;br /&gt;IMPORTANT AGAIN: Once you have installed the script, you can no longer edit it from the original file. Well, you can edit it of course &amp;mdash; it just won't have any effect on the script itself. When Greasemonkey installs the script it copies it to a directory far, far away, and that becomes the working copy of the script as far as Greasemonkey is concerned. You can edit this file with the “Edit” function in the “Manage User Scripts” dialog panel provided by Greasemonkey. If you want to edit the original script file, you can, but you will then have to uninstall the script and install it anew for your edits to have any effect.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;code&gt;&lt;b&gt;//BEGIN CODE&lt;/b&gt;&lt;br /&gt;//&lt;br /&gt;var LetterFilterOn;&lt;br /&gt;//&lt;br /&gt;//          MANUAL CONFIGURATION REQUIRED FOR LETTER FILTER&lt;br /&gt;//&lt;br /&gt;// To configure the letter filter, you must have a "killfile" variable configured.&lt;br /&gt;// A template for this variable is given below.  The "killfile" varable includes a &lt;br /&gt;// comma-delimited string of the nyms of the authors that you wish to filter out.&lt;br /&gt;// A sample "killfile variable configuration looks like:&lt;br /&gt;//&lt;br /&gt;//            new String(killfile = 'author1,author2,author3');&lt;br /&gt;// or&lt;br /&gt;//            new String(killfile = 'author');&lt;br /&gt;//&lt;br /&gt;// Simply replace the word "authors" in the template below with the nyms of the authors you&lt;br /&gt;// wish to expunge, each one separated by a comma, and save the file.&lt;br /&gt;// Entries are case insensitive. Since the "killfile" will become a regular expression,&lt;br /&gt;// regular expression metacharacters (such as "." or "+") appearing in a nym should be&lt;br /&gt;// preceded by two backslashes ("\\"; e.g., 'L\\.W\\.M\\.') in order to work properly.&lt;br /&gt;// If you do not wish to use the Letter Filter function, no configuration is necessary,&lt;br /&gt;// although reformatting parameters may be reconfigured by the user if desired.&lt;br /&gt;//&lt;br /&gt;   new String(killfile = 'authors');&lt;br /&gt;&lt;br /&gt;// Remove the "//" in front of the following line if you wish to disable the Letter &lt;br /&gt;// Filter in all circumstances:&lt;br /&gt;//&lt;br /&gt;//LetterFilterOn = "false";&lt;br /&gt;//&lt;br /&gt;// --------------------------------------------------------------------&lt;br /&gt;//&lt;br /&gt;// This is a Greasemonkey user script.&lt;br /&gt;//&lt;br /&gt;// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/&lt;br /&gt;// After installing Greasemonkey, restart Firefox and revisit this script.&lt;br /&gt;// Under Tools, there will be a new menu item to "Install User Script".&lt;br /&gt;// Accept the default configuration and install.&lt;br /&gt;//&lt;br /&gt;// To uninstall, go to Tools/Manage User Scripts,&lt;br /&gt;// select "Salon Letter Filter and Reformatter", and click Uninstall.&lt;br /&gt;//&lt;br /&gt;// --------------------------------------------------------------------&lt;br /&gt;//&lt;br /&gt;// ==UserScript==&lt;br /&gt;// @name          Salon Letter Filter and Reformatter&lt;br /&gt;// @author        Frankly, my dear, ...&lt;br /&gt;// @namespace     http://language-grammar.blogspot.com/2009/01/salon-letters-beta-whole-enchilada.html&lt;br /&gt;// @description   Filter and reformat letters from Salon. WARNING: manual configuration required. If you wish to use the Letter Filter you must edit the script and enter your "killfile" in the string variable near the top of the script. If you wish to use only the reformatting features, no configuration is necessary.&lt;br /&gt;// @include       http://letters.salon.com/*&lt;br /&gt;// @version       0.0.1&lt;br /&gt;// ==/UserScript==&lt;br /&gt;//&lt;br /&gt;// Shortcut function to evalute an XPath in the document&lt;br /&gt;//&lt;br /&gt;function xpath(query, sourceDoc) {&lt;br /&gt;  return document.evaluate(query, sourceDoc, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// *BEGIN LETTER FILTER*&lt;br /&gt;//&lt;br /&gt;if (! LetterFilterOn) LetterFilterOn = true;&lt;br /&gt;if (! document.getElementById('letter_source_container') &amp;&amp; ! document.getElementById('letters_send_msg') &amp;&amp; LetterFilterOn != 'false' &amp;&amp; killfile.length != 0 &amp;&amp; killfile.search(/^authors$/) == -1) LetterFilterOn = true;&lt;br /&gt;else LetterFilterOn = false;&lt;br /&gt;if (LetterFilterOn) {&lt;br /&gt; myregexp = new RegExp(killfile.replace(/, */g, "|"), "i");&lt;br /&gt;//alert(myregexp);&lt;br /&gt; var allLets, thisLet, allAuthors, thisAuthor, allFooters, thisFooter, allHeads, thisHead;&lt;br /&gt; allHeads = xpath("//div[@class='posts']/div[@class='letter']/h2[@class='headline md'] | //div[@class='posts']/div[@class='letter']/h3[@class='headline md']",document);&lt;br /&gt; allLets = xpath("//div[@class='posts']/div[@class='letter']/div[@class='deck md']",document);&lt;br /&gt; allAuthors = xpath("//div[@class='posts']/div[@class='letter']/div[@class='byline'] | //div[@class='posts']/div[@class='letter']/div[@class='byline premium']",document);&lt;br /&gt; allFooters = xpath("//div[@class='letter_entry_footer']",document);&lt;br /&gt; for (var i = 0; i &lt; allLets.snapshotLength; i++) {&lt;br /&gt;  thisHead = allHeads.snapshotItem(i);&lt;br /&gt;  thisLet = allLets.snapshotItem(i);&lt;br /&gt;  thisAuthor = allAuthors.snapshotItem(i);&lt;br /&gt;  thisFooter = allFooters.snapshotItem(i);&lt;br /&gt;  var author = thisAuthor.innerHTML;&lt;br /&gt;  thisAuthor.innerHTML = "&amp;lt;span style='font-size:90%;color:black'&gt;" +  thisAuthor.innerHTML + "&amp;lt;/span&gt;";&lt;br /&gt;  if (myregexp.test(author)) {&lt;br /&gt;   mymatch = myregexp.exec(author);&lt;br /&gt;   thisLet.innerHTML = "&amp;lt;h2&gt;&amp;lt;b&gt;Letter from " + mymatch + " deleted&amp;lt;/h2&gt;&amp;lt;/b&gt;" + thisFooter.innerHTML;&lt;br /&gt;   thisHead.innerHTML = "";&lt;br /&gt;   thisFooter.innerHTML = "";&lt;br /&gt;   thisAuthor.innerHTML = "";&lt;br /&gt;   //thisLet.innerHTML = "";&lt;br /&gt;  }&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// *BEGIN REFORMATTING*&lt;br /&gt;//&lt;br /&gt;// change color and increase size of author's name if Letter Filter didn't run&lt;br /&gt;if (! LetterFilterOn) {&lt;br /&gt; allAuthors = xpath("//div[@class='posts']/div[@class='letter']/div[@class='byline'] | //div[@class='posts']/div[@class='letter']/div[@class='byline premium']",document);&lt;br /&gt; for (var i = 0; i &lt; allAuthors.snapshotLength; i++) {&lt;br /&gt;  thisAuthor = allAuthors.snapshotItem(i);&lt;br /&gt;  thisAuthor.innerHTML = "&amp;lt;span style='font-size:90%;color:black'&gt;" + thisAuthor.innerHTML + "&amp;lt;/span&gt;";&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// ad remover&lt;br /&gt;var allAds, thisAd;&lt;br /&gt;allAds = xpath("//div[@class='ad_content'] | //div[@id='ad_Top']",document);&lt;br /&gt;for (var j = 0; j &lt; allAds.snapshotLength; j++) {&lt;br /&gt; thisAd = allAds.snapshotItem(j);&lt;br /&gt; thisAd.innerHTML = "";&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// save the letters help section and place it before the letters&lt;br /&gt;var allBoxes, helplist,helpbox, letters;&lt;br /&gt;allBoxes = xpath("//div[@class='box']",document);&lt;br /&gt;helplist = allBoxes.snapshotItem(1).innerHTML;&lt;br /&gt;helpbox = document.createElement('div');&lt;br /&gt;helpbox.class = "box";&lt;br /&gt;helpbox.innerHTML = helplist&lt;br /&gt;letters = document.getElementById('letters_archive');&lt;br /&gt;if (letters) {&lt;br /&gt;letters.parentNode.insertBefore(helpbox, letters);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// remove the irrelevant second and third columns&lt;br /&gt;var allCols, thisCol;&lt;br /&gt;allCols = xpath("//div[@id='col2'] | //div[@id='col3']",document);&lt;br /&gt;for (var k = 0; k &lt; allCols.snapshotLength; k++) {&lt;br /&gt; thisCol = allCols.snapshotItem(k);&lt;br /&gt; thisCol.innerHTML = "";&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// Function to make global changes in style&lt;br /&gt;function addGlobalStyle(css) {&lt;br /&gt;var head, style;&lt;br /&gt;head = document.getElementsByTagName('head')[0];&lt;br /&gt;if (!head) { return; }&lt;br /&gt;style = document.createElement('style');&lt;br /&gt;style.type = 'text/css';&lt;br /&gt;style.innerHTML = css;&lt;br /&gt;head.appendChild(style);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// change link colors&lt;br /&gt;addGlobalStyle('a:link {color:#0088FF ! important; }');&lt;br /&gt;addGlobalStyle('a:visited {color:orange ! important; }');&lt;br /&gt;addGlobalStyle('a:hover {color:rgb(0,0,255) ! important; }');&lt;br /&gt;&lt;br /&gt;// change width of letter components&lt;br /&gt;addGlobalStyle('p {width:650px ! important; }');&lt;br /&gt;addGlobalStyle('blockquote {width:650px ! important; }');&lt;br /&gt;addGlobalStyle('h2 {width:650px ! important; }');&lt;br /&gt;addGlobalStyle('h3 {width:650px ! important; }');&lt;br /&gt;addGlobalStyle('li {width:650px ! important; }');&lt;br /&gt;&lt;br /&gt;// format the &amp;lt;li&gt; HTML tag so it gives bullet points instead of garbage&lt;br /&gt;var thisList, allLists;&lt;br /&gt;allLists = xpath("//div[@class='posts preview']/div[@class='letter clearfix']/div[@class='deck md']/ul/li | //div[@class='posts']/div[@class='letter']/div[@class='deck md']/ul/li",document);&lt;br /&gt;if (allLists.snapshotItem(0)) {&lt;br /&gt; for (var m = 0; m &lt; allLists.snapshotLength; m++) {&lt;br /&gt;  thisList = allLists.snapshotItem(m);&lt;br /&gt;  thisList.style.marginLeft = "25px";&lt;br /&gt;  thisList.style.listStyleType = "disc";&lt;br /&gt;  thisList.style.listStylePosition = "outside";&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// remove huge navigation panel at top and bottom of page&lt;br /&gt;xpath("//div[@class='sitemap_wrap']",document).snapshotItem(1).innerHTML = "";&lt;br /&gt;&lt;br /&gt;var header = document.getElementById('header');&lt;br /&gt;header.innerHTML = "";&lt;br /&gt;&lt;br /&gt;// remove the harsh red background from the copyright section at the bottom of the page&lt;br /&gt;var foot = document.getElementById('footer_inner');&lt;br /&gt;foot.style.backgroundColor = 'white';&lt;br /&gt;&lt;br /&gt;// *Reformat the letter posting page&lt;br /&gt;// expand the space for the letter subject&lt;br /&gt;var theSize, newSize;&lt;br /&gt;theSize = document.getElementById('letter_subject');&lt;br /&gt;if (theSize) {&lt;br /&gt; newSize = document.createElement("input");&lt;br /&gt; newSize.type = 'text';&lt;br /&gt; newSize.setAttribute('size','70');&lt;br /&gt; newSize.value = theSize.value;&lt;br /&gt; newSize.id = 'letter_subject';&lt;br /&gt; newSize.name = 'subject';&lt;br /&gt; theSize.parentNode.replaceChild(newSize, theSize);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// expand the area for the letter body&lt;br /&gt;var theTextarea, newTextarea;&lt;br /&gt;theTextarea = document.getElementById('letter_body');&lt;br /&gt;if (theTextarea) {&lt;br /&gt; newTextarea = document.createElement("textarea");&lt;br /&gt; newTextarea.setAttribute('rows','20');&lt;br /&gt; newTextarea.setAttribute('cols','70');&lt;br /&gt; newTextarea.value = theTextarea.value;&lt;br /&gt; newTextarea.id = 'letter_body';&lt;br /&gt; newTextarea.name = 'body';&lt;br /&gt; theTextarea.parentNode.replaceChild(newTextarea, theTextarea);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// remove the gray background from the letter preview&lt;br /&gt;pre = document.getElementById('letters_archive');&lt;br /&gt;if(pre) pre.style.backgroundColor = 'white';&lt;br /&gt;&lt;br /&gt;// make all URLs in letter body clickable links&lt;br /&gt;var isURL = new RegExp("[a-z]+://[a-z0-9_-]+\\.[a-z0-9_#%&amp;\?\/.,;:!'~=+-]+", "ig");&lt;br /&gt;var isLink = new RegExp("http://static\\.open\\.salon\\.com", "i");&lt;br /&gt;var allTexts, thisText, p;&lt;br /&gt;allTexts = xpath("//div[@class='posts']/div[@class='letter']/div[@class='deck md']/* | //div[@class='posts preview']/div[@class='letter clearfix']/div[@class='deck md']/*",document);&lt;br /&gt;if (allTexts.snapshotItem(0)) {&lt;br /&gt; for (var n = 0; n &lt; allTexts.snapshotLength; n++) {&lt;br /&gt;  thisText = allTexts.snapshotItem(n);&lt;br /&gt;  if (isURL.test(thisText.innerHTML)) {&lt;br /&gt;   myURLs = thisText.innerHTML.match(isURL);&lt;br /&gt;   for (p = 0; p &lt; myURLs.length; p++) {&lt;br /&gt;    myURL = new String(myURLs[p]);&lt;br /&gt;    if (isLink.test(myURL)) break;&lt;br /&gt;    myURL = myURL.replace(/(\&amp;amp;gt;.?|[.,:;'!]+)$/,"");&lt;br /&gt;    newURL = myURL.replace(/([.?])/g,"\\$1");&lt;br /&gt;    var oldURL = new RegExp(newURL,"i");&lt;br /&gt;    thisText.innerHTML = thisText.innerHTML.replace(oldURL,'&amp;lt;a href="' + myURL + '"&gt;' + myURL + '&amp;lt;/a&gt;');&lt;br /&gt;   }&lt;br /&gt;  }&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;//&lt;br /&gt;&lt;b&gt;//END CODE&lt;/b&gt;&lt;/code&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-8951599195261971201?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/8951599195261971201/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=8951599195261971201&amp;isPopup=true' title='26 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/8951599195261971201'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/8951599195261971201'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2009/01/salon-letters-beta-whole-enchilada.html' title='Salon Letters Beta &amp;mdash; The Whole Enchilada'/><author><name>Frankly, my dear, ...</name><uri>http://www.blogger.com/profile/13417982906335528951</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp2.blogger.com/_XIbSGs0jOZA/SBGvFYJKf_I/AAAAAAAAAAM/oYTq4f_irJM/S220/rhett.jpg'/></author><thr:total>26</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-5660076864854413297</id><published>2009-11-10T18:26:00.000-08:00</published><updated>2009-11-12T06:01:20.951-08:00</updated><title type='text'>Optional Additional Code for Salon Letter Filter beta</title><content type='html'>The following additional code can be added to the Salon Letter Filter beta greasemonkey script to correct deficiencies in the Salon formatting:&lt;br /&gt;&lt;br /&gt;1) Mark visited links &amp;mdash; The letter page formatting does not mark links that have been visited. This means that you cannot tell which pages of the letter commentary you have read and which you haven't. If you navigate away from the page or close your browser you have to remember which page you were on when you come back. This can be fixed with the following code, which can simply be copied and pasted at the end of the Salon Letter Filter beta script:&lt;br&gt;&lt;br /&gt;&lt;pre&gt;&lt;code&gt;function addGlobalStyle(css) {&lt;br /&gt;var head, style;&lt;br /&gt;head = document.getElementsByTagName('head')[0];&lt;br /&gt;if (!head) { return; }&lt;br /&gt;style = document.createElement('style');&lt;br /&gt;style.type = 'text/css';&lt;br /&gt;style.innerHTML = css;&lt;br /&gt;head.appendChild(style);&lt;br /&gt;}&lt;br /&gt;addGlobalStyle('a:link {color:blue ! important; }');&lt;br /&gt;addGlobalStyle('a:visited {color:orange ! important; }');&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;2) Remove Navigation panel at the bottom of letter pages &amp;mdash; A huge amount of space at the bottom of each letter page is taken up with a navigation panel that will take you almost anywhere in Salon. For most people it is simply a distraction. It can be removed by adding the following line of code to the Salon Letter Filter beta script:&lt;br&gt;&lt;br /&gt;&lt;pre&gt;&lt;code&gt;xpath("//div[@class='sitemap_wrap']",document).snapshotItem(1).innerHTML = "";&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;Be sure to copy the entire line of code since you can't see the end of it because of blogger's page layout.&lt;br /&gt;&lt;br /&gt;3) Remove the second and third columns containing “Most Active Letter Threads” (the scoreboard) and “Currently in Salon” &amp;mdash; The size of the letter area has been considerably reduced by the need of the “business model” to include graphic links to everything else on Salon. You can get rid of these two additional columns that are mostly merely distracting from the letters by adding the following code to the greasemonkey script:&lt;br&gt;&lt;br /&gt;&lt;pre&gt;&lt;code&gt;var allCols, thisCol;&lt;br /&gt;allCols = xpath("//div[@id='col2'] | //div[@id='col3']",document);&lt;br /&gt;for (var k = 0; k &lt; allCols.snapshotLength; k++) {&lt;br /&gt; thisCol = allCols.snapshotItem(k);&lt;br /&gt; thisCol.innerHTML = "";&lt;br /&gt;}&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;Unfortunately, this will also remove the “Letters Help” box in the second column, which might actually prove useful, but you can't have everything. I'll try to find a way to put the “Letters Help” back somewhere unobtrusive.&lt;br /&gt;&lt;br /&gt;4) Preserve the “Letters Help” box &amp;mdash; the following code will preserve the help box for letters and place it unobtrusively before the letter archive:&lt;br&gt;&lt;br /&gt;&lt;pre&gt;&lt;code&gt;var allBoxes, helplist,helpbox, letters;&lt;br /&gt;allBoxes = xpath("//div[@class='box']",document);&lt;br /&gt;helplist = allBoxes.snapshotItem(1).innerHTML;&lt;br /&gt;helpbox = document.createElement('div');&lt;br /&gt;helpbox.class = "box";&lt;br /&gt;helpbox.innerHTML = helplist&lt;br /&gt;letters = document.getElementById('letters_archive');&lt;br /&gt;if (letters) {&lt;br /&gt;letters.parentNode.insertBefore(helpbox, letters);&lt;br /&gt;}&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;WARNING: This code must be placed before the code given in section 3) above. You have to snarf the letters help box before you trash column 2.&lt;br /&gt;&lt;br /&gt;5) Remove the red background from the copyright notices at the bottom of the page &amp;mdash; The hideous and stressful red background to the copyright notice at the bottom of the letter pages can be removed with the following two lines of code:&lt;br&gt;&lt;br /&gt;&lt;pre&gt;&lt;code&gt;var foot = document.getElementById('footer_inner');&lt;br /&gt;foot.style.backgroundColor = 'white';&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;6) Spread the letter text across the page &amp;mdash; Now that columns 2 and 3 have been removed it is possible to spread the letters across the page to make them more readable. The following code will accomplish this:&lt;BR&gt;&lt;br /&gt;&lt;pre&gt;&lt;code&gt;addGlobalStyle('p {width:700px ! important; }');&lt;br /&gt;addGlobalStyle('blockquote {width:700px ! important; }');&lt;br /&gt;addGlobalStyle('h2 {width:700px ! important; }');&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;These lines will work only if the addGlobalStyle() function defined above in 1) has been included. Otherwise you will have to copy the function from 1) and paste it into the script before these lines will work.&lt;br /&gt;&lt;br /&gt;I have set the width in pixels at 700. This is the width I find most comfortable for the browser width that I use.  You can make the lines longer or shorter just by changing the number to suit your own preference.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;That's all for now, but stay tuned for further developments.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-5660076864854413297?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/5660076864854413297/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=5660076864854413297&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/5660076864854413297'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/5660076864854413297'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2009/11/optional-additional-code-for-salon.html' title='Optional Additional Code for Salon Letter Filter beta'/><author><name>Frankly, my dear, ...</name><uri>http://www.blogger.com/profile/13417982906335528951</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp2.blogger.com/_XIbSGs0jOZA/SBGvFYJKf_I/AAAAAAAAAAM/oYTq4f_irJM/S220/rhett.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-4489347933034709021</id><published>2009-09-15T08:01:00.000-07:00</published><updated>2009-12-12T04:33:33.323-08:00</updated><title type='text'>Salon Letter Filter Script beta</title><content type='html'>&lt;span style="color:red;font-size:150%"&gt;[&lt;span style="color:blue"&gt;(11/10/09)&lt;/span&gt; Salon has again changed its Letter format in conformance with its new beta page layout. Presumably this change will be permanent]&lt;/span&gt;&lt;br&gt;&lt;br /&gt;Salon has changed the format of their letters pages, obviously in order to make them even less readable than they were before, and the earlier Salon Letter Filter Greasemonkey script no longer works. Here is the text of a revised script that should function until Salon changes the format again. To install, copy everything between //BEGIN CODE and //END CODE into a text file (do not copy //BEGIN CODE and //END CODE).  Name the text file salonletterfilterbeta.user.js and save it. If you already have Salon Letter Filter installed, you do not need to uninstall it before installing the new file. Simply open the new file in your browser (you can drag and drop). If Greasemonkey is installed and active, when you open the file a Greasemonkey dialog will appear asking if you want to install the script. Click on install.&lt;br /&gt;Alternatively, if you think you know what you are doing, you can simply edit the installed script and replace those lines of code that have been changed with the new ones.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;IMPORTANT:&lt;/b&gt; Your file name must end with .user.js for Greasemonkey to recognize it as a user script.&lt;br /&gt;&lt;br /&gt;Do not panic if it appears that the lines of code end in midair on the blog page. It is all there even if it doesn't display because of the Blogger page layout. Simply select the code, copy it, and paste it into a new text file. Notepad or some other fairly simple text editor is recommended for this.&lt;br /&gt;This version also removes ads from Salon Letter pages. If you actually prefer to see the ads, simply remove the code at the end that begins with “// ad remover”.&lt;br /&gt;There is also an enhancement that increases the size of the poster's name slightly to make it easier to see. If you prefer the original setting, edit the file and put “//” at the beginning of the line that begins “thisAuthor.innerHTML = "&amp;lt;span style=”.&lt;br /&gt;The greasemonkey script for the letter filter is no longer available as a download. To install it, you must copy the code from here into a file on your own computer. We regret the inconvenience.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;code&gt;&lt;b&gt;//BEGIN CODE&lt;/b&gt;&lt;br /&gt;//&lt;br /&gt;//          MANUAL CONFIGURATION REQUIRED&lt;br /&gt;//&lt;br /&gt;// To configure the letters filter, you must have a "killfile" variable configured.&lt;br /&gt;// A template for this variable is given below.  The "killfile" varable includes a &lt;br /&gt;// comma-delimited string of the nyms of the authors that you wish to filter out.&lt;br /&gt;// A sample "killfile variable configuration looks like:&lt;br /&gt;//&lt;br /&gt;//            new String(killfile = 'author1,author2,author3');&lt;br /&gt;// or&lt;br /&gt;//            new String(killfile = 'author');&lt;br /&gt;//&lt;br /&gt;// Simply replace the word "authors" in the template below with the nyms of the authors you&lt;br /&gt;// wish to expunge, each one separated by a comma, and save the file.&lt;br /&gt;// Entries are case insensitive. Since the "killfile" will become a regular expression,&lt;br /&gt;// regular expression metacharacters (such as "." or "+") appearing in a nym should be&lt;br /&gt;// preceded by a backslash ("\"; e.g., 'L\.W\.M\.') in order to work properly.&lt;br /&gt;//&lt;br /&gt;   new String(killfile = 'authors');&lt;br /&gt;   if (killfile.length == 0) exit;&lt;br /&gt;//&lt;br /&gt;// --------------------------------------------------------------------&lt;br /&gt;//&lt;br /&gt;// This is a Greasemonkey user script.&lt;br /&gt;//&lt;br /&gt;// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/&lt;br /&gt;// Then restart Firefox and revisit this script.&lt;br /&gt;// Under Tools, there will be a new menu item to "Install User Script".&lt;br /&gt;// Accept the default configuration and install.&lt;br /&gt;//&lt;br /&gt;// To uninstall, go to Tools/Manage User Scripts,&lt;br /&gt;// select "Letter_Filter", and click Uninstall.&lt;br /&gt;//&lt;br /&gt;// --------------------------------------------------------------------&lt;br /&gt;//&lt;br /&gt;// ==UserScript==&lt;br /&gt;// @name          Salon Letter filter beta&lt;br /&gt;// @author        Frankly, my dear, ...&lt;br /&gt;// @namespace     http://language-grammar.blogspot.com/2009/09/salon-letter-filter-script-version-002.html&lt;br /&gt;// @description   Filter letters from Salon. WARNING: manual configuration required. Before use you must edit the script and enter your "killfile" in the string variable near the top of the script.&lt;br /&gt;// @include       http://letters.salon.com/*&lt;br /&gt;// @version       0.0.1&lt;br /&gt;// ==/UserScript==&lt;br /&gt;&lt;br /&gt;//&lt;br /&gt;//  Set debug to 1 to see debug output in Javascript console&lt;br /&gt;//&lt;br /&gt;var debug = 1;&lt;br /&gt;// &lt;br /&gt;// Only print information to console if debug is on&lt;br /&gt;//&lt;br /&gt;//function myGM_log(args) {&lt;br /&gt;//  if (debug == 1) {&lt;br /&gt;//    GM_log(args);&lt;br /&gt;//  }&lt;br /&gt;//}    &lt;br /&gt;&lt;br /&gt;//&lt;br /&gt;// Shortcut function to evalute an XPath in the document&lt;br /&gt;//&lt;br /&gt;function xpath(query, sourceDoc) {&lt;br /&gt;  return document.evaluate(query, sourceDoc, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;myregexp = new RegExp(killfile.replace(/, */g, "|"), "i");&lt;br /&gt;//alert(myregexp);&lt;br /&gt;var allLets, thisLet, allAuthors, thisAuthor, allFooters, thisFooter, allHeads, thisHead;&lt;br /&gt;allHeads = xpath("//div[@class='posts']/div[@class='letter']/h2[@class='headline md']",document);&lt;br /&gt;allLets = xpath("//div[@class='posts']/div[@class='letter']/div[@class='deck md']",document);&lt;br /&gt;allAuthors = xpath("//div[@class='posts']/div[@class='letter']/div[@class='byline'] | //div[@class='posts']/div[@class='letter']/div[@class='byline premium']",document);&lt;br /&gt;allFooters = xpath("//div[@class='letter_entry_footer']",document);&lt;br /&gt;for (var i = 0; i &lt; allLets.snapshotLength; i++) {&lt;br /&gt; thisHead = allHeads.snapshotItem(i);&lt;br /&gt; thisLet = allLets.snapshotItem(i);&lt;br /&gt; thisAuthor = allAuthors.snapshotItem(i);&lt;br /&gt; thisFooter = allFooters.snapshotItem(i);&lt;br /&gt; var author = thisAuthor.innerHTML;&lt;br /&gt;thisAuthor.innerHTML = "&amp;lt;span style='font-size:90%;color:black'&gt;" + thisAuthor.innerHTML + "&amp;lt;/span&gt;";&lt;br /&gt; if (myregexp.test(author)) {&lt;br /&gt;  mymatch = myregexp.exec(author);&lt;br /&gt;  thisLet.innerHTML = "&amp;lt;h2&gt;&amp;lt;b&gt;Letter from " + mymatch + " deleted&amp;lt;/h2&gt;&amp;lt;/b&gt;" + thisFooter.innerHTML;&lt;br /&gt;  thisHead.innerHTML = "";&lt;br /&gt;  thisFooter.innerHTML = "";&lt;br /&gt;  thisAuthor.innerHTML = "";&lt;br /&gt;  //thisLet.innerHTML = "";&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;// ad remover&lt;br /&gt;var allAds, thisAd;&lt;br /&gt;allAds = xpath("//div[@class='ad_content' | //div[@id='ad_Top']",document);&lt;br /&gt;for (var j = 0; j &lt; allAds.snapshotLength; j++) {&lt;br /&gt; thisAd = allAds.snapshotItem(j);&lt;br /&gt; thisAd.innerHTML = "";&lt;br /&gt;}&lt;br /&gt;&lt;b&gt;//END CODE&lt;/b&gt;&lt;/code&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-4489347933034709021?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/4489347933034709021/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=4489347933034709021&amp;isPopup=true' title='12 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4489347933034709021'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4489347933034709021'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2009/09/salon-letter-filter-script-version-002.html' title='Salon Letter Filter Script beta'/><author><name>Frankly, my dear, ...</name><uri>http://www.blogger.com/profile/13417982906335528951</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp2.blogger.com/_XIbSGs0jOZA/SBGvFYJKf_I/AAAAAAAAAAM/oYTq4f_irJM/S220/rhett.jpg'/></author><thr:total>12</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-888448995227017016</id><published>2009-09-13T07:47:00.000-07:00</published><updated>2009-09-27T05:41:06.058-07:00</updated><title type='text'>Latin for Bloggers</title><content type='html'>&lt;style type="text/css"&gt; &lt;!-- A:link {text-decoration:none; color:blue} &lt;br /&gt;A:visited {text-decoration:none; color:green}&lt;br /&gt;A:hover {text-decoration:none; color:FFF000} --&gt; &lt;/style&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; &lt;span style="font-size:80;"&gt;[Author’s note: I started this &lt;span class="newtext"&gt;contribution&lt;/span&gt; more than two years ago, but had to set it aside for more urgent undertakings (like &lt;a href="http://language-grammar.blogspot.com/2009/04/salon-letter-filters-script.html"&gt;a filter for Salon letters&lt;/a&gt;), but the recent &lt;a href="http://swampland.blogs.time.com/2009/08/31/glenn-greenwald/"&gt;posting by &lt;span style="background-color: rgb(255, 0, 0);" title="(better known to the world of punditry as “Joke Line”)"&gt;&lt;span style="color:white;"&gt;Joe Klein&lt;/span&gt;&lt;/span&gt; on Time’s &lt;span style="background-color: rgb(255, 0, 0);" title="(ever so appropriately named)"&gt;&lt;span style="color:white;"&gt;&lt;i&gt;Swampland&lt;/i&gt;&lt;/span&gt;&lt;/span&gt; blog&lt;/a&gt; in which he casually inserted what he apparently thought was a Latin phrase, *&lt;i&gt;ad nauseum&lt;/i&gt; (I say apparently because he put the phrase in italics, indicating that he didn't consider it English). Since this solecism, while extremely common on blogs, now has the imprimatur of Time Magazine (presumably &lt;i&gt;Swampland&lt;/i&gt; doesn’t have an editor, or at least not one familiar with Latin), it is clearly time to dust off this little excursus on the misuse of Latin by bloggers in hopes of, if not encouraging the miscreants to mend their ways and look up things that they don't know (after all it is hard to change the habits of a lifetime), at least heaping well-deserved ridicule and scorn on their pretentiousness.]&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Yeah, I know — this blog is supposed to be about English. But English is a voracious language that accepts not only unlimited loan words but also takes over foreign words and phrases wholesale. In fact, according to James D. Nicoll:&lt;br /&gt;&lt;blockquote&gt;&lt;span style="font-size:90;"&gt;We don’t just borrow words; on occasion, English has pursued other languages down alleyways to beat them unconscious and rifle their pockets for new vocabulary.&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.ling.ed.ac.uk/linguist/issues/13/13-499.html"&gt;&lt;div style="text-align: right; font-size: 85%; padding-right: 3cm;"&gt;— James D. Nicoll&lt;/div&gt;&lt;/a&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;style type="text/css"&gt; &lt;!-- A:link {text-decoration:none; color:blue} &lt;br /&gt;A:visited {text-decoration:none; color:green}&lt;br /&gt;A:hover {text-decoration:none; color:FFF000} --&gt; &lt;/style&gt;&lt;br /&gt;But I digress. Not only was English syntax consciously remodeled after Latin in the 17th and 18th centuries, but the prestige of the classical languages led to a great number of neologisms based on Latin and Greek roots as well as many loanwords taken directly from the classical languages. Indeed, many common abbreviations used in writing were based on Latin phrases (i.e., e.g., loc. cit., etc.). By contrast, English's sister language rejected most of the Latin/Greek etymologies and instead calqued (loan translated) the English into German (E. &lt;i&gt;rhinoceros&lt;/i&gt; [‘nose horn’], G. Näshorn; E. &lt;i&gt;exposition&lt;/i&gt;, G. Ausstellung; E. &lt;i&gt;television&lt;/i&gt;, G. Fernseher, and so on) and uses German abbreviations rather than abbreviations of Latin (d.h., z.B., a.a.O., usw.).&lt;br /&gt;&lt;br /&gt;The prestige of the classical languages has also ensured that many Latin phrases and expressions are used in English prose to give status to the author as an educated person (there was a time, not all that long ago, when a knowledge of Latin and Greek was simply the mark of an educated person; no one went to university without knowing Latin and Greek). Indeed, in many European universities dissertations were still written in Latin well into the twentieth century.&lt;br /&gt;&lt;br /&gt;Latin (and to a considerably lesser extent Greek) expressions thus find their way into English prose, either because they are well known and familiar, or because writers wish to show, by their knowledge of Latin, that they are educated persons. What then of those who misuse Latin expressions in their writing? — get the wrong expression, misspell them, use the wrong case, or just generally demonstrate a complete lack of knowledge of Latin vocabulary, grammar, and syntax? If one is generous, one could just say that they made a mistake — everyone makes mistakes; if one is less generous, one might be inclined to say that they are trying to capitalize on the prestige generated by the use of Latin and mark themselves as knowledgeable and educated when, in fact, they lack the knowledge and education that they are implicitly claiming.&lt;br /&gt;&lt;br /&gt;Here then are some of the most &lt;span title="and egregious"&gt;common&lt;/span&gt; mistakes to be found in the use of Latin by bloggers (and by blog commenters):&lt;br /&gt;&lt;br /&gt;&lt;a name="habeas_corpus"&gt;&lt;/a&gt;&lt;h4&gt;Habeas Corpus&lt;!--4--&gt;&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;Most common mistake: &lt;i&gt;habeus corpus&lt;/i&gt; (Google gets about 112,000 hits for “habeus”, but is self-correcting in that a search for “habeus corpus” returns habeas corpus as well)&lt;/li&gt;&lt;li&gt;Reasons for the mistake: &lt;ul&gt;&lt;li&gt;Lack of knowledge of Latin plus a general belief that all Latin words end in &lt;i&gt;-us&lt;/i&gt; or &lt;i&gt;-um&lt;/i&gt;. &lt;/li&gt;&lt;li&gt;There is a natural linguistic tendency for making word pairs, especially when the words are foreign/not understood (i.e., nonsense), phonetically congruent. Thus ‘hocus pocus’, ‘abra cadabra’, ‘jibber-jabber’, and so on.&lt;/li&gt;&lt;li&gt;A pronunciation spelling since the final &lt;i&gt;a&lt;/i&gt; of &lt;i&gt;habeas&lt;/i&gt; is unstressed and hence pronounced as shwa (an &lt;i&gt;uh-&lt;/i&gt;sound; [ə]) and thus phonetically matches the final syllable of corpus triggering the spelling of &lt;i&gt;habeas&lt;/i&gt; as *&lt;i&gt;habeus&lt;/i&gt;.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;The correct form and interpretation:&lt;ul&gt;&lt;li&gt;The expression ‘habeas corpus’ is now fully English. There is no need to italicize it (although it frequently is) and it will be found in practically any dictionary of English. It represents the Latin &lt;i&gt;habeās corpus&lt;/i&gt;, “produce the body,”, from &lt;i&gt;habeās&lt;/i&gt;, second person sing. present subjunctive of &lt;i&gt;habēre&lt;/i&gt;, ‘to have’ + &lt;i&gt;corpus&lt;/i&gt;, ‘body.’&lt;/li&gt;&lt;li&gt;Using this expression cannot be considered a bid for prestige, since it has no English equivalent, there is no simple English phrase that expresses the concept; for the reason for this, see &lt;a href="http://dictionary.lp.findlaw.com/scripts/results.pl?co=dictionary.lp.findlaw.com&amp;amp;topic=c7/c736ec69ca3865c3b7570506257bd98f"&gt;here&lt;/a&gt;. There is, however, no excuse for misspelling it if one is at all familiar with Latin.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;a name="casus_belli"&gt;&lt;/a&gt;&lt;h4&gt;Casus Belli&lt;!--4--&gt;&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;Most common mistakes: &lt;i&gt;cassus belli&lt;/i&gt;, &lt;i&gt;causus belli&lt;/i&gt;&lt;/li&gt;&lt;li&gt;Reasons for the mistakes: &lt;ul&gt;&lt;li&gt;It is difficult to characterize &lt;i&gt;cassus belli&lt;/i&gt; as a mistake because the form &lt;i&gt;cassus&lt;/i&gt; does occur in Latin. This is the result of a process that is fairly common cross-linguistically, usually known as metathesis of length or quantitative metathesis. This often involves two consecutive vowel sounds, one short and one long, where the length is transferred from  one vowel to the other, but it also occurs between a long vowel and a following consonant so that the vowel is shortened and the consonant is lengthened (doubled). The basic form is &lt;i&gt;cāsus&lt;/i&gt; so in living Latin the form &lt;i&gt;cassus&lt;/i&gt; is a natural variant. As for English, it has no long vowels (although most speakers don't realize this), so if the pronunciation given by the OED is followed ([keɪsəs], i.e., with the same vowel sound as in English ‘case, cases’), then the spelling &amp;lt;casus&gt; is likely. However, if the more common value of written &lt;i&gt;a&lt;/i&gt; ([æ]) is used in imitation of Latin &lt;i&gt;a&lt;/i&gt; then the spelling &amp;lt;cassus&gt; is natural (compare the &lt;i&gt;a-&lt;/i&gt;sounds in ‘plate’ and ‘platter’) and “cassus” is again a pronunciation spelling.&lt;/li&gt;&lt;li&gt;A secondary reason for the use of “cassus belli” is name recognition: Cassus Belli is a well-known rapper from Lyon.&lt;/li&gt;&lt;li&gt;The error “causus belli” comes from confusing Latin &lt;i&gt;causa&lt;/i&gt;, “cause,” with Latin &lt;i&gt;cāsus&lt;/i&gt;, “case,” and then making &lt;i&gt;causa&lt;/i&gt; into *&lt;i&gt;causus&lt;/i&gt;, again in the mistaken belief that all Latin words end in &lt;i&gt;-us&lt;/i&gt; or &lt;i&gt;-um&lt;/i&gt;, perhaps abetted by a faint memory of “casus belli.”  This mistake is perhaps &lt;span title="(to those who don’t understand Latin)"&gt;natural&lt;/span&gt; because &lt;i&gt;cāsus bellī&lt;/i&gt; is frequently translated, or at least thought of, as “cause of war” rather than the more appropriate “case for war.” There is nothing wrong with &lt;i&gt;causa bellī&lt;/i&gt;, “cause of war”; it is perfectly good Latin. But *“causus belli” is not.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt; The correct form and interpretation:&lt;ul&gt;&lt;li&gt;The correct English form is casus belli, representing the Latin &lt;i&gt;cāsus bellī&lt;/i&gt;, “case for war.” It is usually italicized as a foreign phrase. The phrase came into use in the 17th and 18th centuries as as a technical term as part of the political “just war” doctrine. Anyone intending to wage a “just war” was expected to provide a &lt;i&gt;cāsus bellī&lt;/i&gt; or a “case for war.” Thus the term comes from New Latin, rather than from the living language of the classical period and hence “cassus belli” is not a natural variant. The technical term chosen was &lt;i&gt;cāsus bellī&lt;/i&gt; and that is what the correct term is. While &lt;i&gt;causa bellī&lt;/i&gt; is good Latin, it also is not the technical term used in connection with the “just war” doctrine. And *“causus belli” is nothing but a mistake, pure and simple.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;a name="ad_nauseam"&gt;&lt;/a&gt;&lt;h4&gt;Ad Nauseam&lt;!--4--&gt;&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;Most common mistake: &lt;i&gt;ad nauseum&lt;/i&gt; (although I confess to having seen &lt;i&gt;ad nauseaum&lt;/i&gt; at least once)&lt;/li&gt;&lt;li&gt;Reasons for the mistake: &lt;ul&gt;&lt;li&gt;Lack of knowledge of Latin plus a general belief that all Latin words end in &lt;i&gt;-us&lt;/i&gt; or &lt;i&gt;-um&lt;/i&gt; plus analogy to similar phrases, such as &lt;i&gt;ad infinitum&lt;/i&gt;, that properly have the case ending &lt;i&gt;-um&lt;/i&gt;.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;The correct form and interpretation:&lt;ul&gt;&lt;li&gt;This one is really a no-brainer. The Latin word for ‘nausea’ is — surprise, surprise — &lt;i&gt;nausea&lt;/i&gt;; the preposition &lt;i&gt;ad&lt;/i&gt; when it expresses motion governs the accusative case; the accusative singular of &lt;i&gt;nausea&lt;/i&gt; is &lt;i&gt;nauseam&lt;/i&gt;. Therefore, the correct expression is &lt;i&gt;ad nauseam&lt;/i&gt;, “to the point of disgust/revulsion/nausea.”&lt;/li&gt;&lt;li&gt;The expression is actually a shortening of a term from logic, &lt;i&gt;argumentum ad nauseam&lt;/i&gt;, in which an argument is repeated over and over until your opponent just gets sick of hearing it. There are many such terms based on the &lt;i&gt;argumentum ad …&lt;/i&gt; format, and, since many Latin nouns are second declension masculines or neuters and since the accusative singular of both masculine and neuter second declension nouns is &lt;i&gt;-um&lt;/i&gt;, those who are unfamiliar with Latin may be led to believe that the object noun in this construction always ends in &lt;i&gt;-um&lt;/i&gt;. However, everyone is familiar with the expression &lt;i&gt;argumentum ad&lt;/i&gt; &lt;span title="homō is a third declension noun (homō, hominis); the accusative singular is hominem"&gt;&lt;i&gt;hominem&lt;/i&gt;&lt;/span&gt; (often shortened to &lt;i&gt;ad hominem&lt;/i&gt;, but, interestingly enough, never seen as *“ad hominum”) so everyone has the means at their disposal to disprove this belief and realize that the &lt;i&gt;-um&lt;/i&gt; ending in this formula is not invariant. Moreover, there are a sufficient number of first declension feminines used in this formula (&lt;i&gt;argumentum ad consequentiam&lt;/i&gt; “to the consequence”, &lt;i&gt;ad crumenam&lt;/i&gt; “to the purse”, &lt;i&gt;ad ignorantiam&lt;/i&gt; “to ignorance”, &lt;i&gt;ad logicam&lt;/i&gt; “to logic”, &lt;i&gt;ad misericordiam&lt;/i&gt; “to pity”, etc.) that it should be obvious to anyone with any familiarity with Latin or logic or even English that there are more endings than &lt;i&gt;-um&lt;/i&gt; possible in the &lt;i&gt;argumentum ad …&lt;/i&gt; formula.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;I'll call a halt to this here, but there are, needless to say, many other Latin phrases that can be, and are, abused regularly. These are just three of the most common abuses, seen on an almost daily basis and done by &lt;span title="yeah, I'm talking to you, Joe Klein"&gt;those who ought to know better&lt;/span&gt;. There is no excuse for this, especially when there are numerous lists of common Latin phrases available on the intertubes. &lt;a href="http://en.wikipedia.org/wiki/Latin_phrases"&gt;Wikipedia has one&lt;/a&gt; and while Wikipedia may not alway be reliable on controversial issues, for straightforward matters of fact they are pretty good. If you don't want to use Wikipedia, there is always “The Google” and you can simply &lt;a href="http://www.google.com/search?hl=en&amp;amp;q=%22list+of+latin+phrases%22"&gt;Google “list of Latin phrases”&lt;/a&gt; and take your choice.&lt;br /&gt;&lt;br /&gt;A writer's use of Latin phrases here and there is expected to give his or her work a certain cachet and accord the writer a certain amount of respect for his or her knowledge and education. &lt;span title="yeah, Joe Klein, I'm talking to you again"&gt;But nothing screams ignorance and incompetence more loudly than misusing the very devices meant to demonstrate knowledge and competence.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;###&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-888448995227017016?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/888448995227017016/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=888448995227017016&amp;isPopup=true' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/888448995227017016'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/888448995227017016'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2009/09/latin-for-bloggers.html' title='Latin for Bloggers'/><author><name>Frankly, my dear, ...</name><uri>http://www.blogger.com/profile/13417982906335528951</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp2.blogger.com/_XIbSGs0jOZA/SBGvFYJKf_I/AAAAAAAAAAM/oYTq4f_irJM/S220/rhett.jpg'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-981321241472932983</id><published>2009-07-21T09:47:00.000-07:00</published><updated>2009-07-21T10:20:38.981-07:00</updated><title type='text'>Joseph K. meets Alice</title><content type='html'>&lt;blockquote&gt;...in Wonderland [sic] where they exchange "war" [sic] stories about their own experiences with authority run amok.  (Anonymust)&lt;br /&gt;&lt;/blockquote&gt;  &lt;p&gt;One trial makes you larger,&lt;br /&gt;And one trial makes you small,&lt;br /&gt;And the ones that Obama ordered,&lt;br /&gt;Isn't really a trial at all,&lt;br /&gt;Go ask Ali, when he was just small.&lt;/p&gt; &lt;p&gt;And if you go chasing terrorists,&lt;br /&gt;And you know you're going to fall,&lt;br /&gt;Tell them a Yoo-bah written memo,&lt;br /&gt;Has given you the call,&lt;br /&gt;Call Khalid, when he was ten feet tall.&lt;/p&gt; &lt;p&gt;When the Uighurs in the prison,&lt;br /&gt;Get up and tell you where to go,&lt;br /&gt;And you've just tried to stop due process,&lt;br /&gt;And your court date is moving slow.&lt;br /&gt;Go ask Al Marri, I think he'll know.&lt;/p&gt; &lt;p&gt;When law and due process,&lt;br /&gt;Have all fallen slowly dead,&lt;br /&gt;And the Audacity of Hope is talking backwards,&lt;br /&gt;And the OLC has lost it's head,&lt;br /&gt;Remember, what the AG said,&lt;br /&gt;&lt;/p&gt; &lt;p&gt;Reason has fled,&lt;br /&gt;The law is dead.&lt;/p&gt;    &lt;div class="letter_entry_author premium"&gt;--       ondelette&lt;br /&gt;&lt;br /&gt;Update:&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;For those who've forgotten the tune&lt;/h3&gt;      &lt;p&gt;here's the &lt;a href="http://www.youtube.com/watch?v=hKLF3-Qvk84"&gt;link to the song&lt;/a&gt; for which ondelette just provided new lyrics.&lt;/p&gt;     &lt;div class="letter_entry_author premium"&gt;--       &lt;a href="http://www.youtube.com/watch?v=hKLF3-Qvk84" title="http://www.youtube.com/watch?v=hKLF3-Qvk84" target="_blank" rel="nofollow"&gt;Jim White&lt;/a&gt;    &lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-981321241472932983?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://letters.salon.com/opinion/greenwald/2009/07/21/detention/permalink/c74eaa6ca1f67f7f3f5c297264d5d86e.html' title='Joseph K. meets Alice'/><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/981321241472932983/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=981321241472932983&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/981321241472932983'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/981321241472932983'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2009/07/joseph-k-meets-alice.html' title='Joseph K. meets Alice'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-2832459682953165393</id><published>2009-07-08T17:17:00.000-07:00</published><updated>2009-07-08T17:22:38.836-07:00</updated><title type='text'>Let the government define?</title><content type='html'>It's up the Bush Administration,and now the Obama Administration to define words, and NPR's ( &amp;amp; other "journalists") job to adopt those definitions unchallenged? Sheez!!! She actually said that!? Had to listen to it twice, to make sure I heard that.&lt;br /&gt;&lt;br /&gt;Re the latest proposed travesty, (as I said back in '01) somebody should inform these depraved a-holes that Kafka didn't intend to write a #!&amp;amp;^#@!!! how-to manual.&lt;br /&gt;&lt;br /&gt;-- mikeinportc&lt;br /&gt;&lt;br /&gt;&lt;a class="permalink" href="http://letters.salon.com/opinion/greenwald/2009/07/08/obama/permalink/5062ed866e494c6d3c474dea3fd7b59d.html"&gt;Permalink&lt;/a&gt; Wednesday, July 8, 2009 12:11 PM&lt;br /&gt;&lt;br /&gt;The above comment appeared in a comment thread which accompanies a typically hard-hitting Greenwald post. I was inspired to respond that perhaps we should parody an "official" government-sponsored dictionary.&lt;br /&gt;&lt;br /&gt;Please feel free to add the most odious and officious definitions and euphemisms that you have heard of-- or are willing to invent-- in the comments here.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-2832459682953165393?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/2832459682953165393/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=2832459682953165393&amp;isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/2832459682953165393'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/2832459682953165393'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2009/07/let-government-define.html' title='Let the government define?'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-3744662813582620151</id><published>2009-04-04T13:23:00.000-07:00</published><updated>2009-11-10T15:46:52.787-08:00</updated><title type='text'>Salon Letter Filter Script</title><content type='html'>&lt;span style="color:red;font-size:150%"&gt;[WARNING: This script can no longer be used due to changes in Salon's Letter format. The new script is &lt;a href="http://language-grammar.blogspot.com/2009/09/salon-letter-filter-script-version-002.html"&gt;here&lt;/a&gt;.]&lt;/span&gt;&lt;br /&gt;&lt;span style="color:blue;font-size:150%"&gt;[On 11/10/09 Salon again changed the format of their letter pages. A new script to filter Salon letters is again available &lt;a href="http://language-grammar.blogspot.com/2009/09/salon-letter-filter-script-version-002.html"&gt;here&lt;/a&gt;. The old code is left here in case Salon changes the format back again.]&lt;/span&gt;&lt;br /&gt;For those who have been unable to install the Salon Letter Filter Greasemonkey script from the link to the file, here is the text of the script. To install, copy everything between //BEGIN CODE and //END CODE into a text file (do not copy //BEGIN CODE and //END CODE).  Name the text file salonletterfilter.user.js and save it. Open the file in your browser (you can drag and drop). If Greasemonkey is installed and active, when you open the file a Greasemonkey dialog will appear asking if you want to install the script. Click on install.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;IMPORTANT:&lt;/b&gt; Your file name must end with .user.js for Greasemonkey to recognize it as a user script.&lt;br /&gt;&lt;br /&gt;Do not panic if it appears that the lines of code end in midair on the blog page. It is all there even if it doesn't display because of the Blogger page layout. Simply select the code, copy it, and paste it into a new text file. Notepad or some other fairly simple text editor is recommended for this.&lt;br /&gt;&lt;pre&gt;&lt;code&gt;&lt;b&gt;//BEGIN CODE&lt;/b&gt;&lt;br /&gt;//&lt;br /&gt;//          MANUAL CONFIGURATION REQUIRED&lt;br /&gt;//&lt;br /&gt;// To configure the letters filter, you must have a "killfile" variable configured.&lt;br /&gt;// A template for this variable is given below.  The "killfile" varable includes a &lt;br /&gt;// comma-delimited string of the nyms of the authors that you wish to filter out.&lt;br /&gt;// A sample "killfile variable configuration looks like:&lt;br /&gt;//&lt;br /&gt;//            new String(killfile = 'author1,author2,author3');&lt;br /&gt;// or&lt;br /&gt;//            new String(killfile = 'author');&lt;br /&gt;//&lt;br /&gt;// Simply replace the word "authors" in the template below with the nyms of the authors you&lt;br /&gt;// wish to expunge, each one separated by a comma, and save the file.&lt;br /&gt;// Entries are case insensitive. Since the "killfile" will become a regular expression,&lt;br /&gt;// regular expression metacharacters (such as "." or "+") appearing in a nym should be&lt;br /&gt;// preceded by a backslash ("\"; e.g., 'L\.W\.M\.') in order to work properly.&lt;br /&gt;//&lt;br /&gt;   new String(killfile = 'authors');&lt;br /&gt;   if (killfile.length == 0) exit;&lt;br /&gt;//&lt;br /&gt;// --------------------------------------------------------------------&lt;br /&gt;//&lt;br /&gt;// This is a Greasemonkey user script.&lt;br /&gt;//&lt;br /&gt;// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/&lt;br /&gt;// Then restart Firefox and revisit this script.&lt;br /&gt;// Under Tools, there will be a new menu item to "Install User Script".&lt;br /&gt;// Accept the default configuration and install.&lt;br /&gt;//&lt;br /&gt;// To uninstall, go to Tools/Manage User Scripts,&lt;br /&gt;// select "Letter_Filter", and click Uninstall.&lt;br /&gt;//&lt;br /&gt;// --------------------------------------------------------------------&lt;br /&gt;//&lt;br /&gt;// ==UserScript==&lt;br /&gt;// @name          Salon Letter filter&lt;br /&gt;// @author        Frankly, my dear, ...&lt;br /&gt;// @namespace     http://language-grammar.blogspot.com/2009/04/filter-for-salon-letters.html&lt;br /&gt;// @description   Filter letters from Salon. WARNING: manual configuration required. Before use you must edit the script and enter your "killfile" in the string variable near the top of the script.&lt;br /&gt;// @include       http://letters.salon.com/*&lt;br /&gt;// @version       0.0.1&lt;br /&gt;// ==/UserScript==&lt;br /&gt;&lt;br /&gt;//&lt;br /&gt;//  Set debug to 1 to see debug output in Javascript console&lt;br /&gt;//&lt;br /&gt;var debug = 1;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;// &lt;br /&gt;// Only print information to console if debug is on&lt;br /&gt;//&lt;br /&gt;function myGM_log(args) {&lt;br /&gt;  if (debug == 1) {&lt;br /&gt;    GM_log(args);&lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;//&lt;br /&gt;// Shortcut function to evalute an XPath in the document&lt;br /&gt;//&lt;br /&gt;function xpath(query, sourceDoc) {&lt;br /&gt;  return document.evaluate(query, sourceDoc, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;myregexp = new RegExp(killfile.replace(/, */g, "|"), "i");&lt;br /&gt;myGM_log(myregexp);&lt;br /&gt;var allLets, thisLet, allAuthors, thisAuthor, allFooters, thisFooter;&lt;br /&gt;allLets = xpath("//li[@class='letter_node']",document);&lt;br /&gt;allAuthors = xpath("//div[@class='letter_entry_author'] | //div[@class='letter_entry_author premium']",document);&lt;br /&gt;allFooters = xpath("//div[@class='letter_entry_footer']",document);&lt;br /&gt;for (var i = 0; i &lt; allLets.snapshotLength; i++) {&lt;br /&gt; thisLet = allLets.snapshotItem(i);&lt;br /&gt; thisAuthor = allAuthors.snapshotItem(i);&lt;br /&gt; thisFooter = allFooters.snapshotItem(i);&lt;br /&gt; var author = thisAuthor.innerHTML;&lt;br /&gt; if (myregexp.test(author)) {&lt;br /&gt;  mymatch = myregexp.exec(author);&lt;br /&gt;  thisLet.innerHTML = "&amp;lt;h3&gt;&amp;lt;b&gt;Letter from " + mymatch + " deleted&amp;lt;/h3&gt;&amp;lt;/b&gt;" +    thisFooter.innerHTML +"&amp;lt;hr&gt;";&lt;br /&gt;  //thisLet.innerHTML = "";&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;&lt;b&gt;//END CODE&lt;/b&gt;&lt;/code&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-3744662813582620151?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://language-grammar.blogspot.com/2009/09/salon-letter-filter-script-version-002.html' title='Salon Letter Filter Script'/><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/3744662813582620151/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=3744662813582620151&amp;isPopup=true' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/3744662813582620151'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/3744662813582620151'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2009/04/salon-letter-filters-script.html' title='Salon Letter Filter Script'/><author><name>Frankly, my dear, ...</name><uri>http://www.blogger.com/profile/13417982906335528951</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp2.blogger.com/_XIbSGs0jOZA/SBGvFYJKf_I/AAAAAAAAAAM/oYTq4f_irJM/S220/rhett.jpg'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-7505762884888669608</id><published>2009-04-03T05:29:00.000-07:00</published><updated>2009-11-10T15:54:50.944-08:00</updated><title type='text'>A Filter for Salon Letters (Important Update below  — 9/15/09) (Updated again — 11/10/09) </title><content type='html'>In view of the vitriolic and acerbic nature of the comment section of Glenn's recent postings at UT, many commenters have asked for a filter to remove certain authors' letters from the comment thread. It got so bad, that one commenter was ready to kill:&lt;br /&gt;&lt;blockquote&gt;Baring that, I'd kill for a "ignore" or "filter" option. At least that way I can completely skip the crap and not waste the time and bytes downloading text I'm not going to read.&lt;br&gt;&amp;mdash; &lt;a href="http://letters.salon.com/opinion/greenwald/2009/03/30/logic/permalink/89bbdb4a6e75bf539e32f6fbcc3c63f9.html"&gt;KB4Hire&lt;/a&gt;&lt;/blockquote&gt;&lt;br /&gt;At the time, &lt;a href="http://letters.salon.com/opinion/greenwald/2009/03/30/logic/permalink/d9f7d9f26161d9be314cf4aedaa1027b.html"&gt;I said&lt;/a&gt; that I was too busy to take the necessary steps to produce such a filter, but this is the kind of simple programming task that I just can't pass up. So I brushed up my javascript and read a book on Greasemonkey and then wasted a day of my life writing a Q&amp;amp;D&lt;sup&gt;&amp;reg;&lt;/sup&gt; filter to remove letters from specified authors from comments pages. It turns out it was about as simple as I predicted. And while it doesn't save on downloading, because you have to download the letters before you check and eliminate them, it does mean that you don't have to read the vitriol and invective that some people seem to be incapable of excluding from their writing. This will be a boon to those with peptic ulcers and high blood pressure.&lt;br /&gt;&lt;br /&gt;The file is &lt;a href="http://f1.grp.yahoofs.com/v1/kEDWScdjqhoh5gzEXQMf0wPfsRPTHdJHWD8b5e6ybz5UMFpQYuHxsop-Eabhry9F4LFdMg8Km_2Mq3ETFMFgcFf_5rapW5fb/salonletterfilter.user.js"&gt;salonletterfilter.user.js&lt;/a&gt;, and, if you already have the Greasemonkey add-on for Firefox installed and active, it can be installed simply by clicking on the file name and selecting "Install" when the Greasemonkey dialog panel appears. If you don't already have &lt;a href="https://addons.mozilla.org/en-US/firefox/addon/748"&gt;Greasemonkey&lt;/a&gt;, install it by clicking on the link. If you're using Internet Explorer, eat your heart out.&lt;br /&gt;&lt;br /&gt;Note that there is some manual configuration necessary to make the script functional. After installing the script, open the Greasemonkey "Manage User Scripts" dialog either by right-clicking on the Greasemonkey icon in the status bar at the bottom of your browser window or from the browser's "Tools" menu. Once the dialog panel is open, select "Salon Letter Filter" and click on "Edit". This will open the script in your designated text editor. Then go to the first line of the script that is not a comment (i.e., does not begin with "//") and replace the word "authors" with your kill list. Use a comma to separate individual authors if you want to exclude more than one author. Save the file, and the next time you open a Salon letters page, letters from the authors listed in "killfile" will be deleted.&lt;br /&gt;&lt;br /&gt;The configured version is fairly "polite" in that it leaves behind a notice that a letter from a particular author has been deleted, the permalink to the message (as an icon) and the datestamp. As a less polite option, there is also a more vicious  version that removes letters completely. To implement this, edit the script and in the last line of the code (//thisLet.innerHTML = "";) delete the "//" at the beginning. Unwanted letters will disappear without a trace.&lt;br /&gt;&lt;br /&gt;You can, of course, retrieve deleted letters by editing the "killfile" variable at any time. And there is no need to uninstall the script if you no longer wish to have a killfile. Simply set the variable "killfile" to an empty string ('') and the script will stop. The only thing to keep in mind is that the "killfile" variable is used to create a regular expression so regular expression metacharacters have to have a backslash ("\") in front of them for the script to work properly.&lt;br /&gt;&lt;br /&gt;[&lt;font face=arial&gt;Disclaimer: No warranty, expressed or implied, is associated with this script. The use of this script is entirely at the user's risk. This offer void where prohibited by law.&lt;/font&gt;]&lt;br /&gt;&lt;br /&gt;&lt;span style="color:red;font-size:125%"&gt;UPDATE:&lt;/span&gt; While we were sleeping, Salon changed the format of their letters pages (obviously to make them less readable than they were before). This means that the old version of the Salon Letters Filter no longer works. I have revised the Greasemonkey script and it is still available through the link above in this posting.  In order to install the new version you will have to first delete the old one. For those who are unable to access the script through the link, the &lt;a href="http://language-grammar.blogspot.com/2009/09/salon-letter-filter-script-version-002.html"&gt;text of the new script&lt;/a&gt; is now available.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:red;font-size:125%"&gt;LATER UPDATE:&lt;/span&gt; Salon has mercifully restored the previous letters settings. There is now no need for version 0.0.2 of the Salon Letter Filter and the original version works fine. That is all.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:red;font-size:125%"&gt;STILL LATER UPDATE:&lt;/span&gt; Salon has now changed the format of their letter pages in conformance with their new beta "business model". This change is likely to be permanent. The &lt;a href="http://language-grammar.blogspot.com/2009/09/salon-letter-filter-script-version-002.html"&gt;text of the new script&lt;/a&gt; for the beta layout is now available. The link to a downloadable version of the script no longer works.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-7505762884888669608?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/7505762884888669608/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=7505762884888669608&amp;isPopup=true' title='23 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/7505762884888669608'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/7505762884888669608'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2009/04/filter-for-salon-letters.html' title='A Filter for Salon Letters &lt;span style=&quot;color:blue&quot;&gt;(Important Update below  &amp;mdash; 9/15/09) (Updated again &amp;mdash; 11/10/09) &lt;/span&gt;'/><author><name>Frankly, my dear, ...</name><uri>http://www.blogger.com/profile/13417982906335528951</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp2.blogger.com/_XIbSGs0jOZA/SBGvFYJKf_I/AAAAAAAAAAM/oYTq4f_irJM/S220/rhett.jpg'/></author><thr:total>23</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-9220584148041631306</id><published>2009-03-19T11:40:00.000-07:00</published><updated>2009-03-19T16:19:08.547-07:00</updated><title type='text'>The Earnestness of being Important</title><content type='html'>Twice in the current month a poster at UT has criticized Glenn's use of sentence initial "most importantly", insisting, rather pedantically, that the "correct" form is "most important":&lt;br /&gt;&lt;blockquote&gt;&lt;a href="http://letters.salon.com/opinion/greenwald/2009/03/09/freeman/permalink/4a2a7d40256fa6cdccb9eddbcbc238a2.html"&gt;&lt;b&gt;Usage&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;"Importantly" means "in an important manner." Thus, the phrase "most important" should replace your frequent "most importantly."&lt;br /&gt;Monday, March 9, 2009 11:00 AM&lt;/a&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;and&lt;br /&gt;&lt;blockquote&gt;&lt;a href="http://letters.salon.com/opinion/greenwald/2009/03/17/dodd/permalink/611907f7a4fa5163eaf6a0c41b4c750e.html"&gt;&lt;b&gt;Usage&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Glenn writes:&lt;br /&gt;&lt;br /&gt;UPDATE II: Rather oddly, the NYT article I quoted above, by David Herzsenhorn, has been moved on the NYT site and is now at this link (see here). Most importantly, it has been re-written to reflect that fact that it was not Dodd who inserted the exception for past contracts:&lt;br /&gt;&lt;br /&gt;"Importantly" means "in an important manner." The correct form is: "Most important, it has been rewritten..."&lt;br /&gt;Wednesday, March 18, 2009 02:38 AM&lt;/a&gt;&lt;/blockquote&gt;&lt;br /&gt;However, despite the poster's certainty about the "correct" usage, the issue is not so clear-cut:&lt;br /&gt;&lt;blockquote&gt;Usage note:&lt;br /&gt;Both &lt;i&gt;more important&lt;/i&gt; and &lt;i&gt;more importantly&lt;/i&gt; occur at the beginning of a sentence in all varieties of standard English: More important (or More importantly), her record as an administrator is unmatched. Today, more importantly is the more common, even though some object to its use on the grounds that more important is an elliptical form of “What is more important” and that the adverb importantly could not occur in such a construction. More importantly probably developed by analogy with other sentence-modifying adverbs, as curiously, fortunately, and regrettably.&lt;br /&gt;Based on the Random House Dictionary&lt;br /&gt;&lt;a href="http://dictionary.reference.com/cite.html?qh=importantly&amp;amp;ia=luna"&gt;Dictionary.com&lt;/a&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;i&gt;Usage Note&lt;/i&gt;: Some critics have objected to the use of the phrase &lt;i&gt;more importantly&lt;/i&gt; in place of &lt;i&gt;more important&lt;/i&gt; when one introduces an assertion, as in More importantly, no one is ready to step into the vacuum left by the retiring senator. But both forms are widely used by reputable writers, and there is no obvious reason for preferring one or the other.&lt;br /&gt;The American Heritage® Dictionary of the English Language&lt;br /&gt;&lt;a href="http://dictionary.reference.com/cite.html?qh=importantly&amp;amp;ia=luna"&gt;Dictionary.com&lt;/a&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;b&gt;importantly&lt;/b&gt;, adv.&lt;br /&gt;1. In an important manner or degree; weightily, momentously.&lt;br /&gt;&lt;blockquote&gt;Now esp. common as a kind of sentence adverb preceded by &lt;i&gt;more&lt;/i&gt; or &lt;i&gt;most&lt;/i&gt;; in some contexts it is interchangeable with important and so has the function of a quasi-adj. Cf. IMPORTANT a. 4.&lt;/blockquote&gt;&lt;br /&gt;&lt;a href="http://dictionary.oed.com/cgi/entry/50113212"&gt;Oxford English Dictionary (subscription required)&lt;/a&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;blockquote&gt;important, a.&lt;br /&gt;4. Preceded by more or most: used as a kind of sentence adjective. Cf. IMPORTANTLY adv. 1.&lt;br /&gt;&lt;blockquote&gt;This construction is discussed in R. Quirk et al. Gram. Contemp. Eng. (1972) §5.26 (p. 255).&lt;/blockquote&gt;&lt;br /&gt;&lt;a href="http://dictionary.oed.com/cgi/entry/50113211"&gt;Oxford English Dictionary (subscription required)&lt;/a&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;blockquote&gt;Either the adjectival more/most important or the adverbial more/most importantly may serve as a sentence adverb; both are Standard in this use: More [Most] important [importantly], we now have the right answer.&lt;br /&gt;&lt;a href="http://www.bartleby.com/68/61/3161.html"&gt;Bartleby.com&lt;/a&gt;&lt;/blockquote&gt;&lt;br /&gt;A nice &lt;a href="http://www.cjr.org/resources/lc/important.php"&gt;analysis of the usage&lt;/a&gt; was written by Evan Jenkins for the Language Corner blog of the &lt;a href="http://www.cjr.org/index.php"&gt;Columbia Journalism Review&lt;/a&gt;, which is worth quoting extensively here:&lt;br /&gt;&lt;blockquote&gt;&lt;b&gt;Important/Importantly&lt;/b&gt;&lt;br /&gt;&lt;i&gt;Important ? Well, Interesting&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;By Evan Jenkins&lt;br /&gt;&lt;br /&gt;Steve Parrott, associate director (later director) for university relations at the University of Iowa, e-mailed to ask, “Please consider a few words on ‘more important / more importantly.’ ”&lt;br /&gt;&lt;br /&gt;Okay. Mr. Parrott had in mind sentences or clauses that begin with one of those phrases, like “Most importantly, the charges are tied directly to the original topic Mr. Starr was supposed to investigate.”&lt;br /&gt;&lt;br /&gt;The short answer is that either form of the word is acceptable. Merriam-Webster’s Dictionary of English Usage (1994) has a lengthy and interesting (really) discussion of the longstanding argument (really) over important vs. importantly, with many citations, and concludes that “both are defensible grammatically and both are in respectable use.”&lt;br /&gt;&lt;br /&gt;The tilt here, though, is toward “importantly.” The adverb can stand alone at the start of a sentence or clause — without “more” or “most” or any other modifier — and the adjective can’t.&lt;br /&gt;&lt;br /&gt;Try it. Drop the “most” from the example quoted above; the sentence still works. Then, with “most” gone, drop the “ly” from “importantly”; the sentence no longer works.&lt;br /&gt;&lt;br /&gt;(Some mindless aversion to “ly” adverbs at the start of a sentence — an extension of misguided rigidity about “importantly”? — must have been at work in the following sentence, since no human being ever spoke this way: “Not surprising, a variety of polls indicate...”)&lt;br /&gt;&lt;br /&gt;The arguments for “most important” are strained, as an e-mail discussion with the freelance copy editor Christy Goldfinch of Fort Worth made clear.&lt;br /&gt;&lt;br /&gt;“Important” commonly fails to modify any specific part of its sentence, so the adjective advocates contend that it can be understood to modify the whole thing — a “sentence adjective.” Well, “importantly” can certainly be called a “sentence adverb.”&lt;br /&gt;&lt;br /&gt;But with “importantly” there’s no need for that dance. The adverb has an element to grab hold of within its sentence, the verb or the overall predicate. (And that, quite apart from any “sentence adverb” justification, makes the literalists’ objection to “hopefully” at the start of a sentence fallacious, as well as outmoded.)&lt;br /&gt;&lt;br /&gt;Another argument for “most important” is that the phrase “What is” is understood to precede it. If that were a natural supposition, all sorts of adjectives (with modifiers) could start sentences. But “Most happy, the storm ended,” just doesn’t make it.&lt;br /&gt;&lt;br /&gt;The “most” approach is acceptable (not preferable) with the one adjective “important” not on logical grounds but because it is widely used and well established. And in passages that start with modifiers ending in “ly” — “equally” comes to mind — using “important” is handy.&lt;/blockquote&gt;&lt;br /&gt;So the consensus is clear. Either &lt;i&gt;more/most importantly&lt;/i&gt; or &lt;i&gt;more/most important&lt;/i&gt; is acceptable, but it is fairly clear that more/most important is the interloper here. Sentence initials are frequently used as absolutes (i.e., they modify the entire sentence rather than any particular part of the sentence). Generally speaking, such absolutes are usually adverbial (in what manner, by what means). To use more/most important as a sentence initial it must be considered elliptical for (What is) &lt;i&gt;more/most important&lt;/i&gt; (is the fact that) ....&lt;br /&gt;&lt;br /&gt;Furthermore, 'importantly' is a synonym of 'significantly'. It is quite natural to say "More significantly, there is no other choice available" — considerably more natural than saying "More significant, there is no other choice available." Initial adverbials used as absolutes are quite common (e.g., "regrettably, curiously, surprisingly). One would never think of replacing them with an adjective:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;Regrettably, his attempt failed.&lt;br /&gt;*Regrettable, his attempt failed.&lt;br /&gt;Curiously, no one was bothered by this.&lt;br /&gt;*Curious, no one was bothered by this.&lt;br /&gt;Surprisingly, the meeting was well attended.&lt;br /&gt;*Surprising, the meeting was well attended.&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;even though doing so could be considered elliptical for (What is) regrettable/curious/surprising (is the fact that) ....&lt;br /&gt;&lt;br /&gt;Extending this to &lt;i&gt;more/most&lt;/i&gt; expressions completes the analogy:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;Regrettably, his attempt failed. More regrettably, he died in the attempt.&lt;br /&gt;*Regrettable, his attempt failed. *More regrettable, he died in the attempt.&lt;br /&gt;Curiously, no one was bothered by this. More curiously, some were even pleased by it.&lt;br /&gt;*Curious, no one was bothered by this. *More curious, some were even pleased by it.&lt;br /&gt;Surprisingly, the meeting was well attended. More surprisingly, no one left before the end.&lt;br /&gt;*Surprising, the meeting was well attended. *More surprising, no one left before the end.&lt;/blockquote&gt;&lt;br /&gt;Thus the elliptical "(What is) {&lt;span style="font-family:ariel;"&gt;adjective&lt;/span&gt;} (is the fact that)..." model is unnatural and there is no doubt that &lt;i&gt;more/most importantly&lt;/i&gt; is the original usage and that &lt;i&gt;more/most important&lt;/i&gt; is no more than an accepted interloper.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-9220584148041631306?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/9220584148041631306/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=9220584148041631306&amp;isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/9220584148041631306'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/9220584148041631306'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2009/03/earnestness-of-being-important.html' title='The Earnestness of being Important'/><author><name>Frankly, my dear, ...</name><uri>http://www.blogger.com/profile/13417982906335528951</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp2.blogger.com/_XIbSGs0jOZA/SBGvFYJKf_I/AAAAAAAAAAM/oYTq4f_irJM/S220/rhett.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-8883997787919802311</id><published>2009-02-18T16:49:00.000-08:00</published><updated>2009-02-18T17:03:06.733-08:00</updated><title type='text'>At last! A president whose sentences might be diagrammed....</title><content type='html'>&lt;p align="center"&gt;&lt;a href="http://3.bp.blogspot.com/_XgbzNgZToiw/SZys5qvuxuI/AAAAAAAAACM/IHWaYPEHbPI/s1600-h/Obama-sentence-diagram.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5304304567862609634" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; WIDTH: 381px; CURSOR: hand; HEIGHT: 566px" alt="" src="http://3.bp.blogspot.com/_XgbzNgZToiw/SZys5qvuxuI/AAAAAAAAACM/IHWaYPEHbPI/s400/Obama-sentence-diagram.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;From Jason Linkins at the Huffington Post...&lt;br /&gt;&lt;br /&gt;Something that most people - even his political opponents - agree on is that President Barack Obama is a fairly gifted orator. On those occasions when he speaks extemporaneously, he still struggles with vocalized pauses - those lengthy "Uhhmmms" and "Errrrrs" - but in general, he can compose articulate sentences and typically does fine work with a prepared speech.&lt;br /&gt;&lt;br /&gt;But is GRAMMAR, itself, in the tank for Obama? Apparently so, and all it takes to reveal this truth is a trip back to the most hated part of your middle school education: sentence diagramming. [At left], &lt;a href="http://www.themillionsblog.com/2009/02/diagramming-obama-sentence.html" peppycount="52"&gt;blogger Garth Risk Hallberg&lt;/a&gt; diagrammed a sentence from Obama's recent press conference - coincidentally, his response to the question put to him by our own Sam Stein:&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;em&gt;&lt;blockquote&gt;&lt;p&gt;&lt;em&gt;My view is also that nobody's above the law, and, if &lt;/em&gt;&lt;em&gt;there are clear instances of wrongdoing, that people should be prosecuted just like any ordinary citizen, but that, generally speaking, I'm more interested in looking forward than I am in looking backwards.&lt;/em&gt;&lt;br /&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/em&gt;&lt;br /&gt;You can read the rest of Linkin's post &lt;a href="http://www.huffingtonpost.com/2009/02/18/what-sentence-diagrams-re_n_167988.html"&gt;here&lt;/a&gt;, including some of Hallberg's analysis... the rest of Hallberg's post may be found &lt;a href="http://www.themillionsblog.com/2009/02/diagramming-obama-sentence.html"&gt;here&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-8883997787919802311?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/8883997787919802311/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=8883997787919802311&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/8883997787919802311'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/8883997787919802311'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2009/02/at-last-president-whose-sentences-might.html' title='At last! A president whose sentences might be diagrammed....'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_XgbzNgZToiw/SZys5qvuxuI/AAAAAAAAACM/IHWaYPEHbPI/s72-c/Obama-sentence-diagram.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-1758570346002443929</id><published>2009-02-11T16:41:00.000-08:00</published><updated>2009-02-11T16:49:26.730-08:00</updated><title type='text'>a new GOP-specific form of aphasia?</title><content type='html'>The inimitable &lt;a href="http://www.huffingtonpost.com/bob-cesca/president-obama-is-litera_b_166152.html"&gt;Bob Cesa, at the Huffington Post&lt;/a&gt;, has published a litany of examples of how the Republican Party is losing its mind, its logic, sense of syntax, etc. Of course, this should not be a surprise, given the past eight years, when their party's leader was one of the most linguistically challenged politicians within memory.&lt;br /&gt;&lt;br /&gt;After giving dozens of examples of plain lunacy-- including a very strange Bushism that was completely new to me and I thought I'd heard them all-- Cesca concludes with the following:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;They have indeed totally lost their shpadoinkle and despite purely involuntary spikes in my blood pressure, it's so much fun to watch. &lt;strong&gt;By successfully debunking their lies, rising above their bait and merely presenting a contrast of character, President Obama is making the Republican A-listers appear small, petty and absolutely befuddled.&lt;/strong&gt; They're frantically struggling to figure out how to counterpunch, so they're grabbing, borrowing or downright plagiarizing ideas from anywhere, irrespective of the general quality of the idea. And if the Republicans are at all interested in continued survival, someone they respect should probably smack their hands and scold: Drop that filthy Limbaugh quote! You don't know where it's been!  [emphasis is mine]&lt;br /&gt;&lt;br /&gt;But if this is their "voice" and they're satisfied with it, I for one welcome the new Republican "voice" and wish them a hearty and very sincere: Good luck with that.&lt;br /&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-1758570346002443929?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/1758570346002443929/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=1758570346002443929&amp;isPopup=true' title='8 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/1758570346002443929'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/1758570346002443929'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2009/02/new-gop-specific-form-of-aphasia.html' title='a new GOP-specific form of aphasia?'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>8</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-4717103267790253517</id><published>2009-01-23T12:24:00.000-08:00</published><updated>2009-01-23T12:27:39.274-08:00</updated><title type='text'>Proof in Japan that we have truly entered a new phase...</title><content type='html'>We &lt;span style="font-style: italic;"&gt;never &lt;/span&gt;could have expected to see a headline similar to this one during the Bush Years...&lt;br /&gt;&lt;h1&gt;&lt;a href="http://www.huffingtonpost.com/2009/01/23/japanese-use-obamas-speec_n_160260.html" id="title_permalink"&gt;Japanese Use Obama's Speeches To Learn English&lt;/a&gt;&lt;/h1&gt;&lt;p&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;TOKYO — Aspiring English speakers in Japan have made President &lt;a id="KonaLink1" target="_top" class="rcLink" style="text-decoration: underline ! important; position: static;" href="http://www.huffingtonpost.com/2009/01/23/japanese-use-obamas-speec_n_160260.html#"&gt;&lt;span style="color: rgb(3, 130, 88) ! important; font-family: Arial,&amp;quot;Helvetica Neue&amp;quot;,Helvetica,sans-serif; font-weight: 400; font-size: 13px; position: static;color:#038258;" &gt;&lt;span class="rcLink" style="color: rgb(3, 130, 88) ! important; font-family: Arial,&amp;quot;Helvetica Neue&amp;quot;,Helvetica,sans-serif; font-weight: 400; font-size: 13px; position: static;"&gt;Barack &lt;/span&gt;&lt;span class="rcLink" style="color: rgb(3, 130, 88) ! important; font-family: Arial,&amp;quot;Helvetica Neue&amp;quot;,Helvetica,sans-serif; font-weight: 400; font-size: 13px; position: static;"&gt;Obama&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;'s book of speeches and accompanying CD a national best-seller.&lt;/p&gt;  &lt;p&gt;In Aichi, central Japan, a Buddhist monk has reportedly been playing the president's speeches during his temple service. And dozens of students in an English-language class in Tokyo have been memorizing his 2004 &lt;a id="KonaLink0" target="_top" class="rcLink" style="text-decoration: underline ! important; position: static;" href="http://www.huffingtonpost.com/2009/01/23/japanese-use-obamas-speec_n_160260.html#"&gt;&lt;span style="color: rgb(3, 130, 88) ! important; font-family: Arial,&amp;quot;Helvetica Neue&amp;quot;,Helvetica,sans-serif; font-weight: 400; font-size: 13px; position: static;color:#038258;" &gt;&lt;span class="rcLink" style="border-bottom: 1px dashed rgb(3, 130, 88); color: rgb(3, 130, 88) ! important; font-family: Arial,&amp;quot;Helvetica Neue&amp;quot;,Helvetica,sans-serif; font-weight: 400; font-size: 13px; position: static; background-color: transparent;"&gt;Democratic &lt;/span&gt;&lt;span class="rcLink" style="border-bottom: 1px dashed rgb(3, 130, 88); color: rgb(3, 130, 88) ! important; font-family: Arial,&amp;quot;Helvetica Neue&amp;quot;,Helvetica,sans-serif; font-weight: 400; font-size: 13px; position: static; background-color: transparent;"&gt;Convention&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; speech to improve their understanding and pronunciation.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Click &lt;a href="http://www.huffingtonpost.com/2009/01/23/japanese-use-obamas-speec_n_160260.html"&gt;here&lt;/a&gt; to read more.&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-4717103267790253517?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/4717103267790253517/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=4717103267790253517&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4717103267790253517'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4717103267790253517'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2009/01/proof-in-japan-that-we-have-truly.html' title='Proof in Japan that we have truly entered a new phase...'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-5072688372410598286</id><published>2008-12-06T21:26:00.000-08:00</published><updated>2008-12-06T22:20:37.561-08:00</updated><title type='text'>Words</title><content type='html'>Just discovered &lt;a href="http://wordie.org/"&gt;this&lt;/a&gt; site, Wordie, which has all sorts of interesting &lt;a href="http://wordie.org/lists/crystalsenterbrowns-list"&gt;lists&lt;/a&gt; with words like &lt;a href="http://wordie.org/words/louche"&gt;&lt;span style="font-style: italic;"&gt;louche&lt;/span&gt;&lt;/a&gt; and &lt;a href="http://wordie.org/words/crepuscular"&gt;&lt;span style="font-style: italic;"&gt;crepuscular&lt;/span&gt;&lt;/a&gt;, and comments like &lt;a href="http://wordie.org/words/rumoured"&gt;this one&lt;/a&gt; about the word &lt;span style="font-style: italic;"&gt;rumored&lt;/span&gt;:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;A highly unusual verb in Present-day English: it has only this one verb form. Although it was historically a full verb with all its parts ('Come hither Catesby, rumor it abroad, That Anne my Wife is very grieuous sicke.'—Richard III, IV.ii), for most of us today it can only be a past participle.&lt;br /&gt;&lt;br /&gt;This raises the question of why it should be counted a verb at all, rather than an adjective: compare 'she was rumoured to be dead', 'she was keen/eager/reluctant to be dead': adjectives can take infinitival clause complements.&lt;br /&gt;&lt;br /&gt;Well last night I found the answer, when I read this sentence opening Dorothy Parker's 'Mrs. Hoftstadter on Josephine Street':&lt;br /&gt;&lt;br /&gt;That summer, the Colonel and I leased a bungalow named 947 West Catalpa Boulevard, rumored completely furnished: three forks, but twenty-four nutpicks.&lt;br /&gt;&lt;br /&gt;'Completely furnished' is an adjective phrase (AdjP), and adjectives can't take AdjP complements, but verbs can: compare *'eager/easy/pleasant completely furnished' with 'considered completely furnished'. And indeed, on checking Google this morning, I find quite a few "was rumoured dead"—not the way I'd say it myself (I'd much prefer to add 'to be'), but common enough to prove it's verbal in Standard English. So, another discovery.&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-5072688372410598286?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/5072688372410598286/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=5072688372410598286&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/5072688372410598286'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/5072688372410598286'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/12/words.html' title='Words'/><author><name>Jeff W</name><uri>http://www.blogger.com/profile/06296663806825685128</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-56391261398692349</id><published>2008-10-03T14:19:00.000-07:00</published><updated>2008-10-03T15:15:51.004-07:00</updated><title type='text'>The Palin Challenge</title><content type='html'>Since our masthead boasts that we &amp;#147;sometimes reminisce about diagramming sentences,&amp;#148; I thought when I came across an article by &lt;a href="http://www.slate.com/id/2201158/"&gt;Kitty Burns Florey&lt;/a&gt; that outlines the perils of trying to diagram the classic Palin utterance that has become the hall- and mintmark of the vice-presidential candidate, that it was something to be shared here.&lt;br /&gt;&lt;br /&gt;One really needs to read Ms Florey's article to get the background, but since she clearly asked for help at one point, it seems a worthwhile project to see if anyone has ideas of how to crack the Palin Challenge.&lt;br /&gt;&lt;br /&gt;From Ms Florey:&lt;br /&gt;&lt;blockquote&gt;&lt;i&gt;Other Palinisms are not so tractable. From &lt;a href="http://www.washingtonpost.com/wp-dyn/content/article/2008/09/12/AR2008091203310.html"&gt;the Charlie Gibson interview&lt;/a&gt;:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;I know that John McCain will do that and I, as his vice president, families we are blessed with that vote of the American people and are elected to serve and are sworn in on January 20, that will be our top priority is to defend the American people.&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;I didn't stop to marvel at the mad thrusting of that pet political watchword "families" into the text. I just rolled up my sleeves and attempted to bring order out of the chaos:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.slate.com/id/2201310/"&gt;&lt;img border=0 align=center width=100% src="http://img.slate.com/media/1/123125/122953/2180638/2201304/081001_GW_sentenceDiagram2.gif"&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I had to give up. This sentence is not for diagramming lightweights. If there's anyone out there who can kick this sucker into line, I'd be delighted to hear from you. To me, it's not English—it's a collection of words strung together to elicit a reaction, floating ands and prepositional phrases ("with that vote of the American people") be damned. It requires not a diagram but a selection of push buttons.&lt;/i&gt;&lt;/blockquote&gt;&lt;br /&gt;There you have it. Anyone who thinks he or she is up to the Palin Challenge is welcome to take a shot at it. Or, if anyone feels the urge to try to diagram any of Palin's other sentences, feel free. Who knows, it might become a growth industry.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-56391261398692349?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/56391261398692349/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=56391261398692349&amp;isPopup=true' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/56391261398692349'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/56391261398692349'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/10/palin-challenge.html' title='The Palin Challenge'/><author><name>Frankly, my dear, ...</name><uri>http://www.blogger.com/profile/13417982906335528951</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp2.blogger.com/_XIbSGs0jOZA/SBGvFYJKf_I/AAAAAAAAAAM/oYTq4f_irJM/S220/rhett.jpg'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-2553011357896041475</id><published>2008-07-21T13:03:00.000-07:00</published><updated>2008-07-21T13:08:11.890-07:00</updated><title type='text'>Quotes of the week...</title><content type='html'>from Don Eggen at &lt;a style="color: rgb(51, 102, 255);" href="http://www.washingtonpost.com/wp-dyn/content/article/2008/07/20/AR2008072001707_2.html"&gt;The Washington Post&lt;/a&gt;:&lt;br /&gt;&lt;blockquote&gt;&lt;p&gt; &lt;span style="color: rgb(0, 0, 0);font-family:Arial,Helvetica;" &gt; &lt;b style="font-size: 15px;"&gt;Quote of the Week No. 1&lt;/b&gt;&lt;br /&gt;&lt;!-- BREAK --&gt;&lt;/span&gt; &lt;/p&gt; &lt;p&gt; "Well, you know, God bless him, bless his heart, the president of the United States, a total failure, losing all credibility with the American people on the economy, on the war, on energy, you name the subject, and for him to be challenging Congress when we are trying to sweep up after his mess over and over and over again." &lt;/p&gt; &lt;p&gt; &lt;i&gt;-- &lt;/i&gt;&lt;i&gt;&lt;a href="http://projects.washingtonpost.com/congress/members/p000197/" target=""&gt;House Speaker Nancy Pelosi&lt;/a&gt;&lt;/i&gt;&lt;i&gt; (D-Calif.), when asked by CNN about Bush's criticism of Congress&lt;/i&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(0, 0, 0);font-family:Arial,Helvetica;" &gt; &lt;b style="font-size: 15px;"&gt;Quote of the Week No. 2&lt;/b&gt;&lt;br /&gt;&lt;!-- BREAK --&gt;&lt;/span&gt; &lt;/p&gt; &lt;p&gt; "And they have no disregard for human life." &lt;/p&gt; &lt;p&gt; -- &lt;i&gt;&lt;a href="http://www.washingtonpost.com/ac2/related/topic/George+W.+Bush?tid=informline" target=""&gt;President Bush&lt;/a&gt;&lt;/i&gt;&lt;i&gt;, referring to enemy fighters in Afghanistan&lt;/i&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;i&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Don't you just love the English language and all of its little idiosyncracies? I know I do.&lt;i&gt;&lt;br /&gt;&lt;/i&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-2553011357896041475?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/2553011357896041475/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=2553011357896041475&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/2553011357896041475'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/2553011357896041475'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/07/quotes-of-week.html' title='Quotes of the week...'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-2601642150133294674</id><published>2008-07-21T10:57:00.000-07:00</published><updated>2008-07-21T11:29:00.277-07:00</updated><title type='text'>the Myth of Centrism</title><content type='html'>&lt;span style="font-size:100%;"&gt;Definitions of &lt;b&gt;centrism&lt;/b&gt; on the &lt;a style="color: rgb(51, 102, 255);" href="http://www.google.com/search?hl=en&amp;amp;defl=en&amp;amp;q=define:centrism&amp;amp;sa=X&amp;amp;oi=glossary_definition&amp;amp;ct=title"&gt;the web&lt;/a&gt;:&lt;/span&gt;&lt;br /&gt;&lt;span style=""&gt;&lt;/span&gt;&lt;blockquote&gt;&lt;span style=""&gt;&lt;li&gt;a political philosophy of avoiding the extremes of left and right by taking a moderate position or course of action&lt;br /&gt;&lt;a style="color: rgb(51, 102, 255);" href="http://www.google.com/url?sa=X&amp;amp;start=0&amp;amp;oi=define&amp;amp;q=http://wordnet.princeton.edu/perl/webwn%3Fs%3Dcentrism&amp;amp;usg=AFQjCNESniXk8wsnmmtNY-44vXq2wp8q0w"&gt;wordnet.princeton.edu/perl/webwn&lt;/a&gt;&lt;/li&gt;&lt;/span&gt;&lt;span style=""&gt;&lt;li&gt;In politics, centrism usually refers to the political ideal of promoting moderate policies which land in the middle ground between different political extremes. ...&lt;br /&gt;&lt;a style="color: rgb(51, 102, 255);" href="http://www.google.com/url?sa=X&amp;amp;start=1&amp;amp;oi=define&amp;amp;q=http://en.wikipedia.org/wiki/Centrism&amp;amp;usg=AFQjCNGRMvxwXsZ8fIn48yfTVPuRDw0W0g"&gt;en.wikipedia.org/wiki/Centrism&lt;/a&gt;&lt;/li&gt;&lt;/span&gt;&lt;span style=""&gt;&lt;li&gt;Any moderate political philosophy that avoids extremes&lt;/li&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;span style=""&gt;But, as George Lakoff knows, that center is something of a myth.&lt;br /&gt;&lt;br /&gt;Jim White (noted UT commenter) attended Netroots 08, and shared with us in a post at AchievingOurCountry his experience at a session videotaped for DFA's night school. The session was based on work from Lakoff's latest book, The Political Mind.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;Jim writes:&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size:100%;"&gt;&lt;/span&gt;&lt;blockquote&gt;&lt;span style="font-size:100%;"&gt;To illustrate the concept that there is not a linear scale, Lakoff holds up the brilliant example of Senators Joe Lieberman and Chuck Hagel.&lt;/span&gt;&lt;span style="font-size:100%;"&gt;  &lt;/span&gt;&lt;span style="font-size:100%;"&gt;The popular press incessantly describes both as “centrists”, yet they share virtually no views.&lt;/span&gt;&lt;span style="font-size:100%;"&gt;  &lt;/span&gt;&lt;span style="font-size:100%;"&gt;On social issues, Lieberman is consistently progressive and Hagel is solidly conservative.&lt;/span&gt;&lt;span style="font-size:100%;"&gt;  &lt;/span&gt;&lt;span style="font-size:100%;"&gt;On the war, Lieberman is conservative and Hagel is progressive.&lt;/span&gt;&lt;span style="font-size:100%;"&gt;  &lt;/span&gt;&lt;span style="font-size:100%;"&gt;They share views on nothing, yet both are branded as centrists.&lt;/span&gt;&lt;span style="font-size:100%;"&gt;  &lt;/span&gt;&lt;span style="font-size:100%;"&gt;How can there be such a thing as a centrist, or a center, if these two agree on nothing?&lt;/span&gt;&lt;/blockquote&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;And isn't it interesting how often we use words that are just as likely to be Reality-challenged as if they were everyday items? As if they were things that you can use and touch.&lt;br /&gt;&lt;br /&gt;So, that mythic centrist space doesn't really exist, especially not as a spot in one-dimensional space. After all, in politics, even three dimensions can seem inadequate for describing what the hell is going on. &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-family:times new roman;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-2601642150133294674?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/2601642150133294674/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=2601642150133294674&amp;isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/2601642150133294674'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/2601642150133294674'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/07/myth-of-centrism.html' title='the Myth of Centrism'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-1111708563076714290</id><published>2008-06-27T11:30:00.000-07:00</published><updated>2008-06-27T11:58:42.849-07:00</updated><title type='text'>To Karen.  Thanks.</title><content type='html'>&lt;span&gt;Thus far, with rough and all un-able pen,&lt;/span&gt;&lt;br /&gt;&lt;span&gt;Our bending author hath pursued the story,&lt;/span&gt;&lt;br /&gt;&lt;span&gt;In small room confining mighty men,&lt;/span&gt;&lt;br /&gt;&lt;span&gt;Mangling by starts the full course of their glory.&lt;/span&gt;&lt;br /&gt;&lt;span&gt;Small time ...&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-1111708563076714290?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/1111708563076714290/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=1111708563076714290&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/1111708563076714290'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/1111708563076714290'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/06/to-karen-thanks.html' title='To Karen.  Thanks.'/><author><name>dirigo</name><uri>http://www.blogger.com/profile/16223859921847950971</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-1412532571784462061</id><published>2008-06-08T01:26:00.000-07:00</published><updated>2008-06-08T03:45:26.659-07:00</updated><title type='text'>Reckless at Any Speech</title><content type='html'>One commenter over at &lt;span style="font-style:italic;"&gt;Daily Kos&lt;/span&gt; &lt;a href="http://www.dailykos.com/comments/2008/6/4/72023/54133/193#c193"&gt;pointed out&lt;/a&gt; this sentence in John McCain's &lt;a href="http://www.huffingtonpost.com/2008/06/03/the-lime-green-monster-mc_n_105044.html"&gt;trainwreck&lt;/a&gt; of a speech Tuesday night:&lt;blockquote&gt;I don’t oppose a reckless withdrawal from Iraq because I’m indifferent to the suffering war inflicts on too many American families.&lt;/blockquote&gt;While I would not characterize this sentence as a "major gaffe"—it's more like some loopy &lt;a href="http://en.wikipedia.org/wiki/Garden_path_sentence"&gt;garden path sentence&lt;/a&gt;—(and this is, after all, John McCain, and the campaign has just begun), I somehow enjoy imagining, say, &lt;a href="http://www.npr.org/templates/story/story.php?storyId=6444183"&gt;Dennis Steele&lt;/a&gt; in some ad, solemnly intoning:&lt;blockquote&gt;John McCain: He said he was indifferent to the suffering that the Iraq War inflicts on many American families. And, therefore, he would not oppose even a reckless withdrawal from Iraq. John McCain. Reckless. Indifferent. That's not a leader we can believe in.&lt;/blockquote&gt;One might have hoped for some attempt at an elegant &lt;a href="http://www.figarospeech.com/it-figures/2005/8/4/suffer-the-little-stem-cells.html"&gt;syncrisis&lt;/a&gt;—I don't oppose &lt;i&gt;X&lt;/i&gt; because &lt;i&gt;Y&lt;/i&gt;; I oppose &lt;i&gt;X&lt;/i&gt; because…—but, well, that might have raised the question of what sort of withdrawal John McCain &lt;i&gt;could&lt;/i&gt; support or, perhaps, if he could support any type of withdrawal at all.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-1412532571784462061?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/1412532571784462061/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=1412532571784462061&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/1412532571784462061'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/1412532571784462061'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/06/reckless-at-any-speech.html' title='Reckless at Any Speech'/><author><name>Jeff W</name><uri>http://www.blogger.com/profile/06296663806825685128</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-4873724222028620000</id><published>2008-06-03T08:57:00.000-07:00</published><updated>2008-12-12T22:49:31.309-08:00</updated><title type='text'>I know what it says, but what does it mean?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_XIbSGs0jOZA/SEVtS-LLyzI/AAAAAAAAAAY/1OVyhRQIKsk/s1600-h/mccain-lieberman-graham.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_XIbSGs0jOZA/SEVtS-LLyzI/AAAAAAAAAAY/1OVyhRQIKsk/s320/mccain-lieberman-graham.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5207688716818828082" /&gt;&lt;/a&gt;&lt;br /&gt;On the subject of rhetorical devices, here, by popular demand, is my vision of what the ultimate anti-McCain campaign ad would look like:&lt;br /&gt;&lt;blockquote&gt;&lt;i&gt;Actual news footage &amp;mdash; McCain standing at the microphone, Joe Lieberman in the background.&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;MCCAIN: "Well, it’s common knowledge and has been reported in the media that Al Qaeda is going back into Iran and receiving training and are coming back into Iraq from Iran. That’s well known. And it’s unfortunate."&lt;br /&gt;&lt;br /&gt;&lt;i&gt;Lieberman steps forward, takes McCain by the arm, and whispers in McCain's ear.&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;MCCAIN: "I’m sorry, the Iranians are training extremists, not Al Qaeda."&lt;br /&gt;&lt;br /&gt;&lt;i&gt;The scene shifts; a child is in bed sleeping; in the background a phone is ringing.&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;NARRATOR: "It's 3:00 AM and your children are safely asleep. But somewhere in the White House a phone is ringing. Something is wrong in the world. Who's going to answer that phone?"&lt;br /&gt;&lt;br /&gt;&lt;i&gt;Still shot of Lieberman whispering in McCain's ear (above)&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;NARRATOR: "What if it's John McCain and Joe Lieberman isn't there to tell him what to say?"&lt;br /&gt;&lt;br /&gt;&lt;i&gt;Fade to text: &lt;/i&gt;&lt;br&gt;&lt;font face=arial&gt;&lt;b&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;THE PRESIDENT OF THE UNITED STATES&lt;br&gt;&amp;nbsp;NEEDS TO KNOW WHAT HE'S TALKING ABOUT&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;AS WELL AS WHAT HE'S SAYING.&lt;/b&gt;&lt;/font&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-4873724222028620000?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/4873724222028620000/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=4873724222028620000&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4873724222028620000'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4873724222028620000'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/06/i-know-what-it-says-but-what-does-it.html' title='I know what it says, but what does it mean?'/><author><name>Frankly, my dear, ...</name><uri>http://www.blogger.com/profile/13417982906335528951</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp2.blogger.com/_XIbSGs0jOZA/SBGvFYJKf_I/AAAAAAAAAAM/oYTq4f_irJM/S220/rhett.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_XIbSGs0jOZA/SEVtS-LLyzI/AAAAAAAAAAY/1OVyhRQIKsk/s72-c/mccain-lieberman-graham.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-4407712738967288215</id><published>2008-05-26T08:23:00.000-07:00</published><updated>2008-05-28T13:52:36.368-07:00</updated><title type='text'>A Free Press</title><content type='html'>In honor of Glenn's two most recent posts (&lt;a href="http://www.salon.com/opinion/greenwald/2008/05/28/gibson/index.html"&gt;here&lt;/a&gt; and &lt;a href=""&gt;here&lt;/a&gt;), I thought I'd post this little homily on the role of a free press in a democracy. While it may look like a handout for a ninth grade civics class, the source may surprise you.&lt;br /&gt;&lt;br /&gt;&lt;i&gt;A Free Press&lt;br /&gt;&lt;br /&gt;In a democracy the press should operate free from governmental control. Democratic governments do not have ministries of information to regulate content of newspapers or the activities of journalists; requirements that journalists be vetted by the state; or force journalists to join government-controlled unions.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;A free press informs the public, holds leaders accountable, and provides a forum for debate of local and national issues.&lt;br /&gt;&lt;br /&gt;&lt;li&gt;Democracies foster the existence of a free press. An independent judiciary, civil society with rule of law, and free speech all support a free press. A free press must have legal protections.&lt;br /&gt;&lt;br /&gt;&lt;li&gt;In democracies the government is accountable for its actions. Citizens therefore expect to be informed about decisions their governments make on their behalf. The press facilitates this &amp;#147;right to know,&amp;#148; by serving as a watchdog over the government, helping citizens to hold government accountable, and questioning its policies. Democratic governments grant journalists access to public meetings and public documents. They do not place prior restraints on what journalists may say or print.&lt;br /&gt;&lt;br /&gt;&lt;li&gt;The press, itself, must act responsibly. Through professional associations, independent press councils, and &amp;#147;ombudsmen,&amp;#148; in-house critics who hear public complaints, the press responds to complaints of its own excesses and remains internally accountable.&lt;br /&gt;&lt;br /&gt;&lt;li&gt;Democracy requires the public to make choices and decisions. In order for the public to trust the press, journalists must provide factual reporting based on credible sources and information. Plagiarism and false reporting are counterproductive to a free press.&lt;br /&gt;&lt;br /&gt;&lt;li&gt;Press outlets should establish their own editorial boards, independent of government control, in order to separate information gathering and dissemination from editorial processes.&lt;br /&gt;&lt;br /&gt;&lt;li&gt;Journalists should not be swayed by public opinion, only by the pursuit of truth, as close as they can get to it. A democracy allows the press to go about its business of collecting and reporting the news without fear or favor from the government.&lt;br /&gt;&lt;br /&gt;&lt;li&gt;Democracies foster a never-ending struggle between two rights: The government&amp;#146;s obligation to protect national security; and the people&amp;#146;s right to know, based on journalists&amp;#146; ability to access information. Governments sometimes need to limit access to information considered too sensitive for general distribution. But journalists in democracies are fully justified in pursuing such information.&lt;/i&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr height=1 width=25%&gt;&lt;br /&gt;Yeah, well, you say, everyone should know this, and, yes, everyone should. This is basic ninth grade civics. But just run through these points and see how many our &amp;#147;free press&amp;#148; and our &amp;#147;democratic government&amp;#148; violate or ignore.&lt;br /&gt;&lt;br /&gt;But what, you say, is the point in posting this if this is something everyone knows? The point lies not in the information itself, but in its source: &lt;a href="http://usinfo.state.gov/products/pubs/principles/freepress.htm"&gt;http://usinfo.state.gov/products/pubs/principles/freepress.htm&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;That's right, this little homily on the role of a free press in a democracy is part of the State Department's primer on democracy — what we preach to the rest of the world while at home the government assiduously goes about subverting and suborning the press. Yes, the same State Department that hires Blackwater, Inc. to massacre Iraqi civilians (or at least doesn't fire them when they do).&lt;br /&gt;&lt;br /&gt;Well, you say, since the government and the press are supposed to be adversaries shouldn't the government try to subvert and suborn the press? The answer is, not in a democracy according to the USDOS. Consider the following quotations from the above: &amp;#147;&lt;i&gt;Democratic governments grant journalists access to public meetings and public documents. They do not place prior restraints on what journalists may say or print&lt;/i&gt;&amp;#148; and &amp;#147;&lt;i&gt;A democracy allows the press to go about its business of collecting and reporting the news without fear or favor from the government&lt;/i&gt;.&amp;#148;&lt;br /&gt;&lt;br /&gt;Perhaps a little statement to the effect that &amp;#147;the press should expect the government will try to subvert and suborn it&amp;#148; would be a helpful warning to a press that seems to be so easily subverted and suborned.&lt;br /&gt;&lt;br /&gt;So long as the press is willing to provide favorable coverage of the government in exchange for access, we do not have a free press or a democratic government. A democratic government is supposed to provide access to journalists regardless (&amp;#147;&lt;i&gt;no prior restraints&lt;/i&gt;&amp;#148; and &amp;#147;&lt;i&gt;without fear or favor&lt;/i&gt;&amp;#148;). The State Department says so (just not for domestic consumption).&lt;br /&gt;&lt;br /&gt;And note particularly the final paragraph concerning the admission that &amp;#147;&lt;i&gt;journalists in democracies are fully justified in pursuing such&lt;/i&gt; [national security]&lt;i&gt; information&lt;/i&gt;&amp;#148; and compare that with &lt;a href="http://thinkprogress.org/2007/12/29/kristol-v-nyt/"&gt;the insistence of Billy Kristol that the NY Times be prosecuted for publishing national security information&lt;/a&gt; (that coincidentally revealed that the president of the US was a felon). Why has the State Department never explained to Billy Kristol the duties and responsibilities of the journalist in a democracy as they themselves promulgate them? Does no one in the State Department ever speak to Kristol?&lt;br /&gt;&lt;br /&gt;[Sorry, I couldn't find any way to work language and grammar into this; someone else will have to do that.]&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-4407712738967288215?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://usinfo.state.gov/products/pubs/principles/freepress.htm' title='A Free Press'/><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/4407712738967288215/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=4407712738967288215&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4407712738967288215'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4407712738967288215'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/05/free-press.html' title='A Free Press'/><author><name>Frankly, my dear, ...</name><uri>http://www.blogger.com/profile/13417982906335528951</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp2.blogger.com/_XIbSGs0jOZA/SBGvFYJKf_I/AAAAAAAAAAM/oYTq4f_irJM/S220/rhett.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-7936033704729462141</id><published>2008-04-28T06:52:00.000-07:00</published><updated>2008-05-09T04:09:20.157-07:00</updated><title type='text'>Vapid is as vapid does</title><content type='html'>From KarenM in comments:&lt;br&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;i&gt;Perhaps it's time for a post about synonyms for vapid?&lt;/i&gt;&lt;/blockquote&gt;&lt;br /&gt;Good idea! Here's my list:&lt;br&gt;&lt;br /&gt;Vapid:&lt;br /&gt;&lt;table border="0"&gt;&lt;br /&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;i&gt;insipid&lt;/i&gt;&lt;/td&gt;&lt;td&gt;&lt;i&gt;flat&lt;/i&gt;&lt;/td&gt;&lt;td&gt;&lt;i&gt;lifeless&lt;/i&gt;&lt;/td&gt;&lt;td&gt;&lt;i&gt;dull&lt;/i&gt;&lt;/td&gt;&lt;/tr&gt;&lt;br /&gt;&lt;tr&gt;&lt;td&gt;&lt;i&gt;boring&lt;/i&gt;&lt;/td&gt;&lt;td&gt;&lt;i&gt;trite&lt;/i&gt;&lt;/td&gt;&lt;td&gt;&lt;i&gt;banal&lt;/i&gt;&lt;/td&gt;&lt;td&gt;&lt;i&gt;uninspiring&lt;/i&gt;&lt;/td&gt;&lt;/tr&gt;&lt;br /&gt;&lt;tr&gt;&lt;td&gt;&lt;i&gt;flavorless&lt;/i&gt;&lt;/td&gt;&lt;td&gt;&lt;i&gt;tedious&lt;/i&gt;&lt;/td&gt;&lt;td&gt;&lt;i&gt;listless&lt;/i&gt;&lt;/td&gt;&lt;td&gt;&lt;i&gt;tiresome&lt;/i&gt;&lt;/td&gt;&lt;/tr&gt;&lt;br /&gt;&lt;tr&gt;&lt;td&gt;&lt;i&gt;spiritless&lt;/i&gt;&lt;/td&gt;&lt;td&gt;&lt;i&gt;prosaic&lt;/i&gt;&lt;/td&gt;&lt;td&gt;&lt;i&gt;unanimated&lt;/i&gt;&lt;/td&gt;&lt;td&gt;&lt;i&gt;tasteless&lt;/i&gt;&lt;/td&gt;&lt;tr&gt;&lt;br /&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Anybody else?&lt;br /&gt;&lt;hr size=1 width=50%&gt;&lt;br /&gt;Additions from comments (5/9/08):&lt;br /&gt;&lt;table border="0"&gt;&lt;br /&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;i&gt;vacuous&lt;/i&gt;&lt;/td&gt;&lt;td&gt;&lt;i&gt;tired&lt;/i&gt;&lt;/td&gt;&lt;td&gt;&lt;i&gt;hackneyed&lt;/i&gt;&lt;/td&gt;&lt;td&gt;&lt;i&gt;uninspired&lt;/i&gt;&lt;/td&gt;&lt;/tr&gt;&lt;br /&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-7936033704729462141?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/7936033704729462141/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=7936033704729462141&amp;isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/7936033704729462141'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/7936033704729462141'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/04/vapid-is-as-vapid-does.html' title='Vapid is as vapid does'/><author><name>Frankly, my dear, ...</name><uri>http://www.blogger.com/profile/13417982906335528951</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp2.blogger.com/_XIbSGs0jOZA/SBGvFYJKf_I/AAAAAAAAAAM/oYTq4f_irJM/S220/rhett.jpg'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-362108102677667813</id><published>2008-04-24T11:44:00.000-07:00</published><updated>2008-04-24T12:28:33.987-07:00</updated><title type='text'>Forcing vs. Pouring?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://blogs.law.harvard.edu/stoptorture/files/2007/10/waterboarding-in-vietnam.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;" src="http://blogs.law.harvard.edu/stoptorture/files/2007/10/waterboarding-in-vietnam.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;From a diary at Kos by Elsinora... &lt;span style="font-size:85%;"&gt;transcript from &lt;a style="color: rgb(51, 51, 255);" href="http://www.washingtonpost.com/wp-dyn/content/blog/2008/04/24/BL2008042401889_5.html"&gt;Dan Froomkin's column&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;p&gt;&lt;span style="font-size:100%;"&gt; &lt;span style="font-weight: bold; color: rgb(153, 153, 153);"&gt;Ashcroft:&lt;/span&gt; "Now, listen here. You're comparing apples and oranges, apples and oranges. We don't do anything like what you described." &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold; color: rgb(153, 153, 153);"&gt;Elsinora:&lt;/span&gt; "I'm sorry, I was under the impression that we still use the method of &lt;/span&gt;&lt;span style="font-weight: bold;font-size:100%;" &gt;putting a cloth over someone's face and pouring water down their throat&lt;/span&gt;&lt;span style="font-size:100%;"&gt;. . . . " &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold; color: rgb(153, 153, 153);"&gt;Ashcroft:&lt;/span&gt; "'Pouring'! 'Pouring'! Did you hear what she said?: 'Putting a cloth over someone's face and pouring water on them.' That's not what you said before! Read that again, what you said before [about the Asano case]!" &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold; color: rgb(153, 153, 153);"&gt;Elsinora:&lt;/span&gt; "'&lt;/span&gt;&lt;span style="font-weight: bold;font-size:100%;" &gt;The victim was bound or otherwise secured in a prone position&lt;/span&gt;&lt;span style="font-size:100%;"&gt;; and &lt;/span&gt;&lt;span style="font-weight: bold;font-size:100%;" &gt;water was forced through his mouth and nostrils into his lungs and stomach&lt;/span&gt;&lt;span style="font-size:100%;"&gt;.'" &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold; color: rgb(153, 153, 153);"&gt;Ashcroft:&lt;/span&gt; "You hear that? You hear it? 'Forced'! If you can't tell the difference between forcing and pouring. . . . Does this college have an anatomy class?&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:100%;"&gt;If you can't tell the difference between forcing and pouring. . . . "&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;pour&lt;/strong&gt;&lt;br /&gt;v 1: cause to run; of liquids&lt;br /&gt;2: &lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold;"&gt;move in large numbers&lt;/span&gt;; "people were pouring out&lt;br /&gt;of the theater" [syn: &lt;a href="http://dictionary.die.net/swarm"&gt;swarm&lt;/a&gt;, &lt;a href="http://dictionary.die.net/stream"&gt;stream&lt;/a&gt;]&lt;br /&gt;3: pour out; of wines or sherry [syn: &lt;a href="http://dictionary.die.net/decant"&gt;decant&lt;/a&gt;, &lt;a href="http://dictionary.die.net/pour%20out"&gt;pour out&lt;/a&gt;]&lt;br /&gt;4: &lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold;"&gt;flow in a spurt&lt;/span&gt;; of liquids&lt;br /&gt;5: &lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold;"&gt;supply in large amounts or quantities&lt;/span&gt;: "We poured&lt;br /&gt;money into the education of our children"&lt;br /&gt;6: &lt;/span&gt;&lt;span style="font-weight: bold;font-size:100%;" &gt;rain heavily&lt;/span&gt;&lt;span style="font-size:100%;"&gt;; "Put on your rain coat-- it's&lt;br /&gt;pouring outside!"&lt;br /&gt;[syn: &lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-size:85%;"&gt;&lt;a style="font-weight: bold;" href="http://dictionary.die.net/pelt"&gt;pelt&lt;/a&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;, &lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;a style="font-weight: bold;" href="http://dictionary.die.net/stream"&gt;stream&lt;/a&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;, &lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;a style="font-weight: bold;" href="http://dictionary.die.net/rain%20cats%20and%20dogs"&gt;rain cats and dogs&lt;/a&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;,&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;a style="font-weight: bold;" href="http://dictionary.die.net/rain%20buckets"&gt; rain&lt;/a&gt; &lt;a style="font-weight: bold;" href="http://dictionary.die.net/rain%20buckets"&gt;buckets&lt;/a&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-size:85%;"&gt;]&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;p&gt; &lt;/p&gt;  &lt;div id="admiddle"&gt; &lt;script type="text/javascript"&gt;&lt;!-- google_ad_client = "pub-5823754184406795"; google_ad_slot = "7241899208"; google_ad_width = 300; google_ad_height = 250; //--&gt; &lt;/script&gt;&lt;/div&gt;&lt;pre&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;&lt;strong&gt;force&lt;/strong&gt;&lt;/strong&gt;&lt;br /&gt;v 1: to cause to do through pressure or necessity, by&lt;br /&gt;physical, moral or intellectual means :"She forced him&lt;br /&gt;to take a job in the city" [syn: &lt;a href="http://dictionary.die.net/coerce"&gt;coerce&lt;/a&gt;, &lt;a href="http://dictionary.die.net/hale"&gt;hale&lt;/a&gt;, &lt;a href="http://dictionary.die.net/pressure"&gt;pressure&lt;/a&gt;]&lt;br /&gt;2: urge or force (a person) to an action; constrain or&lt;br /&gt;motivate&lt;br /&gt;[syn: &lt;a href="http://dictionary.die.net/impel"&gt;impel&lt;/a&gt;]&lt;br /&gt;3: move with force, "He pushed the table into a corner"&lt;br /&gt;[syn: &lt;a href="http://dictionary.die.net/push"&gt;push&lt;/a&gt;] [ant: &lt;a href="http://dictionary.die.net/pull"&gt;pull&lt;/a&gt;]&lt;br /&gt;4: impose or thrust urgently, importunately, or inexorably;&lt;br /&gt;"She forced her diet fads on him" [syn: &lt;a href="http://dictionary.die.net/thrust"&gt;thrust&lt;/a&gt;]&lt;br /&gt;5: squeeze like a wedge into a tight space; "I squeezed&lt;br /&gt;myself into the corner" [syn: &lt;a href="http://dictionary.die.net/wedge"&gt;wedge&lt;/a&gt;, &lt;a href="http://dictionary.die.net/squeeze"&gt;squeeze&lt;/a&gt;]&lt;br /&gt;6: force into or from an action or state, either&lt;br /&gt;physically or metaphorically; "She rammed her mind into&lt;br /&gt;focus"; "He drives me mad" [syn: &lt;a href="http://dictionary.die.net/drive"&gt;drive&lt;/a&gt;, &lt;a href="http://dictionary.die.net/ram"&gt;ram&lt;/a&gt;]&lt;br /&gt;7: do forcibly; exert force; "Don't force it!"&lt;br /&gt;8: cause to move along the ground by pulling; "draw&lt;br /&gt;a wagon"; "pull a sled" [syn: &lt;a href="http://dictionary.die.net/pull"&gt;pull&lt;/a&gt;, &lt;a href="http://dictionary.die.net/draw"&gt;draw&lt;/a&gt;] [ant: &lt;a href="http://dictionary.die.net/push"&gt;push&lt;/a&gt;]&lt;br /&gt;9: take by force; "Storm the fort" [syn: &lt;a href="http://dictionary.die.net/storm"&gt;storm&lt;/a&gt;]&lt;/span&gt; &lt;!-- google_ad_section_end --&gt;&lt;a style="font-family: trebuchet ms;" href="http://www.blogger.com/blogs.law.harvard.edu"&gt;&lt;/a&gt;&lt;br /&gt;&lt;/pre&gt;&lt;div style="text-align: right;"&gt;&lt;span style="font-size:85%;"&gt;&lt;/span&gt; &lt;div style="text-align: left;"&gt;I guess if it will ease Ashcroft's mind semantically, we can agree on using some variation of &lt;span style="font-style: italic;"&gt;forcibly pouring&lt;/span&gt;, or &lt;span style="font-style: italic;"&gt;poured by force&lt;/span&gt;. However, the words and phrases emphasized above should have sufficed.&lt;br /&gt;&lt;br /&gt;And, perhaps Knox College will, in future, make sure that the distinction between pouring and forcing is added to their anatomy curriculum. &lt;span style="color: rgb(153, 153, 153); font-weight: bold;font-size:85%;" &gt;[/sarcasm]&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;span style=";font-family:trebuchet ms;font-size:85%;"  &gt;Definitions: http://dictionary.die.net/ &lt;/span&gt;&lt;span style=";font-family:trebuchet ms;font-size:85%;"  &gt;&lt;br /&gt;Image: "Waterboarding in Vietnam," &lt;/span&gt;&lt;span style=";font-family:trebuchet ms;font-size:85%;"  &gt;from &lt;/span&gt;&lt;span style=";font-family:trebuchet ms;font-size:85%;"  &gt;&lt;a href="http://www.blogger.com/blogs.law.harvard.edu"&gt;Stop Torture: the Harvard anti-Torture Coalition&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-362108102677667813?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/362108102677667813/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=362108102677667813&amp;isPopup=true' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/362108102677667813'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/362108102677667813'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/04/forcing-vs-pouring.html' title='Forcing vs. Pouring?'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-8789256581926848161</id><published>2008-04-19T19:01:00.000-07:00</published><updated>2008-04-19T19:10:37.693-07:00</updated><title type='text'>Elites and Elitism</title><content type='html'>Time to reclaim these words. They don't really sustain their proper meanings when applied, e.g., to our esteemed Press.&lt;br /&gt;&lt;br /&gt;"Elites," as I understand the term, are the cream of the crop, those with expertise to share, and with verifiable discernment. Journalism's true elites are &lt;span style="font-style: italic;"&gt;not &lt;/span&gt;those who think it is too difficult to do actual research, or that they merely have to present two opposing views, no matter the facts of the case, in order to be objective. Nor do they think that facts have a liberal bias, but rather understand they are simply based in Reality.&lt;br /&gt;&lt;br /&gt;"Elites" may or may not belong to the uppermost income brackets. Although they often do, belonging to that bracket does not automatically confer "elitism" on a person; nor should it. Merit also counts.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-8789256581926848161?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/8789256581926848161/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=8789256581926848161&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/8789256581926848161'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/8789256581926848161'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/04/elites-and-elitism.html' title='Elites and Elitism'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-6114265625208613924</id><published>2008-04-05T09:11:00.000-07:00</published><updated>2008-04-07T05:18:31.496-07:00</updated><title type='text'>Can someone suggest to Glenn that he find a new word to characterize America's press coverage?</title><content type='html'>While Glenn's regular use of the adjective "vapid" to describe the writings of the mainstream media is a completely apt descrption, he needs to insert a little variation into his narrative or else he's creating his own google bomb. If you google greenwald vapid, you get about 20,000 hits. An occasional post without "vapid", using instead some equally valid synonym such as "insipid", "pointless", "inane", "lifeless", or "tiresome", probably wouldn't damage the thrust of Glenn's prose and might even make it less predictable and, heaven forbid, "vapid".&lt;br /&gt;On the other hand, perhaps Glenn intends for "vapid" to become a signature word, so that "vapid press coverage" is automatically associated with Greenwald much as &lt;i&gt;Carthago delenda est&lt;/i&gt; calls to mind Cato the Elder. If so, he's well on his way.&lt;br /&gt;(Update 4/6/08): Never mind. I've just read &lt;a href="http://www.salon.com/opinion/greenwald/2008/04/06/mukasey/index.html"&gt;Glenn's post on the AP fluff piece on AG Mukasey&lt;/a&gt; and there really is no other word for it than vAPid.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-6114265625208613924?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/6114265625208613924/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=6114265625208613924&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/6114265625208613924'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/6114265625208613924'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/04/can-someone-suggest-to-glenn-that-he.html' title='Can someone suggest to Glenn that he find a new word to characterize America&apos;s press coverage?'/><author><name>Frankly, my dear, ...</name><uri>http://www.blogger.com/profile/13417982906335528951</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp2.blogger.com/_XIbSGs0jOZA/SBGvFYJKf_I/AAAAAAAAAAM/oYTq4f_irJM/S220/rhett.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-1206587047455931443</id><published>2008-03-08T14:17:00.000-08:00</published><updated>2008-03-08T14:23:05.734-08:00</updated><title type='text'>A Call for Support...</title><content type='html'>&lt;object height="370" width="530"&gt;&lt;param name="movie" value="http://www.youtube.com/p/0DC98F9E958418FB"&gt;&lt;embed src="http://www.youtube.com/p/0DC98F9E958418FB" type="application/x-shockwave-flash" height="370" width="530"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-1206587047455931443?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/1206587047455931443/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=1206587047455931443&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/1206587047455931443'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/1206587047455931443'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/03/blog-post.html' title='A Call for Support...'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-8477022840394032584</id><published>2008-03-03T19:50:00.001-08:00</published><updated>2008-12-12T22:49:31.354-08:00</updated><title type='text'>Another way to support Black Flag Week...</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_XgbzNgZToiw/R832GXOsHII/AAAAAAAAABs/4ODlhOu94qw/s1600-h/BlackFlagWeekWebsiteAdVertical.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_XgbzNgZToiw/R832GXOsHII/AAAAAAAAABs/4ODlhOu94qw/s400/BlackFlagWeekWebsiteAdVertical.jpg" alt="" id="BLOGGER_PHOTO_ID_5174062136093842562" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: left;"&gt;&lt;a href="http://blogs.salon.com/0004000/images/BlackFlagWeekWebsiteAd.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; width: 400px; text-align: center;" alt="" src="http://blogs.salon.com/0004000/images/BlackFlagWeekWebsiteAd.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;...would be to display one of the above ads&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;on your blog or website&lt;br /&gt;and support the Rule of Law.&lt;br /&gt;&lt;br /&gt;And please tell us about your efforts and participation at:&lt;br /&gt;AchievingOurCountry.blogspot.com&lt;br /&gt;in the comments.&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://blogs.salon.com/0004000/images/BlackFlagWeekWebsiteAd.jpg"&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-8477022840394032584?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/8477022840394032584/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=8477022840394032584&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/8477022840394032584'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/8477022840394032584'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/03/another-way-to-support-black-flag-week.html' title='Another way to support Black Flag Week...'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_XgbzNgZToiw/R832GXOsHII/AAAAAAAAABs/4ODlhOu94qw/s72-c/BlackFlagWeekWebsiteAdVertical.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-8787230721826226235</id><published>2008-03-02T17:04:00.000-08:00</published><updated>2008-12-12T22:49:31.540-08:00</updated><title type='text'>Rule of Law</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_XgbzNgZToiw/R8tlhFRGAeI/AAAAAAAAABc/4A6CsLrdKoo/s1600-h/BlackFlagWeek.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5173340215989109218" style="DISPLAY: block; MARGIN: 0px auto 10px; WIDTH: 393px; CURSOR: pointer; HEIGHT: 74px; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_XgbzNgZToiw/R8tlhFRGAeI/AAAAAAAAABc/4A6CsLrdKoo/s400/BlackFlagWeek.jpg" border="0" /&gt;&lt;/a&gt;&lt;span style="FONT-WEIGHT: normal"&gt;from "&lt;a href="http://revolutionredux.wordpress.com/2008/03/02/pakistan-constitutions-and-the-rule-of-law/"&gt;&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(51,102,255)"&gt;ondelette&lt;/span&gt;&lt;/a&gt;:"&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;b&gt;Next week, March 9-15, is Black Flag Week in Pakistan&lt;/b&gt;. The lawyers in Pakistan will carry black flags. And they will probably march, as they have done since November, for the reinstatement of the judiciary, for the rule of law, and for the return to the Constitution and democracy in Pakistan. The head of the lawyers, Aitzaz Ahsan, president of the Supreme Court Bar Association, has been knocking heads with the government over the rule of law during multiple dictatorships going back to Zia ul Haq and Ayub Khan. Pakistan has not had a steady democracy, but rather military dictatorships alternating with often corrupt democratic rule, for most of its history. &lt;p&gt;&lt;b&gt;Brief History of the Lawyers Protests&lt;/b&gt;&lt;/p&gt;&lt;p&gt;The current military government took power in a coup in 1999 at the end of a standoff with India at the line of control, the separation between the two countries in Kashmir. Pervez Musharraf rewrote the Constitution, and ruled as both the head of the military and the president, and has staged rigged elections to maintain power. When the Constitution forbade him to run again this year, he fired the Chief Justice of the Supreme Court, Iftikhar Chaudry, hoping to get a better decision on running. Ominously, he had also been apprehending and interrogating terrorism suspects, holding them without charge, and allegedly turning them over to the Americans for interrogation. The Court released many of them, and demanded that the government either bring charges against the others and arraign them in court, or release them.&lt;/p&gt;&lt;p&gt;The rest of the court did not go along with Musharraf’s move, and reinstated Chaudry. On November 3, 2007, Musharraf declared an Emergency, and suspended the Constitution. He placed many thousands under house arrest, he sacked the entire Supreme Court and judiciary and made signing an oath to support the rules he replaced the Constitution with a precondition to reinstatement. He created a packed court, but most of the original justices refused to sign, and many justices and barristers were placed under house arrest. As well, many human rights workers, in particular Asma Jahangir, the Pakistan Human Rights Commissioner, were put under house arrest, as were political candidates, including Benazir Bhutto. With his permission to run in hand, Musharraf scheduled elections, but there were many flaws, and many protests. Musharraf, under both domestic and international pressure, lifted the Emergency, but many remained under house arrest, especially many lawyers, including Aitzaz Ahsan, and Justice Iftikhar Chaudry (who still are).&lt;/p&gt;&lt;p&gt;Most of the world knows that Benazir Bhutto was assassinated in Rawalpindi on December 27, 2007. This led to postponement of the elections, many realignments, and the issues of democracy, the Constitution and the judiciary coming to the fore. On February 18, opposition parties delivered a crushing defeat to Musharraf’s party, and a new government is forming around the Pakistan People’s Party, the Pakistan Muslim League - N (Nawaz), and the Awami National Party in the FATA region. There was an overwhelming vote in this referendum for the return to the rule of law, to secular government, and to reinstate the Constitution and judiciary.&lt;/p&gt;&lt;p&gt;The Pakistani Parliament has two houses, the lower house, and the Senate. Musharraf’s people maintain a majority in the Senate, although it is weakening (6 senators broke with the majority last week bringing his lead there to 51-49). But although the incoming coalition has the two thirds majority it needs in the Lower House, it does not in the Senate, and therefore impeachment or a restoration of the 1973 Constitution (the last completely ratified) will wait until the necessary votes are there. Most observers believe this is only a matter of time as long as the pressure is on, and hopefully not too much longer. Stunningly, the government of the United States is continuing to treat Musharraf as if he has not suffered such a massive defeat. If democracy is to mean anything, the will of the people cannot be thwarted, and the U.S. support has brought criticism and suspicion of Americans in Pakistan.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Where does it go from here? &lt;/b&gt;&lt;/p&gt;&lt;p&gt;Throughout the crisis since November 3rd, people who watched the news in Pakistan have seen pictures of the lawyers, dressed in their trademark black suits, demonstrating for reinstatement of the judiciary and the return to the rule of law. These haven’t been the most peaceful of demonstrations, lawyers have been beaten, some arrested, there are allegations of harsh interrogation, in one case a lawyer’s kidneys failed during imprisonment, and tear gas. These lawyers have persevered, and continue to demonstrate.&lt;/p&gt;&lt;p&gt;For those paying attention, this has been a drama that is at once uncomfortably violent, and inspiring in the courage shown by the lawyers, by the people who attend the demonstrations where it is not unheard of for people to be injured or die at the hands of bombers, by the people who went out to vote, by the bloggers and press, who maintained the flow of information both internally and out of the country and shot down concocted stories and propaganda that governments use when they are in trouble. Before the elections, the new military chief, General Ashfaq Pervez Kayani, ordered the army to vacate all government positions, and to maintain a separation between the military and the government. This move was instrumental in keeping the level of vote rigging low enough for the will of the people to be heard during the February elections.&lt;/p&gt;&lt;p&gt;So the signs are right for a real return to democracy, for a real return to the rule of law, and for reinstatement of the Constitution and the judiciary in Pakistan. A healthy secular democracy there is an outcome that will benefit the entire world, and as we have learned in many countries over the past two decades, the real basis for a healthy democracy is respect for the Constitution, and the rule of law.&lt;/p&gt;&lt;p&gt;On &lt;b&gt;Black Flag Week&lt;/b&gt;, there is an opportunity to show solidarity for the Pakistani lawyers and their struggle for the things that we in this country hold to be fundamental — civil rights, democracy, law, and a Constitution. It isn’t there yet, and it won’t be unless the pressure is kept on. Even once it comes, it will be a slow climb out of corruption and broken rule, and the country has many problems including poverty, religious militancy, and illiteracy. The new government will more than have its hands full. It will have a much easier job if the laws of the country are secure.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Please help show support for these lawyers.&lt;/b&gt; Please wear a black armband or other black clothing during the Black Flag Week, and please take the time to educate others on what that clothing or armband means. &lt;i&gt;If the rule of law is fundamental, then it is never too unimportant to grow and strengthen it, anywhere in the world. &lt;/i&gt;&lt;/p&gt;&lt;span style="COLOR: rgb(102,102,102);font-size:85%;" &gt;&lt;span style="COLOR: rgb(51,51,153);font-size:100%;" &gt;&lt;span style="font-family:times new roman;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-8787230721826226235?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/8787230721826226235/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=8787230721826226235&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/8787230721826226235'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/8787230721826226235'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/03/from-ondelette-aitzaz-ahsan-head-of.html' title='Rule of Law'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_XgbzNgZToiw/R8tlhFRGAeI/AAAAAAAAABc/4A6CsLrdKoo/s72-c/BlackFlagWeek.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-227450739834285496</id><published>2008-02-14T09:25:00.000-08:00</published><updated>2008-02-14T09:43:38.812-08:00</updated><title type='text'>Torture is torture, except when it's news</title><content type='html'>The issue of word manipulation in politics and media is really Glenn Greenwald's claimed territory, but I can't let this week go by without commenting on it. Why? Because I heard a short news clip from the BBC about the six Guantanamo prisoners who have finally been charged with some sort of crime. And the broadcaster did something that made me want to break things: he said that one suspect's confession was under question because it had been gained using "the controversial waterboarding technique," a phrase that news media have universally decided is an acceptable way to refer to torture.&lt;br /&gt;&lt;br /&gt;By not calling waterboarding torture, news media around the world are complicit in the US government's flagrant violations of the Geneva Conventions and the ease with which they discard their humanity. By not simply saying straight out that acts such as waterboarding are wrong and evil, news media are pushing a pervasive doublethink on populations around the world. This is where we get our information--if the BBC doesn't call it torture, it must be at least debatable, if not perfectly okay, to partly drown people in order to make them say things. Must be okay, then, to deprive them of sleep, give them electric shocks, kick them, pull their hair, herd them into camps designed to cut them off from families, cultures, and societies, and then gas them. What the hell is the difference?&lt;br /&gt;&lt;br /&gt;We're all familiar with the idea of doublethink and how it has infiltrated our news outlets and common culture. We're also familiar with the tricks politicians use to make their atrocious positions more acceptable. We all know, here on a blog devoted to language use, that words can be used to manipulate and trick and redefine how we think. Oil drilling in the Arctic National Wildlife Refuge is "energy exploration." The Refuge itself is made more vague by calling it ANWR. Coal gained from blowing up pristine mountains and leveling them is a source of "clean energy." Global warming is now "climate change" (although I think that one backfired a little bit). And torture is a "vital interrogation tool."&lt;br /&gt;&lt;br /&gt;It is unacceptable that news media play along with these tricks, just to keep the Bush administration happy. Pollution is pollution. Coal mining is filthy and destructive. Compassionate conservativism means absolutely nothing. And torture is torture.&lt;br /&gt;&lt;br /&gt;The administration claims, as we all know, that they need permission to use these techniques to preserve our national security. What sort of security are we talking about? Our simple physical existence? What kind of physical security do you have if you've sold your soul to the devil (sorry for the melodrama)? What could possibly be more important to our national security than preserving our humanity?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-227450739834285496?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/227450739834285496/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=227450739834285496&amp;isPopup=true' title='8 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/227450739834285496'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/227450739834285496'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/02/torture-is-torture-except-when-its-news.html' title='Torture is torture, except when it&apos;s news'/><author><name>Introvert Girl</name><uri>http://www.blogger.com/profile/16352147838562674682</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='19' src='http://bp1.blogger.com/_H9UrZ4haTm4/RmoGEuqb71I/AAAAAAAAAAM/6eI5dFwRhFo/s320/DSCF0001.jpg'/></author><thr:total>8</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-6612601716698295840</id><published>2008-02-07T13:31:00.001-08:00</published><updated>2008-02-07T13:52:32.136-08:00</updated><title type='text'>Looking for Real Words</title><content type='html'>So I missed out on my promised Thursday post last week. A teething baby, a house full of guests ... ack.&lt;br /&gt;&lt;br /&gt;There are a number of minor language topics on my mind this week: politically correct terms, thoughts on &lt;em&gt;The Golden Compass&lt;/em&gt; series, questions of mass language manipulation. But the most recent one to come up is one of those niggly little issues that annoys me like a mosquito buzzing around my half-asleep ear every time I turn the light out.&lt;br /&gt;&lt;br /&gt;I'm looking for words for two concepts that, as far as I know, don't have real words. The first is one I heard for the first time this week: heterosexual life partner. This, I'm told, is something like what a bosom friend used to be, except we don't really use that phrase anymore outside of bra shopping. My younger sister has one, and another old friend has one. But what an ugly thing to call the person you consider to be more than a best friend but less ... attached, shall we say, than a spouse! Besides which, to me it can be confused with the relationship of heterosexual people who live as spouses but aren't married.&lt;br /&gt;&lt;br /&gt;In fact, I hate the word "partner" for describing that kind of relationship. It sounds so much like  a business arrangement, nothing romantic or hopeful or optimistic in it, really.&lt;br /&gt;&lt;br /&gt;Anyway, any good suggestions for heterosexual life partner?&lt;br /&gt;&lt;br /&gt;The other is a little more complicated. It's a writing issue. I'll try to explain.&lt;br /&gt;&lt;br /&gt;Sometimes you write a scene in a story, or go into a long thought-chain in an essay, in which the character or narrator is meant to be in a particular place -- this especially comes up in travel writing. And you get caught up in your narration or thoughts on the character or whatever, and your words go on long enough that the reader forgets &lt;em&gt;where&lt;/em&gt; you are meant to be. When this happens, bringing the reader back to that place can be a little jarring.&lt;br /&gt;&lt;br /&gt;So when you're revising, or someone's editing for you, you need to put in little placement reminders. For example, I was working on a colleague's essay about Cuba. She was describing sitting at an outdoor restaurant there, and was writing about Cuban economics and people's personal career situations and so on. She thought it went on too long, but all she needed was a little reminder that we were sitting in the restaurant: "The waiter brought us beers and I shifted the milk crate I was sitting on to let an old woman pass" or something like that.&lt;br /&gt;&lt;br /&gt;I find these lines really important, and for myself I made up a shorthand name for them. I call them 'locator lines.' But I'm thinking there either must already exist a good term for them, or someone can come up something a little shorter or more poetic. Any ideas? If I haven't explained very well, please say so.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-6612601716698295840?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/6612601716698295840/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=6612601716698295840&amp;isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/6612601716698295840'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/6612601716698295840'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/02/looking-for-real-words.html' title='Looking for Real Words'/><author><name>Introvert Girl</name><uri>http://www.blogger.com/profile/16352147838562674682</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='19' src='http://bp1.blogger.com/_H9UrZ4haTm4/RmoGEuqb71I/AAAAAAAAAAM/6eI5dFwRhFo/s320/DSCF0001.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-2650014050085786028</id><published>2008-01-24T08:10:00.001-08:00</published><updated>2008-01-25T08:34:25.045-08:00</updated><title type='text'>Bring on the Babbling</title><content type='html'>(Note: Introvert Girl--me--is going to attempt posting on the Choco-Bang every Thursday. Hurrah for New Year's resolutions!)&lt;br /&gt;&lt;br /&gt;Introvert Girl is not a talker. But you probably guessed that. Being an introvert, of course, I can thrive on a really meaningful conversation with one or two people whose opinions and ideas fire my imagination. For a couple of hours. Once a week. But I don't like being on the phone (&lt;span style="font-style: italic;"&gt;really&lt;/span&gt; don't like it). I don't like frequent social gatherings. I don't like having guests in my house who can't entertain themselves. I usually need a day to myself to recover from a party, and a solid week to myself to recover from houseguests.&lt;br /&gt;&lt;br /&gt;So what could possibly turn I'Girl into a babbly, chatty, talking idiot? If you know that I've recently had a baby, you know the answer.&lt;br /&gt;&lt;br /&gt;It's not that his gummy, gorgeous smile prompts me to go "coochy-coo" at him on a whim. Nope, it's worse. It's a book.&lt;br /&gt;&lt;br /&gt;When I told her I was pregnant, my sister presented me with &lt;span style="font-style: italic;"&gt;What's Going on in There? &lt;/span&gt;which is a book about baby brain development written by a neurobiologist. And it's good, really good -- interesting and educational and persuasive. I have some issues with the research the author quotes, which involves horrible behavior toward rats, monkeys, and orphaned and abused children, but that's a very small part of the book.&lt;br /&gt;&lt;br /&gt;A very large part is given over to the development of language in babies. And I've discovered, to my sorrow, that talking constantly &lt;span style="font-style: italic;"&gt;to&lt;/span&gt; a baby (not just around the baby or near the baby) during its first couple years lays a a foundation for complex language development that can never be made up in later life. Research has shown that, no matter what your economic class or social background, the more you talk to a baby, the better its brain develops. The effects of early language exposure last well into elementary school, and, if maintained through childhood years, throughout a kid's learning life.&lt;br /&gt;&lt;br /&gt;You've got to talk, talk, talk. And it's &lt;span style="font-style: italic;"&gt;hard&lt;/span&gt;. For someone who revels in silence and who can go whole happy days not saying a word to anyone, it's a massive shift in habit. (I usually use up my chatting energy by doing filial duty on the phone. I thought I could rack up talk credits while expressively directing my words &lt;span style="font-style: italic;"&gt;at&lt;/span&gt; him while I was on the phone, but somehow he knows the difference and doesn't engage.) My only incentive is the overwhelming evidence that my constant chatter is really, really important to this fourteen-pounder's little brain.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;What's Going on in There?&lt;/span&gt; has been a true mind-opener for me. But as I try to remember to tell my son what I'm doing as I'm trying to make myself lunch, or spend an hour exchanging babble with him in his room, I kind of wish, secretly, that I hadn't read it. Ignorance is indeed bliss.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-2650014050085786028?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/2650014050085786028/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=2650014050085786028&amp;isPopup=true' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/2650014050085786028'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/2650014050085786028'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/01/note-introvert-girl-me-is-going-to.html' title='Bring on the Babbling'/><author><name>Introvert Girl</name><uri>http://www.blogger.com/profile/16352147838562674682</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='19' src='http://bp1.blogger.com/_H9UrZ4haTm4/RmoGEuqb71I/AAAAAAAAAAM/6eI5dFwRhFo/s320/DSCF0001.jpg'/></author><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-393106659187537905</id><published>2008-01-16T23:30:00.000-08:00</published><updated>2008-01-16T21:07:55.807-08:00</updated><title type='text'>[sigh] ...and it was written by a "journalist"</title><content type='html'>Wouldn't you think that a Serious Journalist would be more careful about email composition, especially considering how easily one's emails can appear in places where one least expects to find them... such as &lt;span style="font-style: italic;"&gt;here&lt;/span&gt;. The following example simply cries out for a bit of editing (at a minimum), and, if I'm honest, a bit of embellishment, as well.&lt;br /&gt;&lt;br /&gt;While the rest of the peasants continue to go to town on Mr. King's so-called credentials as a journalist, his sense of ethics (or lack thereof), the pride that &lt;span style="font-style: italic;"&gt;should be&lt;/span&gt; inherent in anyone choosing to call himself or herself a journalist, not to mention the the hypocrisy of our media's superficial attacks on serious presidential candidates, I thought we might have some more narrowly-focused fun...&lt;br /&gt;&lt;br /&gt;Please! Feel free to chime in with your own suggestions.&lt;br /&gt;&lt;br /&gt;~ ~ ~&lt;br /&gt;&lt;br /&gt;From: King, John C&lt;br /&gt;&lt;br /&gt;To: GGreenwald@salon.com&lt;br /&gt;&lt;br /&gt;Sent: Tuesday, January 15, 2008 5:40 PM&lt;br /&gt;&lt;br /&gt;Subject: excuse me? &lt;span style="color: rgb(255, 102, 0);"&gt;[Tone: my limited understanding of the rules of Rhetoric makes me think that starting off immediately with such a sarcastic and defensive tone is probably a mistake.]&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I don't read biased uninformed drivel so I'm a little late to the game. &lt;span style="color: rgb(255, 102, 0);"&gt;[Okay, where are the conjunction and/or the commas?]&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;But a friend who understands how my business works and knows a little something about my 20 plus years in it sent me the link to your ramblings. &lt;span style="color: rgb(255, 102, 0);"&gt;[A friend? Really? Perhaps the friend thought there were some things you should know, e.g., how your work is perceived by others, namely your audience. Sometimes it's very difficult for a friend to be that honest, but a true friend will take advantage of an opportune opening when one is provided.]&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;Since the site suggests you have law training, maybe &lt;span style="color: rgb(255, 102, 0);"&gt;[perhaps?]&lt;/span&gt; you forgot that good lawyers to &lt;span style="color: rgb(255, 102, 0);"&gt;[sic]&lt;/span&gt; a little research before they spit out words. &lt;span style="color: rgb(255, 102, 0);"&gt;["Law training" ...is that usage meant to belittle Greenwald's own professional experience... a tit for tat? And "spit out words" ...is that a synonym for "present an argument?" I've never actually seen a lawyer spit, though they do have a reputation for trying to catch their quarry unaware.]&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;Did you think to ask me or anyone who works with me whether that was the entire interview? No. &lt;span style="color: rgb(255, 102, 0);"&gt;[Did the interview conclude with "to be continued?" If not, then one would reasonably conclude it was complete.]&lt;/span&gt; (It was not; just a portion used by one of the many CNN programs.)&lt;span style="color: rgb(255, 102, 0);"&gt; [The phrase following a semi-colon technically should be able to stand as a complete sentence. This one does not, since it lacks a proper verb: "it was just a portion used" or "just a portion was used".]&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;Did you reach out to ask the purpose of that specific interview? No. &lt;span style="color: rgb(255, 102, 0);"&gt;[Again, I am not an expert in Rhetoric, but shouldn't the purpose of an interview (that is published in good faith) have been revealed in the actual interview-- as published-- rather than publishing it with the expectation that every reader or skeptical critic will call CNN or Mr. King himself to make inquiries? Shouldn't such interviews be able to stand on their own? Do CNN and Mr. King really have time to deal with so many inquiries?]&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;Or how it might have fit in with other questions being asked of other candidates that day? No. &lt;span style="color: rgb(255, 102, 0);"&gt;[See above.]&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;Or anything that might have put facts or context or fairness into your critique. No. &lt;span style="color: rgb(255, 102, 0);"&gt;[This "non-question" is a bit trickier, because it is more manipulative, implying that the burden of supplying facts, context and fairness rests even more heavily on the shoulders of the critic, than on the author of the original work. Certainly, the point is debatable, although Mr. King clearly does not think so.]&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;McCain, for better or worse, is a very accessible candidate. If you did a little research (there he goes with that word again) &lt;span style="color: rgb(255, 102, 0);"&gt;[Was the intention in that parenthetical phrase to sound &lt;/span&gt;&lt;span style="font-style: italic; color: rgb(255, 102, 0);"&gt;Reaganesque&lt;/span&gt;&lt;span style="color: rgb(255, 102, 0);"&gt;? If so, the attempt failed. I don't recall ever hearing Reagan refer to himself in the third person. Further, an interesting critique of Reagan's own rhetorical techniques can be found in Oliver Sachs's book, &lt;/span&gt;&lt;span style="font-style: italic; color: rgb(255, 102, 0);"&gt;The Man Who Mistook His Wife For A Hat&lt;/span&gt;&lt;span style="color: rgb(255, 102, 0);"&gt;. Very provocative.] &lt;/span&gt;you would find I have had my share of contentious moments with him over the years. &lt;span style="color: rgb(255, 102, 0);"&gt;[I must be of the older generation now, since I came of age expecting that the journalists would do the research, and that we, the readers, would read the results of their research. I don't recall any suggestions that I should do my own supplemental research, but only that I should keep an open and skeptical mind before coming to a conclusion.]&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;But because of that accessibility, you don't have to go into every interview asking him about the time he cheated on his sixth grade math test. &lt;span style="color: rgb(255, 102, 0);"&gt;[Is this the sort of loaded question that today's journalists now believe constitutes being "hard-hitting?" Just curious. More to the point, the initial phrase does not work well with the one it is meant to parallel in the previous paragraph. Another possibility might have been to write "because Sen. McCain is so accessible, &lt;span style="font-weight: bold;"&gt;[one]&lt;/span&gt; does not have to..." The many jumps between between first, second and third person are very  disconcerting.]&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;The&lt;span style="color: rgb(255, 102, 0);"&gt; [purpose of the]&lt;/span&gt; interview was mainly &lt;span style="color: rgb(255, 102, 0);"&gt;[primarily?]&lt;/span&gt; to get a couple of questions to him on &lt;span style="color: rgb(255, 102, 0);"&gt;[Implies a delivery... perhaps: "ask him a couple of questions about..."]&lt;/span&gt; his thoughts on the &lt;span style="color: rgb(255, 102, 0);"&gt;[proper?]&lt;/span&gt; role of government when the economy is teetering on the edge of &lt;span style="color: rgb(255, 102, 0);"&gt;[a]&lt;/span&gt; recession, in conjunction with similar questions being put to several of the other candidates. &lt;span style="color: rgb(255, 102, 0);"&gt;[We readers (and viewers) would have greatly appreciated being able to find these questions. Were they accidentally misplaced or filed elsewhere? Also, who were the other candidates with whom Sen. McCain was being compared? The sentence is ambiguous, and could refer to any part of the GOP or Democratic fields, or to all of the candidates. Perhaps this information should also have been included in the interview.]&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;The portion you cited was aired by one of our programs -- so by all means it is fair game for whatever "analysis" you care to apply to it using your right of free speech and your lack of any journalistic standards or fact checking or just plain basic curiosity. &lt;span style="color: rgb(255, 102, 0);"&gt;[Again, tone, is so important. Why is "analysis" in quotes? Are the quotes intended to impugn Greenwald's analysis with irony? How ironic, considering the vast streams of irony that pour forth from our newspapers, and, even more, from our news broadcasters every day. Further, "fair game" implies an adversarial relationship that is generally missing from most mainstream reporting on figures who are beloved by the press, e.g., Sen. McCain. Finally, although the program was also "fair game," as Mr. King notes, he undercuts that statement by implying a lack of fairness on Greenwald's part by using such phrases as "whatever 'analysis' you care to apply," "lack of any journalistic standards or fact checking or just plain basic curiosity.]&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;You clearly know very little about journalism. &lt;span style="color: rgb(255, 102, 0);"&gt;[And, clearly, Mr. King knows very little about Greenwald's areas of expertise, e.g., the many failings of contemporary journalism when reporting on constitutional issues (among others), but then, he has admitted that he does not read such drivel. Still, a bit of "research"-- e.g., reading some of Greenwald's prior posts--  in advance of writing this email, might have been beneficial.]&lt;/span&gt; But credibility matters. It is what allows you to cover six presidential campaigns and &lt;span style="color: rgb(255, 102, 0);"&gt;[&lt;/span&gt;&lt;span style="font-style: italic; color: rgb(255, 102, 0);"&gt;still&lt;/span&gt;&lt;span style="color: rgb(255, 102, 0);"&gt;?]&lt;/span&gt; be viewed as fair and respectful, while perhaps a little cranky, but Democrats and Republicans alike. &lt;span style="color: rgb(255, 102, 0);"&gt;[Does "but &lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(255, 102, 0);"&gt;[by]&lt;/span&gt;&lt;span style="color: rgb(255, 102, 0);"&gt; Democrats and Republicans alike" refer to being "viewed as fair and respectful," or "perhaps a little cranky." The awkward construction leaves the reader wondering.]&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;When I am writing something that calls someone's credibility into question, I pick up the phone and give them a chance to give their side, or perspective. &lt;span style="color: rgb(255, 102, 0);"&gt;[And yet, reviewers and critics never make such calls, as a number of Mr. Greenwald's commenters have noted. A distinction has been left floundering: both original reporting and reviewing/critiquing require sufficient background and knowledge, supplemented by research when necessary, but only reporting requires making calls and checking facts with sources, because the original work is still being written. The critique or review is of that finished work, and does not require the permission of, or any rationalizations from, the original author, although the author is certainly free to respond, just as Mr. King has done.]&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;That way, even on days that I don't consider my best, or anywhere close, I can look myself in the mirror and know I tried to be fair and didn't call into question someone's credibility just for sport, or because I like seeing my name on a website or my face on TV. &lt;span style="color: rgb(255, 102, 0);"&gt;[Frankly, a little more skepticism would be welcome, not for sport or fame, but because our country faces so many serious challenges, many of which might have been avoided entirely if our current president had faced more skepticism during his first campaign, or even during his second.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(255, 102, 0);"&gt;In fact, a great many of us -- according to polls, at least 75%, and perhaps as many as 80% -- awake each morning to look in our mirrors and reflect on the many misdirections to which we have been subjected -- by both the Bush administration and an acquiescent press -- and which have, far worse, sorely affected our country's reputation throughout the world.]&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;~ ~ ~&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;The original post on Greenwald's blog can be found &lt;/span&gt;&lt;a style="color: rgb(51, 51, 255); font-style: italic;" href="http://www.salon.com/opinion/greenwald/2008/01/16/king/index.html"&gt;here&lt;/a&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;.&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-393106659187537905?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/393106659187537905/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=393106659187537905&amp;isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/393106659187537905'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/393106659187537905'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/01/sigh-and-it-was-written-by-journalist.html' title='[sigh] ...and it was written by a &quot;journalist&quot;'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-1842078803250923626</id><published>2008-01-10T12:25:00.000-08:00</published><updated>2008-01-10T12:37:43.813-08:00</updated><title type='text'>Have your donut and your doughnut, too</title><content type='html'>Today I bow my head to the gods of language devolution. I give up. The stupidifiers of language win. Today my Gmail automatic spell-checker told me I had spelled "doughnut" incorrectly. "Donut" was the right formation of letters to describe a ball of dough fried in oil.&lt;br /&gt;&lt;br /&gt;Fine. Go ahead. Have your strawberrys and your two week's notice and your donuts and your nucular energy, too. I'm too tired to argue.&lt;br /&gt;&lt;br /&gt;But why is it that people who insist on certain spellings or pronunciations out of ignorance always get to win? Don't we get one? Just one? A little one? Me, I'd really like to keep the word "nauseated." I realize it's a lost cause, that there are few of us anymore who shiver when someone says, "I feel nauseous," but that's my pick. It's a perfectly good word, as is "nauseous," and I don't see why language should be muddied by using the latter for more meanings than it previously had. Talk about downsizing! Residents of dictionaries oughta complain. They're being fired right out of existence.&lt;br /&gt;&lt;br /&gt;Speaking of which, I'm having lovely little time-wasting sessions playing vocabulary games on the Free Rice link recommended by Karen. But does anyone else find some of their definitions a little ... odd?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-1842078803250923626?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/1842078803250923626/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=1842078803250923626&amp;isPopup=true' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/1842078803250923626'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/1842078803250923626'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2008/01/have-your-donut-and-your-doughnut-too.html' title='Have your donut and your doughnut, too'/><author><name>Introvert Girl</name><uri>http://www.blogger.com/profile/16352147838562674682</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='19' src='http://bp1.blogger.com/_H9UrZ4haTm4/RmoGEuqb71I/AAAAAAAAAAM/6eI5dFwRhFo/s320/DSCF0001.jpg'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-7824568374447000698</id><published>2007-12-27T12:48:00.000-08:00</published><updated>2008-12-12T22:49:31.891-08:00</updated><title type='text'>Put your vocabulary to work...</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_XgbzNgZToiw/R3QQrvGwrFI/AAAAAAAAAAM/aAOMVY2DVhU/s1600-h/Free-Rice-VerticalTower.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://1.bp.blogspot.com/_XgbzNgZToiw/R3QQrvGwrFI/AAAAAAAAAAM/aAOMVY2DVhU/s320/Free-Rice-VerticalTower.jpg" alt="" id="BLOGGER_PHOTO_ID_5148758617556560978" border="0" /&gt;&lt;/a&gt;...and &lt;a style="font-weight: bold;" href="http://freerice.com/"&gt;donate free rice&lt;/a&gt; to feed hungry people.&lt;br /&gt;&lt;br /&gt;from the FAQ...&lt;br /&gt;&lt;h3&gt;If FreeRice has the rice to give, why not give it all away right now?&lt;/h3&gt;  &lt;p&gt;FreeRice is not sitting on a pile of rice―you are earning it 20 grains at a time. Here is how it works. When you play the game, advertisements appear on the bottom of your screen. The money generated by these advertisements is then used to buy the rice. So by playing, you generate the money that pays for the rice donated to hungry people.&lt;/p&gt;  &lt;h3&gt;Does FreeRice make any money from this?&lt;/h3&gt;  &lt;p&gt;No, it does not. FreeRice runs the site at no profit.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-7824568374447000698?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/7824568374447000698/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=7824568374447000698&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/7824568374447000698'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/7824568374447000698'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/12/put-your-vocabulary-to-work.html' title='Put your vocabulary to work...'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_XgbzNgZToiw/R3QQrvGwrFI/AAAAAAAAAAM/aAOMVY2DVhU/s72-c/Free-Rice-VerticalTower.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-7389834951668864070</id><published>2007-12-07T14:01:00.000-08:00</published><updated>2007-12-07T14:10:13.671-08:00</updated><title type='text'>The Conjugations of Bush</title><content type='html'>George W, everyone's favorite murderer of the English language (as I'm sure he would be of other languages if he bothered to learn any) recently proved that he knows the very simple forms of the verb "to be," for which I applaud him. In a boring, ponderous speech strangely reminiscent of the ones he gave before the invasion of Iraq, he informed the American public that "Iran was dangerous, Iran is dangerous, and Iran will be dangerous." For his next trick, I'd like him to diagram the last verse of the song, "In the hole in the bottom of the sea." (The grammar geeks on this site would likely love that activity, wouldn't we?)&lt;br /&gt;&lt;br /&gt;On a side note, I've always been frustrated with the way grammar is taught in the US, as I'm sure most grammarians are. When I first learned a foreign language, the concepts of conjugating verbs and declining nouns were ... well, foreign. And difficult. It took me years to realize this was partly because I was never taught the concepts for English. And, although English isn't quite as predictable as some languages (like German) in its grammar rules, that doesn't mean they have to be taught, or understood, in such a sloppy fashion. Surely there's a simple, methodical way of teaching the public how to use English correctly? Even George Bush, it seems is capable of learning the basics.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-7389834951668864070?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/7389834951668864070/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=7389834951668864070&amp;isPopup=true' title='13 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/7389834951668864070'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/7389834951668864070'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/12/conjugations-of-bush.html' title='The Conjugations of Bush'/><author><name>Introvert Girl</name><uri>http://www.blogger.com/profile/16352147838562674682</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='19' src='http://bp1.blogger.com/_H9UrZ4haTm4/RmoGEuqb71I/AAAAAAAAAAM/6eI5dFwRhFo/s320/DSCF0001.jpg'/></author><thr:total>13</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-6161708509668718597</id><published>2007-09-28T18:59:00.000-07:00</published><updated>2007-09-28T19:14:43.501-07:00</updated><title type='text'>Any Words Leave You Silly or Sore?</title><content type='html'>I can sum up my last six weeks by something my husband said at the beginning: "The word 'NICU' should never be in anyone's vocabulary." Our son, now home and healthy, was born seven weeks early and spent a month in the Neonatal Intensive Care Unit at the hospital. &lt;br /&gt;&lt;br /&gt;The nurses and doctors were beyond amazing; they make me believe in humanity again. But my reaction now to the word NICU is an interesting one--half shrinking, horrified fear, and half grateful, hopeful desire. &lt;br /&gt;&lt;br /&gt;There are other words or names that have these sorts of effects. There are two particular male names that make me almost physically ill, due to the manner in which I encountered them in childhood (no, not the way you think). The words "guppie" and "mug" always bring a smile to my face, evoking as they do my first year of college and my beloved, crazy roommate. "Perspicacity" brings to mind, simultaneously, tentative ambition with the memory of a strict and admired high school English teacher, and slight shame, as it came up in a bad Piers Anthony novel that shouldn't have interested me so much.&lt;br /&gt;&lt;br /&gt;If I dredged my mind, I'm sure I could come up with plenty of other examples--words with such strong emotional impact that they almost count as a significant relationship. Anyone else find their reaction to various words less than objective?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-6161708509668718597?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/6161708509668718597/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=6161708509668718597&amp;isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/6161708509668718597'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/6161708509668718597'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/09/any-words-leave-you-silly-or-sore.html' title='Any Words Leave You Silly or Sore?'/><author><name>Introvert Girl</name><uri>http://www.blogger.com/profile/16352147838562674682</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='19' src='http://bp1.blogger.com/_H9UrZ4haTm4/RmoGEuqb71I/AAAAAAAAAAM/6eI5dFwRhFo/s320/DSCF0001.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-9144011362889525446</id><published>2007-09-03T09:50:00.000-07:00</published><updated>2007-09-03T10:57:32.550-07:00</updated><title type='text'>Stealing Publicy</title><content type='html'>Everybody knows about privacy.  Privacy is the ability to keep things private. It is the thing you respect when you do not talk publicly about things that were done privately. Public and private are, in this context, opposites.  So what should &lt;i&gt;publicy&lt;/i&gt; mean?  Does a swap do it?&lt;br /&gt;&lt;br /&gt;Nobody knows about publicy. Publicy is the ability to keep things public.  It is the thing you respect when you do not talk privately about things that were done publicly.  No, a swap makes things muddy.&lt;br /&gt;&lt;br /&gt;Because we adopted the wrong statements about privacy? &lt;br /&gt;&lt;br /&gt;Privacy is the ability to control what things about ourselves are private.  It is respected by not usurping the control of the private space from the individual.  Public and private are, in this context, very similar.  Now what happens with a swap?&lt;br /&gt;&lt;br /&gt;Publicy is the ability to control what things about ourselves are public.  It is respected by not usurping the control of the public space from the individual.  A swap now works.&lt;br /&gt;&lt;br /&gt;A definition of publicy has already been &lt;a href="http://www.publicy.org"&gt;offered&lt;/a&gt;, going back as far as 1998: "&lt;span class="highlight"&gt;the response from public institutions a private person is able to elicit."  M. Veldboer is credited.  &lt;a href="http://www.linuxjournal.com/comment/reply/1000047"&gt;Doc Searls&lt;/a&gt; took a crack at it, starting by wondering what the opposite of privacy would be.  He talks of private enterprise of private ownership, of public spaces, of commons.  All very good.  And private and public have these connotations in some contexts, so fine. But the context I have given is fundamental to the contexts that Searls gave.  His public spaces are European coffee shops and pubs, where people have public life.&lt;br /&gt;&lt;br /&gt;How fundamental?&lt;br /&gt;&lt;br /&gt;I grew up in New England.  Oh, yes, the dreaded place of puritans and witch trials, of blue laws and dunking stools.  But also the place of commons, of commonwealth, of town meetings.  Of the publicy that Searls dreams.  Think about what people did in those days to enter the public space:  They dressed according to the way they wished to be perceived (in early New England days, that would be brown, grey, white, or black, anything else was indulging in the pleasures of the senses).  They would go to the public forum at which they wished to be perceived, the commons, Buckman's tavern, the church, the market.  They would say what they wished to be heard, a speech, a sermon, a raucous discussion, a sales pitch.&lt;br /&gt;&lt;br /&gt;They participated in the public space, they had a public aspect, they controlled that public aspect.  Without that control, their participation in public activity would be difficult, and lead to detrimental results.  This happened in Salem, where rumors became edits on the persona of people in the public space, where past actions were replayed with new meaning, and finally, where people were hung.&lt;br /&gt;&lt;br /&gt;So before you can have a functioning commons, a public space where people have publicy, as Searls and Veldboer define it, you need publicy as an aspect of an individual that is controlled by that individual, and respected by others.&lt;br /&gt;&lt;br /&gt;The first people whose publicy began to be infringed were the Hollywood stars.  And you can see very important aspects of the concept in the long-term study of their public persona:  They exist at many different public ages simultaneously: We can watch Road To Perdition, and then Cool Hand Luke, and Paul Newman has two simultaneously different ages and appearances.  In real life this would bother us immensely (look at what we think of, say, Count Dracula), and it still has remnants of this uncomfortableness when you see a picture in the obits of a person in their prime that you knew more recently.  They can't transform:  Marilyn Monroe is believed by many to have commit suicide over being unable to shed a sexpot image and be appreciated as a serious actress -- regardless of, say, the difficult role played in "Some Like It Hot", or her association with the power elite.  They have no privacy:  They are public figures, so hanging around their backyards with cameras is tolerated at the supermarket checkout counter.  They can cheat aging by dying:  Monroe, but also JFK and Jimi Hendrix, are forever young because no new pictures can be taken, and they are picture people.  This last dates back a long way, Abraham Lincoln has only two ages, with and without the beard.&lt;br /&gt;&lt;br /&gt;But the same is true in these figures as of the puritans at Salem: infringement of their right to publicy resulting from restructuring public facts to support rumors or to support slurs, or to alter the impression they would make in a public space, can build to a maliciousness that destroys them, destroys their careers, in some cases destroys or ends their lives.&lt;br /&gt;&lt;br /&gt;Now to datamining.  As our own lives, those of ordinary citizens, those of We the People, become more and more like those of celebrities of the 20th century, infringement becomes more useful, becomes more general, and begins to look like the things Magna Cartas and Constitutions were fought for.  A new concept appears, necessary to the world of Doc Searls, the world of the European caf&amp;eacute;.  Before everyone in the world becomes a public figure, and all information is fair game, it is time to talk about the equivalent of Fourth Amendment rights for the public space.  The right to reasonable protections against infringements of our publicy.  At the very least, it should, when placed back into the world of our ancestors, become the protection of one's ability to present the image they wished to present in public -- even if the public refused to accept that image or called them out on it in public. &lt;br /&gt;&lt;br /&gt;In the 18th century, you had the right (unrecognized because it seemed inevitable) to put on the clothes you wished to be seen in, check yourself in the mirror, head out the door to the place you wished to be heard, pick the kind of soapbox you wished to stand on in the commons, and deliver the speech you wanted to deliver -- regardless of whether you got drunk twenty years before.  Only after you had been granted that right to non-infringement of your publicy did public criticism, laughter, derision, tomatoes, eggs, and the rest follow.&lt;br /&gt;&lt;br /&gt;In the 21st century, you have the right to put on the clothes you wish to be seen in, check yourself in the mirror, write the resume that highlights the accomplishments you wish to be examined, practice your responses to questions and your explanations of the ideas you've had, go to the interview -- and find you have been datamined: that the human resources department has called people it Googled on the Internet, not the references you gave them, that they know how much your medical expenses cost in the past ten years, and have a picture of you at a party when you were in high school.  Your publicy has been infringed, because nobody knows you have such a thing, and nobody worries about infringing it.&lt;br /&gt;&lt;br /&gt;So I am stealing publicy.  It makes more sense as the basis for a right to publicy, paralleling a right to privacy, than as an opposite, defining an effect.  And the enshrining of this right, preferably in the same document as the right to privacy, would make possible the world that Doc Searls envisions.  Because people have a hard time participating in the public life of a caf&amp;eacute; if they can't be certain who they are when they walk in.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-9144011362889525446?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/9144011362889525446/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=9144011362889525446&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/9144011362889525446'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/9144011362889525446'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/09/stealing-publicy.html' title='Stealing Publicy'/><author><name>ondelette</name><uri>http://www.blogger.com/profile/14931892878918352763</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-4294424288380416230</id><published>2007-08-15T21:28:00.001-07:00</published><updated>2007-09-10T14:47:57.372-07:00</updated><title type='text'>Request for comments (RFC)</title><content type='html'>&lt;p class="MsoNormal"&gt;Some while back (as in down the page) I posted Passion in the Age of Reason, in order to recount and hopefully stimulate additional discussion about a conversation that occurred on Glenn's blog on Salon. Follow the link on that post to read the original. I am, in first life, writing a paper, and would like to cite the entire conversation. Which leads to an interesting format, an interesting etiquette problem, and an interesting ethics problem.&lt;br /&gt;&lt;br /&gt;Scholarly articles are supposed to be, in some sense, immutable. In recent years, there has been much debate about citing electronic sites -- they could disappear, links could go dead, material can be changed, it's all bits, after all. So what should be a format, and how does it establish its permanence? Personal communication is a catchall, and can always be used, but somehow public communication is a new one. Some blogs, like Salon, maintain archives, and so could be assumed to be permanent, I'll probably assume this.&lt;br /&gt;&lt;br /&gt;The second problem is an etiquette problem: Can one go on a public space, and ask people to stand up and be cited? Doesn't asking people, in some domain like Salon, invite questions of whether or not you've overstepped familiarity? So I am writing here, where the domain is smaller -- but still uneasy about whether or not it is polite. On the other hand, what could be less polite than failing to give credit?&lt;br /&gt;&lt;br /&gt;The third problem or pair of problems, is ethics. Anonymity is one of the defining factors of the comment environment, the right to a nom de plume. Asking people for their names is unethical, it is like outing them. I, for one, was once cited on the Internet, by name, in a derogatory fashion that I hope never to see again. But not asking is unethical, it is failure to give credit where credit is due.&lt;br /&gt;&lt;br /&gt;Shall I cite by nom de plume then? Does a person's concept of anonymity change if credit is due? Please let me know your thoughts, I think it would be a shame if comments were only allowed to be cited by blogs and newspapers, and never in a proceedings. I give you fair warning that if the consensus is to cite by genuine name, I shall be contacting those authors by email to get permission, and I don't know what to do for those I don't know how to contact. If the decision is to use nom de plume, I will do that instead.&lt;/p&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Note:&lt;/span&gt; Due to a privacy problem with blogspot, I had to delete and repost this entry.   That's why the comments disappeared.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Note Update:&lt;/span&gt;  Karen M was able to resurrect the comments for the original entry, they are amalgamated into one comment and attached. Thanks!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-4294424288380416230?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/4294424288380416230/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=4294424288380416230&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4294424288380416230'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4294424288380416230'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/09/request-for-comments-rfc.html' title='Request for comments (RFC)'/><author><name>ondelette</name><uri>http://www.blogger.com/profile/14931892878918352763</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-4397473999366792233</id><published>2007-08-07T17:26:00.000-07:00</published><updated>2007-08-07T20:06:23.380-07:00</updated><title type='text'>Battling the meaning of Chocolate... I'm not kidding. Chocolate: a political synecdoche...</title><content type='html'>Words &lt;span style="font-style: italic;"&gt;mean &lt;/span&gt;things... at least they once did, prior to the GWB administration's implementation of Orwellian double-speak, as when they decided to gut an EPA program that once fought air pollution and call it "Clear Skies," or allowed the timber industry to help rewrite forestry standards to favor their clear-cutting methods, and called the program "Healthy Forests."  Today, I have once again come across an unbelievable &lt;a href="http://salon.com/wire/ap/archive.html?wire=D8QSBCLG0.html"&gt;news story&lt;/a&gt; about the ongoing battle over what it means to call something &lt;a href="http://en.wikipedia.org/wiki/Chocolate"&gt;&lt;span style="font-size:85%;"&gt;CHOCOLATE&lt;/span&gt;&lt;/a&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;.&lt;br /&gt;&lt;br /&gt;[I am not implying that Karl Rove is &lt;/span&gt;&lt;span style="font-style: italic; color: rgb(102, 102, 102);"&gt;actively &lt;/span&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;trying to thwart millions of dark chocolate consumers... only that BushCo, of all modern White House administrations, is the one most likely to allow such a thing... given that most of their base is already focused on the upcoming Rapture, and not really thinking long term, if you know what I mean.]&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Wouldn't a reasonable person expect that the manufacturers of a product with a market that is still growing, as the market for chocolate must be, have learned a thing or two-- perhaps in business school?!-- by observing what happened when other similarly situated industries made either or both of two serious errors:&lt;br /&gt;&lt;br /&gt;a) ignoring what their customers want;&lt;br /&gt;&lt;br /&gt;b) attempting to compromise quality-- while hoping that no one would notice-- just so they could make a few more dollars in the short term... and let the long term be damned.&lt;br /&gt;&lt;br /&gt;But avoiding both of those errors appears to be too high a bar for some members of the American chocolate industry, i.e., those who wish to adulterate their product without suffering any consequences, while substituting alternative fats for the chocolate liquor, or by adding other, non-chocolate, ingredients... and I don't mean wonderful flavors like orange or roasted almonds or espresso.&lt;br /&gt;&lt;br /&gt;Obviously, there are some chocolate producers who truly do not understand their base, given that chocolate politics are now in danger of following the mold cast in Washington, DC.  But back to the topic...&lt;br /&gt;&lt;br /&gt;The current state of the American automobile industry is a prime example of what happens when manufacturers continue to ignore what their customers say they want... decade after decade. Detroit's main business and its once-large profits found their way across the Pacific to manufacturers of high quality cars with better gas mileage and important safety features.&lt;br /&gt;&lt;br /&gt;And if trying to save a bit of money-- those pesky stockholders!-- really is all that Mattel had in mind (temporarily forgetting that you get what you pay for) when they outsourced all of those (lead-)painted toys to China's underpaid workforce, they're probably about to find out the meaning of that old Reality saw, "penny-wise and pound-foolish." To be fair... Mattel's fiasco is a brand-new story, but there have been other recent examples available for learning purposes, the most dramatic being the contaminated wheat gluten responsible for the deaths of too many beloved pets. Shouldn't American manufacturers have learned by now that endangering the lives of consumers' children and/or pets is not just immoral, but also bad for business?! Apparently, that collective learning curve is pretty steep.&lt;br /&gt;&lt;br /&gt;Remember what happened to Coke when someone thought they could simply change the formula? ...and that was without any life or death consequences!&lt;br /&gt;&lt;br /&gt;If you also care about the quality of some product that is important in your life, and nostalgic for the days when most companies were run by people who cared deeply about the product or service they provided, then you understand why I am so devoted to &lt;a href="http://greenandblacks.com/uk/frombeantobar.php"&gt;Green and Black's&lt;/a&gt;, and why I am presuming that IntrovertGirl feels similarly.&lt;br /&gt;&lt;br /&gt;There are plenty of other manufacturing industries that could employ those whom I would have BigChocolate sack; for example, let industrial chemists mess around with tobacco all they want. It's not as if they could make tobacco any more harmful to humans than they already have with all of the noxious, carcinogenic, and just plain poisonous, additives that have been used to make it more addictive. Perhaps they really could-- as has often been promised-- improve tobacco products and make them even a little bit less harmful.&lt;br /&gt;&lt;br /&gt;But, Chocolate?! Why should industrial chemists have anything to do with so-called improvements (aka cost-cutting measures) to a product that is as near to perfect in this imperfect world as chocolate... which is also known to westerners as &lt;span style="font-style: italic;"&gt;Theobroma&lt;/span&gt;, or "food of the gods?" Yet, there are those who wish to substitute a bit of hydrogenated vegetable oil (yes, a trans fat!) for a portion of the cocoa butter, and its health-giving properties.&lt;br /&gt;&lt;br /&gt;If only BigChocolate could exercise a bit of restraint, some patience. Medical research is even now showing some proof of cardiovascular benefits from a moderate intake of dark chocolate... and the chocolate industry is not even having to spend the billions of dollars that BigPharma does whenever they come up with a new drug that will likely have serious side-effects.  Those savings should be considered as cash in hand, but instead, some members of the chocolate industry think it a better idea to mess around with the (potentially) healthful benefits of a product for which the projected market growth is probably a steep incline.&lt;br /&gt;&lt;br /&gt;Ai yai yaiii.... [sigh] Would someone please send the &lt;a href="http://www.chocolateusa.org/"&gt;Chocolate Manufacturers Association&lt;/a&gt; a copy of the children's tale about killing the goose that lays the golden egg?&lt;br /&gt;&lt;br /&gt;Consider, too, the wider view... perhaps the critical state of our national politics has not really sunk in for you yet. If not, then just contemplate what could happen to chocolate if companies like Nestle and Mars were allowed to have their way. Equivalent scenarios have already happened in so many other areas of our lives...&lt;br /&gt;&lt;br /&gt;In fact, the politics of chocolate might once have been considered a &lt;a href="http://www.sil.org/linguistics/GlossaryOfLinguisticterms/WhatIsASynecdoche.htm"&gt;synecdoche&lt;/a&gt; for American politics... except that so many of the worst-case scenarios have already come to pass in DC politics, and the government-sanctioned adulteration of chocolate is not &lt;span style="font-style: italic;"&gt;yet &lt;/span&gt;a FISA accompli.&lt;br /&gt;&lt;br /&gt;* * *&lt;br /&gt;&lt;br /&gt;[Anyone who wants to sign a petition to save the integrity of chocolate, in general, can do that from &lt;a href="http://dontmesswithourchocolate.guittard.com/"&gt;here&lt;/a&gt;.]&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-4397473999366792233?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/4397473999366792233/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=4397473999366792233&amp;isPopup=true' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4397473999366792233'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4397473999366792233'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/08/battling-meaning-of-chocolate-im-not.html' title='Battling the meaning of Chocolate... I&apos;m not kidding. Chocolate: a political synecdoche...'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-4586061451209227006</id><published>2007-08-02T12:37:00.000-07:00</published><updated>2007-08-02T12:43:40.213-07:00</updated><title type='text'>Chicago's Style Advice</title><content type='html'>As a paying member to the &lt;i&gt;Chicago Manual of Style&lt;/i&gt; website, I get regular email updates of the latest question-and-answer page of editorial advice. These can be as funny as they are helpful -- just thought I'd share some with my fellow bloggers.&lt;br /&gt;&lt;br /&gt;Q. When you use parentheses to indicate that a noun might be plural, is it necessary to use them to indicate that the verb might be plural as well? For example, "The participant(s) was (were) informed of the procedure in writing." Is there a rule about this, or is it a stylistic choice? Am I justified in adding the second verb to an author’s manuscript?&lt;br /&gt;&lt;br /&gt;A. I don’t know about a rule, but the construction is clumsy, and it’s better to avoid it. Just write “Participants were informed of the procedure in writing,” which doesn’t rule out the possibility of there being only one participant.&lt;br /&gt;&lt;br /&gt;*****&lt;br /&gt;&lt;br /&gt;Q. Contracts often employ defined terms in quotes and parentheses, e.g., ABC Corp. (the “Seller”) shall sell ten widgets to XYZ Corp. (the “Buyer”). When drafting such a contract, I always put a period after the close parenthesis if it is the end of the sentence, such as in the above example. But it’s like listening to nails on a chalkboard to me to have a period essentially (ignoring the parenthetical) follow the period employed in an abbreviation. What do you recommend?&lt;br /&gt;&lt;br /&gt;A. Yoga? &lt;br /&gt;&lt;br /&gt;*****&lt;br /&gt;&lt;br /&gt;Q. This headline appeared in the &lt;i&gt;New York Times&lt;/i&gt;  on Friday, May 11: “A Tough Fight Still Looms, Cheney Warns G.I.’s in Iraq.” I thought no apostrophe was necessary here, as the s represents a plural, not a possessive. What’s up at the &lt;i&gt;Times&lt;/i&gt;?&lt;br /&gt;&lt;br /&gt;A. What’s up is that the &lt;i&gt;Times&lt;/i&gt; uses &lt;i&gt;New York Times&lt;/i&gt; style, not Chicago style. (Tsk!) &lt;br /&gt;&lt;br /&gt;*****&lt;br /&gt;&lt;br /&gt;Q. My fashion expert daughter insists that denim does not go with “almost anything,” as I say it does. What is your opinion? Does denim match almost anything, including other colors and other fabrics, e.g., silk?&lt;br /&gt;&lt;br /&gt;A. Finally, a real style question! If only we Chicago manuscript editors were a little more fashion-forward . . .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-4586061451209227006?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/4586061451209227006/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=4586061451209227006&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4586061451209227006'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4586061451209227006'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/08/chicagos-style-advice.html' title='Chicago&apos;s Style Advice'/><author><name>Introvert Girl</name><uri>http://www.blogger.com/profile/16352147838562674682</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='19' src='http://bp1.blogger.com/_H9UrZ4haTm4/RmoGEuqb71I/AAAAAAAAAAM/6eI5dFwRhFo/s320/DSCF0001.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-230885978759394206</id><published>2007-08-02T12:04:00.000-07:00</published><updated>2007-08-02T12:30:14.263-07:00</updated><title type='text'>A Lunch of New Words</title><content type='html'>I'm reading an excellent nonfiction book at the moment, and engaging in that healthiest of tasty little pastimes, noting down words that I have never heard (or read) before, along with ones I know I've read a hundred times but am unsure of the exact meaning of. Of course, this activity is enabled through moderate consumption of Green &amp; Black's organic chocolate (dark, mint-filled squares in my case) and tea. Karen and I share a passion for Green &amp; Black's. But back to my words, whose definitions I've arbitrarily plucked from either &lt;i&gt;Oxford's English Dictionary&lt;/i&gt; or the &lt;i&gt;American Heritage Dictionary&lt;/i&gt;.&lt;br /&gt;&lt;br /&gt;My author, almost all of whose books I've read and whose wordsmithing is usually flawless, littered the word &lt;i&gt;faience&lt;/i&gt; many times over several pages, when describing ancient, exquisite tombs, shrines, and mosques he encountered in a three-thousand-mile journey through China, the 'Stans, and the Middle East. I thought that he had to reuse it so often because it must describe something so absolutely specific that no other word could do, but now I'm not sure. Thoughts?&lt;br /&gt;&lt;br /&gt;faience: (OED) Fr. probably an appellative use of the proper name Fayence, Faenza in Italy, one of the chief seats of ceramic industry in the 16th century.&lt;br /&gt;"A general term comprising all the various kinds of glazed earthenware and porcelain."&lt;br /&gt;e.g.: "The mosaic floors and faienced walls convey even today an image of perfection." --Koestler&lt;br /&gt;&lt;br /&gt;&lt;i&gt;Chiaroscuro&lt;/i&gt; is one I've run into so many times that I decided it's high time I looked it up: (OED) clear, bright.&lt;br /&gt;1. style of pictorial art in which only the light and shade, and not the various colours, are represented; black-and-white, or dark brown and white&lt;br /&gt;2. The treatment or disposition of the light and shade, or brighter and darker masses, in a picture.&lt;br /&gt;3. Used of poetic or literary treatment, criticism, mental complexion, etc., in various obvious senses, as mingled 'clearness and obscurity,' 'cheerfulness and gloom,' 'praise and blame,' etc.&lt;br /&gt;5. Partly revealed and party veiled.&lt;br /&gt;&lt;br /&gt;Definition number 5 reminds us of where poetry springs from: looking at words, objects, and meanings in new lights. I am so pleased with that definition, partly because it's finally given me a title for an essay that until now was stuck with something hopelessly bland.&lt;br /&gt;&lt;br /&gt;Two others, the first I didn't know the meaning of, and the second I felt in need of defining to myself more clearly, again after running into it for several years, both definitions from AHD, which is wonderfully practical if not quote so poetic as the OED:&lt;br /&gt;&lt;br /&gt;caravanserai: (in AHD as &lt;i&gt;caravansary&lt;/i&gt;)&lt;br /&gt;1. An inn built around a large court for accommodating caravans along trade routes in central and western Asia. &lt;br /&gt;2. A large inn or hostelry. In both senses also called &lt;i&gt;serai&lt;/i&gt;.&lt;br /&gt;&lt;br /&gt;callow: Lacking adult maturity or experience; immature: &lt;i&gt;a callow young man&lt;/i&gt;.&lt;br /&gt;&lt;br /&gt;Don't you find that one of the great satisfactions of reading really good writers is that you stumble across words either rarely used, or words used well for the first time?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-230885978759394206?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/230885978759394206/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=230885978759394206&amp;isPopup=true' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/230885978759394206'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/230885978759394206'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/08/lunch-of-new-words.html' title='A Lunch of New Words'/><author><name>Introvert Girl</name><uri>http://www.blogger.com/profile/16352147838562674682</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='19' src='http://bp1.blogger.com/_H9UrZ4haTm4/RmoGEuqb71I/AAAAAAAAAAM/6eI5dFwRhFo/s320/DSCF0001.jpg'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-3815721999816532348</id><published>2007-07-24T08:45:00.000-07:00</published><updated>2007-07-24T09:29:46.579-07:00</updated><title type='text'>In Defense of Harry Potter</title><content type='html'>&lt;i&gt;(While this isn't technically a post about grammar, books, we all agree, hold a starring place in how we employ language. In Harry Potter, I'm not interested in how JK Rowling uses syntax--although I find her creativity and exposition delightful--but what she has chosen to give us through her use of language.)&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;So the last Harry Potter has finally come out, and, as was predictable, scads of critics and reviewers have attempted to pretend that they enjoy these (holding them delicately with two fingers far away from Dostoevsky so they don't infect 'real literature') "children's books," and ended up proving, once again, that they have no idea what the story is about.&lt;br /&gt;&lt;br /&gt;The Salon reviewer complained that the books are "boarding school" books, so why didn't the last one take place at Hogwarts? That argument doesn't even deserve a reply. And, as many critics have, she relates the books to &lt;i&gt;The Lord of the Rings&lt;/i&gt;, thinking she's giving a compliment but once again showing ignorance by looking simply at plot mechanics rather than at the underlying themes of the fantasy genre. The NPR reviewer tried not to say the same thing regarding boarding schools, but whined that the first 400 pages was like a whirlwind trip around the English countryside and he wondered if Rowling knew what she was doing.&lt;br /&gt;&lt;br /&gt;After listening to that last review on Monday morning, I switched off the radio and vowed not to read or listen to a single review about Harry Potter again. The ignorance of these people just served to annoy me, and their failure to appreciate the importance of the epic ruined my enjoyment of it. So I now stick to only discussing the books with my over-educated sister and mother.&lt;br /&gt;&lt;br /&gt;The three of us delighted in the fact that Rowling made the last book live up to, and exceed, the expectations of the previous six. It would have been all too easy to fail, but at almost every turn she chose to make the story live a little more rather than plugging in easy, loose-end-tying plot developments.&lt;br /&gt;&lt;br /&gt;What interested us, though, was not the explanation of Snape or Harry's final actions or even the exciting plot twist of the Deathly Hallows. No, what we talked about was the same thing that is keeping millions of readers hooked to these books, whether they know it or not. It's not just about the magic, as many critics and snooty "these are just children's books" readers would like to claim. Do you know how many books about magic and other worlds and good vs. evil have been published in the last fifty years? Do some research. There are thousands, and huge numbers of them, surprise, are actually very good, such as Susan Cooper's 'The Dark is Rising' series.&lt;br /&gt;&lt;br /&gt;But none of them, not even &lt;i&gt;The Lord of the Rings&lt;/i&gt;, which I have read and loved and lived in once a year since I was eight years old, addresses the question of personal choice in that good-vs.-evil struggle. &lt;i&gt;That&lt;/i&gt; is the power that Rowling has brought to her excellent series. Amid all the humor and the whimsy, the incredible creativity and imagination brought to bear on creating the Potter world, and lovely character developments, what gives these book come-back-and-stay power is the fierce internal struggle each character, but especially Harry, has to make in the fight against evil in the form of Voldemort. What makes these books important is their emphasis on personal choices.&lt;br /&gt;&lt;br /&gt;The fantasy genre has always had as its paramount theme these question of right vs. wrong embedded in the struggle of good over evil. But very few books address the personal choices the heroes have to make when they face a decision between, as Dumbledore put it, "what is right and what is easy."&lt;br /&gt;&lt;br /&gt;My older sister pointed out that most of 20th-century literature has dropped any discussion of these questions, which is perhaps why we're both so much more attracted to 19th-century British and Russian novels. For some reason, the last century has been fascinated with the sordid, despairing details of modern life. It insists that, not only is "truth" found only in the minute, but that the truth so found is never something that uplifts us.&lt;br /&gt;&lt;br /&gt;It is, somehow, left to children's literature to address questions of real importance: morality, goodness, evil, hope, right, wrong. What are adults so frightened of? Being thought sappy for caring? Being judged? Finding that they will choose wrong over right because it's expedient or beneficial for them? Or maybe they're scared of these questions because they don't want any messy moral truths screwing up their acceptance of a dominant paradigm that claims right and wrong don't exist.&lt;br /&gt;&lt;br /&gt;This paradigm likes to complicate questions of morality, couching them in the languages of economics and balances and religions and "greater good." But these questions are never complicated: there is a right and there is a wrong, and your intuition, if you block out the surrounding social-political noise and listen to it, will always tell you which choice to make.&lt;br /&gt;&lt;br /&gt;It is the focus on personal choice that makes the Harry Potter books so powerful. Harry, and his friends and cohorts, always have the choice to turn back or turn away. They have to face these decisions, large and small, all the time. What JK Rowling has given us is a way back to our internal guides, the realization that, every day at every moment, we too have choices to make, whether we will serve good or evil and how. It's not an easy choice, not a smooth path. Harry's story--a metaphor for finding and defining your character through childhood and adolescence--is littered with life-threatening obstacles. Our paths aren't easy, either, but, as there is no all-powerful Dark Lord waiting to murder us if our courage falters, we have less of an excuse for failing to face that question: when given the choice between what is right and what is easy, do we look it in the face, or do we run away?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-3815721999816532348?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/3815721999816532348/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=3815721999816532348&amp;isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/3815721999816532348'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/3815721999816532348'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/07/in-defense-of-harry-potter.html' title='In Defense of Harry Potter'/><author><name>Introvert Girl</name><uri>http://www.blogger.com/profile/16352147838562674682</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='19' src='http://bp1.blogger.com/_H9UrZ4haTm4/RmoGEuqb71I/AAAAAAAAAAM/6eI5dFwRhFo/s320/DSCF0001.jpg'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-8953939984115575408</id><published>2007-07-19T18:56:00.001-07:00</published><updated>2007-09-10T14:47:37.562-07:00</updated><title type='text'>Passion at the End of the Age of Reason</title><content type='html'>&lt;p class="MsoNormal"&gt;It all started here&lt;br /&gt;&lt;b&gt;http://tinyurl.com/3apohb&lt;br /&gt;&lt;/b&gt;in a corner of Salon during a discussion of sycophancy and selling in the kaliyuge of the days of Bush the Younger. Frustration turned to dreams of the coming of the meteor by Svensker, and I replied by giving a brief overview of Medieval history as it is learned by high school students. At issue is whether the Age is going Dark. In the course of history, a spouse and four bloggers was related to a possibly previous spouse and four drunken philosophers. Wonderful what an inflamed mind can do if it studied too much of Li Po embracing the moon, and never really understood the Fall of Rome.&lt;br /&gt;&lt;br /&gt;Svensker felt that the problem was reading -- how ironic in the days of the internet, when people do so much communication by reading, ironic in the days of the cell phone, when text messaging is the lingua franca of the technological beast, ironic in the days when there are more pages of journal publication and book print than ever before in the History of Man -- that Man's eyes should grow dim not from reading to much, but from reading too little: that words of ancient texts, the New Testament in Greek, grow lost, that science numbs itself and cowers before the passion of a new theory, unable to make business sense out of taking the chance of ridicule, unable to spread its wings lest they turn out to be made of wax.&lt;br /&gt;&lt;br /&gt;William wonders if the language can change the feel once the culture in which the language grew has been lost -- does the language need its Age and its Place to hold the meanings, and do those meanings grow approximate with time? What is it that the language imparts, what the culture? Is it so very bad to have approximations define the past? Approximations are the staple of the healthy mind, embellished with details or not, but King James seems authoritative after so much time has passed.&lt;br /&gt;&lt;br /&gt;For that matter, Karen muses, what of the Visigoths, those latter day nomads from the land of the big bad guys in the East? Lingua franca indeed, they settled in the lands of &lt;st1:state st="on"&gt;&lt;st1:place st="on"&gt;Languedoc&lt;/st1:place&gt;&lt;/st1:state&gt;, the cradle of the Great Heresy come west. Ambassadors of destruction bringing with them the end of the Golden Age when Caligula partied and Nero practiced his études. Vandals and Huns, Goths and Visgoths, Bulgars and Bogomils lampshades on the light of the Classical world.&lt;br /&gt;&lt;br /&gt;Svensker sees the New Testament drifting as it is cut from its roots, and holds out hope that China and the Mystic Subcontinent will keep the light burning a little further, keep us seeing in the night of perusing without reading of slipping into the existence that isn't quite life. I don't know my scriptural religions, a Puritan turned to the bosom of the Heart Sutra, but culture is important, and text perhaps drifts as much as language does when cut off from its written roots?&lt;br /&gt;&lt;br /&gt;Cycles, endless cycles, a thought gets dislodged from its moorings low down on the tree and pushed like a kite to where it can mingle with other branches -- it is in our blood this drift, it takes all memory and finds new patterns, new ways to express. It hates to be tied down, and flares with haunting images of a nightmarish past. Could our fixation with destruction and empire that pulls us closer into the maelstrom that neoconservatism brings be the social cyst of fixation, the post-traumatic stress of failure to allow a culture to evolve? I go off topic even for chocobang.&lt;br /&gt;&lt;br /&gt;How does the Age grow dark just as authorship reaches the masses?&lt;br /&gt;How does the loss of language become the loss of meaning?&lt;br /&gt;How do social pressures lead us downward when so many can see so clearly?&lt;br /&gt;How do you spend your time, as you see a world go gray but do not act?&lt;br /&gt;Where has all the passion gone? (gone to young girls, every one...)&lt;/p&gt;&lt;br /&gt;&lt;p class="MsoNormal"&gt;&lt;/p&gt;&lt;span style="font-weight: bold;"&gt;Note:&lt;/span&gt; Due to a privacy problem with blogspot, I had to delete and repost this entry. When I did that the comments disappeared.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Note Update:&lt;/span&gt; Karen M was able to resurrect the comments to the original post and append them as one comment. Thanks!&lt;br /&gt;&lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-8953939984115575408?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/8953939984115575408/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=8953939984115575408&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/8953939984115575408'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/8953939984115575408'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/09/passion-at-end-of-age-of-reason.html' title='Passion at the End of the Age of Reason'/><author><name>ondelette</name><uri>http://www.blogger.com/profile/14931892878918352763</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-1812814148728457299</id><published>2007-07-10T12:30:00.000-07:00</published><updated>2007-07-10T12:48:43.554-07:00</updated><title type='text'>The State of English in Africa</title><content type='html'>Despite my utter delight in the absurdity of the weekly offers I get to be paid a stocky percentage for rescuing millions of dollars from the bank accounts of people who've died in plane crashes over the last five years (and my tiny, plaintive wish that I really could walk away with five million or so clear, because I could really use it), the most recent plea brought to my attention the fact that these scammers could really use some help.&lt;br /&gt;&lt;br /&gt;"I  have an obscured business suggestion for you," says Mr. Johnson Mutambara. Oh, how true. The copy editor in me itches to correct every little spelling and grammatical mistake, tighten up the logical flow of his argument, and tidy up his lines, paragraphs, and fonts as if tapping stacks of paper together. &lt;br /&gt;&lt;br /&gt;"Also &lt;br /&gt;Information from the National Immigration stated that he was also &lt;br /&gt;single on entry into South Africa.&lt;br /&gt;  &lt;br /&gt;I have secretly discussed this &lt;br /&gt;matter with some of the bank officials and we agreed to find a reliable &lt;br /&gt;foreign partner to deal with."&lt;br /&gt; &lt;br /&gt;&lt;em&gt;Tidiness&lt;/em&gt;! my mind cries. I assume you mean this German citizen who died in the Concorde crash wasn't married. &lt;em&gt;Clarity&lt;/em&gt;! Do you mean you would like me to marry him? Does that mean I have to join that obscure branch of Mormonism that practices posthumous marriage? &lt;br /&gt;&lt;br /&gt;But maybe there's something further to be read in the avowed obscurity of these letters. Something deep and existential, something James Joyce-ian about the way they redefine our understanding of mundane words, something ...&lt;br /&gt;&lt;br /&gt;Nah. What you really need, Mr. Mutambara (or is it Rahim Attah, the name on the return email address?), is to sack your editor and get a new one. I'll do it for one percent of the loot, a bargain compared to the forty percent you were going to pay just for my bank account details. If you can diagram the first sentence of this post, I'll do it for half that.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-1812814148728457299?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/1812814148728457299/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=1812814148728457299&amp;isPopup=true' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/1812814148728457299'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/1812814148728457299'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/07/state-of-english-in-africa.html' title='The State of English in Africa'/><author><name>Introvert Girl</name><uri>http://www.blogger.com/profile/16352147838562674682</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='19' src='http://bp1.blogger.com/_H9UrZ4haTm4/RmoGEuqb71I/AAAAAAAAAAM/6eI5dFwRhFo/s320/DSCF0001.jpg'/></author><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-786442332721882632</id><published>2007-07-09T16:33:00.001-07:00</published><updated>2007-07-09T16:43:59.964-07:00</updated><title type='text'>Apparently, a love of language can be a barrier</title><content type='html'>...to finding true love in one's daily life.&lt;br /&gt;&lt;br /&gt;Jaimie Epstein, writing for the &lt;a href="http://www.nytimes.com/2007/07/08/magazine/08wwln-guest-t.html?ref=magazine"&gt;Sentence Sensibility&lt;/a&gt; blog at the New York Times, reveals her dilemma: whether to ignore the egregious errors that make a person who loves working with words inwardly cringe... or to stiffen her upper lip, and, stoicly, go forward.&lt;br /&gt;&lt;br /&gt;An especially sticky dilemma... if one considers that either of those choices could mean losing a significant portion of what a language lover might consider to be foreplay.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;[...sigh...] &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;No easy answers for this one... but if anyone has any survival tactics (or better) to suggest, please consider adding them to the comments.&lt;br /&gt;&lt;br /&gt;Perhaps Jaimie will visit, but if not, I'll send her this link.&lt;br /&gt;&lt;br /&gt;The bottom line: can't she at least expect potential partners to spell her name correctly? Or is that being unreasonable?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-786442332721882632?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/786442332721882632/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=786442332721882632&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/786442332721882632'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/786442332721882632'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/07/apparently-love-of-language-can-be.html' title='Apparently, a love of language can be a barrier'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-4890259066407919797</id><published>2007-07-03T12:00:00.001-07:00</published><updated>2007-07-03T13:44:38.236-07:00</updated><title type='text'>Open Thread - Happy Fourth!!!!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://upload.wikimedia.org/wikipedia/commons/5/5e/ROM_dinosaurs.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 320px;" src="http://upload.wikimedia.org/wikipedia/commons/5/5e/ROM_dinosaurs.jpg" alt="" border="0" /&gt;&lt;/a&gt;Things proceed in the world and in my brain, and they seem slow enough over here at the choco' bang.  Day off on Wednesday?  I will help wash the baby - she cracked her little ankle last week, pointing at something outside with the hand that should have been helping hold up that leg.  Whole-leg cast for little ones who can't stay still, and she can't go in the tub . . . .  I will also play computer games - the barbarians had better be looking out - I have trebuchets now.  My mental boat drifts farther from planned projects as I read Guy Davenport, Italo Calvino, and Montaigne, and think to myself what a good job these folks have done who thought about these things way before I did.&lt;br /&gt;&lt;br /&gt;I will also check back here.  How are you all?  What is going on?  And, if you ask why I selected a picture of dinosaur skeletons for a Fourth of July post, I will answer that my enthusiasm is something that the USA and dinosaurs have in common.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-4890259066407919797?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/4890259066407919797/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=4890259066407919797&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4890259066407919797'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4890259066407919797'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/07/open-thread-happy-fourth.html' title='Open Thread - Happy Fourth!!!!'/><author><name>certifiedprepwn3d</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-6694713525477877255</id><published>2007-06-27T16:15:00.000-07:00</published><updated>2007-06-27T13:17:58.288-07:00</updated><title type='text'>Poetry as a national security risk</title><content type='html'>Yes, you read that correctly...&lt;br /&gt;&lt;br /&gt;It really says something about the quality of our detainees in Guantanamo, that they have written poems in Arabic on fragments of styrofoam cups.&lt;br /&gt;&lt;br /&gt;But, apparently, too much poetry has been written at Guantanamo-- compromising our national security-- and much of it has been censored or destroyed.  However, a collection of the remnants of these cup poems is to be published by the University of Iowa...&lt;br /&gt;&lt;br /&gt;An excerpt from Leonard Doyle's piece in &lt;a href="http://www.commondreams.org/archive/2007/06/21/2017/"&gt;Common Dreams&lt;/a&gt;, originally published in The Independent/UK, and which also includes several of the poems:&lt;br /&gt;&lt;blockquote&gt;&lt;p&gt;The words of the celebrated Pakistani poet were scratched on the sides of a Styrofoam cup with a pebble. Then, under the eyes of Guantanamo Bay’s prison guards, they were secretly passed from cell to cell. When the guards discovered what was going on, they smashed the containers and threw them away, fearing that it was a way of passing coded messages.&lt;/p&gt;&lt;p&gt;[snip]&lt;/p&gt;&lt;p&gt;There are other tragic tales behind the verses. The “cup poems” of Guantanamo speak of the strange absence of flowers in spring, the bangles worn by young women and handcuffs on the militants.&lt;/p&gt; &lt;p&gt;Fragments survived in the memory of the poet Shaikh Abdurraheem Muslim Dost after his eventual release, but thousands of lines of poetry he wrote in prison have disappeared.&lt;/p&gt; &lt;p&gt;Dost, a respected religious scholar, poet, and journalist - and author of nearly 20 books - until his arrest in 2001, spent nearly three years in Guantanamo with his brother. Sent home two years ago, the brothers were picked up by Pakistani intelligence and they too disappeared. Nothing has been heard of them since.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;/p&gt;Perhaps the real security issue is the safety of those who have been or are currently in Guantanamo.&lt;br /&gt;&lt;br /&gt;* * *&lt;br /&gt;&lt;br /&gt;William Carlos Williams wrote... words that are apropos of almost any moment in these times:&lt;br /&gt;&lt;br /&gt;“It is difficult&lt;br /&gt;to get the news from poems&lt;br /&gt;yet men die miserably&lt;br /&gt;every day&lt;br /&gt;for lack of what is found there.”&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=";font-family:trebuchet ms;font-size:85%;"  &gt;A h/t to Dave Pollard at &lt;a href="http://blogs.salon.com/0002007/"&gt;How to Save the World&lt;/a&gt;, for &lt;a href="http://blogs.salon.com/0002007/2007/06/23.html#a1901"&gt;his post&lt;/a&gt; with the link to this story...&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-6694713525477877255?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/6694713525477877255/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=6694713525477877255&amp;isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/6694713525477877255'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/6694713525477877255'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/poetry-as-national-security-risk.html' title='Poetry as a national security risk'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-9131249983613121354</id><published>2007-06-26T09:53:00.000-07:00</published><updated>2007-06-26T10:00:05.452-07:00</updated><title type='text'>The role of culture, however, must go beyond economics. It is not focused on the price of things, but on their value.</title><content type='html'>&lt;p&gt;"Fifty years ago, I suspect that along with Mickey Mantle, Willie Mays, and Sandy Koufax, most Americans could have named, at the very least, Robert Frost, Carl Sandburg, Arthur Miller, Thornton Wilder, Georgia O'Keeffe, Leonard Bernstein, Leontyne Price, and Frank Lloyd Wright. Not to mention scientists and thinkers like Linus Pauling, Jonas Salk, Rachel Carson, Margaret Mead, and especially Dr. Alfred Kinsey. &lt;/p&gt; &lt;p&gt;"I don't think that Americans were smarter then, but American culture was. Even the mass media placed a greater emphasis on presenting a broad range of human achievement. "&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="text-align: right;"&gt;from National Endowment for the Arts Chairman Dana Gioia's&lt;br /&gt;&lt;a href="http://news-service.stanford.edu/news/2007/june20/gradtrans-062007.html"&gt;commencement speech&lt;/a&gt; to the Class of 2007&lt;br /&gt;at Stanford University, his alma mater&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-9131249983613121354?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/9131249983613121354/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=9131249983613121354&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/9131249983613121354'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/9131249983613121354'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/role-of-culture-however-must-go-beyond.html' title='The role of culture, however, must go beyond economics. It is not focused on the price of things, but on their value.'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-3086665162536043284</id><published>2007-06-25T17:14:00.001-07:00</published><updated>2007-06-25T17:34:25.781-07:00</updated><title type='text'>Were it not for Glenn Greenwald's Unclaimed Territory...</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://ec1.images-amazon.com/images/I/51TuynJB29L._SS500_.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 299px; height: 299px;" src="http://ec1.images-amazon.com/images/I/51TuynJB29L._SS500_.jpg" alt="" border="0" /&gt;&lt;/a&gt;...there would probably be no Chocolate Interrobang. &lt;span style="color: rgb(153, 153, 153);"&gt;[Our very first few posts explain the beginnings of this blog, and how we met in the comment threads at UT, and decided to take a tangential discussion of grammar and usage elsewhere, so as not to hijack the thread any further, and &lt;span style="font-style: italic;"&gt;really &lt;/span&gt;annoy everyone else.]&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Perhaps our existence might seem frivolous to you, but just consider how many other serendipitous meetings and occurrences have probably happened because of Glenn's blog. Not to mention the epiphanies...&lt;br /&gt;&lt;br /&gt;You will be doing more than merely rewarding Glenn for creating such an interesting and intellectually stimulating community, if you buy his book. You will also be  rewarding everyone else who has invested their own time &amp; intellectual capital (a considerable amount, all told), and built his comment threads into a sight to behold.&lt;br /&gt;&lt;br /&gt;More importantly-- for the sake of all of us, no matter our political stripe-- you will help to elevate the debate about the very life of our Constitution by making it impossible for the BigMediaGuys in the M$M to avoid paying proper attention to this book.&lt;br /&gt;&lt;br /&gt;Ordinarily, I would suggest that you head off to your favorite independent book store to make your purchase, but in this case, I encourage you to buy from Amazon. It will save you money, and you can use the savings toward the purchase of a second copy... from your favorite independent book store. A loaner, a gift, or a donation... use it however you wish. Ordering from Amazon, though, does make the book more competitive in the quantitative environment where books like Glenn's must compete. And, if you are one of those who never buys anything online, then just buy it. Where ever you buy your books.&lt;br /&gt;&lt;br /&gt;BUY THIS BOOK! &lt;span style="font-style: italic;"&gt;Please&lt;/span&gt;...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-3086665162536043284?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/3086665162536043284/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=3086665162536043284&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/3086665162536043284'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/3086665162536043284'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/were-it-not-for-glenn-greenwalds.html' title='Were it not for Glenn Greenwald&apos;s Unclaimed Territory...'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-1385274141386126453</id><published>2007-06-24T12:30:00.000-07:00</published><updated>2007-06-24T17:20:17.349-07:00</updated><title type='text'>a short note on process...</title><content type='html'>I once had a boss who later fired/laid me off immediately after the beginning of the "First" Gulf War. He said to me one day-- long &lt;span style="font-style: italic;"&gt;before &lt;/span&gt;the war-- "You really take an idea and run with it, don't you?" Unfortunately... he didn't really mean it as a compliment. Nor did he consider the "running-with" trait as desirable. And yet, he wanted me to do more. Oh, well...&lt;br /&gt;&lt;br /&gt;Then, not so long ago, maybe a year or two, I happened to be on a city bus (because that was the easiest way to get to and from a doctor's appointment, since it did not involve parking) and I found myself in a conversation with the middle-aged, African-American man holding onto the strap next door. Seats were dear. I had a book with me, but could not read, given that I was holding a strap above my head and whatever else I was carrying at the time with my other hand.&lt;br /&gt;&lt;br /&gt;So, I was eyeing enviously all of the seated passengers who could. And I remarked to my fellow traveler that there was an untapped, in fact, unrecognized, need for "book-holders." That is, for seated passengers who might care slightly less about reading than the passengers who were standing. For a token sum, they could offer to hold the standing passenger's book and turn the pages as needed, so that said passenger could still ride and read. He looked at me quizzically, but not unkindly, and said something very similar to "you really take an idea and run with it" don't you.&lt;br /&gt;&lt;br /&gt;I had to laugh out loud. It's true. I have maybe one friend who really appreciates this about me; everyone else just tolerates it. It's not as if I actually "do" anything, since most of the time these are "ideas" that I'm running with, not things. But it is still amazing to consider some of the things you can accomplish, just by running with ideas, which of course everyone here understands at a pretty deep level. Or we wouldn't have connected at GG's blog.&lt;br /&gt;&lt;br /&gt;This was just a roundabout way to say to the other contributors here that if an idea grabs you, it's probably okay to run with it. If you are hesitant to do that in a group blog, then go ahead and ask first. But know that you don't have to. This is "true" because of the self-selection process that brings us all here.&lt;br /&gt;&lt;br /&gt;I believe there is a Muse watching over us.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-1385274141386126453?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/1385274141386126453/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=1385274141386126453&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/1385274141386126453'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/1385274141386126453'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/short-note-on-process.html' title='a short note on process...'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-7700105068834900114</id><published>2007-06-23T01:45:00.000-07:00</published><updated>2007-06-23T01:55:24.202-07:00</updated><title type='text'></title><content type='html'>I posted this distillation of a BBC lexicon of zeitgeist speech on the &lt;a href="http://patteran.typepad.com"&gt;Patteran Pages&lt;/a&gt; a year or so ago. By now it's probably as cutting edge as Virgil's famous account of hip speak along the Via Appia. &lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;What’s book, what’s buzzing, what’s boom-boom..?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;When I was at school around about the time they drew up Magna Carta, we wore shirts in blue &amp; black stripes with upturned collars under black v-neck sweaters over black trousers with 15” bottoms &amp; chisel- or pointed-toe shoes.  Under the dripping trees, fags on &amp; transistor radio playing, we called each other ‘dad’ or ‘man’.  Good stuff was ‘cool’ or ‘guvnor’; bad stuff was ‘square’.  &lt;br /&gt;&lt;br /&gt;And that was about it.  Illicit cider in thermos flasks or cooking sherry in shampoo bottles, Players No. 6 tucked into a t-shirt sleeve, nodding moodily along with Gene Vincent or Eddie Cochran &amp; cheeking the teacher constituted the apogee of anti-social behaviour.  Youth subculture was as deep as a coat of paint. Scratch it &amp; the butcher, baker or barrister beneath would shine through. &lt;br /&gt;&lt;br /&gt;Here, within the largely uncharted waters of the 21st century, there flourishes an archipelago of subcultural groupings, each animated by their own modi vivendi, each as fiercely exclusive as Balkan nation states.  &lt;br /&gt;&lt;br /&gt;Hoody culture – that which glossy new Tory leader David Cameron is so anxious to enfold in his pragmatic embrace – has managed, thus far, to resist corporate takeover.  However, The Guardian – whose radar is ever sensitive to the slightest bleep of zeitgeist – has compiled a glossary of contemporary youth-speak.  Now that the camera has flashed &amp; the souls of the natives have been captured forever, street culture will duck the scrutiny of the media, the hoods will disappear &amp; the language will remake &amp; remodel.  So get it here &amp; now while it’s still fresh… &lt;br /&gt;&lt;br /&gt;A&lt;br /&gt;&lt;br /&gt;ah nam - tell on, rat on.&lt;br /&gt;&lt;br /&gt;B&lt;br /&gt;&lt;br /&gt;bait - obvious, as in "that's so bait".&lt;br /&gt;(Nimesh Bhudia, Wembley, London)&lt;br /&gt;&lt;br /&gt;bare - a lot of, very. In the case of a man or woman described as bare butters, see below.&lt;br /&gt;&lt;br /&gt;beast - an adjective to describe something that's really cool.&lt;br /&gt;(Suggested by reader Richard Beadnall, North Yorkshire) Beasting = bullying] [&lt;br /&gt;&lt;br /&gt;book - cool. The first option given in predictive text when trying to type ‘c-o-o-l’.&lt;br /&gt;&lt;br /&gt;boom boom - a slogan of approval in inner-city London. There was much debate during the election campaign about whether Tony Blair was booed or boomed at the Lilian Bayliss Technology School in London. [Surely a term of African American origin from jazz]&lt;br /&gt;&lt;br /&gt;buff - sexy, fit. [It has been suggested to me that this term is used more frequently by the female to express approval of the male, where ‘fit’ might be used more frequently by the male commenting on the female]&lt;br /&gt;&lt;br /&gt;bum - to enjoy something: "he bums that game so much". And there are levels of bummage - to really like something is to "bum it blue", but "he bummed it black" means he used to like it but has since gone off it.&lt;br /&gt;&lt;br /&gt;butters - ugly (pronounced without sounding the t's).&lt;br /&gt;&lt;br /&gt;buzzing - cool.&lt;br /&gt;&lt;br /&gt;C&lt;br /&gt;&lt;br /&gt;chirps - chat up: "We chirps some buff gals last night."&lt;br /&gt;&lt;br /&gt;chung - extremely sexy. If someone is described as "chung", that's a serious step up from ‘buff’.&lt;br /&gt;&lt;br /&gt;clappin' - out of date or worn out, usually to describe attire or accessories, as in "Man, my tracksuit is clappin'. Gotta get down JJB Sport and buy a new one." Also means tired out. &lt;br /&gt;(Suggested by reader Denney, Reading) [‘Clapped out’ is a respectable term describing something functional that has broken down. The term originates from the 18th century in description of prostitutes consumed by venereal disease] &lt;br /&gt;&lt;br /&gt;cotch down - to hang out, relax, chill out or sleep. Possibly derived, via patois, from the French "se coucher", meaning to lie down. See also kotch.  [I have come across what I believe is an American verb to ‘skootch’, which means to wriggle or shuffle into a comfortable position]&lt;br /&gt;&lt;br /&gt;crump - a multi-purpose term which can be an insult, an exclamation and a rather explicit sex act. It generally means bad, but can also mean good, depending on the context: "That ain't good, man, it's crump", or "That's one crump message you left there".&lt;br /&gt;&lt;br /&gt;D&lt;br /&gt;&lt;br /&gt;dash - to dash is to pass something to somebody - but it can be "pass" in the broadest possible sense, including to throw violently with the intention of causing hurt or damage.&lt;br /&gt;&lt;br /&gt;dred - dreadful, terrible, bad, cruel.  [Surely a well-known Jamaican adjective from Rastafarian culture]&lt;br /&gt;&lt;br /&gt;dry - dull, boring, stupid, unfunny. A bad joke might be described as "dry".&lt;br /&gt;&lt;br /&gt;F&lt;br /&gt;&lt;br /&gt;feds - police. Taken from the US word for the FBI.&lt;br /&gt;&lt;br /&gt;flat roofin' - to be overworked and stressed, as in, "I was flat roofin for my GCSEs". Probably comes from flat out.&lt;br /&gt;(Suggested by reader Michael, London)&lt;br /&gt;&lt;br /&gt;fo sho - "urban" version of yes, for sure, certainly.  Clearly a steal from Afro-American vocabulary, with a strong suggestion of Southern inflection]&lt;br /&gt;&lt;br /&gt;from ends - one who is "from the streets" and so knows what's going on.&lt;br /&gt;&lt;br /&gt;fudge - a very, very stupid person indeed, presumably from the common slang verb ‘to fudge’, or mess up.&lt;br /&gt;&lt;br /&gt;G&lt;br /&gt;&lt;br /&gt;grimy - good, or may describe a practical joke or amusing - and probably unsavoury - act.  [The term is used as a noun to define a version of urban dance music]&lt;br /&gt;&lt;br /&gt;H&lt;br /&gt;&lt;br /&gt;hangin - ugly, most likely with an unattractive body and bad dress sense to boot.&lt;br /&gt;&lt;br /&gt;heavy - cool, interesting.&lt;br /&gt;(Suggested by reader Yahya Raje)  [Surely merely a version of the original meaning of the old hippy adjective]&lt;br /&gt;&lt;br /&gt;howling - ugly.&lt;br /&gt;&lt;br /&gt;J&lt;br /&gt;&lt;br /&gt;jack - to steal or take, as in "car-jacking".&lt;br /&gt;&lt;br /&gt;jokes - funny or enjoyable, as in, "That party was jokes".&lt;br /&gt;(Suggested by reader Anishka Wil, Edgware)&lt;br /&gt;&lt;br /&gt;jook - to stab or to steal.&lt;br /&gt;(Suggested by reader Caroline Jones, Godalming)  [In early jazz terminology to ‘jook’ meant to fuck. Is this in some way an extension, retaining the penetrative sense?]&lt;br /&gt;&lt;br /&gt;K&lt;br /&gt;&lt;br /&gt;kotch - sit and chill out. See also cotch.&lt;br /&gt;&lt;br /&gt;L&lt;br /&gt;&lt;br /&gt;laoy dat - forget that.&lt;br /&gt;(Suggested by reader Masum Ullah, Birmingham)&lt;br /&gt;&lt;br /&gt;long - someone who won't put out, also meaning a lot of effort: "He wanted to have sex with me, but I told him I'm long."&lt;br /&gt;&lt;br /&gt;lush - good-looking, sexy.  [This sense – an abbreviation of ‘luscious’ - has been around for many years]&lt;br /&gt;&lt;br /&gt;M&lt;br /&gt;&lt;br /&gt;mint - cool. Self-explanatory, surely.&lt;br /&gt;&lt;br /&gt;munter - ugly. An alternate to minger, which has passed into the mainstream since its first recorded use in 1995.&lt;br /&gt;&lt;br /&gt;N&lt;br /&gt;&lt;br /&gt;nang - London term for cool, excellent, brilliant. When something is very good, it's "proper nang".&lt;br /&gt;&lt;br /&gt;nim nim nim - blah blah blah; yadda yadda yadda. What's said when someone is talking rubbish.&lt;br /&gt;(Suggested by reader Ian, Bristol) [An interesting example of contemporary onomatopoeia]&lt;br /&gt;&lt;br /&gt;O&lt;br /&gt;&lt;br /&gt;off the hook - cool, appealing, fresh, exceeding one's expectations. A phrase much over-used by Maxwell in Big Brother to express appreciation for his surroundings, for an attractive member of the opposite sex...&lt;br /&gt;&lt;br /&gt;owned - to be made a fool of, to be beaten by. Can also be spelled "pwned", to denote a common spelling error in online gaming slang.&lt;br /&gt;(Suggested by reader Jason Truman, Leamington Spa)&lt;br /&gt;&lt;br /&gt;R&lt;br /&gt;&lt;br /&gt;rago - whatever, OK.&lt;br /&gt;&lt;br /&gt;random - odd, irregular, crazy, out there. Not used when something is genuinely random, but as an adjective by those who like to think they live a life less ordinary and have a wacky sense of humour. An example from Urban Dictionary reads thus:&lt;br /&gt;Teen 1: "Cheese! hahahaha"&lt;br /&gt;Teen 2: "Wow! That's sooooo random!"&lt;br /&gt;Also used by players of the online game Counter-Strike to describe someone whose performance is inconsistent.&lt;br /&gt;&lt;br /&gt;rents - parents.&lt;br /&gt;(Suggested by reader Eric, London)&lt;br /&gt;&lt;br /&gt;rinsed - overused, used up, all gone. "That song was rinsed, I don't like it anymore."&lt;br /&gt;(Suggested by reader Angharad, Brixton)&lt;br /&gt;&lt;br /&gt;roll with - hang out with.&lt;br /&gt;&lt;br /&gt;S&lt;br /&gt;&lt;br /&gt;safa - coolest of the cool, superlative version of safe (see below).&lt;br /&gt;&lt;br /&gt;safe - cool, good, sweet.  [Now outside the ‘underground’ &amp; into common usage]&lt;br /&gt;&lt;br /&gt;shabby - cool, smart, "da bomb". As in, "That's a well shabby suit."&lt;br /&gt;&lt;br /&gt;sick - interesting, cool, never seen before. The more sick something is, the better. This usage originated with skaters and snowboarders.&lt;br /&gt;&lt;br /&gt;sik - see sick.&lt;br /&gt;&lt;br /&gt;skeen - I see. Also seen.&lt;br /&gt;(Suggested by reader Alex Harris, Nottingham)&lt;br /&gt;&lt;br /&gt;slap up - to beat up. Hence the happy slapping craze in which feral youths attack passers-by and film it on their mobiles.&lt;br /&gt;&lt;br /&gt;standard - goes without saying.&lt;br /&gt;&lt;br /&gt;swag - extreme, scary. A word which once denoted ill-gotten gains and then freebies - particularly branded merchandise - it can also be used as an adjective for something frightening.&lt;br /&gt;&lt;br /&gt;switch - to turn on someone.&lt;br /&gt;&lt;br /&gt;T&lt;br /&gt;&lt;br /&gt;tell over/told over - to rat on someone.&lt;br /&gt;&lt;br /&gt;U&lt;br /&gt;&lt;br /&gt;unass - to relinquish or surrender control of an object or person; to leave.&lt;br /&gt;(Suggested by reader Spoon, Leamington Spa)&lt;br /&gt;&lt;br /&gt;V&lt;br /&gt;&lt;br /&gt;vexed - irritated, angry. An old word, it has gained new currency, as demonstrated by Science in Big Brother to express his annoyance with some triviality or other.&lt;br /&gt;&lt;br /&gt;W&lt;br /&gt;&lt;br /&gt;wagwaan - what's up? what's going on? Originates from Jamaican patois.&lt;br /&gt;(Suggested by reader Abtin, Berkhamsted)&lt;br /&gt;&lt;br /&gt;wicked - cool. Yes, 30-somethings who remember it from their own school days, it has made a comeback. Can also mean very, thus something can be described as "wicked cool".  [Long outside the ‘underground’ &amp; in common usage]&lt;br /&gt;&lt;br /&gt;Y&lt;br /&gt;&lt;br /&gt;yard - house, garden, where one lives and hangs out.  Once again, a steal from early jazz slang]&lt;br /&gt;&lt;br /&gt;your mum - a comeback to a question or insult. An implied affront to one's mother, which may be taken as an ineffectual insult or may result in grievous bodily harm.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-7700105068834900114?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/7700105068834900114/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=7700105068834900114&amp;isPopup=true' title='11 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/7700105068834900114'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/7700105068834900114'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/i-posted-this-account-of-zeitgeist.html' title=''/><author><name>dick jones</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>11</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-4118544266901914447</id><published>2007-06-22T06:39:00.000-07:00</published><updated>2007-06-23T03:15:58.258-07:00</updated><title type='text'>open thread - welcome friends!</title><content type='html'>&lt;img src="http://www.takeourword.com/images/hobbiton.jpg" align="right" height="300" /&gt;&lt;br /&gt;There has been some talk back and forth over the in the GG comment section - "I shall check out the Chocolate Interrobang!"  There hasn't been a new post in a little bit.  My home is more full of relatives than usual (a layered thought, there) and one of them is very small.   My oft contemplated recap of the thinking-in-metaphors discussion and my conclusions thereto (ants, mandelbrot, and free-climbing) remains un-compiled.&lt;br /&gt;&lt;br /&gt;Unproductive this week, new books, too many people, and the attraction/repulsion of provoking posters at the comment section.  But I keep checking here, and want to say "hey!" and see what comments and remarks people who drop by may have.  Usually, the idea is you write a post to post, and therefore people comment.  This time, I write a post in hopes, waiting for it to be time just to comment.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: 78%;"&gt;The picture comes from &lt;a href="http://www.takeourword.com/TOW195/page1.html"&gt;takeourword.com&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-4118544266901914447?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/4118544266901914447/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=4118544266901914447&amp;isPopup=true' title='8 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4118544266901914447'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4118544266901914447'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/open-thread-welcome-friends.html' title='open thread - welcome friends!'/><author><name>certifiedprepwn3d</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>8</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-8713483191327876308</id><published>2007-06-20T17:00:00.000-07:00</published><updated>2007-06-22T08:53:17.800-07:00</updated><title type='text'>An Open Thread...</title><content type='html'>&lt;div style="text-align: right;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://usimages.easyart.com/i/prints/rw/lg/1/6/Jennifer-Hollack-Wine---Cheese-I-1619.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 255px; height: 319px;" src="http://usimages.easyart.com/i/prints/rw/lg/1/6/Jennifer-Hollack-Wine---Cheese-I-1619.jpg" alt="" border="0" /&gt;&lt;/a&gt;...for&lt;br /&gt;&lt;br /&gt;other&lt;br /&gt;&lt;br /&gt;topics...&lt;br /&gt;&lt;br /&gt;that&lt;br /&gt;&lt;br /&gt;don't&lt;br /&gt;&lt;br /&gt;quite&lt;br /&gt;&lt;br /&gt;belong&lt;br /&gt;&lt;br /&gt;anywhere&lt;br /&gt;&lt;br /&gt;else.&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: left;"&gt;&lt;span style="font-size:78%;"&gt;Thanks to the commenter (?) at &lt;a href="http://salon.com/opinion/greenwald/"&gt;GG's blog&lt;/a&gt; who posted the link to this image.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 102, 255);font-size:130%;" &gt;Valerie's turn...  &lt;span style="font-size:100%;"&gt;&lt;span style="font-size:85%;"&gt;The following has been pasted in from the comments for suggestions on how best to respond to a news story; feel free to add comments, suggestions, etc., directly to this post, if you are able, or else in the comments...&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;and now a rewrite from Valerie (see both her note and mine in the comment box) &lt;span style="font-size:85%;"&gt;which I have also moved up the page a bit&lt;/span&gt;:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;dl id="comments-block"&gt;&lt;dt id="c1548661381799889895"&gt;                    &lt;a href="http://www.blogger.com/profile/11792823853757587150" rel="nofollow" onclick="window.open(this.href);return false;"&gt;Valerie&lt;/a&gt;    said...     &lt;/dt&gt;&lt;dd&gt; &lt;p&gt;  Good morning, good folks!&lt;br /&gt;&lt;br /&gt;I have decided to focus my ire directly on CNN for several reasons. One, they did it! Two, it's already old news :( I'm just not quick enough to be on-spot with commentary like Glenn or others. So, I narrowed my "audience" which helped me structure my rant. Here is my rewrite, which obviously still needs work. I'll do more fact checking later this morning to substantiate my argument. Here goes:&lt;br /&gt;&lt;br /&gt;Dear CNN American Morning,&lt;br /&gt;&lt;br /&gt;On Wednesday, June 20, 2007, I viewed your show during the period that Christianne Amanpour reported on Iraqi refugees which was followed by the interview with Mrs. Laura Bush. I believe the stated facts in these two segments conflicted, which disturbs me for two reasons, which are of great import to your viewers whether they realize it or not. The importance to me has prompted this correspondence.&lt;br /&gt;&lt;br /&gt;The first reason is the apparent conflict in the facts. Amanpour's discussion regarding Iraqi refugees in various countries was informative and presented factually. She stated that the USA had the fewest refugees from Iraq and only in the 10s this year -- not tens of hundreds or tens of thousands, but 10s.&lt;br /&gt;&lt;br /&gt;Then Mrs. Bush's interview followed Amanpour immediately, with Mrs. Bush quoting entirely different Iraqi refugee statistics, saying that (paraphrase): "the USA was helping out with the refugee crisis in a big way, and was leading the world in refugee assistance."&lt;br /&gt;&lt;br /&gt;To alleviate my disturbance, I did some research and found that an article in the Boston Sun (http://www.baltimoresun.com/news/opinion/oped/bal-op.refugee20jun20,0,946531.story) supports Amanpour. QUOTE SOME FACTS.&lt;br /&gt;&lt;br /&gt;Another article, from CNN (http://www.cnn.com/2007/US/06/19/refugees.resettle/index.html), could support Mrs. Bush in a flawed sort of way. Your article states "The U.S. State Department says it expects at least 70 Iraqi refugees to come to the United States in the next 10 days, part of the 7,000 who will be allowed to resettle in America under an emergency measure approved in February." Thus it appears that your article supports Amanpour, but Mrs. Bush used the 7,000 number as if it had already happened. FIND SWEDEN NUMBERS (12,000, I believe)&lt;br /&gt;&lt;br /&gt;PROBABLY NEED A STATEMENT HERE THAT MY RESEARCH DID *NOT* ALLEVIATE MY DISTURBANCE AS TO THE FACTS.&lt;br /&gt;&lt;br /&gt;My second reason for disturbance concerns CNN's decision to air these two segments back-to-back as coverage of World Refugee Day. Did not anyone at CNN notice the conflict in facts? Did not anyone at CNN expect their viewers to notice the conflict in facts? Or was this segment placement intentional in an effort to be "balanced"? And if it was meant to show viewers "both sides of the story," then where is your analysis of the factual conflict?&lt;br /&gt;&lt;br /&gt;NEED HELP IN CLOSING.  &lt;/p&gt; &lt;p class="comment-timestamp"&gt; June 22, 2007 4:30 AM &lt;/p&gt;&lt;/dd&gt;&lt;/dl&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-8713483191327876308?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/8713483191327876308/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=8713483191327876308&amp;isPopup=true' title='46 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/8713483191327876308'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/8713483191327876308'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/open-thread.html' title='An Open Thread...'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>46</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-7355362274495360071</id><published>2007-06-19T10:27:00.000-07:00</published><updated>2007-06-20T11:15:24.919-07:00</updated><title type='text'>Lost  in Translation or I'll Take an "M," Pat</title><content type='html'>Now,  &lt;span style="font-style: italic;"&gt;right now&lt;/span&gt;, as you're reading this, thousands of people halfway around the planet are trying to translate the word "rat-arsed" into perfectly idiomatic Chinese.&lt;br /&gt;&lt;br /&gt;The Fourth Casio Cup Translation Contest is in full swing. Organized by the Shanghai Translation Publishing House, the goal of the contest is to translate a given English source text into Chinese.The text this time is "Reservoir Frogs (Or Places Called Mama’s)," a 1996 &lt;span style="font-style: italic;"&gt;New Yorker&lt;/span&gt; piece by Salman Rushdie, on what Rushdie calls "the fine art of meaningless naming." Here's a sample (you can see the full text &lt;a href="http://kbs.cnki.net/Forums/47256/ShowPost.aspx"&gt;here&lt;/a&gt; [scroll down]):&lt;br /&gt;&lt;blockquote&gt;&lt;span style="font-size:85%;"&gt;As Luis Bunuel knew, obscurity is a characteristic of objects of desire. Accordingly, there is no trainspotting in &lt;/span&gt;&lt;span style="font-style: italic;font-size:85%;" &gt;Trainspotting&lt;/span&gt;&lt;span style="font-size:85%;"&gt;; just a predictable, even sentimental movie that thinks it's hip. (Compared to the work of, say, William S. Burroughs, it’s positively cutesy.) It has many admirers, perhaps because they are unable even to understand its title, let alone the fashionably indecipherable argot of the dialogue. The fact remains: &lt;/span&gt;&lt;span style="font-style: italic;font-size:85%;" &gt;Trainspotting&lt;/span&gt;&lt;span style="font-size:85%;"&gt; contains no mention of persons keeping obsessive notes on the arrival and departure of trains…Irvine Welsh’s original novel does offer some help. The section titled ‘Trainspotting at Leith Central Station’ takes the characters to a derelict, train-less station, where one of them attacks a derelict human being who is, in fact, his father, doling out a goodly quantity of what Anthony Burgess’s hoodlum Alex, in &lt;/span&gt;&lt;span style="font-style: italic;font-size:85%;" &gt;A Clockwork Orange&lt;/span&gt;&lt;span style="font-size:85%;"&gt;, would call ‘the old ultraviolence’. Clearly, something metaphorical is being reached for here, though it's not clear exactly what. In addition, Welsh thoughtfully provides a glossary for American readers: ‘Rat-arsed--drunk; wanker - masturbator; thrush - minor sexually transmitted disease’. At least an effort at translation is being made. Out-and-out incomprehensibilists disdain such cosiness.&lt;br /&gt;…&lt;br /&gt;In 1928, Luis Bunuel and Salvador Dali co-directed the Surrealist classic &lt;/span&gt;&lt;span style="font-style: italic;font-size:85%;" &gt;Un Chien Andalou&lt;/span&gt;&lt;span style="font-size:85%;"&gt;, a film about many things, but not Andalusian dogs. So it is with Quentin Tarantino’s first film, &lt;/span&gt;&lt;span style="font-style: italic;font-size:85%;" &gt;Reservoir Dogs&lt;/span&gt;&lt;span style="font-size:85%;"&gt;. No reservoir, no dogs, no use of the words ‘reservoir’, ‘dogs’ or ‘reservoir dogs’ at any point in the movie. No imagery derived from dogs or reservoirs or dogs in reservoirs or reservoirs of dogs. Nada, or, as Mr Pink and Co. would say, ‘Fuckin’ nada.’ The story goes that when the young Tarantino was working in a Los Angeles video store his distate &lt;/span&gt;&lt;span style="font-style: italic;font-size:85%;" &gt;[sic]&lt;/span&gt;&lt;span style="font-size:85%;"&gt; for fancy-pants European &lt;/span&gt;&lt;span style="font-style: italic;font-size:85%;" &gt;auteurs&lt;/span&gt;&lt;span style="font-size:85%;"&gt; like, for example, Louis Malle manifested itself in an inability to pronounce the titles of their films. Malle’s &lt;/span&gt;&lt;span style="font-style: italic;font-size:85%;" &gt;Au Revoir les Enfants&lt;/span&gt;&lt;span style="font-size:85%;"&gt; defeated him completely (oh reservoir les oh fuck) until he began to refer to it contemptuously as - you guessed it – ‘those, oh, reservoir dogs’. Subsequently he made this the title of his own movie, no doubt as a further gesture of anti-European defiance. Alas, the obliqueness of the gibe meant that the Europeans simply did not comprenday.&lt;br /&gt;…&lt;br /&gt;To forestall any attempts at exegesis (‘Author, Citing Dadaism’s Erstwhile Esotericism, Opposes Present-Day “Mamaist” Obfuscations’), I confess that as a title it means nothing at all; but then the very concept of meaning is now outdated, nerdy, pre-ironic. Welcome to the New Incomprehensibility: gibberish with attitude.&lt;/span&gt; &lt;/blockquote&gt;A friend in China asked me some questions about the text—not about the translation (which would be against the rules and, besides, I don't know Chinese)—and, in the process of helping her, I began to think about how hard the art of translation really is. Like everyone, I've read bad translations but I hadn't really thought about translation from the translating end.&lt;br /&gt;&lt;br /&gt;My friend was thinking "hip" means "fashionable" but, used here, it's more like a self-conscious knowingness of being fashionable—and the word itself is self-cancelling, its very use a comment on unhipness. "With attitude" is a confrontational, "tell-it-like-it-is" stance—it's a positive inversion of "having an attitude" which I always thought of as a sort of sullen hostility—it's hard to imagine that a similar word exists in Chinese.&lt;br /&gt;&lt;br /&gt;And then there's the transmutation from "Au Revoir Les Enfants" to "Reservoir Dogs." How do you manage that in Chinese while retaining the essential meaninglessness of it all? The Chinese releases of those films must have titles—do you go with those or with some specially transliterated versions to show just how Tarantino's mangled French and strange disdain led to a meaningless yet slightly similar title?&lt;br /&gt;&lt;br /&gt;A site devoted &lt;a href="http://www.cjvlang.com/Hpotter/index.html"&gt;entirely&lt;/a&gt; to the Harry Potter books in Chinese, Japanese, and Vietnamese translation provides some fascinating clues as to how translators deal with &lt;a href="http://www.cjvlang.com/Hpotter/wordplayindex.html"&gt;thorny&lt;/a&gt; translation problems. (&lt;i&gt;Disclaimer:&lt;/i&gt; I have never &lt;span style="font-style: italic;"&gt;touched&lt;/span&gt; a Harry Potter book.)&lt;br /&gt;&lt;br /&gt;In Book One, Chapter 5, Harry asks Hagrid the eternal question: "What's the difference between a stalagmite and a stalactite?" Hagrid, not feeling up to geological exegesis (as Sir Salman might say), replies: "Stalagmite's got an "m" in it. An' don' ask me questions just now, I think I'm gonna be sick."&lt;br /&gt;&lt;br /&gt;In Chinese, stalactite is &lt;i&gt;zhōng-rǔ-shí&lt;/i&gt; ("hanging-bell milk rock") and stalagmite is &lt;i&gt;shí-sǔn &lt;/i&gt; (''rock bamboo-shoot''). No "M" in sight. What do you do?&lt;br /&gt;&lt;br /&gt;If you're the Mainland Chinese translator, well, there's no problem: Hagrid says: "There's an "M" in the middle of &lt;i&gt; zhōng-rǔ-shí&lt;/i&gt;." Well, true enough as a translation but that answer must leave Chinese readers scratching their heads.&lt;br /&gt;&lt;br /&gt;If you're the Taiwanese Chinese translator, Hagrid says "&lt;i&gt;zhōng-rǔ-shí&lt;/i&gt; is made up of three characters" (the word &lt;i&gt;shí-sǔn &lt;/i&gt;, after all, has two), effectively getting at the irritated non-answer of Hagrid's reply.&lt;br /&gt;&lt;br /&gt;Another example: one character, Fleur Delacour, is referred to by the contemptuous nickname, "Phlegm." So how do you come up with a nickname that sounds like "Fleur" but with the disgusting properties of "phlegm"?&lt;br /&gt;&lt;br /&gt;This time the Taiwanese Chinese translator comes up with a true masterpiece: Fleur in the Taiwanese version is named &lt;i&gt;Huār&lt;/i&gt; meaning 'flower'; the contemptuous nickname for her is &lt;i&gt;Wār&lt;/i&gt; meaning "frog" which might be considered a suitably slimy substitute for "phlegm" and, as a bonus, mocks the French accent of the character (who drops her "h's").&lt;br /&gt;&lt;br /&gt;So, a particularly gifted translator can convey the essence of the original in another language. (And, in a few rare cases, the translation surpasses the source. Gabriel Garcia M&lt;span style="font-size:-1;"&gt;&lt;b&gt;á&lt;/b&gt;&lt;/span&gt;rquez said that Gregory Rabassa's English translation of M&lt;span style="font-size:-1;"&gt;&lt;b&gt;á&lt;/b&gt;&lt;/span&gt;rquez's &lt;i&gt;Cien anos de soledad&lt;/i&gt; "improved the original.")&lt;br /&gt;&lt;br /&gt;Still, contemplating the flawless translation of Rushdie's piece—or any translation of a difficult literary piece—now fills me with new-found awe and trepidation—awe at the idea that a translator &lt;i&gt;could&lt;/i&gt; overcome the seemingly insurmountable obstacles and craft a fully Chinese version, and trepidation at the actual odds stacked against doing so, both illustrated by the judges' choices in the previous Casio translation competition.&lt;br /&gt;&lt;br /&gt;Awe? One of the judges described the translation of the second prize winner as  "the one that you could barely recognize as a translation. In other words, [John] Updike's story ["The Delicate Wives"] read as though it were written in Chinese originally."&lt;br /&gt;&lt;br /&gt;And  trepidation? Well, what about the first prize winner? There wasn't any—the judging panel said that none of the entries submitted was worthy of the honor of winning the top prize.&lt;br /&gt;&lt;br /&gt;Even so, I'm hoping one of those people now puzzling over the Mandarin version of the word "rat-arsed" nails it this time.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-7355362274495360071?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/7355362274495360071/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=7355362274495360071&amp;isPopup=true' title='25 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/7355362274495360071'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/7355362274495360071'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/lost-in-translation-or-ill-take-m-pat.html' title='Lost  in Translation or I&apos;ll Take an &quot;M,&quot; Pat'/><author><name>Jeff W</name><uri>http://www.blogger.com/profile/06296663806825685128</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>25</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-3763372482900783677</id><published>2007-06-19T08:07:00.000-07:00</published><updated>2007-06-20T11:53:42.206-07:00</updated><title type='text'>Today's Good Grammar and Good Taste Award goes to ...</title><content type='html'>... &lt;a href="http://letters.salon.com/opinion/greenwald/2007/06/18/tragic_legacy/permalink/e2e544ba252a5999615cc82c749c32ba.html"&gt;smartalec&lt;/a&gt; on Glenn's blog for the following:&lt;br /&gt;&lt;blockquote&gt;It's very disappointing to me -- who have had to watch both my favorite local bookstore and one of the best NY landmarks both ...&lt;/blockquote&gt;&lt;br /&gt;Good taste, of course, for supporting the small, independent merchant over the megacorporate giant.&lt;br&gt;&lt;br /&gt;But good grammar for both knowing that a relative pronoun agrees with its antecedent in person and number and for acting on that knowledge in the face of the knowledge that 99.9% of English speakers would have said and would have expected *"who has" instead of the grammatically correct "who have".&lt;br&gt;&lt;br /&gt;It's time to remember that castigating those who use poor grammar is not enough. It's not even enough to point out that many pedagogical grammatical "rules" are nonsense from a language-historical point of view. It is also necessary to reward those with the courage to practice good grammar in public.&lt;br&gt;&lt;br /&gt;So kudos to smartalec for winning the first (and possibly last) ever "Good Grammar &lt;u&gt;and&lt;/u&gt; Good Taste Award". The prize includes (consists entirely of, in fact) a year's free subscription to The Chocolate Interrobang.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-3763372482900783677?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/3763372482900783677/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=3763372482900783677&amp;isPopup=true' title='25 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/3763372482900783677'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/3763372482900783677'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/todays-good-grammar-and-good-taste.html' title='Today&apos;s Good Grammar &lt;u&gt;and&lt;/u&gt; Good Taste Award goes to ...'/><author><name>Frankly, my dear, ...</name><uri>http://www.blogger.com/profile/13417982906335528951</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://bp2.blogger.com/_XIbSGs0jOZA/SBGvFYJKf_I/AAAAAAAAAAM/oYTq4f_irJM/S220/rhett.jpg'/></author><thr:total>25</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-4407986714497344739</id><published>2007-06-18T15:20:00.000-07:00</published><updated>2007-06-19T08:18:47.258-07:00</updated><title type='text'>"That Long Grey Corridor" and "Clear Blue Sky" ...both by Dick Jones</title><content type='html'>Serendipitously, &lt;a href="http://patteran.typepad.com/"&gt;Dick Jones&lt;/a&gt;, whom I mentioned in the previous post and then dropped a note in the comments, now has a an essay in the latest issue of &lt;a href="http://www.qarrtsiluni.com/2007/06/that_long_grey_.html"&gt;qarrtsiluni&lt;/a&gt;, an online literary magazine. Accompanying it, is a poem, written to honor his father who died six years ago.&lt;br /&gt;&lt;br /&gt;Both the essay and the poem deal with the ineffability of death.&lt;br /&gt;&lt;br /&gt;You really want to click over and read them, especially the poem.&lt;br /&gt;&lt;br /&gt;It is a marvel, and-- just to be clear, completely on-topic for this blog.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-4407986714497344739?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/4407986714497344739/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=4407986714497344739&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4407986714497344739'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/4407986714497344739'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/that-long-grey-corridor-and-clear-blue.html' title='&quot;That Long Grey Corridor&quot; and &quot;Clear Blue Sky&quot; ...both by Dick Jones'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-3491639138545971304</id><published>2007-06-14T20:38:00.000-07:00</published><updated>2007-06-17T21:53:39.050-07:00</updated><title type='text'>Bloggers' Love of Language + Generosity = Something Ineffable</title><content type='html'>2004 really wasn't all that long ago, but it seems like ages. I first started blogging that summer, partly to deal with my anxiety about the upcoming election, and partly because I had been sick and couldn't do much else. It seems appropriate at this particular moment-- a transitional one for me-- to mention a few bloggers that I met when I first started at Salon.  Not only because of the theme of community-- first there, and now here, although that is true-- but even more because each of them has an immense love of language and storytelling.&lt;br /&gt;&lt;br /&gt;Although there were a lot of bloggers who were generous with their time and encouragement to other newbies, these four stand out for me: Birdie, who began her first blog, &lt;a href="http://beautydish.typepad.com/"&gt;Beauty Dish&lt;/a&gt;, in order to track her experiences as a single mother selling Avon; Sam, whose blog, &lt;a href="http://blogs.salon.com/0002614/"&gt;feral&lt;/a&gt;, underwent many transformations before it's ultimate end; and Dick Jones, whose &lt;a href="http://patteran.typepad.com/"&gt;Patteran Pages&lt;/a&gt; includes poems, reminiscences, stories about his days in rock and roll (which didn't really end all that long ago), and photos of both his older and youngest children, all glorious examples of offspring; and perhaps the most unusual of all, Mark Hoback, of &lt;a href="http://blogs.salon.com/0001424/"&gt;Fried Green al-Qaedas&lt;/a&gt;, and once of The Virtual Occoquan (now on hiatus), and more recently of &lt;a href="http://ristocrats.blogspot.com/"&gt;The Aristocrats&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://beautydish.typepad.com/"&gt;Birdie&lt;/a&gt; tells the very best stories of anyone I know. She would consistently have her readers refreshing their screens all day long-- sometimes for days at a time-- waiting for the next unbelievable episode in her life. What made her stories so wonderful was partly her sense of adventure and her ability to turn anything into a story worth telling, but also her openness to life itself and her ability to say yes. It also didn't hurt that stories worth telling kept happening to her... like the night when an unknown person rang her doorbell in the middle of the night to alert her that they were leaving a potbellied pig (named Frank E. Bacon) with her because they knew she loved animals. (All of this information was conveyed in the note attached to Frankie.) Or the curious customers she met while hawking Avon: the naked lady, the lady with the monkey who needed conditioning lotion, the very content married lady who had discovered an unusually satisfying use for the firming cream, and on and on. Some rainy day, or any day when you could use a laugh, try and read through her archives. You'll probably find something that will make you laugh and cry. Especially, if you come across the story about her younger Trekkie son and the Pledge of Allegiance. We also had virtual parties in Birdie's comment pages, complete with graphics of food, beverages, and sometimes costumes. That's one advantage of Salon's strange comment editing boxes... if you know how, you can post a picture of something yummy. &lt;span style="font-style: italic;"&gt;In &lt;/span&gt;the comment box. Something we can't do here. Or in most other comment boxes, for that matter. And the after-party clean-up only looked bad; it really took no time at all when everyone pitched in.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://blogs.salon.com/0002614/"&gt;Sam's blog&lt;/a&gt; was one of the most linguistically stylish I've ever had the pleasure to read, her use of language the most impeccable and free of cliches. She had a successful career as an editor, but at heart may be more of an artist. Sam has lots of stories and adventures, too, though not usually as light-hearted as Birdie's, due to her different circumstances. In Sam's daily posts, you might find a poem, fresh that morning from a dream or her psyche, or oftentimes a description of  the natural sounds, along with the sights and scents, on her walkabouts in rural Northern California. I haven't found any other blogs with such soundtracks, or more properly... sensetracks. Of course, there would be the requisite posting of animal pictures, but on a grander scale, with sequential photos of both Sam and her brother, Brian, accompanying those of their amazing menagerie of animals: numerous dogs and cats, itinerant boarding visitors (e.g., a large turtle with a dour personality), and two llamas.   Sam has since been busy trying to make a go of a bookstore, and has created a much-needed and beloved center for booklovers in her small town, but its success has been complicated beause she has had to move the business-- while caring for her autistic brother and an extended family of friends, both two-legged and four-legged-- sometimes just within blocks, 3 or 4 or 5 times. Maybe 6. I've lost count. Ai yai yaiii... only a true-blooded Capricorn like Sam could have accomplished as much heartbreaking work as she has in the few years I've known her, while fulfilling all of those other obligations.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://patteran.typepad.com/"&gt;Dick Jones&lt;/a&gt; was one of the first two people to leave a comment on my Salon blog, Bread Crumbs-- on my &lt;a href="http://blogs.salon.com/0004000/2004/07/13.html"&gt;second post&lt;/a&gt;-- the one with an illustration for R.L. Stevenson's "When I was sick and lay abed," and the accompanying poem, posted because I felt that was how GWB thought of our military, like some toy soldiers he could play with whenever he felt like it. Getting to know Dick was a refreshing respite (redundancy needed for emphasis) because he lives in the UK, and was perfectly willing to read or listen to political diatribes against the current occupant and his administration, even when he didn't know all of the parties involved. And you could always count on him for a pithy one- or two-word epithet to fit the occasion. Dick's blog posts are varied. He is an accomplished poet who writes from the intersecting axes of his memory and dreams and history, both his family's and his country's, especially WWII. A few years older than I am, he has &lt;span style="font-style: italic;"&gt;far more&lt;/span&gt; courage, given that he is the doting father of not one, nor two, but of three toddlers, the youngest of whom has just had her first birthday. You'll have to look at his blog yourself, or you won't believe me when I say how gorgeous they are. And their older siblings look pretty great, too. Dick's blog is also a good place  to look for a good joke (especially for comparisons of US and UK humor) or a fitting quote.&lt;br /&gt;&lt;br /&gt;Mark Hoback's blog scared me a little at first, and I wasn't sure I wanted to add a name like &lt;a href="http://blogs.salon.com/0001424/"&gt;Fried Green al-Qaedas&lt;/a&gt; to my blogroll, since we still didn't know at that time what the Patriot Act really meant, or what the DHS would be looking for. Nevertheless, I girded my loins and added the link. Mark posts some of the most pointed and biting satire anywhere, good enough that his work, especially his graphics, have sometimes been used by other bloggers without citation. [A &lt;span style="font-style: italic;"&gt;big no-no&lt;/span&gt; in my book.] And yet, he was unfailingly generous in collaborating with me, photoshopping images when needed, most notably for an online "dialogue" between Ayn Rand and Jesus Christ, with a very familiar-looking alien calling them to account.  Occasionally he would use something I had written for the Virtual Occoquan, his online literary review of some of the original writing on Salon blogs. If I had to name only one piece of Mark's that was my favorite, it would actually have to be a &lt;span style="font-style: italic;"&gt;series &lt;/span&gt;of posts he did with tiny photo images of some very famous people speaking the words he dared to put in their mouths. The cast included Peewee Herman and  his genie, Jambi, as well as Reese Witherspoon, George Bush and Laura, most of GWB's administration, and the current North Korean dictator, who had a nefarious plot that involved kidnapping you-know-whom. The photos he used were so perfectly dead-on that I would have to laugh out loud while reading each new episode. I asked Mark to extend the story line to get us through the worst of the administration. I don't recall the last date, but it may actually have been last fall.&lt;br /&gt;&lt;br /&gt;Certainly there are many other bloggers whose work I like and admire. You have only to glance at the &lt;a href="http://blogs.salon.com/0004000/"&gt;Bread Crumbs&lt;/a&gt;' blogroll... but these four people fed my spirit in a special way during a time when I was recovering from a chronic condition, and couldn't do much else but surf, blog, and post political rants and diatribes. Except for Mark, they mostly posted other things, which may be why they were so important to me then, as I look back on it. Every diet needs a bit of variety, especially a political one.&lt;br /&gt;&lt;br /&gt;Most importantly, each one of them consistently exercised the highest respect for language and for saying what they wanted to say with integrity. Because of them and the others I met there, Salon was, and still is, in a way, a kind of "wetlands" for blogging. But, except for a handful, most of those original bloggers have left Salon for other environs.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-3491639138545971304?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/3491639138545971304/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=3491639138545971304&amp;isPopup=true' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/3491639138545971304'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/3491639138545971304'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/bloggers-love-of-language-generosity.html' title='Bloggers&apos; Love of Language + Generosity = Something Ineffable'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-2464191087116154682</id><published>2007-06-13T17:50:00.000-07:00</published><updated>2007-06-15T15:41:51.302-07:00</updated><title type='text'>Sure, he did - but it hardly made up for such a crappy Summer</title><content type='html'>One of the famous quotes from Alice in Wonderland is &lt;span style="font-weight: bold;"&gt;"'When I use a word,' Humpty Dumpty said in rather a scornful tone, 'it means just what I choose it to mean - neither more nor less.'"&lt;/span&gt;  The whole passage is interesting, but I want to focus on just this bit.&lt;br /&gt;&lt;br /&gt;   Second things first, the second most notable thing in this quote is the placement of the word "rather" - so precise, suggesting (1) a tone that was more "scornful" than any other adjective, and (2) that the scornfulness was not excessive.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    The first most notable thing in this quote, as applied to how people use words, is how it is both (1) generally untrue and (2) generally true.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;(1)  It is generally untrue&lt;/span&gt;:&lt;br /&gt;&lt;br /&gt;   This line can be taken to mean that, with Humpty Dumpty as our example, we each privately decide words mean whatever we want, regardless of what other people think those words mean.  I find that hackle-raising.  It could mean&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;(a)&lt;/span&gt; we make sounds that sound like words while expecting people to read from our minds thoughts bearing little external relation to the sounds we make; or&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;(b)&lt;/span&gt; we are cunningly sloppy, accomplishing naughty ends through (technically) virtuous means, stretching facets of meanings into loopholes in truth, and lazily tending toward presidential signing statements and viral marketing campaigns and worse&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;(a)&lt;/span&gt; and &lt;span style="font-weight: bold;"&gt;(b)&lt;/span&gt; are common enough in this bad old world, and put a fair reading on that quote, but that reading is &lt;span style="font-style: italic;"&gt;generally&lt;/span&gt; untrue because we humans usually do purposefully use words that mean to others what they mean to us.&lt;br /&gt;&lt;br /&gt;   In other words, as a practical matter, words work.  People buy and sell, travel to new places, do their work, meet and fall in love, all using words to communicate - much gets accomplished, and so it is clear that this hackle raising reading of Humpty Dumpty's statement is untrue for most of us most of the time.&lt;br /&gt;&lt;br /&gt;   And yet!  Even beyond items &lt;span style="font-weight: bold;"&gt;(1)(a)&lt;/span&gt; and &lt;span style="font-weight: bold;"&gt;(1)(b)&lt;/span&gt; above,&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;(2)  It is generally true:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;   Surprisingly often, we use words without thinking about what other people think they mean.  The problem with that is, if a word is to have meaning at all, multiple people must ascribe a given meaning to that word.  We say or write things without considering them, assuming our natural usage will carry our thoughts smoothly to others.  Note the key verb in the quote - "choose" - and reflect for a moment.  We use the words that mean what we say, but often&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;(a)&lt;/span&gt; we fail to think through all the possible things a given word can mean, or&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;(b)&lt;/span&gt; fail to narrow down a word's general region of meaning to the relevant specific meaning.&lt;/li&gt;&lt;/ul&gt;    Do you think about what a word means before you use it?  50% of the time?  85% of the time?  99% of the time?&lt;br /&gt;&lt;br /&gt;   If I take into account both speaking and writing, I have about a B average.  An average average, even.  I do try, though, and I urge others to try.  And, through this blog, I hope to lend my strength to more general resistance against sloppy usage.  If I felt more comfortable flinging alarmist statements without preambles, I would simply say "We are letting each other get away with critical meaning failure!"&lt;br /&gt;&lt;br /&gt;   One of my pet peeves is contemporary usage of the word "unique" - what does it mean?  If widget A is unique, there is not one other widget like it anywhere in the world.  If there is a remarkably similar widget somewhere, one could then say that widget A is "practically unique" or "almost unique" - that is fine.  However, even if there were never another such widget as widget A anywhere ever, and it is totally blowing everyone's minds, one could NOT then say that widget A is "very unique" - it is as unique as ever, neither more nor less.  There is no such thing as more or less unique.  That is, potentially, the whole power of the word, a power we waste through improper usage.  [There is a bible verse about saltiness that could go here.]&lt;br /&gt;&lt;br /&gt;   When you said something was "very unique", did you mean to say "very rare" or "very cool" or "I feel like talking all fancy, so I say 'simplistic' instead of simple, and I might as well say 'very unique' because I am not really thinking this through, nor am I referring to a dictionary, ever"?&lt;br /&gt;&lt;br /&gt;   Language is one of those aspects of human society &lt;span style="color: rgb(0, 0, 0);"&gt;about&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);"&gt; which it may be &lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;said &lt;/span&gt;that the individual's best interest is also the group's best interest - more words, more meaning, more knowledge, and more understanding.  What this adds up to is more power.  Power in the "sword and shield" sense.  A shield - to avoid misunderstanding in yourself and others.  A sword to make your arguments clear and persuasive, and to eviscerate the false arguments of others.&lt;br /&gt;&lt;br /&gt;   There is a lot of work to be done, cleaning up all this mess of propaganda, politicking, and marketing, and we will never win any war against them, only certain battles.  So let's be a little cheesy about it and say "People of good will and great vocabularies! Gird your loins and grab your dictionaries!  The fight is all!"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-2464191087116154682?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/2464191087116154682/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=2464191087116154682&amp;isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/2464191087116154682'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/2464191087116154682'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/sure-he-did-but-it-hardly-made-up-for.html' title='Sure, he did - but it hardly made up for such a crappy Summer'/><author><name>certifiedprepwn3d</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-6913135601495667219</id><published>2007-06-13T15:58:00.001-07:00</published><updated>2007-06-13T20:29:55.192-07:00</updated><title type='text'>Q &amp; (non-)A: a notable quote</title><content type='html'>At today's press briefing, Bush White House spokesman, Tony Snow, eschewed using a standard part of speech, as he danced around the finer points of a question he would prefer to &lt;span style="font-style: italic;"&gt;completely &lt;/span&gt;avoid:&lt;br /&gt;&lt;p&gt; &lt;b&gt;Reporter:&lt;/b&gt; Can you attach an adjective here? &lt;/p&gt; &lt;p&gt; &lt;b&gt;Snow:&lt;/b&gt; No, I try to stay out of the adjectival business.&lt;br /&gt;&lt;/p&gt;For the rest of the exchange, you'll have to check out &lt;a href="http://salon.com/politics/war_room/2007/06/13/september/index.html"&gt;this link&lt;/a&gt; from Salon's War Room. The above Q &amp;amp; (non-)A are the 5th between AP reporter Holland and Snow.&lt;br /&gt;&lt;br /&gt;* * *&lt;br /&gt;&lt;br /&gt;Later on in the same interview, Snow attempted  to distinguish between backpedaling and minimizing a vast, metaphysical question.&lt;p&gt;&lt;br /&gt;&lt;b&gt;Reporter:&lt;/b&gt; That sounds like backpedaling. &lt;/p&gt; &lt;p&gt; &lt;b&gt;Snow:&lt;/b&gt; No, it's not backpedaling. It's just it seems to me to be such a vast, metaphysical question. &lt;/p&gt;* * *&lt;br /&gt;&lt;br /&gt;I don't know about the rest of you, but I find small comfort in knowing that the Bush White House's spokesman can even use the word metaphysical in a relevant context... whether hyperbole or not.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-6913135601495667219?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/6913135601495667219/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=6913135601495667219&amp;isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/6913135601495667219'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/6913135601495667219'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/q-non-a-notable-quote.html' title='Q &amp; (non-)A: a notable quote'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-6678252323621482063</id><published>2007-06-13T15:25:00.000-07:00</published><updated>2007-06-13T15:44:57.334-07:00</updated><title type='text'>Escaping Flatland...</title><content type='html'>I almost posted something about Edward Tufte a day or two ago, when &lt;a href="http://www.aldaily.com/"&gt;Arts &amp; Letters Daily&lt;/a&gt; posted a link to the &lt;a href="http://www.printthis.clickability.com/pt/cpt?action=cpt&amp;amp;title=%27Beautiful+Evidence%27+Author+Edward+Tufte+and+the+Triumph+of+Good+Design+--+New+York+Magazine&amp;expire=&amp;amp;urlID=22656706&amp;fb=Y&amp;amp;url=http%3A%2F%2Fnymag.com%2Farts%2Fbooks%2Ffeatures%2F33156%2F&amp;amp;partnerID=73272"&gt;first of two pieces&lt;/a&gt; about him. Instead, I hesitated... and I'm glad I did, since the &lt;a href="http://www.stanfordalumni.org/news/magazine/2007/marapr/features/tufte.html"&gt;second link&lt;/a&gt; is even more Tufte-like. I also figured that the select group that gathers here would already be familiar with Tufte and his revolutionary notions about combining qualitative and quantitative data in ways that allow telling a story.&lt;br /&gt;&lt;br /&gt;But then I thought, why not discuss him anyway?&lt;br /&gt;&lt;br /&gt;Two short excerpts from the second link:&lt;br /&gt;&lt;blockquote&gt; “We had numbers and words in the same                            house,’’ Tufte says, as if that explains                            how he got to where he is. [His father was an engineer, and his mother began a career as a journalist, but later became an English professor.]&lt;br /&gt;&lt;/blockquote&gt;&lt;blockquote&gt;In an interview in the mid-’90s with the                            Computer Literacy Bookshops in San Jose, Tufte explained                            that to do statistical design, one has to be able to                            see and to count. He claimed he didn’t see as                            well as many graphic artists and didn’t count                            as well as the best statisticians, but he did the combo                            better than just about anyone. His great insight was                            to think about graphics not as art or statistical constructs                            but as stories. He challenged chart-makers to ask the                            question: what is the story we’re trying to tell?&lt;/blockquote&gt;Both pieces are worth reading... just as &lt;a href="http://www.edwardtufte.com/tufte/"&gt;Tufte's own site&lt;/a&gt; is well worth exploring.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-6678252323621482063?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/6678252323621482063/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=6678252323621482063&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/6678252323621482063'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/6678252323621482063'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/escaping-flatland.html' title='Escaping Flatland...'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-6541996274664856802</id><published>2007-06-11T18:44:00.001-07:00</published><updated>2007-06-14T05:46:29.066-07:00</updated><title type='text'>To blithely split infinitives: a group collaboration in Draft form...</title><content type='html'>from &lt;span style="font-weight: bold;"&gt;Karen M&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;Does anyone else want to compile a list of examples of famously split infinitives?&lt;br /&gt;&lt;br /&gt;Of course, there is &lt;span style="font-weight: bold;"&gt;"to boldly go."&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;* * *&lt;br /&gt;&lt;br /&gt;and from &lt;span style="font-weight: bold;"&gt;Frankly, my dear...&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Since I don't seem to be able to make additions to your post, I've started a parallel one from which you can copy and paste.&lt;br /&gt;&lt;br /&gt;Points to make: First, in principle an infinitive can't be split in English since it is the simplest form of the verb (walk, stand, run, etc.). Technically speaking, the form 'to' + infinitive in English is known as &lt;span style="font-weight: bold;"&gt;the supine&lt;/span&gt;. On the other hand, about 1 person in 100,000 knows this and if you talk about &lt;span style="font-weight: bold;"&gt;split supines&lt;/span&gt; no one will have a clue what you are talking about. In common usage, 'infinitive' usually encompasses both the simple verb (&lt;i&gt;nomen actionis&lt;/i&gt;)  and the form with 'to' (the supine).&lt;br /&gt;&lt;br /&gt;Then, like 'she turned him on' there should probably be a nod to "&lt;a href="http://itre.cis.upenn.edu/%7Emyl/languagelog/archives/000901.html"&gt;Obligatorily Split Infinitives&lt;/a&gt;."&lt;br /&gt;&lt;br /&gt;George Bernard Shaw, the brilliant Irish playwright, once sent this letter to the &lt;i&gt;Times&lt;/i&gt; of London: &lt;span style="font-weight: bold;"&gt;“There is a busybody on your staff who devotes a lot of time to chasing split infinitives: I call for the immediate dismissal of this pedant. It is of no consequence whether he decides to go quickly or to quickly go or quickly to go. The important thing is that he should go at once.”&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The twentieth-century writer and cartoonist James Thurber had this to say to the editor who rearranged his infinitive: &lt;span style="font-weight: bold;"&gt;“When I split an infinitive, it is going to damn well stay split!”&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Both of the above quotations can be found at &lt;a href="http://www.infoplease.com/cig/grammar-style/split-infinitives-boldly-go-everyone-else-goes.html"&gt;this site&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;* * *&lt;br /&gt;&lt;br /&gt;from &lt;span style="font-weight: bold;"&gt;Karen M&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;I loved those examples, Frankly...  !&lt;br /&gt;&lt;br /&gt;Any of the current contributors are free to &lt;span style="font-style: italic;"&gt;blithely &lt;/span&gt;make edits directly on this post. [&lt;span style="font-style: italic;"&gt;Permissions were updated to make this possible&lt;/span&gt;.]&lt;br /&gt;&lt;br /&gt;Anyone else is free to make suggestions in the comments and we will, if we like them, add them to the post for you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-6541996274664856802?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/6541996274664856802/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=6541996274664856802&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/6541996274664856802'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/6541996274664856802'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/draft-to-blithely-split-infinitives.html' title='To blithely split infinitives: a group collaboration in Draft form...'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-9118970483795041293</id><published>2007-06-11T18:44:00.000-07:00</published><updated>2007-06-11T19:10:38.810-07:00</updated><title type='text'>"...phrase-parsed text displays that more naturally match the way our eyes perceive and capture...?"</title><content type='html'>I found this link to &lt;a href="http://www.liveink.com/index2.php"&gt;Live Ink&lt;/a&gt; via Dave Pollard's blog, &lt;a href="http://blogs.salon.com/0002007/2007/06/09.html#a1888"&gt;How to Save the World&lt;/a&gt;. At first glance, the technique seems to turn prose into a form of prose-poetry via subtle bullet points (tho' without the actual bullet points).&lt;br /&gt;&lt;br /&gt;Read the &lt;a style="font-style: italic;" href="http://liveink.com/demo_samples.php#"&gt;Moby Dick&lt;/a&gt; example, and see if you agree. I tried to paste a small sample here for you, but the very clever programming would not allow me to.  You'll have to take a look at it yourself in order to see what I mean.&lt;br /&gt;&lt;br /&gt;I have often wondered whether books could ever be satisfactorily read-- with ease and in comfort-- on some kind of hand-held computer. Having learned to read across the pages, from left to right, a small screen just seemed so inadequate for accommodating even a modest page of text.&lt;br /&gt;&lt;br /&gt;However, the Live Ink format leads the eyes to read... using narrow columns of curving text... &lt;span style="font-style: italic;"&gt;down &lt;/span&gt;the page. This is the first time I've felt tempted to wonder about having an iPod or other MP3 device for reading.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-9118970483795041293?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/9118970483795041293/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=9118970483795041293&amp;isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/9118970483795041293'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/9118970483795041293'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/phrase-parsed-text-displays-that-more.html' title='&quot;...phrase-parsed text displays that more naturally match the way our eyes perceive and capture...?&quot;'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-957072369062203272</id><published>2007-06-08T15:51:00.000-07:00</published><updated>2007-06-08T21:04:42.507-07:00</updated><title type='text'>Divided by a Common Language? Are We Sure about That?</title><content type='html'>Having read all sorts of English fiction, poetry and essays over the years, without ever having actually set foot in the British Isles, I've never thought much about the differences in usage between the U.S. and the U.K. In fact, except for noting obvious variations in spelling and vocabulary -- honor vs. honour, sedan vs. saloon, etc. -- I'm not sure I've ever been all that conscious of specific stylistic differences. The differences between Kingsley Amis and John Updike weren't any more notable in context than those between Updike and Norman Mailer. One language, different voices was as much distinction as I ever admitted to.&lt;br /&gt;&lt;br /&gt;Only recently have I encountered new reasons to pay closer attention. The first arrived -- courtesy of the Fox soccer channel -- with the advent on American television of games from the English Premier Football League. (Make that the obligatory &lt;i&gt;Barclays&lt;/i&gt; Premier Football League. The British may laugh at &lt;i&gt;Pizza Hut Park,&lt;/i&gt; but they have their own problems with commercialism in sport.)&lt;br /&gt;&lt;br /&gt;In listening over time to the match commentators, I gradually became aware of all sorts of hitherto unsuspected divergences in usage. Here are some examples:&lt;br /&gt;&lt;br /&gt;&lt;i&gt;&lt;b&gt;British:&lt;/b&gt; On the floor.&lt;br /&gt;&lt;b&gt;American:&lt;/b&gt; On the ground. (Only indoors is it the floor.)&lt;br /&gt;&lt;br /&gt;&lt;b&gt;British:&lt;/b&gt; He's got pace.&lt;br /&gt;&lt;b&gt;American:&lt;/b&gt; He's fast.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;British:&lt;/b&gt; Into touch.&lt;br /&gt;&lt;b&gt;American:&lt;/b&gt; Out of bounds.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;British:&lt;/b&gt; Fixture, match&lt;br /&gt;&lt;b&gt;American:&lt;/b&gt; Game&lt;br /&gt;&lt;br /&gt;&lt;b&gt;British:&lt;/b&gt; tie (a competition for one of the many football cups)&lt;br /&gt;&lt;b&gt;American:&lt;/b&gt; tie (a game in which both teams have or end up with with the same score.)&lt;br /&gt;&lt;br /&gt;&lt;b&gt;British:&lt;/b&gt; Kit, strip&lt;br /&gt;&lt;b&gt;American:&lt;/b&gt; Uniform&lt;br /&gt;&lt;br /&gt;&lt;b&gt;British:&lt;/b&gt; A foul on so-and-so (So-and-so has &lt;b&gt;been&lt;/b&gt; fouled.)&lt;br /&gt;&lt;b&gt;American:&lt;/b&gt; A foul on so-and-so (So-and-so has &lt;b&gt;committed&lt;/b&gt; a foul.)&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;Add all of this up, and it's hard to avoid noticing that you're not in Kansas any more -- or in New York or Alabama either, for that matter. I might have dismissed this as simply a difference in sports dialects, but for the fact that at the same time I found myself reading more in the way of news and political commentary from British sources on the Internet: &lt;i&gt;The Guardian&lt;/i&gt; and &lt;i&gt;Independent,&lt;/i&gt; as well as &lt;i&gt;the Economist, Prospect, the BBC, the Times,&lt;/i&gt; etc. Differences I hadn't noticed before began to jump out at me. For example:&lt;br /&gt;&lt;br /&gt;&lt;i&gt;&lt;b&gt;British:&lt;/b&gt; It wasn't the best thing anyone has ever said about him, but nor was it the worst.&lt;br /&gt;&lt;b&gt;American:&lt;/b&gt; It wasn't the best thing anyone has ever said about him, nor was it the worst.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;British:&lt;/b&gt; Did I do it? Well no, but I might've done, if....&lt;br /&gt;&lt;b&gt;American:&lt;/b&gt; Did I do it? Well no, but I might have, if....&lt;br /&gt;&lt;br /&gt;&lt;b&gt;British:&lt;/b&gt; The engineering team have decided to pursue the recommended design changes.&lt;br /&gt;&lt;b&gt;American:&lt;/b&gt; The engineering team has decided to pursue the recommended design changes.&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;(American translations are my own.)&lt;br /&gt;&lt;br /&gt;Not all of this was new, of course, but I was seeing it in a new light, possibly because there was suddenly so much of it around me. I also realized that the &lt;i&gt;loo,&lt;/i&gt; or the &lt;i&gt;telly, knickers,&lt;/i&gt; or &lt;i&gt;napkins&lt;/i&gt; weren't the interesting parts. What was far more interesting were the grammatical, or if you like, syntactical differences -- the way different choices of word or phrase were both derived from, and in turn led again to different rhythms of speech and writing. It was those rhythms which had been steadily diverging over the last two hundred plus years, a divergence which had only been partly attenuated by the fact that, increasingly, we share a single literature.&lt;br /&gt;&lt;br /&gt;At that point, I realized that being a voracious reader as a kid hadn't been entirely without its disadvantages. Whenever I'd encountered something new and tasty then, I'd simply incorporated it, as kids do, into my own linguistic toolkit. Unfortunately, once I had it firmly in my possession, all hope of provenance was lost. It took me years to grasp that I couldn't just insert what some Oxford wag had said a century before -- or rather his manner of saying it -- into my own speech or writing, not without seeming either a pedant or a mutant.&lt;br /&gt;&lt;br /&gt;Mmm...so far so good. Then I realized something that led all the way around the circle to my starting point again. Look at the following two examples of regional &lt;i&gt;American&lt;/i&gt; usage:&lt;br /&gt;&lt;br /&gt;&lt;i&gt;&lt;b&gt;Manhattan:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;I gave them bupkis. BUPKIS, I'm telling you. (Yiddish)&lt;br /&gt;&lt;br /&gt;We spent hours on line, just waiting for the place to open. (on, not in)&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;&lt;b&gt;Rural Alabama:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;It was laying over yonder, behind the barn. (lay/lie, archaic &lt;/i&gt;yonder&lt;i&gt; instead of there)&lt;br /&gt;&lt;br /&gt;Y'all going over to the store later? Carry me with you, I need a few things myself. (entirely regional use of &lt;/i&gt;carry, &lt;i&gt;and then, of course, &lt;/i&gt;y'all &lt;i&gt;itself.)&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;Would the idioms of residents of Manhattan necessarily be more familiar to a rural Alabaman, or vice versa, than any of the Britishisms listed above?  I suspect not, which leads me to conclude that the British/American versions of our common language aren't as different as we might be tempted to think, and thanks to things like the Internet, probably won't diverge significantly more in the future than they have already.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-957072369062203272?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/957072369062203272/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=957072369062203272&amp;isPopup=true' title='28 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/957072369062203272'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/957072369062203272'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/divided-by-common-language-are-we-sure.html' title='Divided by a Common Language? Are We Sure about That?'/><author><name>William Timberman</name><uri>http://www.blogger.com/profile/06465283842365282278</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_GvVS9e5fctA/TU2ITnig1uI/AAAAAAAAAAM/xn9bUoq8YJY/s220/1.jpg'/></author><thr:total>28</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-946186305136616194</id><published>2007-06-08T12:13:00.001-07:00</published><updated>2007-06-08T12:33:44.392-07:00</updated><title type='text'>The leftover Latin curse</title><content type='html'>I'm inspired by a comment thread on the post below to attack that most contemptuous of grammar rules: the ridiculous notion that you can't end sentences with a preposition. This rule aggravates me in particular because it is simple enough for every fool to understand and remember, so it is the one hammered hardest into the heads of poor, innocent schoolchildren. We now have generations of people who cannot quip, as Winston Churchill did when criticized for ending a sentence with a preposition, "That is the type of arrant pedantry up with which I shall not put."&lt;br /&gt;&lt;br /&gt;Plus, it's an excuse to quote here, at length, an enticing passage in Garner's &lt;span style="font-style:italic;"&gt;Modern American Usage&lt;/span&gt; on the subject (the argument is pulled largely from Fowler's classic &lt;span style="font-style:italic;"&gt;Modern English Usage&lt;/span&gt;):&lt;br /&gt;&lt;br /&gt;"The spurious rule about not ending sentences with prepositions is a remnant of Latin grammar, in which a preposition was the one word that a writer could not end a sentence with. But Latin grammar should never straitjacket English grammar. If the superstition is a 'rule' at all, it is a rule of rhetoric and not of grammar, the idea being to end sentences with strong words that drive a point home. ...&lt;br /&gt;&lt;br /&gt;"The idea that a preposition is ungrammatical at the end of a sentence is often attributed to 18th-century grammarians. But that idea is greatly overstated. ... The furthest [Bishop] Lowth [the most prominent grammarian of that period] went was to urge that 'the placing of the preposition before the relative is more graceful, as well as more perspicuous; and agrees much better with the solemn and elevated style.' That idea is an archaic view that makes modern writing stuffy. ... Lowth's statement about prepositions was hardly intended as a 'rule.' ...&lt;br /&gt;&lt;br /&gt;"In 1947, a scholar summed up the point: 'Those who insist that final prepositions are inelegant are taking from teh English language one of its greatest assets -- its flexibility -- an advantage realized and practiced by all our greatest writers except a few who, like Dryden and Gibbon, tried to fashion the English language after the Latin.&lt;br /&gt;&lt;br /&gt;"Good writers don't hesitate to end their sentences with prepositions if doing so results in phrasing that seems natural."&lt;br /&gt;&lt;br /&gt;Despite grammarians' agreement on this issue, it's still pushed in the language education in our schools, and I wish it wouldn't be. Doing so creates squadrons of mean-spirited adults who try to make others feel small for saying, "What are you thinking about?" And to whom I would like to say, "Bugger &lt;span style="font-style:italic;"&gt;off&lt;/span&gt;."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-946186305136616194?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/946186305136616194/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=946186305136616194&amp;isPopup=true' title='34 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/946186305136616194'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/946186305136616194'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/leftover-latin-curse.html' title='The leftover Latin curse'/><author><name>Introvert Girl</name><uri>http://www.blogger.com/profile/16352147838562674682</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='19' src='http://bp1.blogger.com/_H9UrZ4haTm4/RmoGEuqb71I/AAAAAAAAAAM/6eI5dFwRhFo/s320/DSCF0001.jpg'/></author><thr:total>34</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-7673081483155660166</id><published>2007-06-08T12:10:00.000-07:00</published><updated>2007-06-08T12:38:49.337-07:00</updated><title type='text'>Our First Open Thread</title><content type='html'>While we await further postings... I thought it might be a good idea to open up a thread for topics that are unrelated to the current posts, and also to allow readers/commenters to suggest topics for future discussion.&lt;br /&gt;&lt;br /&gt;Collaboration is everything. People used to say that about timing... I know, I was one of them, but now... I think it's all about collaboration.&lt;br /&gt;&lt;br /&gt;And it's all because of the Internets and the Google.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-7673081483155660166?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/7673081483155660166/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=7673081483155660166&amp;isPopup=true' title='13 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/7673081483155660166'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/7673081483155660166'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/our-first-open-thread.html' title='Our First Open Thread'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>13</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-1786819399577430881</id><published>2007-06-07T18:01:00.000-07:00</published><updated>2007-06-08T06:56:48.529-07:00</updated><title type='text'>Why does it matter?</title><content type='html'>Who cares, right? &lt;em&gt;What's it any good for?&lt;/em&gt; is what the high school student always asks of grammar and mathematics lessons alike. It is a question that has long kept me from accepting acquaintances' casual requests that "maybe you can help me edit this brochure/paper/website/letter to the editor." Inevitably, at some stage in the process, the acquaintance will become in the first place frustrated that I haven't changed their plain prose into words that sparkle or burn, and in the second place that I have proposed changing too much. They will take a comma correction as personal criticism. Then they will look at me sideways, suspiciously, and say, "It doesn't really matter, anyway." And then they'll ask, even more suspiciously, whether I &lt;em&gt;really &lt;/em&gt;get paid to do this.&lt;br /&gt;&lt;br /&gt;Which is why I stick with copy editing for textbook companies, who (or which?) know exactly how much they want me to do -- or, usually, not to do.&lt;br /&gt;&lt;br /&gt;As with many seemingly simple questions, this one's answer is unhelpfully complicated. Simply put, though, language matters because it is how we communicate. Even that statement seems to garner plenty of criticism, met as it often is with the grumbled, "I can understand you just fine." Yeah? Have you ever tried to decipher London cockney? &lt;br /&gt;&lt;br /&gt;Bryan Garner wrote an excessively long essay in &lt;em&gt;Harper's&lt;/em&gt; several years ago (partly to introduce his new &lt;em&gt;Modern American Usage&lt;/em&gt;) in which he printed the entire lecture he gave to every university student who complained to him about his grammar and language corrections on their essays. His short answer? If you want to be taken seriously, if you ever want to go anywhere, you've got to speak the language well enough to know how the game is played.&lt;br /&gt;&lt;br /&gt;This love for language is often misinterpreted as wanting to make everyone speak and write absolutely the same. Quite false. &lt;em&gt;It's about understanding one another&lt;/em&gt;. The rest is just the toothsome gooey fudge left in the bottom of the pot. Any true philologist gets their true pleasure in exploring the potentials of words and dialects and the infinite iterations of meanings. Heck, I get a kick out of looking up the names from J.K. Rowling's books in my &lt;em&gt;Oxford English Dictionary &lt;/em&gt;because I know she draws heavily from Old English and Celtic mythology when coming up with them.&lt;br /&gt;&lt;br /&gt;Personally, I have a love for learning other languages in general, and not just the ones with different alphabets. When my English husband and I first met, he told me one evening as I was going to bed, that "I'll knock you up at about 8." You think you understand English? I stood open-mouthed and red-faced for a good few seconds before I remembered that my study-abroad survival dictionary (kindly provided by my home college) defined the Britishism "knock [someone] up" as "to wake [someone] up." Nine years into marriage now and we're still working out the niceties of being, as my mother-in-law puts it, "divided by a common language."&lt;br /&gt;&lt;br /&gt;As certifiedprepwn3d said in her post below, our ways of communicating are changing at eyeblink paces. Online conversation has (partly due to its replacement of the spoken word, I'd argue) made written communication more demanding than it was before. How often did people feel the need to put winking smiley faces in their handwritten letters to make sure the recipient knew they were "just joking!"&lt;br /&gt;&lt;br /&gt;None of this means that language matters to &lt;em&gt;you&lt;/em&gt;. We're not here to proselytize --I swear! -- but to revel in a common love for the ways in which we can use and abuse and mold language. We read grammar books for fun. We delight in finding new words, or new meanings for old ones. We're just kids playing in word-mud. Get your mucky clothes on and come on in.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-1786819399577430881?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/1786819399577430881/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=1786819399577430881&amp;isPopup=true' title='21 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/1786819399577430881'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/1786819399577430881'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/why-does-it-matter.html' title='Why does it matter?'/><author><name>Introvert Girl</name><uri>http://www.blogger.com/profile/16352147838562674682</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='19' src='http://bp1.blogger.com/_H9UrZ4haTm4/RmoGEuqb71I/AAAAAAAAAAM/6eI5dFwRhFo/s320/DSCF0001.jpg'/></author><thr:total>21</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-7261796557805264230</id><published>2007-06-07T10:44:00.001-07:00</published><updated>2007-06-07T13:39:50.613-07:00</updated><title type='text'>What are we here for?</title><content type='html'>As described in the first post, this Chocolate Interrobang was born out of a discussion at &lt;a href="http://www.salon.com/opinion/greenwald/"&gt;Glenn Greenwald's blog&lt;/a&gt; on Salon.  So - a group blog (being done by people who have only met online), arising from a comment page (inhabited by people who have only met online, some of whom are there only to disagree), hosted at a blog (itself hosted at a &lt;a href="http://www.salon.com/"&gt;magazine&lt;/a&gt; that exists only in digital form, expressly non-print) . . ..  That we are here is one example of the evolving iterations of connection and communication that exist only online.&lt;br /&gt;&lt;br /&gt;  I had a professor in college who was fond of saying, among other things, that you can't have two things without having three things -- this wasn't what he was getting at but the situation we are in with all of these online forums is that there is written English, there is spoken English, and now there is online typing.&lt;br /&gt;&lt;br /&gt;  Online typing.  Is it talking?  Is it letter- writing?  Assuming you are at a comment board to have a real conversation: how much will you rely on tone and context, and how much work will you do to get your point across?   How much work will you expect the other participants to do in attempting to understand you?&lt;br /&gt;&lt;br /&gt;  As to the origins of this blog, I was glad to see comments from people who care about clear communication achieved through careful and disciplined writing.&lt;br /&gt;&lt;br /&gt;  Comment boards are fun and interesting - informal, lively and immediate, much like speech.  On the good side, we ditch the preoccupation with physical presentation and the need to leave the house or actually talk to people.  On the bad side, we lose all the non-verbal clues and other meta-data that is inherent in speech.  The passionate comments about language and usage in the middle of a non-language-oriented blog suggested to me that there are plenty of people who want to retain (at least when helpful) the rules and conventions of written English even in this digital context.&lt;br /&gt;&lt;br /&gt;  So, a few tentative conclusions about the goals here:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;This is not about bossing people around and feeling like awesome smarty-pantses.&lt;/li&gt;&lt;li&gt;This is not about asking each other whether we have any Grey Poupon.&lt;/li&gt;&lt;li&gt;This is about enjoying our language in written form, online or offline, and deepening our own understanding of it.&lt;/li&gt;&lt;li&gt;This is about continuing discussions and gathering information that will help people of good will communicate more effectively.&lt;/li&gt;&lt;/ol&gt;    How does that sound?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-7261796557805264230?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/7261796557805264230/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=7261796557805264230&amp;isPopup=true' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/7261796557805264230'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/7261796557805264230'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/blog-post.html' title='What are we here for?'/><author><name>certifiedprepwn3d</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3295689543166080175.post-8396963270253346131</id><published>2007-06-06T15:10:00.000-07:00</published><updated>2007-06-06T15:16:59.644-07:00</updated><title type='text'>This is how we began...</title><content type='html'>First, with an innocent comment by &lt;a href="%3Ca%20href=%22http://letters.salon.com/opinion/greenwald/2007/06/04/fraud/permalink/b60015545c1647614ac682976343cc92.html%22%3E"&gt;IntrovertGirl&lt;/a&gt;...&lt;br /&gt;&lt;blockquote&gt;&lt;span style="font-style: italic;"&gt;Grammar Police: not addressed to anyone in particular&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;I'll probably get drowned for this, but I can't help it. It's been bugging me the last couple days.&lt;/span&gt; &lt;span style="font-style: italic;"&gt;Its vs. it's:&lt;/span&gt; &lt;span style="font-style: italic;"&gt;Its is possessive.&lt;/span&gt; &lt;span style="font-style: italic;"&gt;It's is a contraction.&lt;/span&gt; &lt;span style="font-style: italic;"&gt;Look! There's a dragon under the tree! Its scales are purple. It's going to eat some ball point pens.&lt;/span&gt; &lt;span style="font-style: italic;"&gt;- IntrovertGirl&lt;/span&gt;&lt;/blockquote&gt;Then, I chimed in with...&lt;br /&gt;&lt;blockquote&gt;&lt;span style="font-style: italic;"&gt;Grammar police, Part II&lt;/span&gt;  &lt;span style="font-style: italic;"&gt;&lt;br /&gt;&lt;br /&gt;I might as well pile on, too, IntrovertGirl, and keep you company in the water...&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-style: italic;"&gt;They're = they are&lt;/span&gt; &lt;span style="font-style: italic;"&gt;&lt;br /&gt;Their = possessive&lt;/span&gt; &lt;span style="font-style: italic;"&gt;&lt;br /&gt;There = not here&lt;br /&gt;&lt;/span&gt; &lt;span style="font-style: italic;"&gt;&lt;br /&gt;You're = you are&lt;/span&gt; &lt;span style="font-style: italic;"&gt;&lt;br /&gt;Your = possessive&lt;/span&gt; &lt;span style="font-style: italic;"&gt;&lt;br /&gt;Yore = not now, but before (that one is just for fun &amp; symmetry)&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-style: italic;"&gt;Can't help it... they just jump out at me. ;~) Really. You can blame my (late) grandmother. &lt;/span&gt;&lt;span style="font-style: italic;"&gt;- Karen M&lt;/span&gt;&lt;br /&gt;&lt;/blockquote&gt;There was some back and forth...&lt;br /&gt;&lt;blockquote&gt;&lt;span style="font-style: italic;"&gt;@ Karen M&lt;/span&gt;  &lt;span style="font-style: italic;"&gt;&lt;br /&gt;Oh, no, don't get me started. I'll happily hijack any thread to babble about grammar and language. I like "yore."&lt;/span&gt; &lt;span style="font-style: italic;"&gt;We could start on ...&lt;/span&gt; &lt;span style="font-style: italic;"&gt;nauseous v. nauseated&lt;/span&gt; &lt;span style="font-style: italic;"&gt;disinterested v. uninterested&lt;/span&gt; &lt;span style="font-style: italic;"&gt;which v. that&lt;/span&gt; &lt;span style="font-style: italic;"&gt;socialism v. communism&lt;/span&gt; &lt;span style="font-style: italic;"&gt;conservative v. liberal&lt;/span&gt; &lt;span style="font-style: italic;"&gt;... or, maybe not!  &lt;/span&gt;&lt;span style="font-style: italic;"&gt;- IntrovertGirl&lt;/span&gt;&lt;br /&gt;&lt;/blockquote&gt;We learned we had supporters...&lt;br /&gt;&lt;blockquote&gt;&lt;span style="font-style: italic;"&gt;Introvert Girl &amp; Karen M - grammar police&lt;/span&gt;  &lt;span style="font-style: italic;"&gt;right on.&lt;/span&gt; &lt;span style="font-style: italic;"&gt;&lt;br /&gt;"disinterested v. uninterested" is one of my pet peeves. Rampant use of "dis" for "un" is only getting rampant-ier as days go by.&lt;/span&gt; &lt;span style="font-style: italic;"&gt;Current obsessions also include "different FROM" vs. "other THAN".&lt;/span&gt; &lt;span style="font-style: italic;"&gt;ps - regards to sysprog on the auto-antonyms earlier, another one is "cleave" &lt;/span&gt;&lt;span style="font-style: italic;"&gt;- certifiedprepwn3d&lt;/span&gt;&lt;/blockquote&gt;And other commenters began to offer us sites for jumping off purposes:&lt;br /&gt;&lt;blockquote&gt;&lt;span style="font-style: italic;"&gt;http://www.wsu.edu/~brians/errors/affect.html&lt;/span&gt; &lt;span style="font-style: italic;"&gt;- Paul Dirks&lt;/span&gt;&lt;/blockquote&gt;  &lt;blockquote&gt;&lt;span style="font-style: italic;"&gt;My starting point for grammar discussions is language log dot com, which has covered many of the points you talked about upthread.&lt;/span&gt; &lt;span style="font-style: italic;"&gt;- Fraud Guy&lt;/span&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;span style="font-style: italic;"&gt;@ Karen M "I object when nouns become verbs merely to serve jargon"&lt;br /&gt;&lt;/span&gt;&lt;span style="font-style: italic;"&gt;Oh, c'mon, Karen, surrender to the pleasures of anthimeria! What's wrong with verbing a few nouns? Or anthimeriazing them…or…something…&lt;br /&gt;&lt;/span&gt;&lt;span style="font-style: italic;"&gt;http://en.wikipedia.org/wiki/Anthimeria&lt;/span&gt; &lt;span style="font-style: italic;"&gt;http://blogs.msdn.com/ericlippert/archive/2004/10/01/236740.aspx&lt;/span&gt; &lt;span style="font-style: italic;"&gt;- Jeff W&lt;/span&gt;&lt;br /&gt;&lt;/blockquote&gt;And a little later, in response to criticism that anyone could/would want to wallow in grammar, IntrovertGirl offered some personal, deep-seated reasons that could only inspire a blog like this one:&lt;br /&gt;&lt;blockquote&gt;&lt;span style="font-style: italic;"&gt;@Djinn, genie-ghost of 7th-grade Mrs. Sullivan ;)&lt;/span&gt;&lt;br /&gt;&lt;p&gt;&lt;span style="font-style: italic;"&gt;This is absolutely my last word on the subject, promise.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;My 7th-grade English teacher? She was a nice lady, but I don't think she knew that much about grammar. No, I wrote the original post in my professional capacity. I get paid to be nitpicky about grammar and language. And it's a job I couldn't do if I didn't absolutely love it.&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-style: italic;"&gt;That's the definition of a grammar geek. We love language. You don't read books like "The Deluxe Transitive Vampire" for kicks if you don't love grammar. And it's my endless enjoyment of the art that makes me push for precision. Half the reason I read this forum is because I enjoy the many ways the participants argue their points eloquently and often poetically.&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-style: italic;"&gt;As for English being a living language, that's absolutely true. My favorite poet is Gerard Manley Hopkins, a nonsensical user of words if there ever was one. What I object to is muddiness and ugliness. When someone says, "I feel nauseous" when they mean "I feel nauseated," it expasperates not because it's incorrect, but because we're losing one perfectly good word and forcing another to perform two functions. As for the -izing, I just find most of them aesthetically unpleasing. There's objectivity for you!&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;/blockquote&gt;Finally, certifiedprepwn3d validated my original point about words used merely as jargon...&lt;br /&gt;&lt;blockquote&gt;&lt;span style="font-style: italic;"&gt;jeff w and karen m&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Karen - I see what you are saying -- I play with language the way my little niece plays with her cheerios (not exactly the way, sure), and feel joy in understanding how not following "the rules" adds meaning rather than taking it away. Holograph - i.e., multi-layered information, is the goal.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;The bland, intentional spin, wonk-speak (including "we are tasked with") filters information out of the statement. It is like those drugs that mimic other substances and block receptors in your body -- so many speakers from power want to make noise that has the same effect as communication (the listeners shutting up and behaving) without actually communicating anything. [And, they certainly don't accept any attempts to communicate back at them, particularly not truth to power.] Their use of language is not fun. It does not add to the shared human knowledge and experience of the world. - certifiedprepwn3d&lt;/span&gt;&lt;br /&gt;&lt;/blockquote&gt;And now we have a blog... &lt;span style="font-style: italic;"&gt;if we can keep it&lt;/span&gt; (w/ apologies to B. Franklin).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-8396963270253346131?l=language-grammar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://language-grammar.blogspot.com/feeds/8396963270253346131/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3295689543166080175&amp;postID=8396963270253346131&amp;isPopup=true' title='26 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/8396963270253346131'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3295689543166080175/posts/default/8396963270253346131'/><link rel='alternate' type='text/html' href='http://language-grammar.blogspot.com/2007/06/this-is-how-we-began.html' title='This is how we began...'/><author><name>Karen M</name><uri>http://www.blogger.com/profile/13177791730943410658</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_XgbzNgZToiw/TTCs9xVL1RI/AAAAAAAAADY/DNq7OnGZQTE/S220/my%2Bphoto.jpg'/></author><thr:total>26</thr:total></entry></feed>
