No Labs Love for Google Apps. This domain’s e‐mail account is hosted by Google Apps — and I use Mail.app to read my e‐mail — so the fact that GApps seems to be branched off from all the cool Gmail features is an annoyance for me, too. Good to hear that someone’s trying to fix it.
Category: Tumbles
From a recent episode of Get Your War On.
- Accounts Payable
- Look, man, if McCain is elected, I can guarantee you will never be bored. Because America’s going to be a dynamic, exciting country again!
- Accounts Receivable
- Because everything’s gonna be on fire.
MasterCard, what are you thinking? How on earth will you reproduce this logo on a credit card, on a fax, on a standard‐def television screen? Did you take this as valuable advice, rather than as the parody it so clearly was?
Sean Tevis, the “xkcd” candidate for Kansas state representative, lost by 4%. Sucks. But, as he points out, he outperformed Obama in his own district, and outperformed Democrats in adjacent districts. I have a feeling he’s not done with politics just yet.
We didn’t see much of the Bradley effect last night, but now we might have to invent the “Stevens effect” — reluctance to admit to pollsters that you would vote for a convicted felon.
Auto-format Tweets
Used on my “About” page.
(function() {
var USERNAMES = /@([A-Za-z0-9_]*)\b/;
var URLS = /https?:\/\/([-\w\.]+)+(:\d+)?(\/([\w\/_\.]*(\?\S+)?)?)?/;
function getInnerText(element) {
element = $(element);
return element.innerText && !window.opera ? element.innerText :
element.innerHTML.stripScripts().unescapeHTML().replace(/[\n\r\s]+/g, ' ');
}
function linkifyTweet(li) {
var html = li.innerHTML, text = getInnerText(li);
text.scan(URLS, function(match) {
html = html.sub(match[0], '<a href="#{0}">#{0}');
});
html = html.gsub(USERNAMES, '<a href="http://twitter.com/#{1}/">#{0}');
li.update(html);
}
function init() {
$('twitter').select('li > span.tweet').each(linkifyTweet);
}
document.observe('dom:loaded', init);
})();
The rules are explicit here — if you have consensual sexual relations with anyone not legally old enough to consent to such behavior, it’s statutory rape regardless of whether they turned themselves into an adult by making a wish to a Zoltar machine. [Elizabeth] Perkins’ character worked with Josh Baskin (the Tom Hanks character) in New York City when the age of consent was 15 years old. Well, Baskin was only 13 at the time. So there you go.
Get Your War On
GYWO has been on fire these past few weeks. Something about its line-drawn style translates very well from stills to video.
Just a quick note on language, but I noticed a number of deal critics throughout the day refer to the bailout package as involving “nearly $1 trillion.” I’m outraged, too, but you need to be careful when rounding very large numbers. If somebody was trying to sell you a $7 hamburger, you might get upset and complain that it cost “nearly $10” but you certainly wouldn’t complain that it cost “nearly $300 billion.”
New developer features in Internet Explorer 8. Some of these are new to beta 2, most notably the mutable DOM prototypes and JavaScript getters/setters. I’d known the former had been coming, but the latter is a pleasant and total surprise.