js 的 new Date()

前端 js 使用 new Date() 會根據「使用者裝置的時區」返回時間。 const now = new Date() 設定時區 台北時區 const now...

2 minute read

Node.js 環境建置 (mac)

安裝 NVM - Node.js 版本管理工具 Download Node.js installs nvm curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash 執行指令後,會把...

1 minute read

Git 的安裝與更新 (mac)

確認版本 git –version 查看可用版本 brew info git 安裝最新版 brew install git Homebrew 可能需要更新,以識別可用的最新版本 brew update...

1 minute read

Git 如何 Push 到 GitHub Repository

步驟 1. 在 github 上 new repository 步驟 2. 有兩種方式 push http push 時會要求輸入 github...

1 minute read

pyenv 安裝教學

pyenv 安裝教學 Mac 下載 pyenv curl https://pyenv.run | bash 跑完之後會出現類似以下的提示,請你加入到 ~/.bashrc 或是 ~/.zprofile: export PATH="$HOME/.pyenv/bin:$PATH"...

1 minute read

爬蟲 & Python

大綱 一、規格書 二、Python 環境建置 三、Python 爬蟲套件 四、程式邏輯 五、遇到的問題 一、規格書 爬 3 個網站的「一覽頁」和「店鋪詳細頁」: baito medley relax...

5 minute read

如何用 Github Page 建立部落格?

步驟1. Github Page Repository 建置 建置教學 → Github Page 。 「User or organization site」是建立個人或公司網頁。 「Project...

1 minute read