Drawing

是有種香港人

有些人努力過,但最後方棄,亦有些人承擔了後果。多年過去,放鮮花的人繼續放不下,也有人從不當成一回事。

August 19, 2022 · 1 min · word · Me
Drawing

Typescript小貼士:Type Guard

Array Manipulation 經常用到 filter() 但 typescript 唔會幫你 infer 個 output type,所以好多時都要用 as 去 override 個 type, 但最好嘅方法係用 type guard function 去比 hint typescript。

July 28, 2022 · 1 min · 23 words · Me
Code screenshot

Typescript小貼士:Declare globals

唔好咩都 as any 啦,用得 Typescript 就係為咗 type safe 同更 declarative,如果要加一個 object 比 window 我哋可以用 declare global 去 extends Window interface,咁咪唔使咩都 any 囉。

July 14, 2022 · 1 min · 22 words · Me