
Wednesday, September 28, 2011
A smarter way to app

Monday, September 12, 2011
One Nissan Leaf, two Nissan ...
Thursday, September 01, 2011
The honey badgers of web development
First there was the honey badger, a badger-like creature that's apparently known for its "ferocious defensive abilities." Then there was a nature program (video) that explored the honey badger's appetite for such delicacies as bee larvae and cobras and its apparent indifference to bees and snakebite and venom and pain. And then there
was Randall's alternate narration (video) for that nature documentary, from which all the world learned that "Honey badger don't care. Honey badger don't give a shit."
Like it? Get the t-shirt or the poster.
Right, this isn't news; the Know Your Meme site has a nice piece that recounts the brief history. (It also came up in the TV show "Glee," which is nothing if not culturally au courant.)
What's fun is watching the term honey badger go generic. Earlier this year, Mignon Fogarty (aka Grammar Girl) tweeted this:
Honey badger don't care about "i.e." and "e.g." (http://youtu.be/4r7wHMg5Yjg), but you should: http://j.mp/m3apUD
That was in May; note that she uses the full phrase and includes a link for the as-then-still uninitiated. But yesterday I found this in a technical article:
Then there are the honey badgers of web development, the notorious Content Management Systems, designed to kill all your hopes and dreams.
No "don't care" here; no link. You either get it or don't.[1]
This is what really interests me; is it possible for the term honey badger to become decoupled from any explicit reference to Randall's video and enter the lexicon as a synonym for, dunno, "indifference" ("aggressive indifference"?). That would be pretty awesome for Randall, and awesome to have seen it happen.
1 As an aside, from an editorial perspective, the article is filled with cultural references and is too clever by half, as people say. Woe onto the non-English-as-first-language speaker (non-American?) who reads this. Entertaining, tho. :-)
Wednesday, August 31, 2011
Organize and humorize
I say "mostly" because although they used a hyphen in the body of the ad, they don't in the subject line of the email where I saw this.
Update: This is an ad for a desk calendar, in case that isn't clear, oops.
I personally have no problem with -izing nouns, but some folks do ("seemingly lazy application of this custom").
Friday, August 12, 2011
True only if you don't say it about yourself
It's always bugged me, too, this thing where a person or a company takes pains to tell you what they think their virtues are:
- I'm a classy person.
- I'm an educated person.
- I'm a modest person.
- (Most any reference to "elegant" in a product description.)
- etc.
Now John Scalzi has coined a term for this: McKean's inversion. He describes it this way:
The adjective a person says they are is frequently the thing they are not.
The name McKean's inversion originates via an indirect route. Erin McKean is a lexicographer (among her other talents) who once stated what's come to be known as McKean's Law: "Any correction of the speech or writing of others will contain at least one grammatical, spelling, or typographical error." Scalzi knows McKean and says he remembers how she once observed that ...
... if someone used the word to describe themselves, it was often quite obvious that they were in fact the opposite.
Thus the inversion. And as noted, McKean's Law was already taken.
It's a little early to tell, but my sense is that this is intended to be used for instances where the person is being a bit clueless. It would therefore not work when they're simply being disingenuous, e.g., "I'm just a humble technical writer." But who knows?
Friday, August 05, 2011
One media to rule them all
Not a surprising neologism in retrospect, but then again, good ones always seem obvious after the fact:
- Welcome to the first murdochracy
- This is What Murdochracy Looks Like
- The revolt against Murdochracy: a view from Oz
- End days for dead paper and "Murdochracy"?
- Is the Murdochracy tumbling down?
Definition? Well, dunno, something like this:
Murdoch's immense political power , which has had successive Prime Ministers dancing attendance on him, and rushing to confer lucrative favors on his News Corporation.(Thanks to James Galasyn for finding this one.)
Wednesday, July 27, 2011
Legitimate illegitimists?
In contemporary America, we also have people who are — and I am inventing this word here — illegitimists: They believe that the president of the United States is illegitimately elected, or that the country is ruled by a cabal that is in turn controlled by some other sinister force or forces.(She is careful to note that her intent is to be agnostic with respect to political persuasion, by noting that this also described Marxists in an earlier era. Not everyone buys this attempt.)
Just as a word, illegitimist is not unknown. It has no dictionary entry in standard dictionaries (at least, as per Dictionary.com and Vocabulary.com). Even the mighty OED does not have a specific entry for this term. However, there is a precedent or two:
Wednesday, July 13, 2011
PepsiCo and the future of snack terms
Let's say you give a kid a carrot," Nooyi [CEO] explained. "And he says, 'I don't want to eat a carrot.' But you say, 'I tell you what, I'll give it to you in a wonderful drinkable form that's still as close to the carrot as possible.' All of a sudden, what have I done? I've drinkified the snack! Or I take a fruit juice and give it to you in a wonderful squeezable form, which is Tropolis. What have I done now? I've snackified the drink.
- reward sensitivity -- a term from psychology (?) referring to how easily people are satisfied. (Something that people who design snacks take into account.) No quotation marks in the article. (34K Google hits.)
- bliss point -- the point at which you achieve satisfaction, same context. In quotation marks. (48K Google hits.)
- sip and spit, e.g. sip and spit rooms -- the technique used for tasting. In quotation marks. (Familiar from wine and coffee tasting, I suppose -- 160K Google hits.)
- blue-can Pepsi -- the traditional/original version of Pepsi. No quotation marks. (8K Google hits.)
Tuesday, May 31, 2011
From Greek battles to all-day presentations
- Walkathon (alt. walk-a-thon)
- Bike-a-thon
- Science-athon
- Organize-athon
- Stay-awake-a-thon
- Butt-numb-a-thon (my personal favorite), described as "a celebration of film fandom," 12 movies in a row.
Monday, April 04, 2011
It's useless, but somehow not
Nothing fancy and of debatable uselessfullness (probably should never be in 4Hi with lockers ON). Maybe some cases in sand dunes or snow, but not much else.
Uselessfulness. Yes that is now a word. A term we are coining for Tuscon artist Nick Georgiou who takes useless trash (pretty much anything print) and creates amazing useful works of art.
Friday, April 01, 2011
Truthiness and falsiness
JavaScript has keywords for true and false, but like many C-style derivative languages, it has concepts of truthy and falsy. These are non-boolean expressions that can be treated as a boolean value. The number zero is falsy, and any other number is truthy. Equally for strings, an empty string is falsy, and a non-empty string is truthy.
When javascript is expecting a boolean and it’s given something else, it decides whether the something else is "truthy" or "falsy". An empty string (''), the number 0, null, NaN, a boolean FALSE, and undefined variables are all "falsy". Everything else is “truthy”.
12 + "a". A discussion for another time: does boolean get a cap?)Tuesday, March 22, 2011
I don't have a smartphone, I have ...
There is a formal term, actually: it's a feature phone. (2.6 MM hits on Google.)
There are some interesting things here. One is that this is a kind of retronym; the term feature phone is defined primarily by what it's not. What it's not, however, has changed a bit. If Wikipedia is to be believed, a feature phone was originally a phone that had more features than the original set of monochrome, just-talk cellphones. (Cite.) However, these days, since those old-skool phones are pretty much gone, a feature phone is a phone that has fewer features than its successor, namely a smartphone. Or both at once -- this article describes it this way:
Feature phones, [which] are dumb phones that have elements (but not the full connectivity) of smartphones.And here's another wrinkle: the term smartphone itself has had something of a movable definition. Or even a circular one. Here's Wikipedia:
A smartphone is a mobile phone that offers more advanced computing ability and connectivity than a contemporary feature phone.The article goes on to describe the first smartphone (1992) as having many of the features that people would probably consider smartphone-ish:
[...] it also contained a calendar, address book, world clock, calculator, notepad, e-mail, send and receive fax, and games. It had no physical buttons to dial with. Instead customers used a touchscreen to select telephone numbers with a finger or create facsimiles and memos with an optional stylus. Text was entered with a unique on-screen "predictive" keyboard. By today's standards, the Simon would be a fairly low-end product, lacking for example the camera now considered usual.1992? Impressive.
Note that this implicitly says that smartphones today include cameras, i.e., part of the definition (necessary but not sufficient) is that there's a camera. It don't do the trick if it ain't got that click.
But the term smartphone itself is even older than that. Paul McFedries finds a cite that goes back to 1984, where of course it meant something a bit different:
Part of the transparent keyboard facility is the ability to deal with the telephone through the "smartphone" option, which makes it possible to answer the phone (using a headset) with the computer.Not today's definition, I think we can agree. It's tempting to say that smartphone simply means "whatever the newest state of phone technology is," but that isn't supported by actual usage citations. Still, it does lead a body to speculate what we'll call the next generation of phones, which will have the ability to ... golly, what? I can't even imagine. But it's a sure thing that the current generation of iPhones et al. will someday seem quaintly primitive. At that point, it's hard to imagine that we'll still be calling them smartphones. Or what we'll call the new ones.
Monday, February 21, 2011
Under the table and DRMing
I got some information DRM'd to me that …
Monday, January 24, 2011
Gasmic consciousness, Part II
The patriotgasm certainly seems Michael Bay-like.This sent me searching, which yielded the following without much effort:
- Twitter-gasm
- Super Bowl stat-gasm
- Moore-gasm (as in, Michael Moore)
- snow gasm (a puerile bit from a comedy site)
- sports-gasm
- geekgasm
- gun-gasm
- Obama-gasm
- higher ed-gasm
Thursday, January 20, 2011
Lost in the search-result woods
For a Google search, tho, it's all about page 1; according to one study, "sites surveyed received more than 95% of all their non-branded natural search traffic from page-one results." There's a lively industry around getting a site onto Google's first page. Because if you're not on page 1, you are ... what? "In the wilderness"? "At the back of the pack"?
Links to prominent services like Facebook, Twitter, LinkedIn or Flickr carry a lot of weight with Google, and can push unwanted content to the Google Ghetto, otherwise known as page two.
Thursday, November 11, 2010
Making your web presence go dark
But social media brings a new wrinkle to the game. You might log out of (say) Facebook, but your cyberpresence remains out there for other people to interact with. For most people, that's perfectly fine, and they are happy to come back later, log back in, and see what all their friends (er, Friends) have had to say to them.
For various reasons, however, there are those who want to treat a social-media network like Facebook only as an interactive/synchronous medium. They log on and interact with their friends. But when they're done, they don't just log out. They deactivate their Facebook account entirely, so that others cannot see it at all until it's reactivated.
Turns out there's a name for this: super logout, or variously super logoff.
I first heard about this in a blog post by the social researcher danah boyd:
Mikalah uses Facebook but when she goes to log out, she deactivates her Facebook account. She knows that this doesn’t delete the account – that’s the point. She knows that when she logs back in, she’ll be able to reactivate the account and have all of her friend connections back. But when she’s not logged in, no one can post messages on her wall or send her messages privately or browse her content. But when she’s logged in, they can do all of that. And she can delete anything that she doesn’t like. Michael Ducker calls this practice “super-logoff” when he noticed a group of gay male adults doing the exact same thing.
In a related tweet linked to the blog post, user zephoria says "My students talk abt this call it 'whitewashing' or 'whitewalling.'"
- New York Magazine: Lessons From Teenagers: The Art of the Facebook Super Log-Off
- Lifehacker: Use the "Super-Logoff" Technique to Exercise Tighter Control Over Your Facebook Profile (11/9/10)
- wikiHow: How to Super Logout on Facebook (11/11/10)
- urlesque*: New Facebook Trend - The 'Super-Logoff' (11/11/10)
Wednesday, October 27, 2010
Or alternatively, to Ging
... [blah-blah] the number hasn't been zero since early 2006 in my quick boogle.
Seth comments: "Given that it was an MSFT employee, I think he was trying to hint that he's used both major search engines." (One would have to understand that there is a certain informal peer pressure inside Microsoft to a) not use google as a verb and b) use Bing as search engine.)
The reason I say that the term seems obvious is that it's a natural formation that moreover has been claimed already: there is the site booglesearch.com, which searches both engines and presents results side by side.
Beyond that, tho, things get murkier. (To me.) The site boogle.com does a Google search but presents you with a page that displays a quotation and a picture in lieu of the standard Google home page. (Oh.) No tie to Bing that I can deduce. There's Boogle the game, which looks (to me) like a trademark-skirting variant on the game I know as Boggle.
The exceptionally unreliable Urban Dictionary lists one definition of boogle as:
A negative result to having Googled a person; to be shocked or repulsed by what you find out about a person you have just Googled; to Google someone with the intention of finding out something negative about them.
But really, that's as much as I've found in my few moments of poking around. We'll have to keep an ear out.
Sunday, October 17, 2010
Stars of a different type
Wow, when did this become a productive suffix?
- Rhee is a Grade-A edu-lebrity [#]
- [Y]ou're far more likely to be picking through the sausage-makings as they just sort of spray willy-nilly out of the meat grinder of news-lebrity that has replaced the news. [#]
- Ever want to know what it's like to log into Twitter as your favorite Twitter-lebrity? [#]
- And there are perks to being a bona fide Z-lebrity [#]
- Bornstein refers to herself as a "sub-lebrity" [#]
Update 9 April 2011: Here's a nice one: "'Glee' piano player happy as a 'sub-lebrity'. (Brad Ellis in the background of "Glee" as the club's accompanist.)
There's also C-lebrity, which appears in a number of guises, but most popularly as the name of a song by Queen, which of course dates it considerably. But it's unclear to me whether this is really intended to mean anything other than celebrity.
Anyway, this is another cran-morphy rejiggering of the morphological elements of the original, in which celebr is the nominal root, but in which -lebrity becomes instead the productive bit. (See also cheese-burger etc.)
These all strike me as pretty clever, but my sense is that they work better in written language than said out loud. A number of them are a bit awkward to say, possibly because they end up with sound sequences that don't entirely work -- news-lebrity, Twitter-lebrity. In the examples that are easier to pronounce (Z-lebrity, sub-lebrity), the aural resemblance to the original would require very careful enunciation to get across the point of the new formation. Still, it's always handy to have some new materials for making words.
Tuesday, September 14, 2010
We will now focus obsessively on something dumb
Every time he publishes a new mess, it gets the full Pastor Jones treatment in the respectable press.(Source: an article in Slate.) This seemed sort of Whorfian to me, inasmuch as we could crystalize the concept by coming up with a word for it. It sure does seem like we need a handy way to refer to these periodic episodes of press insanity, where 30 people in some state somewhere all of a sudden are headline news around the world. It would be best, of course, if the term were apolitical -- think of Balloon Boy.
Saturday, July 31, 2010
One millennium, two ...
Nonetheless, people get theyselves worked up these things. Not terribly long ago, I essentially laid all this out when someone asked what the plural should be of the car known as the Prius. Easy, sez me: in English, the default way to make plurals is to add -(e)s, so, hey, Priuses. All this fancy talk about what the plural would be if this were a Latin word is just piffle, because we're not talking about Latin, we're talking about English.
Ask folks what the plural is of octopus, and yer more edumacated types will tell you it's octopi, because something-something-Greek-something-something. Or cactus, or focus, or schema, or -- heh-heh -- opus.
Now, I would not say that it's wrong to say that the plurals are octopi or cacti or foci or schemata or opera. But I will also staunchly defend octopuses and cactuses and focuses and schemas and opuses. Because these latter words all follow normal rules, and because if I were a native speaker of English, I would find those to be perfectly reasonable ways to make the plural forms. (Hey, wait, I am, and I do!)
Ok. Surely among the more conservative publications in terms of these things is the New York Times, yes? Yet behold this thing that they have printed:

(I make you a picture in case some editor at the Times get a gander at this, haha.)
Surely this is unusual for a publication, is it not? Google reports a mere 425,000 hits for this term, versus around 6 million for the term millennia (where the plural ends in -a because something-something-Latin-something-something).[1]
Having read this far, tho, you will not be surprised to hear me say that I cheer the NYT for this. I'm sure they'll get letters from folks who want us all to know Latin declensions, but fie on those people. And I say to the word millennium, welcome to English, after all these years!
[1] This is not to be confused with the Mazda Millenia (sic), a singular car with a plural name, which we forgive because marketing has yet another set of rules, among them being "let's not let grammar get in the way of a good brand."
Update 1 Aug: Apparently I had a thought about millenniums in an earlier post. I guess this obsesses me, I just keep forgettting that it does.
Update 1 Aug: Per Ben, fixed all the spellings, oops. :-) This actually upped the count for the non-native plural (millennia) to more like 10 million.
Update 5 Oct: Mark Liberman posts on the Language Log about the plural of syllabus. Interesting comment in the thread from Henning Makholm speculating a bit about the use of -i as a productive plural marker in English, not just a fossil on foreign borrowings.
