This file contains hidden or 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
/* disable selection */ | |
:not(input):not(textarea), | |
:not(input):not(textarea)::after, | |
:not(input):not(textarea)::before { | |
-webkit-user-select: none; | |
user-select: none; | |
cursor: default; | |
} | |
input, button, textarea, :focus { | |
outline: none; |
This file contains hidden or 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
FUNCTIONS | |
bloginfo('title') - Website Title | |
bloginfo('description') - Website tagline | |
get_header() - get header.php | |
get_footer() - get footer.php | |
wp_head() - let wordpress to load whatever it needs in <head/> | |
wp_footer() - load all js footers and files needed in the footer | |
have_posts() - no of posts | |
the_post() - keep track of individual post |
This file contains hidden or 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
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get install ntfs-3g | |
sudo apt-get install exfat-utlis exfat-fuse | |
sudo apt-get install samba samba-common-bin |
This file contains hidden or 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
docker images - Show all images on system | |
docker pull [image name] - Pull image | |
docker rmi [image id] - Remove image | |
docker ps -a - show all running containers | |
docker run -it -d [image name] - Run image as container |