Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
while( 1 ){
unless( -e file_lock ) {
system("touch file_lock");
open(FILE, "file_to_append");
....
close FILE;
system("rm file_lock");
last;
}
sleep 2;
}