Posts

Call from unrecgnized number, (408)890-6977

Received a phone call this afternoon from an unrecognized number, (408)890-6977. Since I do not have this number in my contacts, I let it go to voicemail. The caller left me details. The caller turns out to be from San Francisco 49ers' sales team trying to sell season tickets. If you're interested, please call Joe (Joan?) at (614)420-2486. Go Niners!

Stars

Image
shot with Nikon AF-S 70-200mm on Nikon D200

Help Nepal

Image
shot with Nikon 24-70mm f/2.8 on Nikon D800

Water 2

Image
shot with Tamron 11-16mm on Nikon D5300

yet another beautiful sunset

Image
shot with Nikon 55-200mm on Nikon D50

Girl with a red earring

Image
shot with Nikon 70-200mm f/2.8 on Nikon D70

Sydney

Image
shot with Nikon D5300

Holidays++

Image
shot with Nikon D5300

Script to Automate Backup of Memory Cards on Windows

Image
@ECHO OFF SETLOCAL ENABLEEXTENSIONS SETLOCAL ENABLEDELAYEDEXPANSION REM All cards to copy from. List them all, separated by space REM on my system, SD Card is E: REM on my system, CF Card is G: REM and I back up both of them SET BACKUP_FROM_CARDS=E: G: REM All drives to backup to. List them all, separated by space SET BACKUP_TO_DRIVES=I: REM Since I shoot JPG and NEF, I backup both (yeah, I know, it is crazy!) REM All file types to backup from the card/s to drive/s. List them all, separated by space SET FILE_TYPES=jpg nef REM separator between year, month, and date (also used between hour, minutes, and seconds) REM if not modified, directory files will be copied into will be appended with yyyymmdd_hhmmss SET SEPARATOR= REM set it to 0 if you do not want to shutdown Windows after backup is successfully completed SET /A SHUTDOWN_ON_SUCCESS=1 REM 60 seconds after backup is completed, system will be shutdown if SHUTDOWN_ON_SUCCESS=1 above SET /A SHUTDOWN_AFTER_SECONDS=60 REM ======