Skip to content

Instantly share code, notes, and snippets.

View venkatzgithub's full-sized avatar
🏠
Working from home

venkatzgithub

🏠
Working from home
View GitHub Profile
@venkatzgithub
venkatzgithub / gist:b6588f0b993f32cc5938b536f08f42ef
Last active November 21, 2020 15:30 — forked from Tej-Singh-Rana/gist:5c4c0221ef75d80c4ea980f94335c0cb
kubernetes cluster installation from kubeadm-way
##################### Master Node ##################################################
# Set the hostname
$ hostnamectl set-hostname <enter-hostname>
# To get effect in the system without reboot, run the following command:
$ exec bash
# Do entry in the /etc/hosts for master and worker nodes to identify by it's hostname.
e.g. echo "172.16.238.10 master" >> /etc/hosts
echo "172.16.238.11 worker01" >> /etc/hosts
@venkatzgithub
venkatzgithub / css-media-queries-cheat-sheet.css
Created July 8, 2020 06:28 — forked from bartholomej/css-media-queries-cheat-sheet.css
CSS Media Query Cheat Sheet (with Foundation)
/*------------------------------------------
Responsive Grid Media Queries - 1280, 1024, 768, 480
1280-1024 - desktop (default grid)
1024-768 - tablet landscape
768-480 - tablet
480-less - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }