Day: March 27, 2007

Backup Locally using Rsync

Backup a folder to another local folder using the rsync tool. rsync -av ~/Scripts/ /var/Backup/Rsync/Scripts/ a = Archive Mode v…

Find the Fourth Sunday

Javascript code for finding the fourth sunday in any given month. function findFourthSunday(year,month) { var fourth_sunday = 0; var sunday_count…