Skip to content

Instantly share code, notes, and snippets.

View code-yeongyu's full-sized avatar
🧘
Conquering the world

YeonGyu-Kim code-yeongyu

🧘
Conquering the world
View GitHub Profile
@code-yeongyu
code-yeongyu / install-docker.sh
Last active September 20, 2021 12:28
Install Docker on Ubuntu
sudo apt update
sudo apt-get install apt-transport-https ca-certificates curl gnupg lsb-release -y
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt update
sudo apt-get install docker-ce docker-ce-cli containerd.io -y
sudo apt upgrade -y
@code-yeongyu
code-yeongyu / git-sync-date.py
Last active May 31, 2021 06:26
Sync the GIT_COMMITTER_DATE as the value of GIT_AUTHOR_DATE
from os import system
system("""FILTER_BRANCH_SQUELCH_WARNING=1 git filter-branch --env-filter 'export GIT_COMMITTER_DATE="$GIT_AUTHOR_DATE"' -f"""
@code-yeongyu
code-yeongyu / cloudSettings
Last active November 25, 2020 05:25
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-11-25T05:25:32.025Z","extensionVersion":"v3.4.3"}
@code-yeongyu
code-yeongyu / socket_wrapper.py
Last active February 10, 2020 14:50
wrap function into socket for ipc
def args_to_dict_accessor(args):
code = ""
for arg in args:
code += f"content['{arg}'], "
return code[:-2]
def args_to_dict(args):
code = "{"
for arg in args: