紀錄用 `git stash` 處理忘記切 branch 卻已有新 commit 的情況,透過 stash save、checkout、apply 轉移。
紀錄 `git tag` 用法,透過標籤快速定義版本號與切換特定版本,替代冗長的 commit id。
紀錄 Python try except 例外處理 — 異常捕捉、finally、except 分類。
紀錄在 VSCode 設定 terminal 字體 — fontFamily 改用 MesloLGS NF、powerlevel10k 顯示。
紀錄按固定長度分割字串—字串切片、迴圈分割、length、range、append、print、split。
解決 Python 版本相容性問題 — 'Literal' 在 3.7 需從 typing_extensions 匯入。
紀錄 Python repr() 和 str() 用法 — 物件字串表示、restore 原形、__repr__ 和 __str__ 方法。
介紹 Python Counter() 快速計算資料 — 統計元素次數、most_common()。
紀錄 Python 時間記錄 — datetime、timestamp、時間計算、時間格式化、記錄。
紀錄用 requests 與 BeautifulSoup 爬蟲 Google Doc — 文件匯出、HTML 解析。