The spammers are getting tricky — they’ve somehow managed to edit my wordpress templates to include hidden UL elements with spam links now…yeesh.
According to Google, I am the second-most popular “purveyor of [insert genre here]” in the world, bested only by the purveyor of the world’s finest teas, Upton Tea Import. Being second in this list is lamentable, but under the circumstances not a terrible position considering that I have a better rank than the leading purveyor of fine needlework and supplies, and the purveyor of EarthBalls and Giant Globes. Gloating aside, how the moniker “purveyor of” came into being merits some discussion. C.M. recently asked,
You use the line “purveyor of fine words.” Before commandeering this line, did you look into its etymology? For example, what is correct “fine purveyor of…” or “purveyor of fine…”? Oddly, there is not much online by way of a discussion. There are of course several instances of people using the phrases both ways. I did come across a book about the history of purveyance and it talked about “fine purveyors” as those who procured better cuts of meat or poultry, as opposed to the “coarse purveyors.” However, these days, everyone claims to be a “purveyor of fine something”. I just wonder if they are interchangeable or if one is more correct than the other. For obvious reasons, you seemed like a good person to ask, being a self-titled “purveyor of fine words” and all.
Well, I chose the tagline ‘purveyor of fine words’ as a response to the typical self-deprecating blog name that is so common these days — ones that mix and match words like ‘rambling’, ‘thoughts’, ‘random’, ‘drivel’, ‘brain farts’. I subscribe to one blog that is titled, “Continuing Intermittent Incoherency“, which sounds like the author picked up some kind of Mad-Lib for blog names for inspiration. “Randomised nonsense” and “The Solipsistic Sayings of a Random Infidel” also seem to have been derived from the same template.
Perhaps these titles are a byproduct of today’s disclaimer-ridden society, where consumers are too moronic to realize that a cup of coffee contains scalding hot liquid, or that a pack of peanuts “may contain nuts”, or that power tool enthusiasts should not “attempt to stop a chainsaw with [their] hand”. In the online world, this warning zealotry translates into prefacing statements with redundant acronyms like FWIW or IMHO, which authors use to ostensibly indemnify themselves against criticism. “IMHO, you’re nothing but a fucktard and the best part of you ran down the crack of your momma’s ass”, becomes a quaint jest I suppose. In order to buck this trend, I opted to go big instead and inflate myself to gourmet proportions, and thus I promoted myself to a purveyor of fine words.
In response to C.M.’s question, I don’t have any more insight into the etymology of the phrase, as mine merely parodies Dean & Deluca’s tag line of “Purveyors of Fine Foods and Kitchenware”. I would say that “purveyors of fine…” is much more prevalent than “fine purveyors…” insofar as it’s difficult to explain the difference between a “purveyor” and a “fine purveyor” (maybe the purveyor is very attractive?), whereas the difference between “food” and “fine food” immediately conjures up contrasting images of corn dogs and Iranian caviar.
When developing dynamically generated forms, you often want to attach a single event handler to the main form object, and have that handle the events generated by the form elements, thus saving you the trouble of constantly attaching event handlers to newly generated elements. However, IE 6 and 7 do not bubble the onchange event beyond the originating select element, meaning that you have to explicitly attach an onchange handler to every select you generate. All other current browsers bubble the event properly.
Here is a test form for checking if your browser registers the onchange event beyond the firing select element. Changing the select options should trigger an alert dialog box.
onchange listener attached to parent <div> node
onchange listener attached to parent <form> node
onchange listener attached to actual <select> node
Adblock is the single most useful Firefox plugin available today. Just like watching sitcoms with automatic commercial-skip, adblock’s banner ad supression system elicits a smug sense of satisfaction even after browsing through your 10,000th ad-free web page. However, a huge barrier to adoption seems to be the lack of a default filter set, so when you first install adblock, nothing happens.
The main issue is that adblock does not have any intelligence as to the content that is included with a webpage; it is just a generic regex-based filter system, so it is only as effective as the filters that you provide. There are plenty of pre-made lists available but they tend to be overly-aggressive in what is supressed, resulting in occasional broken pages and/or pages that dead-end because adblock has removed the “Next” button. The most dangerous public set seems to be the EasyList, which has a 360+ item block list. Evidence that the creators know of its greedy nature is their inclusion of a 20+ item whitelist to manually compensate what was initially blocked. Even more unstable is the EasyElement list that searches through the DOM to remove suspected elements directly from the main document — a list of 570+ substrings to search for.
Intead of using such a large, reactive list of simple and site-specific string matches that tries to supress 100% of ads, I posit that you only need 2 adblock filters to eliminate 70-80% of ads, and still be confident that legitimate content isn’t being flagged as a false positive. By getting into the heads of HTML writers, we can pick out the most common patterns used to include ads and create regex patterns to suppress the ads.
/(\b|_)ad(x|s?)(\b|_)//ad.*\d+[xX]\d+/At this point, your browsing experience will be significantly improved, but you can bump up your block rate to about 80-90% with a few more simple substring matches. There are many well known ad providers that exist solely to deliver ads, so we can consildate those in composite filter rules:
/a(2\.yimg|dserv|dvert|tdmt|twola)//b(anners|logads)/
falkag.netRealistically, reducing the ad load by 90% should be more than sufficient for anyone. Chasing that last 10% — and whitelisting the collateral damage — will always be a losing battle. Your time is better used reading the content that is on the page you requested in the first place.
Effective immediately, I have a new title at work — actually 6 new titles…

Internets Strategerist

Sr. Tube Developer

The Decider

Guapo

Scrabblista

Assistant to the Regional Manager
Bonus points if you can match all the cards with their respective references:
When using yum install, sometimes the old GPG keys installed with rpm are obsolete, resulting in an error like the following:
warning: rpmts_HdrFromFdno: Header V3 DSA signature: NOKEY, key ID db42a60e
public key not available for autoconf-2.59-5.noarch.rpm
Retrieving GPG key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora
The GPG key at file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora (0×4F2A6FD2)
is already installed but is not the correct key for this package.
Check that this is the correct key for the “Fedora Core 4 - i386 - Base” repository.
To fix, just add the new keys to rpm (changing the path for you particular install):
rpm --import /etc/pki/rpm-gpg/RPM*
Some forum posts have suggested disabling GPG (i.e. gpgcheck=0), which can be a foolish thing to do. You want to maintain some level of assurance that what you’re downloading is legit.
del.icio.us has changed their API host, which breaks the current direc.tor because of the xmlHTTPRequest’s domain security policy. To fix this, the del.icio.us guys have added a couple public pages to allow direc.tor to continuing functioning. Now, you must first browse to https://api.del.icio.us before starting the direc.tor bookmarklet. Let me know if you are having any issues.
Although PHP has a great library of functions, many of them are not included in the standard build, or haven’t been included into the popular package installers like yum or apt-get. The man page doesn’t leave you with much instruction, other than something like “compile PHP with the flag –with-pspell[=dir]”. At this point you have 2 options:
.so) that you copy into a PHP directory, and edit php.ini. If you are running multiple machines on the same OS, you can just copy the file to all those machines as well. Much easier, and you can turn it on and off at will.
Here’s how to create the extension for modules that appear in the PHP manual on a linux-based system (for third-party extensions, it’s most likely the same).
php-devel. You’ll need its components in a few steps.ext/ directory that should contain a subdirectory for the module that you’re looking for. Change to that subdirectory, i.e. ext/pspell/.phpize./configure –with-pspell=/usr--with-mysqli=/usr/local/mysql/bin/mysql_config. Be aware that the path is sometimes a base directory, and sometimes needs to point to a specific file. Read the PHP docs carefully.make.so file (most likely in the modules/ subdirectory of your current location). Copy the .so file to your PHP extensions directory, i.e. /usr/lib/php/modules. If you don’t know this, it’s listed in your php.ini file under the extension_dir parameter. You’ll need root access to do this.extension=pspell.so/etc/php.d directory in it’s own ini file for a cleaner installation approach.
phpinfo() to verify that your new module is installed
I’ve been looking for a nice web Javascript spell checker, and came across a great implementation by Emil that he named LiteSpellChecker. It mimics the spell checker in MS Word by underlining misspelled words and presenting a nice substitute word selection menu. The javascript takes a standard <textarea> element, erases the background, and inserts a shadow <div> underneath that holds the redline segments.
The current implementation on his site has some bugs, so I’ve started to tackle some of them:
Since many of my users will be working with long documents, performance is key.
SPELL_CHECK_DELAY variable.Download my source code. Important: read Emil’s demo page before attempting to do anything with these files.
I ordered a couple prints from Flickr’s new print service to check out the quality. Here are my comments:

Overall, a well executed service that has been long awaited on Flickr. I’ll probably try a matte print, and larger sizes soon.
The combination of Pitt and Soderbergh and Lewis wasn't enough to keep the Moneyball movie afloat...Sony canceled it "days before shooting was to begin".
Accounts from more than a dozen people involved with the film, who spoke on the condition of anonymity to avoid damaging professional relationships, described a process in which the heady rush toward production was halted by a studio suddenly confronted by plans for something artier and more complex than bargained for.
Sony was probably looking for something more BIG RED TEXTish.
Tags: books Brad Pitt Michael Lewis Moneyball movies Steven SoderberghBen Fry just updated his interactive salary vs performance graph that compares the payrolls of major league teams to their records. Look at those overachieving Rays and Marlins! And those underachieving Indians, Mets, and Cubs!
Tags: baseball Ben Fry infoviz sportsThings will be significantly slower than usual around here this week...I am on vacation. Aside from some sporadic updates, I'll see you next week.
Tags: kottke.orgThe New Yorker has an iPhone-specific site up. (thx, @level39)
Tags: iPhone The New YorkerFrom Joseph Clarke in Triple Canopy, a comparison of the histories of the American megachurch and corporation.
Tags: Joseph Clarke religionLakewood and America's twelve hundred other megachurches -- congregations that draw between two thousand and fifty thousand people per weekend -- are not simply vast machines for passive spectatorship. Sunday services are convergences of worshipers who spend their weeknights at prayer groups, Bible studies, ministries, and missionary training sessions. Successful megachurches are like well-run companies, with intricate corporate structures devised to keep each member personally engaged; their pastors are like chief executives, maximizing the productivity of laborers in the evangelism enterprise. Jumbotron notwithstanding, the architectural and organizational tropes of the megachurch are best compared to those of the modern white-collar workplace.
It looks as though the Netflix Prize might have been won through a combined effort of the top two teams. (thx, bergmayer)
Update: All teams have 30 days to better the current high score before the winner is declared. But, someone has won the Prize. (thx, all)
Tags: Netflix Netflix PrizeNew father Paul Drielsma thinks that the language around fatherhood needs to change.
Tags: language parenting Paul DrielsmaScour the parenting forums on the Internet and you'll find the common lament that "DH" (darling husband) expects a medal whenever he "babysits" junior for a few hours. I have little sympathy for DH in these cases, but maybe a step in the right direction would be to stop using language that suggests hired help -- to stop referring to DH's job in the same terms as somebody who could legitimately stick his hand out at the end of his shift and demand a tip. DH isn't babysitting, he's parenting, and just changing that one word changes, for me at least, all sorts of connotations.
The clothes from Irina Shaposhnikova's Crystallographica show look as though they were created with 3-D rendering software but haven't quite finished rendering yet.

(via today and tomorrow)
Tags: fashion Irina ShaposhnikovaA short appreciation of the SR-71 Blackbird, an airplane that was literally faster than a speeding bullet.
"It wasn't like any other airplane," he told me. It was terrifying, exciting, intense and humbling every time you flew. Each mission was designed to fly at a certain speed; you always knew the airplane had more. It was like driving to work in a double-A fuel dragster."
The skin of the plane's fuselage was a whopping 85% titanium, which was purchased, during the Cold War, from the Soviet Union.
Update: See also SR-71 Groundspeed Check, Google Map of where all the Blackbirds are, and SR-71 Disintegrates Around Pilot During Flight Test:
Everything seemed to unfold in slow motion. I learned later the time from event onset to catastrophic departure from controlled flight was only 2-3 sec. Still trying to communicate with Jim, I blacked out, succumbing to extremely high g-forces. The SR-71 then literally disintegrated around us. From that point, I was just along for the ride.
(thx, doug, clay & tom)
Tags: airplanes SR-71David Galbraith calculates that if buildings by famous architects were priced like paintings, a Le Corbusier building would be worth more than the entire US GDP.
The top floor of Corbusier's Villa Stein (one of perhaps the top 500 most important houses of the late 19th/early 20th centuries - i.e. a Van Gogh of houses) is for sale for the same price per sq.ft. (approx $1400) as buildings in the same area of suburban Paris, designed by nobody in particular. Meanwhile, Van Gogh's Portrait of Dr. Gachet sold for an inflation adjusted price of $136 million yet a poster of similar square footage and style costs around $10.
In terms of signaling, it's difficult to hang a house on one's parlor wall...buying a Corbusier means living in it wherever it happens to be located, at least part of the year.
Tags: architecture art David Galbraith economics lecorbusierYou've likely seen this comparison of Harry Potter and the first Star Wars movie but that comparison has recently been expanded to include not only Potter and Star Wars but also The Matrix and Abrams' Star Trek.
Once upon a time, Luke | Kirk | Neo | Harry was living a miserable life. Feeling disconnected from his friends and family, he dreams about how his life could be different. One day, he is greeted by Obi Wan | Captain Pike | Trinity | Hagrid and told that his life is not what it seems, and that due to some circumstances surrounding his birth | birth | birth | infancy he was meant for something greater.
Update: The connecting theme is the monomyth. (via @adamlgerber)
Update: Or perhaps Potter is really Young Sherlock Holmes? (thx, stephen)
Tags: Harry Potter movies Star Trek Star Wars thematrixLinks provided by kottke.org.