tag:blogger.com,1999:blog-32956895431660801752009-07-14T11:48:04.287-07:00The Chocolate Interrobangwhere we savor discussions about language & grammar & syntax, and sometimes reminisce about diagramming sentences...Karen Mhttp://www.blogger.com/profile/13177791730943410658noreply@blogger.comBlogger62125tag:blogger.com,1999:blog-3295689543166080175.post-28324596829531653932009-07-08T17:17:00.000-07:002009-07-08T17:22:38.836-07:00Let the government define?It's up the Bush Administration,and now the Obama Administration to define words, and NPR's ( &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.<br /><br />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;^#@!!! how-to manual.<br /><br />-- mikeinportc<br /><br /><a class="permalink" href="http://letters.salon.com/opinion/greenwald/2009/07/08/obama/permalink/5062ed866e494c6d3c474dea3fd7b59d.html">Permalink</a> Wednesday, July 8, 2009 12:11 PM<br /><br />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.<br /><br />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.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-2832459682953165393?l=language-grammar.blogspot.com'/></div>Karen Mhttp://www.blogger.com/profile/13177791730943410658noreply@blogger.com6tag:blogger.com,1999:blog-3295689543166080175.post-37446628135826201512009-04-04T13:23:00.000-07:002009-04-04T14:06:25.637-07:00Salon Letter Filter ScriptFor 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.<br /><br /><b>IMPORTANT:</b> Your file name must end with .user.js for Greasemonkey to recognize it as a user script.<br /><br />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.<br /><pre><code><b>BEGIN CODE</b><br />//<br />// MANUAL CONFIGURATION REQUIRED<br />//<br />// To configure the letters filter, you must have a "killfile" variable configured.<br />// A template for this variable is given below. The "killfile" varable includes a <br />// comma-delimited string of the nyms of the authors that you wish to filter out.<br />// A sample "killfile variable configuration looks like:<br />//<br />// new String(killfile = 'author1,author2,author3');<br />// or<br />// new String(killfile = 'author');<br />//<br />// Simply replace the word "authors" in the template below with the nyms of the authors you<br />// wish to expunge, each one separated by a comma, and save the file.<br />// Entries are case insensitive. Since the "killfile" will become a regular expression,<br />// regular expression metacharacters (such as "." or "+") appearing in a nym should be<br />// preceded by a backslash ("\"; e.g., 'L\.W\.M\.') in order to work properly.<br />//<br /> new String(killfile = 'authors');<br /> if (killfile.length == 0) exit;<br />//<br />// --------------------------------------------------------------------<br />//<br />// This is a Greasemonkey user script.<br />//<br />// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/<br />// Then restart Firefox and revisit this script.<br />// Under Tools, there will be a new menu item to "Install User Script".<br />// Accept the default configuration and install.<br />//<br />// To uninstall, go to Tools/Manage User Scripts,<br />// select "Letter_Filter", and click Uninstall.<br />//<br />// --------------------------------------------------------------------<br />//<br />// ==UserScript==<br />// @name Salon Letter filter<br />// @author Frankly, my dear, ...<br />// @namespace http://language-grammar.blogspot.com/2009/04/filter-for-salon-letters.html<br />// @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.<br />// @include http://letters.salon.com/*<br />// @version 0.0.1<br />// ==/UserScript==<br /><br />//<br />// Set debug to 1 to see debug output in Javascript console<br />//<br />var debug = 1;<br /><br /><br />// <br />// Only print information to console if debug is on<br />//<br />function myGM_log(args) {<br /> if (debug == 1) {<br /> GM_log(args);<br /> }<br />}<br /><br /><br />//<br />// Shortcut function to evalute an XPath in the document<br />//<br />function xpath(query, sourceDoc) {<br /> return document.evaluate(query, sourceDoc, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);<br />}<br /><br />myregexp = new RegExp(killfile.replace(/, */g, "|"), "i");<br />myGM_log(myregexp);<br />var allLets, thisLet, allAuthors, thisAuthor, allFooters, thisFooter;<br />allLets = xpath("//li[@class='letter_node']",document);<br />allAuthors = xpath("//div[@class='letter_entry_author'] | //div[@class='letter_entry_author premium']",document);<br />allFooters = xpath("//div[@class='letter_entry_footer']",document);<br />for (var i = 0; i < allLets.snapshotLength; i++) {<br /> thisLet = allLets.snapshotItem(i);<br /> thisAuthor = allAuthors.snapshotItem(i);<br /> thisFooter = allFooters.snapshotItem(i);<br /> var author = thisAuthor.innerHTML;<br /> if (myregexp.test(author)) {<br /> mymatch = myregexp.exec(author);<br /> thisLet.innerHTML = "&lt;h3>&lt;b>Letter from " + mymatch + " deleted&lt;/h3>&lt;/b>" + thisFooter.innerHTML +"&lt;hr>";<br /> //thisLet.innerHTML = "";<br /> }<br />}<br /><b>END CODE</b></code></pre><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-3744662813582620151?l=language-grammar.blogspot.com'/></div>Frankly, my dear, ...http://www.blogger.com/profile/13417982906335528951noreply@blogger.com1tag:blogger.com,1999:blog-3295689543166080175.post-75057628848886696082009-04-03T05:29:00.000-07:002009-04-03T10:53:41.286-07:00A Filter for Salon LettersIn 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:<br /><blockquote>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.<br>&mdash; <a href="http://letters.salon.com/opinion/greenwald/2009/03/30/logic/permalink/89bbdb4a6e75bf539e32f6fbcc3c63f9.html">KB4Hire</a></blockquote><br />At the time, <a href="http://letters.salon.com/opinion/greenwald/2009/03/30/logic/permalink/d9f7d9f26161d9be314cf4aedaa1027b.html">I said</a> 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;D<sup>&reg;</sup> 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.<br /><br />The file is <a href="http://f1.grp.yahoofs.com/v1/kEDWScdjqhoh5gzEXQMf0wPfsRPTHdJHWD8b5e6ybz5UMFpQYuHxsop-Eabhry9F4LFdMg8Km_2Mq3ETFMFgcFf_5rapW5fb/salonletterfilter.user.js">salonletterfilter.user.js</a>, 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 <a href="https://addons.mozilla.org/en-US/firefox/addon/748">Greasemonkey</a>, install it by clicking on the link. If you're using Internet Explorer, eat your heart out.<br /><br />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.<br /><br />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.<br /><br />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.<br /><br />[<font face=arial>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.</font>]<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-7505762884888669608?l=language-grammar.blogspot.com'/></div>Frankly, my dear, ...http://www.blogger.com/profile/13417982906335528951noreply@blogger.com23tag:blogger.com,1999:blog-3295689543166080175.post-92205841480416313062009-03-19T11:40:00.000-07:002009-03-19T16:19:08.547-07:00The Earnestness of being ImportantTwice 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":<br /><blockquote><a href="http://letters.salon.com/opinion/greenwald/2009/03/09/freeman/permalink/4a2a7d40256fa6cdccb9eddbcbc238a2.html"><b>Usage</b><br /><br />"Importantly" means "in an important manner." Thus, the phrase "most important" should replace your frequent "most importantly."<br />Monday, March 9, 2009 11:00 AM</a></blockquote><br /><blockquote></blockquote>and<br /><blockquote><a href="http://letters.salon.com/opinion/greenwald/2009/03/17/dodd/permalink/611907f7a4fa5163eaf6a0c41b4c750e.html"><b>Usage</b><br /><br />Glenn writes:<br /><br />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:<br /><br />"Importantly" means "in an important manner." The correct form is: "Most important, it has been rewritten..."<br />Wednesday, March 18, 2009 02:38 AM</a></blockquote><br />However, despite the poster's certainty about the "correct" usage, the issue is not so clear-cut:<br /><blockquote>Usage note:<br />Both <i>more important</i> and <i>more importantly</i> 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.<br />Based on the Random House Dictionary<br /><a href="http://dictionary.reference.com/cite.html?qh=importantly&amp;ia=luna">Dictionary.com</a></blockquote><br /><blockquote><i>Usage Note</i>: Some critics have objected to the use of the phrase <i>more importantly</i> in place of <i>more important</i> 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.<br />The American Heritage® Dictionary of the English Language<br /><a href="http://dictionary.reference.com/cite.html?qh=importantly&amp;ia=luna">Dictionary.com</a><br /></blockquote><br /><blockquote><b>importantly</b>, adv.<br />1. In an important manner or degree; weightily, momentously.<br /><blockquote>Now esp. common as a kind of sentence adverb preceded by <i>more</i> or <i>most</i>; in some contexts it is interchangeable with important and so has the function of a quasi-adj. Cf. IMPORTANT a. 4.</blockquote><br /><a href="http://dictionary.oed.com/cgi/entry/50113212">Oxford English Dictionary (subscription required)</a></blockquote><br /><blockquote>important, a.<br />4. Preceded by more or most: used as a kind of sentence adjective. Cf. IMPORTANTLY adv. 1.<br /><blockquote>This construction is discussed in R. Quirk et al. Gram. Contemp. Eng. (1972) §5.26 (p. 255).</blockquote><br /><a href="http://dictionary.oed.com/cgi/entry/50113211">Oxford English Dictionary (subscription required)</a></blockquote><br /><blockquote>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.<br /><a href="http://www.bartleby.com/68/61/3161.html">Bartleby.com</a></blockquote><br />A nice <a href="http://www.cjr.org/resources/lc/important.php">analysis of the usage</a> was written by Evan Jenkins for the Language Corner blog of the <a href="http://www.cjr.org/index.php">Columbia Journalism Review</a>, which is worth quoting extensively here:<br /><blockquote><b>Important/Importantly</b><br /><i>Important ? Well, Interesting</i><br /><br />By Evan Jenkins<br /><br />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.’ ”<br /><br />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.”<br /><br />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.”<br /><br />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.<br /><br />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.<br /><br />(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...”)<br /><br />The arguments for “most important” are strained, as an e-mail discussion with the freelance copy editor Christy Goldfinch of Fort Worth made clear.<br /><br />“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.”<br /><br />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.)<br /><br />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.<br /><br />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.</blockquote><br />So the consensus is clear. Either <i>more/most importantly</i> or <i>more/most important</i> 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) <i>more/most important</i> (is the fact that) ....<br /><br />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:<br /><br /><blockquote>Regrettably, his attempt failed.<br />*Regrettable, his attempt failed.<br />Curiously, no one was bothered by this.<br />*Curious, no one was bothered by this.<br />Surprisingly, the meeting was well attended.<br />*Surprising, the meeting was well attended.</blockquote><br /><br />even though doing so could be considered elliptical for (What is) regrettable/curious/surprising (is the fact that) ....<br /><br />Extending this to <i>more/most</i> expressions completes the analogy:<br /><br /><blockquote>Regrettably, his attempt failed. More regrettably, he died in the attempt.<br />*Regrettable, his attempt failed. *More regrettable, he died in the attempt.<br />Curiously, no one was bothered by this. More curiously, some were even pleased by it.<br />*Curious, no one was bothered by this. *More curious, some were even pleased by it.<br />Surprisingly, the meeting was well attended. More surprisingly, no one left before the end.<br />*Surprising, the meeting was well attended. *More surprising, no one left before the end.</blockquote><br />Thus the elliptical "(What is) {<span style="font-family:ariel;">adjective</span>} (is the fact that)..." model is unnatural and there is no doubt that <i>more/most importantly</i> is the original usage and that <i>more/most important</i> is no more than an accepted interloper.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-9220584148041631306?l=language-grammar.blogspot.com'/></div>Frankly, my dear, ...http://www.blogger.com/profile/13417982906335528951noreply@blogger.com3tag:blogger.com,1999:blog-3295689543166080175.post-88839977879198023112009-02-18T16:49:00.000-08:002009-02-18T17:03:06.733-08:00At last! A president whose sentences might be diagrammed....<p align="center"><a href="http://3.bp.blogspot.com/_XgbzNgZToiw/SZys5qvuxuI/AAAAAAAAACM/IHWaYPEHbPI/s1600-h/Obama-sentence-diagram.jpg"><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" /></a></p><p><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /></p><p></p><p>From Jason Linkins at the Huffington Post...<br /><br />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.<br /><br />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], <a href="http://www.themillionsblog.com/2009/02/diagramming-obama-sentence.html" peppycount="52">blogger Garth Risk Hallberg</a> diagrammed a sentence from Obama's recent press conference - coincidentally, his response to the question put to him by our own Sam Stein:<br /><br /></p><em><blockquote><p><em>My view is also that nobody's above the law, and, if </em><em>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.</em><br /></p></blockquote></em><br />You can read the rest of Linkin's post <a href="http://www.huffingtonpost.com/2009/02/18/what-sentence-diagrams-re_n_167988.html">here</a>, including some of Hallberg's analysis... the rest of Hallberg's post may be found <a href="http://www.themillionsblog.com/2009/02/diagramming-obama-sentence.html">here</a>.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-8883997787919802311?l=language-grammar.blogspot.com'/></div>Karen Mhttp://www.blogger.com/profile/13177791730943410658noreply@blogger.com0tag:blogger.com,1999:blog-3295689543166080175.post-17585703460024439292009-02-11T16:41:00.000-08:002009-02-11T16:49:26.730-08:00a new GOP-specific form of aphasia?The inimitable <a href="http://www.huffingtonpost.com/bob-cesca/president-obama-is-litera_b_166152.html">Bob Cesa, at the Huffington Post</a>, 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.<br /><br />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:<br /><br /><blockquote>They have indeed totally lost their shpadoinkle and despite purely involuntary spikes in my blood pressure, it's so much fun to watch. <strong>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.</strong> 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]<br /><br />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.<br /></blockquote><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-1758570346002443929?l=language-grammar.blogspot.com'/></div>Karen Mhttp://www.blogger.com/profile/13177791730943410658noreply@blogger.com8tag:blogger.com,1999:blog-3295689543166080175.post-47171032677902535172009-01-23T12:24:00.000-08:002009-01-23T12:27:39.274-08:00Proof in Japan that we have truly entered a new phase...We <span style="font-style: italic;">never </span>could have expected to see a headline similar to this one during the Bush Years...<br /><h1><a href="http://www.huffingtonpost.com/2009/01/23/japanese-use-obamas-speec_n_160260.html" id="title_permalink">Japanese Use Obama's Speeches To Learn English</a></h1><p></p><blockquote><p>TOKYO — Aspiring English speakers in Japan have made President <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#"><span style="color: rgb(3, 130, 88) ! important; font-family: Arial,&quot;Helvetica Neue&quot;,Helvetica,sans-serif; font-weight: 400; font-size: 13px; position: static;color:#038258;" ><span class="rcLink" style="color: rgb(3, 130, 88) ! important; font-family: Arial,&quot;Helvetica Neue&quot;,Helvetica,sans-serif; font-weight: 400; font-size: 13px; position: static;">Barack </span><span class="rcLink" style="color: rgb(3, 130, 88) ! important; font-family: Arial,&quot;Helvetica Neue&quot;,Helvetica,sans-serif; font-weight: 400; font-size: 13px; position: static;">Obama</span></span></a>'s book of speeches and accompanying CD a national best-seller.</p> <p>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 <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#"><span style="color: rgb(3, 130, 88) ! important; font-family: Arial,&quot;Helvetica Neue&quot;,Helvetica,sans-serif; font-weight: 400; font-size: 13px; position: static;color:#038258;" ><span class="rcLink" style="border-bottom: 1px dashed rgb(3, 130, 88); color: rgb(3, 130, 88) ! important; font-family: Arial,&quot;Helvetica Neue&quot;,Helvetica,sans-serif; font-weight: 400; font-size: 13px; position: static; background-color: transparent;">Democratic </span><span class="rcLink" style="border-bottom: 1px dashed rgb(3, 130, 88); color: rgb(3, 130, 88) ! important; font-family: Arial,&quot;Helvetica Neue&quot;,Helvetica,sans-serif; font-weight: 400; font-size: 13px; position: static; background-color: transparent;">Convention</span></span></a> speech to improve their understanding and pronunciation.</p></blockquote><p></p><p>Click <a href="http://www.huffingtonpost.com/2009/01/23/japanese-use-obamas-speec_n_160260.html">here</a> to read more.<br /></p><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-4717103267790253517?l=language-grammar.blogspot.com'/></div>Karen Mhttp://www.blogger.com/profile/13177791730943410658noreply@blogger.com0tag:blogger.com,1999:blog-3295689543166080175.post-50726883724105982862008-12-06T21:26:00.000-08:002008-12-06T22:20:37.561-08:00WordsJust discovered <a href="http://wordie.org/">this</a> site, Wordie, which has all sorts of interesting <a href="http://wordie.org/lists/crystalsenterbrowns-list">lists</a> with words like <a href="http://wordie.org/words/louche"><span style="font-style: italic;">louche</span></a> and <a href="http://wordie.org/words/crepuscular"><span style="font-style: italic;">crepuscular</span></a>, and comments like <a href="http://wordie.org/words/rumoured">this one</a> about the word <span style="font-style: italic;">rumored</span>:<br /><br /><blockquote>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.<br /><br />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.<br /><br />Well last night I found the answer, when I read this sentence opening Dorothy Parker's 'Mrs. Hoftstadter on Josephine Street':<br /><br />That summer, the Colonel and I leased a bungalow named 947 West Catalpa Boulevard, rumored completely furnished: three forks, but twenty-four nutpicks.<br /><br />'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.</blockquote><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-5072688372410598286?l=language-grammar.blogspot.com'/></div>Jeff Whttp://www.blogger.com/profile/06296663806825685128noreply@blogger.com0tag:blogger.com,1999:blog-3295689543166080175.post-563912613986923492008-10-03T14:19:00.000-07:002008-10-03T15:15:51.004-07:00The Palin ChallengeSince our masthead boasts that we &#147;sometimes reminisce about diagramming sentences,&#148; I thought when I came across an article by <a href="http://www.slate.com/id/2201158/">Kitty Burns Florey</a> 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.<br /><br />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.<br /><br />From Ms Florey:<br /><blockquote><i>Other Palinisms are not so tractable. From <a href="http://www.washingtonpost.com/wp-dyn/content/article/2008/09/12/AR2008091203310.html">the Charlie Gibson interview</a>:<br /><br /><blockquote>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.</blockquote><br /><br />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:<br /><br /><a href="http://www.slate.com/id/2201310/"><img border=0 align=center width=100% src="http://img.slate.com/media/1/123125/122953/2180638/2201304/081001_GW_sentenceDiagram2.gif"></a><br /><br />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.</i></blockquote><br />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.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-56391261398692349?l=language-grammar.blogspot.com'/></div>Frankly, my dear, ...http://www.blogger.com/profile/13417982906335528951noreply@blogger.com5tag:blogger.com,1999:blog-3295689543166080175.post-25530113578960414752008-07-21T13:03:00.000-07:002008-07-21T13:08:11.890-07:00Quotes of the week...from Don Eggen at <a style="color: rgb(51, 102, 255);" href="http://www.washingtonpost.com/wp-dyn/content/article/2008/07/20/AR2008072001707_2.html">The Washington Post</a>:<br /><blockquote><p> <span style="color: rgb(0, 0, 0);font-family:Arial,Helvetica;" > <b style="font-size: 15px;">Quote of the Week No. 1</b><br /><!-- BREAK --></span> </p> <p> "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." </p> <p> <i>-- </i><i><a href="http://projects.washingtonpost.com/congress/members/p000197/" target="">House Speaker Nancy Pelosi</a></i><i> (D-Calif.), when asked by CNN about Bush's criticism of Congress</i> </p> <p> <span style="color: rgb(0, 0, 0);font-family:Arial,Helvetica;" > <b style="font-size: 15px;">Quote of the Week No. 2</b><br /><!-- BREAK --></span> </p> <p> "And they have no disregard for human life." </p> <p> -- <i><a href="http://www.washingtonpost.com/ac2/related/topic/George+W.+Bush?tid=informline" target="">President Bush</a></i><i>, referring to enemy fighters in Afghanistan</i></p></blockquote><p><i></i></p><p><br /></p><p>Don't you just love the English language and all of its little idiosyncracies? I know I do.<i><br /></i> </p><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-2553011357896041475?l=language-grammar.blogspot.com'/></div>Karen Mhttp://www.blogger.com/profile/13177791730943410658noreply@blogger.com1tag:blogger.com,1999:blog-3295689543166080175.post-26016421501332946742008-07-21T10:57:00.000-07:002008-07-21T11:29:00.277-07:00the Myth of Centrism<span style="font-size:100%;">Definitions of <b>centrism</b> on the <a style="color: rgb(51, 102, 255);" href="http://www.google.com/search?hl=en&amp;defl=en&amp;q=define:centrism&amp;sa=X&amp;oi=glossary_definition&amp;ct=title">the web</a>:</span><br /><span style=""></span><blockquote><span style=""><li>a political philosophy of avoiding the extremes of left and right by taking a moderate position or course of action<br /><a style="color: rgb(51, 102, 255);" href="http://www.google.com/url?sa=X&amp;start=0&amp;oi=define&amp;q=http://wordnet.princeton.edu/perl/webwn%3Fs%3Dcentrism&amp;usg=AFQjCNESniXk8wsnmmtNY-44vXq2wp8q0w">wordnet.princeton.edu/perl/webwn</a></li></span><span style=""><li>In politics, centrism usually refers to the political ideal of promoting moderate policies which land in the middle ground between different political extremes. ...<br /><a style="color: rgb(51, 102, 255);" href="http://www.google.com/url?sa=X&amp;start=1&amp;oi=define&amp;q=http://en.wikipedia.org/wiki/Centrism&amp;usg=AFQjCNGRMvxwXsZ8fIn48yfTVPuRDw0W0g">en.wikipedia.org/wiki/Centrism</a></li></span><span style=""><li>Any moderate political philosophy that avoids extremes</li></span></blockquote><span style="">But, as George Lakoff knows, that center is something of a myth.<br /><br />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.<br /><br /><span style="font-size:100%;">Jim writes:<br /></span></span><span style="font-size:85%;"><span style="font-size:100%;"></span><blockquote><span style="font-size:100%;">To illustrate the concept that there is not a linear scale, Lakoff holds up the brilliant example of Senators Joe Lieberman and Chuck Hagel.</span><span style="font-size:100%;"> </span><span style="font-size:100%;">The popular press incessantly describes both as “centrists”, yet they share virtually no views.</span><span style="font-size:100%;"> </span><span style="font-size:100%;">On social issues, Lieberman is consistently progressive and Hagel is solidly conservative.</span><span style="font-size:100%;"> </span><span style="font-size:100%;">On the war, Lieberman is conservative and Hagel is progressive.</span><span style="font-size:100%;"> </span><span style="font-size:100%;">They share views on nothing, yet both are branded as centrists.</span><span style="font-size:100%;"> </span><span style="font-size:100%;">How can there be such a thing as a centrist, or a center, if these two agree on nothing?</span></blockquote><span style="font-size:100%;"><br />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.<br /><br />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. </span></span><span style="font-size:85%;"><span style="font-size:100%;"><span style="font-family:times new roman;"><br /></span></span><span style="font-size:100%;"><span style="font-family:times new roman;"></span><br /><br /></span></span><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-2601642150133294674?l=language-grammar.blogspot.com'/></div>Karen Mhttp://www.blogger.com/profile/13177791730943410658noreply@blogger.com3tag:blogger.com,1999:blog-3295689543166080175.post-11117085630767142902008-06-27T11:30:00.000-07:002008-06-27T11:58:42.849-07:00To Karen. Thanks.<span>Thus far, with rough and all un-able pen,</span><br /><span>Our bending author hath pursued the story,</span><br /><span>In small room confining mighty men,</span><br /><span>Mangling by starts the full course of their glory.</span><br /><span>Small time ...</span><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-1111708563076714290?l=language-grammar.blogspot.com'/></div>dirigohttp://www.blogger.com/profile/16223859921847950971noreply@blogger.com0tag:blogger.com,1999:blog-3295689543166080175.post-14125325717844620612008-06-08T01:26:00.000-07:002008-06-08T03:45:26.659-07:00Reckless at Any SpeechOne commenter over at <span style="font-style:italic;">Daily Kos</span> <a href="http://www.dailykos.com/comments/2008/6/4/72023/54133/193#c193">pointed out</a> this sentence in John McCain's <a href="http://www.huffingtonpost.com/2008/06/03/the-lime-green-monster-mc_n_105044.html">trainwreck</a> of a speech Tuesday night:<blockquote>I don’t oppose a reckless withdrawal from Iraq because I’m indifferent to the suffering war inflicts on too many American families.</blockquote>While I would not characterize this sentence as a "major gaffe"—it's more like some loopy <a href="http://en.wikipedia.org/wiki/Garden_path_sentence">garden path sentence</a>—(and this is, after all, John McCain, and the campaign has just begun), I somehow enjoy imagining, say, <a href="http://www.npr.org/templates/story/story.php?storyId=6444183">Dennis Steele</a> in some ad, solemnly intoning:<blockquote>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.</blockquote>One might have hoped for some attempt at an elegant <a href="http://www.figarospeech.com/it-figures/2005/8/4/suffer-the-little-stem-cells.html">syncrisis</a>—I don't oppose <i>X</i> because <i>Y</i>; I oppose <i>X</i> because…—but, well, that might have raised the question of what sort of withdrawal John McCain <i>could</i> support or, perhaps, if he could support any type of withdrawal at all.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-1412532571784462061?l=language-grammar.blogspot.com'/></div>Jeff Whttp://www.blogger.com/profile/06296663806825685128noreply@blogger.com0tag:blogger.com,1999:blog-3295689543166080175.post-48737242220286200002008-06-03T08:57:00.000-07:002008-12-12T22:49:31.309-08:00I know what it says, but what does it mean?<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_XIbSGs0jOZA/SEVtS-LLyzI/AAAAAAAAAAY/1OVyhRQIKsk/s1600-h/mccain-lieberman-graham.jpg"><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" /></a><br />On the subject of rhetorical devices, here, by popular demand, is my vision of what the ultimate anti-McCain campaign ad would look like:<br /><blockquote><i>Actual news footage &mdash; McCain standing at the microphone, Joe Lieberman in the background.</i><br /><br />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."<br /><br /><i>Lieberman steps forward, takes McCain by the arm, and whispers in McCain's ear.</i><br /><br />MCCAIN: "I’m sorry, the Iranians are training extremists, not Al Qaeda."<br /><br /><i>The scene shifts; a child is in bed sleeping; in the background a phone is ringing.</i><br /><br />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?"<br /><br /><i>Still shot of Lieberman whispering in McCain's ear (above)</i><br /><br />NARRATOR: "What if it's John McCain and Joe Lieberman isn't there to tell him what to say?"<br /><br /><i>Fade to text: </i><br><font face=arial><b>&nbsp; &nbsp; &nbsp;THE PRESIDENT OF THE UNITED STATES<br>&nbsp;NEEDS TO KNOW WHAT HE'S TALKING ABOUT<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AS WELL AS WHAT HE'S SAYING.</b></font></blockquote><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-4873724222028620000?l=language-grammar.blogspot.com'/></div>Frankly, my dear, ...http://www.blogger.com/profile/13417982906335528951noreply@blogger.com1tag:blogger.com,1999:blog-3295689543166080175.post-44077127389672882152008-05-26T08:23:00.000-07:002008-05-28T13:52:36.368-07:00A Free PressIn honor of Glenn's two most recent posts (<a href="http://www.salon.com/opinion/greenwald/2008/05/28/gibson/index.html">here</a> and <a href="">here</a>), 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.<br /><br /><i>A Free Press<br /><br />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.<br /><ul><li>A free press informs the public, holds leaders accountable, and provides a forum for debate of local and national issues.<br /><br /><li>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.<br /><br /><li>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 &#147;right to know,&#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.<br /><br /><li>The press, itself, must act responsibly. Through professional associations, independent press councils, and &#147;ombudsmen,&#148; in-house critics who hear public complaints, the press responds to complaints of its own excesses and remains internally accountable.<br /><br /><li>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.<br /><br /><li>Press outlets should establish their own editorial boards, independent of government control, in order to separate information gathering and dissemination from editorial processes.<br /><br /><li>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.<br /><br /><li>Democracies foster a never-ending struggle between two rights: The government&#146;s obligation to protect national security; and the people&#146;s right to know, based on journalists&#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.</i></ul><br /><br /><hr height=1 width=25%><br />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 &#147;free press&#148; and our &#147;democratic government&#148; violate or ignore.<br /><br />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: <a href="http://usinfo.state.gov/products/pubs/principles/freepress.htm">http://usinfo.state.gov/products/pubs/principles/freepress.htm</a>.<br /><br />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).<br /><br />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: &#147;<i>Democratic governments grant journalists access to public meetings and public documents. They do not place prior restraints on what journalists may say or print</i>&#148; and &#147;<i>A democracy allows the press to go about its business of collecting and reporting the news without fear or favor from the government</i>.&#148;<br /><br />Perhaps a little statement to the effect that &#147;the press should expect the government will try to subvert and suborn it&#148; would be a helpful warning to a press that seems to be so easily subverted and suborned.<br /><br />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 (&#147;<i>no prior restraints</i>&#148; and &#147;<i>without fear or favor</i>&#148;). The State Department says so (just not for domestic consumption).<br /><br />And note particularly the final paragraph concerning the admission that &#147;<i>journalists in democracies are fully justified in pursuing such</i> [national security]<i> information</i>&#148; and compare that with <a href="http://thinkprogress.org/2007/12/29/kristol-v-nyt/">the insistence of Billy Kristol that the NY Times be prosecuted for publishing national security information</a> (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?<br /><br />[Sorry, I couldn't find any way to work language and grammar into this; someone else will have to do that.]<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-4407712738967288215?l=language-grammar.blogspot.com'/></div>Frankly, my dear, ...http://www.blogger.com/profile/13417982906335528951noreply@blogger.com2tag:blogger.com,1999:blog-3295689543166080175.post-79360337047294621412008-04-28T06:52:00.000-07:002008-05-09T04:09:20.157-07:00Vapid is as vapid doesFrom KarenM in comments:<br><br /><blockquote><i>Perhaps it's time for a post about synonyms for vapid?</i></blockquote><br />Good idea! Here's my list:<br><br />Vapid:<br /><table border="0"><br /><tbody><tr><td><i>insipid</i></td><td><i>flat</i></td><td><i>lifeless</i></td><td><i>dull</i></td></tr><br /><tr><td><i>boring</i></td><td><i>trite</i></td><td><i>banal</i></td><td><i>uninspiring</i></td></tr><br /><tr><td><i>flavorless</i></td><td><i>tedious</i></td><td><i>listless</i></td><td><i>tiresome</i></td></tr><br /><tr><td><i>spiritless</i></td><td><i>prosaic</i></td><td><i>unanimated</i></td><td><i>tasteless</i></td><tr><br /></tbody></table><br />Anybody else?<br /><hr size=1 width=50%><br />Additions from comments (5/9/08):<br /><table border="0"><br /><tbody><tr><td><i>vacuous</i></td><td><i>tired</i></td><td><i>hackneyed</i></td><td><i>uninspired</i></td></tr><br /></tbody></table><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-7936033704729462141?l=language-grammar.blogspot.com'/></div>Frankly, my dear, ...http://www.blogger.com/profile/13417982906335528951noreply@blogger.com6tag:blogger.com,1999:blog-3295689543166080175.post-3621081026776678132008-04-24T11:44:00.000-07:002008-04-24T12:28:33.987-07:00Forcing vs. Pouring?<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://blogs.law.harvard.edu/stoptorture/files/2007/10/waterboarding-in-vietnam.jpg"><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" /></a><br /><span style="font-size:100%;">From a diary at Kos by Elsinora... <span style="font-size:85%;">transcript from <a style="color: rgb(51, 51, 255);" href="http://www.washingtonpost.com/wp-dyn/content/blog/2008/04/24/BL2008042401889_5.html">Dan Froomkin's column</a></span><br /></span><p><span style="font-size:100%;"> <span style="font-weight: bold; color: rgb(153, 153, 153);">Ashcroft:</span> "Now, listen here. You're comparing apples and oranges, apples and oranges. We don't do anything like what you described." </span></p> <p><span style="font-size:100%;"><span style="font-weight: bold; color: rgb(153, 153, 153);">Elsinora:</span> "I'm sorry, I was under the impression that we still use the method of </span><span style="font-weight: bold;font-size:100%;" >putting a cloth over someone's face and pouring water down their throat</span><span style="font-size:100%;">. . . . " </span></p> <p><span style="font-size:100%;"><span style="font-weight: bold; color: rgb(153, 153, 153);">Ashcroft:</span> "'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]!" </span></p> <p><span style="font-size:100%;"><span style="font-weight: bold; color: rgb(153, 153, 153);">Elsinora:</span> "'</span><span style="font-weight: bold;font-size:100%;" >The victim was bound or otherwise secured in a prone position</span><span style="font-size:100%;">; and </span><span style="font-weight: bold;font-size:100%;" >water was forced through his mouth and nostrils into his lungs and stomach</span><span style="font-size:100%;">.'" </span></p> <p><span style="font-size:100%;"><span style="font-weight: bold; color: rgb(153, 153, 153);">Ashcroft:</span> "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?<br /></span></p><p><span style="font-size:100%;">If you can't tell the difference between forcing and pouring. . . . "</span></p><pre><span style="font-size:100%;"><strong>pour</strong><br />v 1: cause to run; of liquids<br />2: </span><span style="font-size:100%;"><span style="font-weight: bold;">move in large numbers</span>; "people were pouring out<br />of the theater" [syn: <a href="http://dictionary.die.net/swarm">swarm</a>, <a href="http://dictionary.die.net/stream">stream</a>]<br />3: pour out; of wines or sherry [syn: <a href="http://dictionary.die.net/decant">decant</a>, <a href="http://dictionary.die.net/pour%20out">pour out</a>]<br />4: </span><span style="font-size:100%;"><span style="font-weight: bold;">flow in a spurt</span>; of liquids<br />5: </span><span style="font-size:100%;"><span style="font-weight: bold;">supply in large amounts or quantities</span>: "We poured<br />money into the education of our children"<br />6: </span><span style="font-weight: bold;font-size:100%;" >rain heavily</span><span style="font-size:100%;">; "Put on your rain coat-- it's<br />pouring outside!"<br />[syn: </span><span style="font-size:130%;"><span style="font-size:85%;"><a style="font-weight: bold;" href="http://dictionary.die.net/pelt">pelt</a></span><span style="font-weight: bold;font-size:85%;" >, </span><span style="font-size:85%;"><a style="font-weight: bold;" href="http://dictionary.die.net/stream">stream</a></span><span style="font-weight: bold;font-size:85%;" >, </span><span style="font-size:85%;"><a style="font-weight: bold;" href="http://dictionary.die.net/rain%20cats%20and%20dogs">rain cats and dogs</a></span><span style="font-weight: bold;font-size:85%;" >,</span><span style="font-size:85%;"><a style="font-weight: bold;" href="http://dictionary.die.net/rain%20buckets"> rain</a> <a style="font-weight: bold;" href="http://dictionary.die.net/rain%20buckets">buckets</a></span><span style="font-weight: bold;"><span style="font-size:85%;">]</span> </span></span></pre><p> </p> <div id="admiddle"> <script type="text/javascript"><!-- google_ad_client = "pub-5823754184406795"; google_ad_slot = "7241899208"; google_ad_width = 300; google_ad_height = 250; //--> </script></div><pre><span style="font-size:100%;"><strong><strong>force</strong></strong><br />v 1: to cause to do through pressure or necessity, by<br />physical, moral or intellectual means :"She forced him<br />to take a job in the city" [syn: <a href="http://dictionary.die.net/coerce">coerce</a>, <a href="http://dictionary.die.net/hale">hale</a>, <a href="http://dictionary.die.net/pressure">pressure</a>]<br />2: urge or force (a person) to an action; constrain or<br />motivate<br />[syn: <a href="http://dictionary.die.net/impel">impel</a>]<br />3: move with force, "He pushed the table into a corner"<br />[syn: <a href="http://dictionary.die.net/push">push</a>] [ant: <a href="http://dictionary.die.net/pull">pull</a>]<br />4: impose or thrust urgently, importunately, or inexorably;<br />"She forced her diet fads on him" [syn: <a href="http://dictionary.die.net/thrust">thrust</a>]<br />5: squeeze like a wedge into a tight space; "I squeezed<br />myself into the corner" [syn: <a href="http://dictionary.die.net/wedge">wedge</a>, <a href="http://dictionary.die.net/squeeze">squeeze</a>]<br />6: force into or from an action or state, either<br />physically or metaphorically; "She rammed her mind into<br />focus"; "He drives me mad" [syn: <a href="http://dictionary.die.net/drive">drive</a>, <a href="http://dictionary.die.net/ram">ram</a>]<br />7: do forcibly; exert force; "Don't force it!"<br />8: cause to move along the ground by pulling; "draw<br />a wagon"; "pull a sled" [syn: <a href="http://dictionary.die.net/pull">pull</a>, <a href="http://dictionary.die.net/draw">draw</a>] [ant: <a href="http://dictionary.die.net/push">push</a>]<br />9: take by force; "Storm the fort" [syn: <a href="http://dictionary.die.net/storm">storm</a>]</span> <!-- google_ad_section_end --><a style="font-family: trebuchet ms;" href="http://www.blogger.com/blogs.law.harvard.edu"></a><br /></pre><div style="text-align: right;"><span style="font-size:85%;"></span> <div style="text-align: left;">I guess if it will ease Ashcroft's mind semantically, we can agree on using some variation of <span style="font-style: italic;">forcibly pouring</span>, or <span style="font-style: italic;">poured by force</span>. However, the words and phrases emphasized above should have sufficed.<br /><br />And, perhaps Knox College will, in future, make sure that the distinction between pouring and forcing is added to their anatomy curriculum. <span style="color: rgb(153, 153, 153); font-weight: bold;font-size:85%;" >[/sarcasm]</span><br /><br /><br /></div><div style="text-align: left;"><span style=";font-family:trebuchet ms;font-size:85%;" >Definitions: http://dictionary.die.net/ </span><span style=";font-family:trebuchet ms;font-size:85%;" ><br />Image: "Waterboarding in Vietnam," </span><span style=";font-family:trebuchet ms;font-size:85%;" >from </span><span style=";font-family:trebuchet ms;font-size:85%;" ><a href="http://www.blogger.com/blogs.law.harvard.edu">Stop Torture: the Harvard anti-Torture Coalition</a></span><br /></div><span style="font-size:85%;"><br /><br /></span></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-362108102677667813?l=language-grammar.blogspot.com'/></div>Karen Mhttp://www.blogger.com/profile/13177791730943410658noreply@blogger.com5tag:blogger.com,1999:blog-3295689543166080175.post-87892565819268481612008-04-19T19:01:00.000-07:002008-04-19T19:10:37.693-07:00Elites and ElitismTime to reclaim these words. They don't really sustain their proper meanings when applied, e.g., to our esteemed Press.<br /><br />"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 <span style="font-style: italic;">not </span>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.<br /><br />"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.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-8789256581926848161?l=language-grammar.blogspot.com'/></div>Karen Mhttp://www.blogger.com/profile/13177791730943410658noreply@blogger.com0tag:blogger.com,1999:blog-3295689543166080175.post-61142656252086139242008-04-05T09:11:00.000-07:002008-04-07T05:18:31.496-07:00Can someone suggest to Glenn that he find a new word to characterize America's press coverage?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".<br />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 <i>Carthago delenda est</i> calls to mind Cato the Elder. If so, he's well on his way.<br />(Update 4/6/08): Never mind. I've just read <a href="http://www.salon.com/opinion/greenwald/2008/04/06/mukasey/index.html">Glenn's post on the AP fluff piece on AG Mukasey</a> and there really is no other word for it than vAPid.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-6114265625208613924?l=language-grammar.blogspot.com'/></div>Frankly, my dear, ...http://www.blogger.com/profile/13417982906335528951noreply@blogger.com4tag:blogger.com,1999:blog-3295689543166080175.post-12065870474559314432008-03-08T14:17:00.000-08:002008-03-08T14:23:05.734-08:00A Call for Support...<object height="370" width="530"><param name="movie" value="http://www.youtube.com/p/0DC98F9E958418FB"><embed src="http://www.youtube.com/p/0DC98F9E958418FB" type="application/x-shockwave-flash" height="370" width="530"></embed></object><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-1206587047455931443?l=language-grammar.blogspot.com'/></div>Karen Mhttp://www.blogger.com/profile/13177791730943410658noreply@blogger.com1tag:blogger.com,1999:blog-3295689543166080175.post-84770228403940325842008-03-03T19:50:00.001-08:002008-12-12T22:49:31.354-08:00Another way to support Black Flag Week...<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_XgbzNgZToiw/R832GXOsHII/AAAAAAAAABs/4ODlhOu94qw/s1600-h/BlackFlagWeekWebsiteAdVertical.jpg"><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" /></a><br /><div style="text-align: left;"><a href="http://blogs.salon.com/0004000/images/BlackFlagWeekWebsiteAd.jpg"><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" /></a><br /></div><div style="text-align: center;">...would be to display one of the above ads<br /></div><div style="text-align: center;">on your blog or website<br />and support the Rule of Law.<br /><br />And please tell us about your efforts and participation at:<br />AchievingOurCountry.blogspot.com<br />in the comments.<br /></div><div><a href="http://blogs.salon.com/0004000/images/BlackFlagWeekWebsiteAd.jpg"></a><br /><br /><div></div></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-8477022840394032584?l=language-grammar.blogspot.com'/></div>Karen Mhttp://www.blogger.com/profile/13177791730943410658noreply@blogger.com0tag:blogger.com,1999:blog-3295689543166080175.post-87872307218262262352008-03-02T17:04:00.000-08:002008-12-12T22:49:31.540-08:00Rule of Law<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_XgbzNgZToiw/R8tlhFRGAeI/AAAAAAAAABc/4A6CsLrdKoo/s1600-h/BlackFlagWeek.jpg"><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" /></a><span style="FONT-WEIGHT: normal">from "<a href="http://revolutionredux.wordpress.com/2008/03/02/pakistan-constitutions-and-the-rule-of-law/"><span style="FONT-WEIGHT: bold; COLOR: rgb(51,102,255)">ondelette</span></a>:"<br /><br /></span><b>Next week, March 9-15, is Black Flag Week in Pakistan</b>. 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. <p><b>Brief History of the Lawyers Protests</b></p><p>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.</p><p>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).</p><p>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.</p><p>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.</p><p><b>Where does it go from here? </b></p><p>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.</p><p>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.</p><p>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.</p><p>On <b>Black Flag Week</b>, 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.</p><p><b>Please help show support for these lawyers.</b> 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. <i>If the rule of law is fundamental, then it is never too unimportant to grow and strengthen it, anywhere in the world. </i></p><span style="COLOR: rgb(102,102,102);font-size:85%;" ><span style="COLOR: rgb(51,51,153);font-size:100%;" ><span style="font-family:times new roman;"></span></span></span><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-8787230721826226235?l=language-grammar.blogspot.com'/></div>Karen Mhttp://www.blogger.com/profile/13177791730943410658noreply@blogger.com0tag:blogger.com,1999:blog-3295689543166080175.post-2274507398342854962008-02-14T09:25:00.000-08:002008-02-14T09:43:38.812-08:00Torture is torture, except when it's newsThe 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.<br /><br />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?<br /><br />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."<br /><br />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.<br /><br />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?<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-227450739834285496?l=language-grammar.blogspot.com'/></div>Introvert Girlhttp://www.blogger.com/profile/16352147838562674682noreply@blogger.com8tag:blogger.com,1999:blog-3295689543166080175.post-66126017166982958402008-02-07T13:31:00.001-08:002008-02-07T13:52:32.136-08:00Looking for Real WordsSo I missed out on my promised Thursday post last week. A teething baby, a house full of guests ... ack.<br /><br />There are a number of minor language topics on my mind this week: politically correct terms, thoughts on <em>The Golden Compass</em> 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.<br /><br />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.<br /><br />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.<br /><br />Anyway, any good suggestions for heterosexual life partner?<br /><br />The other is a little more complicated. It's a writing issue. I'll try to explain.<br /><br />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 <em>where</em> you are meant to be. When this happens, bringing the reader back to that place can be a little jarring.<br /><br />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.<br /><br />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.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-6612601716698295840?l=language-grammar.blogspot.com'/></div>Introvert Girlhttp://www.blogger.com/profile/16352147838562674682noreply@blogger.com3tag:blogger.com,1999:blog-3295689543166080175.post-26500140500857860282008-01-24T08:10:00.001-08:002008-01-25T08:34:25.045-08:00Bring on the Babbling(Note: Introvert Girl--me--is going to attempt posting on the Choco-Bang every Thursday. Hurrah for New Year's resolutions!)<br /><br />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 (<span style="font-style: italic;">really</span> 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.<br /><br />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.<br /><br />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.<br /><br />When I told her I was pregnant, my sister presented me with <span style="font-style: italic;">What's Going on in There? </span>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.<br /><br />A very large part is given over to the development of language in babies. And I've discovered, to my sorrow, that talking constantly <span style="font-style: italic;">to</span> 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.<br /><br />You've got to talk, talk, talk. And it's <span style="font-style: italic;">hard</span>. 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 <span style="font-style: italic;">at</span> 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.<br /><br /><span style="font-style: italic;">What's Going on in There?</span> 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.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3295689543166080175-2650014050085786028?l=language-grammar.blogspot.com'/></div>Introvert Girlhttp://www.blogger.com/profile/16352147838562674682noreply@blogger.com9