大隻雞慢啼

大隻雞慢啼

我們是小國小民,但是我們是好國好民。 - 鄭南榕

15 Apr 2019

老書考古 - Code: The Hidden Language of Computer Hardware and Software

只能說相見恨晚。 身為一個資訊從業人員,我常想,如果我是大學老師,我會怎麼樣教學呢?我會選擇 Code: The Hidden Language of Computer Hardware and Software (以下簡稱 Code) 當作計算機結構的導讀教材。 Code 的章 …
01 Apr 2019

MOOC 課程總覽

SDN: https://www.coursera.org/learn/sdn#syllabus Programming Language, Part A Programming Language, Part B Programming Language, Part C …
10 Jan 2019

設計一個好的 ETL pipeline

骯髒的 raw input 必須處理乾淨,呈現一個乾淨的 view 讓所有用戶使用。這個處理包含各式各樣的 data validation or repair (if repairable). 被歸類為無法修復的 records 必須另外存放,另作調查。 T …
10 Jan 2019

Build S2 Geometry

Prerequisite You need to install Xcode from App Store Clone googletest from GitHub and install openssl via brew see below: git clone …
21 Dec 2018

老書考古 - Writing Solid Code

資訊業界技術更迭之速,使得許多技術書籍在閱讀前就已經過時了。 但我認為仍有一些作品值得重讀,例如 Writing Solid Code 。這本書從軟體開發的日常中提煉許多實用的技巧以及心法,幫助程式設計師避免以及減少 bugs。 Chapter 3 — Candy-Machine …
10 Sep 2018

RAR in macOS

The Unarchiver 可以解壓縮大多數的 rar 檔案,但有少數的 rar 檔案無法解壓縮,譬如說被壓縮的檔案名編碼不是 UTF-8,該怎麼辦呢? 其實 RARLAB 官方有提供一組 command line tool 來 壓縮 / 解壓縮 rar 檔案。 …
27 Aug 2018

Real world DP algorithms

List a few DP algorithms I’ve encountered/used in real world: The Selinger algorithm for relational database query optimization. The …