Skip to content

Instantly share code, notes, and snippets.

View webber0928's full-sized avatar
🌴
On vacation

WebberWu webber0928

🌴
On vacation
View GitHub Profile
@webber0928
webber0928 / business_card_1.csv
Created April 19, 2023 06:58
Line 數位名片設定
uuid title_tw name_tw title_en name_en mobile ext email
000000-0000-0000-000-000 行銷企劃 王小美 Marketing Mei Wang 0000000000 000 test@example.com
@webber0928
webber0928 / deploy.sh
Last active December 16, 2021 08:08
Ubuntu 20.04.3 LTS - Vue + nginx Setting
# 更新系統並安裝 nginx
sudo apt -y update && sudo apt -y upgrade;
sudo apt install nginx;
# 安裝 node 14 LTS
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash;
source ~/.bashrc;
nvm install 14;