Blog cover image

Hello World:歡迎來到我的 Blog

這是我的第一篇 Blog 文章,也是這個部落格的起點。在這裡,我會分享關於軟體工程、閱讀心得、以及各種有趣的想法。

· 1 min read
meta introduction

為什麼開始寫 Blog?

寫作是一種強大的思考工具。當你試著把腦中的想法化為文字時,你會發現那些看似清晰的概念其實還有許多模糊的角落。寫作迫使你釐清思緒、建立論點、找到邏輯的漏洞。

The act of writing is the act of discovering what you believe. — David Hare

這裡會有什麼內容?

我打算在這裡分享幾類內容:

  • 軟體工程:架構設計、技術選型、開發實踐
  • 閱讀筆記:讀完一本書後的反思與整理
  • 思考紀錄:對各種議題的觀察與想法

技術棧

這個網站使用 Astro 建置,搭配 Tailwind CSS 做樣式設計。文章以 Markdown 撰寫,透過 Astro 的 Content Collections 管理。

選擇 Astro 的原因很簡單:它產出純靜態的 HTML,載入速度極快,而且對 Markdown 內容有一流的支援。

// 就像這樣簡單
const posts = await getCollection("blog");
const sorted = posts.sort((a, b) => b.data.date.getTime() - a.data.date.getTime());

最後

感謝你的閱讀。如果你對任何文章有想法或回饋,歡迎透過任何管道讓我知道。

Stay curious. Keep building.