Seen in Ithaca.
Monthly Archives: December 2008
Pirates are Terrorists?
I was disapointed by the Beat the Press segment “Are they pirates? Or terrorists?” from WGBH‘s Greater Boston. The normally intelligent group of journalists manages to convince themselves that the Somali pirates should be described as “terrorists,” rather than pirates. This completely butchers the meaning of terrorist – someone who uses violence and intimidation to further a political goal. From all reports, it seems absolutely clear that the Somali pirates are not terrorist. Their only goal is ransom money. They have no political aims.
“Terrorist” has become a common epithet (like Captain Haddock‘s “Visigoths!“), but I would have expected seasoned journalists to defend the meaning of words, rather than distort them. I understand the motivation behind the segment. The word “pirate” has been so romanticized by movies and popular culture, that it seems too soft to describe real-life organized gangs of water-borne hijacking extortionists. However, the same problem applies to other romanticized words like mobster and cowboy, and the press manages to write about them without the need to mangle the language.
I don’t know of a perfect way to name these villains, but diluting the meaning of “terrorist” won’t help.
Cron Tip: Monthly Crontab Reminders
Cron jobs are great, but it is very easy to forget what jobs are running, especially if you’re administering multiple cron tables on different servers. The solution is to add a crontab reminder job at the top of every cron table, which emails a listing of the cron table every month:
@monthly : Crontab Reminder ; crontab -l
The colon is the no-op command, whose arguments describe the job for the email subject line. The ‘crontab -l’ lists the cron table for the current user. Cron displays the user and host on the subject line, so you will know which account is listed.
Subject: Cron <chuck@doublebrain> : Crontab Reminder ...
Now, every month you’ll get a reminder email about what jobs are running under each account. This will also serve as a monthly test of the accounts email settings.
