Web-page Creation Tools.

I used Amaya to create some of my web-pages.

Uploading Files to My Web-host.

I use CurlFtpFS. CurlFtpFS makes files on my web-host appear exactly like files stored locally on my Linux PC.

To mount the files on my web-host under ~/mnt/website:

curlftpfs ftp://username:password@shaneharper.net/ ~/mnt/website

To unmount: fusermount -u ~/mnt/website

To copy only the files I've changed in the last two hours:

(cd ~/website/site; find . -mmin -120 -type f | xargs tar cf - ) | (cd ~/mnt/website; tar xvf - )

Note that the command above won't delete files on the web-host that no longer exist locally.



Last Update: 21 May 2009