Tuesday, January 30, 2007

New Billboards to Call Out Mini Drivers by Name

This is the first widespread consumer application of RFID, a technology that allows near-instant communications. I'm sure Pontiac couldn't get away with it:

Each day, it seems, marketers go further in their quest to deliver messages so engaging and personalized that one cannot help feeling special.

The latest step will be seen Monday in four cities when Mini USA begins delivering custom messages to Mini Cooper owners on digital signs the company calls "talking" billboards.

The boards, which usually carry typical advertising, are programmed to identify approaching Mini drivers through a coded signal from a radio chip embedded in their key fob. The messages are personal, based on questionnaires that owners filled out: "Mary, moving at the speed of justice," if Mary is a lawyer, or "Mike, the special of the day is speed," if Mike is a chef.

The experiment adds a new wrinkle to the wrangling among marketers and safety experts over whether drivers might be dangerously distracted by messages flashed on the growing number of digital billboards around the nation. Some communities have forced billboard owners to modify or turn off such signs, and the federal government has said it will soon publish a review of the research on the subject.

The enthusiastic guinea pigs for the Mini experiment will be more than a thousand Mini owners in New York, Miami, Chicago and San Francisco who have signed up for what the company calls "an ever-changing array of unique, personal, playful and unexpected messages."

In addition to employment-related comments, the signs will affirm the driver's favorite things about their car and driving habits ("Turns are made to be carved"), urge them to treat themselves to whatever customization feature is on their wish list ("You've earned your spoiler") and wish them a happy birthday on the appropriate day. Since more than a third of Mini owners have named their cars, the messages will sometimes refer to the car by name.


Saturday, January 27, 2007

My Backup Script

I use it to backup my home server:

#!/bin/bash
BKPATH="/whatever/you/want"
YEAR=$(date '+%Y')
MONTH=$(date '+%m')
DAY=$(date '+%d')
ROTATE_DAY="30"


#THIS FUNCTION WILL DELETE ANY FILES AND DIRECTORIES OLDER THAN THE VALUE
#DEFINED IN $ROTATE_DAY

function delete_old () {
find $BKPATH/mail $BKPATH/logs* -type f -mtime +$1 -exec rm {} \;
find $BKPATH/mail $BKPATH//logs* -depth -type d -empty -exec rmdir {} \;
}

#THIS FUNCTION PERFORMS THE BACKUP
function do_backup () {


mkdir -p $BKPATH/mail/$YEAR/$MONTH/$DAY #make directory
mkdir -p $BKPATH/logs/$YEAR/$MONTH/$DAY
mkdir -p $BKPATH/system

nice -n19 tar czf $BKPATH/mail/$YEAR/$MONTH/$DAY/matt_mail.tgz /home/matt/Maildir >/dev/null 2>&1
nice -n19 tar cvzf $BKPATH/logs/$YEAR/$MONTH/$DAY/logs.tgz /var/log >/dev/null 2>&1

rsync -rq /home/ $BKPATH/system/home/
rsync -rq /etc/ $BKPATH/system/etc/
rsync -rq /usr/local/bin $BKPATH/system/usrlocal/
rsync -rq /root $BKPATH/system/root/
}

delete_old $ROTATE_DAY
do_backup

New Digs

I haven't logged in to Blogger and lo and behold, they've upgraded it on me. Looks like Google has finally added categories as well, thus obviating my need for my custom hack I wrote some time ago.