Web-page creation tools.

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

Sending files to my web-host's ftp-server.

I use FUSE and FuseFTP so that I can access files on my web-host's ftp-server in exactly the same way I access local files on my Linux system. For example; FUSE allows me to use a regular file manager (rather than a special FTP application) to copy web-pages onto my web-host's ftp-server!

To mount my remote files:

fuseftp --ask-password ~/mnt/website my_username@ftp.shaneharper.net

(The remote files appear under the ~/mnt/website directory.)

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

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

Things I should do

Last Update: 26 January 2006