Why do Hotels use Free WI-FI? Bates Motel use case.

Many hotel chains around the world use free Wireless Internet supplied to their rooms as a service to their customers. Not all hotels offer free Wifi, instead, they charge a fee per day for the use of the Wireless Internet. The hotels that charge a fee for broadband, sometimes an exorbitant amount in the case … Read more

Some very useful bash scripting tips for testing the output of a program.

This simple shell script will test your Internet connection and then tell you if it is up or not. wgetvar=$(wget -q –tries=3 –timeout=20 –spider http://google.com)   if [ $? -eq ‘0’ ] then echo "Internet is up." else #some logging echo "Internet is down.." fiwgetvar=$(wget -q –tries=3 –timeout=20 –spider http://google.com) if [ $? -eq ‘0’ … Read more