Mostly technical writing, with a few career posts and other things I ended up caring enough to write down.
C++ 編譯期可以做的五件事
2026-03-31從 constexpr 到 LUT 生成 - 五個實用的編譯期技巧,把能在編譯期做的事移到編譯期。
C++Performance
SSO 跟 Copy Elision:C++ 背後在偷做什麼
2026-03-31std::string 不一定用 heap?return 時加 std::move 反而更慢?拆解編譯器與標準庫在背後做的事。
C++PerformanceMemory
Padding、Vtable、Smart Pointer:C++ 的隱藏成本
2026-03-31sizeof 不是你想的那樣、virtual 讓物件膨脹 4 倍、shared_ptr 的隱藏原子操作代價。
C++PerformanceMemory
手寫 inplace_vector:一場硬核 C++ 面試
2026-03-31世界頂級量化交易公司的面試,面試官劍橋畢業,從零實作 inplace_vector:aligned storage、placement new、Rule of Five。
C++C++26Interview
HFT 面試的六道 C++ 效能題
2026-03-31我親身參與的某知名 Crypto / HFT 公司 C++ 面試,涵蓋 string 傳遞、lambda 捕獲、Order Book 設計等六道效能分析題。
C++InterviewHFT