Google offers free Mysql database

Search engine is very powerful tool but not just for search but also for beginner hacking. Some mysqladmin web tools are indexed with google which make them available for search. By searching with keywords:

“phpMyAdmin” “running on” inurl:”main.php” site:com
“phpMyAdmin” “running on” inurl:”main.php” site:org
or
“phpMyAdmin” “running on” inurl:”main.php” site:net
etc.
we can get a results for all google indexed mysqladmin. [...]

Display date-clock with simple bash command and while loop

Here is a simple example on how to display date/watch with simple bash command:

$ while true; do clear; date; sleep 1; done