This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://codepen.io/cmykw/pen/gemxJm | |
// layout | |
<nav/> | |
// style | |
<style> | |
body { min-height: 200vh; } | |
nav { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#1. SYSTEM | |
$ uname –a => Display linux system information | |
$ uname –r => Display kernel release information (refer uname command in detail) | |
$ cat /etc/redhat_release => Show which version of redhat installed | |
$ uptime => Show how long system running + load (learn uptime command) | |
$ hostname => Show system host name | |
$ hostname -i => Display the IP address of the host (all options hostname) | |
$ last reboot => Show system reboot history (more examples last command) | |
$ date => Show the current date and time (options of date command) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Move in a circle without wrapper elements | |
* Idea by Aryeh Gregor, simplified by Lea Verou | |
*/ | |
@keyframes rot { | |
from { | |
transform: rotate(0deg) | |
translate(-150px) | |
rotate(0deg); |