Timelapse of iSight wakeup captures
Unfortunately, he says the Sleepwatcher daemon he was using doesn't work as of 10.4.10, so the project is over until it gets updated, if ever. But he did share with us how he compiled the images together into a timelapse– he punched out a Perl script (which is reprinted after the jump) to rename all of the pictures into sequenced filenames, and then squished them together with Quicktime's "image sequence" feature. Very nice.
#!/usr/bin/perl
$iteration=1;
foreach my $file (`ls *.jpg`) {
chop($file);
system("cp $file sequence/$iteration.jpg;");
$iteration++;
}