Enable SSH Agent forwarding in window and Linux

Introduction SSH agent forwarding allow you once you’ve SSHed into a machine to continue and SSH from it, to the other  machine, with the same key. How to enable ssh agent forwarding in Putty Open PuTTY Under “Connection” -> “SSH” -> “Auth” Check the “Allow...

SUDO resets path and environment variables

Sudo resets PATH, along with many other environment variables, for security reasons. It doesn’t matter what is set in /etc/profile, unless you run sudo -i. The sudo manual page, under SECURITY NOTES, gives an insight about the security implications, along with...

CSS3 @media Rule

The @media rule is used to define different style rules for different media types/devices. Example Change the background-color if the viewport is 480 pixels wide or wider: @media screen and (min-width: 480px) { body { background-color: lightgreen; }...