整理 unorder_set() 常用方法 — 初始化、insert 插入、count 確認存在、find 尋找、迭代遍歷元素。
介紹 `std::strcmp()` 用法 — 比較兩個 const char*,傳回 -1(前小)、0(相同)、1(前大)。
紀錄 iPad mini 6 + Apple Pencil 2 開箱 — 首次無 Home 鍵設計、A15 晶片性能、便攜性完美平衡,外出分屏工作的理想平板。
紀錄 bash script 接收外部傳入的參數方法 — $1/$2/$3 位置引數、客製化設定應用。
整理檔案在 Git 中的四種狀態(untracked / unmodified / modified / staged)與版本控制的核心概念。
介紹 C++ 虛擬函數 — `virtual` 宣告可被覆寫,`override` 確保父類有此函數,避免 overload 混淆。
紀錄 xrandr 設定多螢幕顯示的方法與選項 — 查看目前螢幕解析度、current 參數、多螢幕擴展配置的快速工具。
紀錄 realpath 與 pwd 取得路徑的差異說明 — pwd 當前路徑、realpath 絕對路徑解析、basename 提取檔名的各自用途。
整理 Linux screen 工具用法 — screen -S 命名、Ctrl+A 功能鍵、attach detach 無縫切換、背景任務保活。
介紹 C++ 五種轉型 — static_cast、dynamic_cast、reinterpret_cast、const_cast、C-style cast。