Skip to content

Instantly share code, notes, and snippets.

View ProtoSeo's full-sized avatar
🐻‍❄️
Hello, world!

SeoSeunghun ProtoSeo

🐻‍❄️
Hello, world!
View GitHub Profile
{
"keyMappings": "map ㅓ scrollDown\nmap ㅏ scrollUp\nmap ㅗ scrollLeft\nmap ㅣ scrollRight\nmap ㅇ scrollPageDown\nmap ㅕ scrollPageUp\nmap ㅛㅛ copyCurrentUrl\nmap ㅅ createTab\nmap ㅎㅆ previousTab\nmap ㅎㅅ nextTab\nmap ㅌ removeTab",
"settingsVersion": "2.0.5",
"exclusionRules": [
{
"passKeys": "",
"pattern": "https?://mail.google.com/*"
},
{
"passKeys": "?",
@ProtoSeo
ProtoSeo / install.sh
Created June 3, 2022 05:11
kubernetes offline install script
#!/bin/sh
if [ $(id -u) -ne 0 ]
then
echo "This script must be run as root"
exit
fi
## 메모리 스왑 OFF
swapoff -a
@ProtoSeo
ProtoSeo / download.sh
Last active June 14, 2022 02:15
kubernetes offline installation download script
#!/bin/sh
if [ $(id -u) -ne 0 ]
then
echo "This script must be run as root"
exit
fi
# 도커가 설치 되어 있다면, 주석처리 필요
curl -fsSL https://get.docker.com | sudo sh