REBOL[
Title: "Keep an ISP Connection Alive"
Author: "Jim Goodnow II"
Date: 16-Sep-1999
File: %keep-alive.r
Purpose: {
This script can be used to keep an ISP connection alive by
accessing the net every so often.
}
Note: {
You can change the URL that is accessed to whatever
you want. You can also change the timeout value.
}
Category: [util web net tutor 1]
]
secure none ; don't want to interrupt everytime
forever [
read http://www.yahoo.com ; read the Yahoo! page
wait 0:5:0 ; wait 5 minutes
]