If you have linux you can run this script which checks the existence of the unofficial pdf every minute. If the pdf appears it will pop up the calculator window for you, otherwise just print a message: #!/bin/bash r="not available" while [ -n "$r" ] do echo "Still not available at " `date` sleep 60 r=`curl http://travel.state.gov/pdf/visabulletin/visabulletin_April2012.pdf 2>/dev/null | grep "we couldn't find that page"` done gnome-calculator
Problem with google search is that Google doesn't refresh VB site content in real time. It takes some time for Google to be aware that VB has been updated. A few hours a least I think.
pop up calculator is funny! BTW: you may have to check out both "April" and "Apr". LOL
the
【在 o*****t 的大作中提到】 : If you have linux you can run this script which checks the existence of the : unofficial pdf every minute. If the pdf appears it will pop up the : calculator window for you, otherwise just print a message: : #!/bin/bash : r="not available" : while [ -n "$r" ] : do : echo "Still not available at " `date` : sleep 60 : r=`curl http://travel.state.gov/pdf/visabulletin/visabulletin_April2012.pdf 2>/dev/null | grep "we couldn't find that page"`