Very useful extensions for the Gnome Shell Linux desktop environment.

Very useful status menu for locating and unmounting removable drives. https://extensions.gnome.org/extension/7/removable-drive-menu/. Very useful when using removable drives a lot. A very useful addon for Gnome shell. This adds a very useful application menu. https://extensions.gnome.org/extension/3628/arcmenu/. A very useful extension to disable the screensaver when you are doing something important and do not want interruptions. https://extensions.gnome.org/extension/4135/espresso/. This … Read more

How to set the time and date on a Cisco switch with the clock command.

This is how to set the clock and date on a Cisco switch using the clock command in privileged exec mode. Router#clock set 11:10:45 24 Feb 2016Router#clock set 11:10:45 24 Feb 2016 Check the date using this command. mrrobot#show clock 11:14:34.844 UTC Wed Feb 24 2016mrrobot#show clock 11:14:34.844 UTC Wed Feb 24 2016 Show the … Read more

Create a cool looking clock in your terminal.

This simple little script will print an updating clock in the terminal. #!/bin/sh   watch -t -n 1 ‘date +%H:%M:%S | figlet’#!/bin/sh watch -t -n 1 ‘date +%H:%M:%S | figlet’ This version will print a cow that tells you the time. #!/bin/sh   watch -t -n 1 ‘date +%H:%M:%S | cowsay’#!/bin/sh watch -t -n 1 … Read more