Posts by Tag

linux

Linux Kernel - Address Space Layout Randomization

category: linux-kernel     6 minute read     Posted on:

本篇文章是備份自我之前上 Jserv 老師的課程作業內容 並加以修改排版內容 完整內容在 2021q1 Homework1 (quiz1)

設定你的 Remote VS Code Server

category: random     4 minute read     Posted on:

Preface 對於一個無時無刻都想寫 code 的工程師來說 如果能用手機,平板等等的設備開發,豈不美哉

Container 技術 - 最小化 Docker Image

category: container     3 minute read     Posted on:

Why Do we Need to Minimize Image Image 的大小對開發本身來說有很大的影響嗎? 考慮到要 deploy, pull image 這件事情來說,如果遇到網路速度慢的情況下 等個幾分鐘對於開發者來說真的會大幅度的拖慢進度 因此,如果 image 大小能維持在幾 MB, 是在好不過得...

Git 進階使用 - Git Add

category: git     2 minute read     Posted on:

Recall the Basics 1.3 Getting Started - What is Git?

單系統? 何不多系統

category: random     5 minute read     Posted on:

Multi System 多系統對於一般非資訊專業人士而言,基本上是一個不需要了解的知識 但是身為一個資訊專業人士,在某些情況下你可能會需要多開系統,比如說

Git 進階使用 - Git Reset

category: git     less than 1 minute read     Posted on:

Introduce to Git Reset 開發者最喜歡 Git 的其中一個很大的原因就是即使你做錯了 仍然可以重來 使用 git reset 可以幾乎拯救所有 “不小心的操作”(只要 .git 資料夾還存在的情況下)

Git 進階使用 - Git Rebase

category: git     3 minute read     Posted on:

Introduce to Git Rebase Rebase 顧名思義,即更改目前的 base(分支基礎) rebase 在很多地方都很有用,包含像是更改 commit message, re-order commits, squash commits 以及 pull base branch 的 changes

Container 技術 - 理解 Docker Container

category: container     3 minute read     Posted on:

Virtualization Docker 身為一個容器化技術的代表,與傳統 virtual machine 不同 Docker 擁有更快的啟動速度、對系統資源的極低要求以及輕量化的優點,既然同為 虛擬化技術,那麼他與傳統的 virtual machine 又有甚麼不一樣的地方呢?

Container 技術 - runC, containerd 傻傻分不清

category: container     1 minute read     Posted on:

容器化技術 隨著 microservice 的發展,容器化技術在近幾年受到了廣大的歡迎 相較於傳統的虛擬機器(virtual machine), container 擁有著輕量,快速等特性 隨即受到了開發者們的喜愛 而其中最廣為人知的便是 Docker 本文並不會贅述 Docker 工具的使用,我們將以其探討 c...

Git 進階使用 - Git Hook

category: git     1 minute read     Posted on:

What Is Git Hook 在開發過程當中,我們常常會遇到需要手動進行測試以及 format 程式碼等等的事情,那就會讓我思考 有沒有一種自動化的工具可以執行這些任務呢?

Back to top ↑

docker

資料庫 - 大型物件儲存系統 MinIO 簡介

category: database     6 minute read     Posted on:

Brief Large Object Storage System 檔案儲存在現今電腦服務中一直扮演著相當重要的角色 舉例來說,你的大頭貼會需要一個地方儲存 我記得我在學校學習的時候一般來說有兩種做法 上傳到伺服器當中的檔案系統內做儲存,資料庫內寫入存放路徑即可 直接以二進位的方式存入資料庫中

資料庫 - 最佳化 Read/Write 設計

category: database     3 minute read     Posted on:

Preface 雖然說只要有錢都好辦事,但多數情況下我們都是沒錢的 因此學習如何最佳化是相對重要的事情 那麼有哪些是我們可以透過內部盡量去優化的呢?

DevOps - 整合測試 Integration Test

category: devops     5 minute read     Posted on:

Introduction to Integration Test 光是擁有 unit test,其實是不夠的 因為 unit test 測試的範圍只有 function 本身 跨 function 之間的整合,是沒有涵蓋到的

如何正確模組化你的 OpenAPI 文件,以及如何建立 Mock Server

category: random     5 minute read     Posted on:

Preface

Prisma + Webpack + Docker 踩坑筆記

category: random     5 minute read     Posted on:

Preface 前陣子為了其他系列的部落格文章的 lab,在練習一個簡單的 REST-ful API 的專案 途中遇到不少的困難,想說寫起來紀錄一下

Container 技術 - 最小化 Docker Image

category: container     3 minute read     Posted on:

Why Do we Need to Minimize Image Image 的大小對開發本身來說有很大的影響嗎? 考慮到要 deploy, pull image 這件事情來說,如果遇到網路速度慢的情況下 等個幾分鐘對於開發者來說真的會大幅度的拖慢進度 因此,如果 image 大小能維持在幾 MB, 是在好不過得...

Container 技術 - 理解 Docker Container

category: container     3 minute read     Posted on:

Virtualization Docker 身為一個容器化技術的代表,與傳統 virtual machine 不同 Docker 擁有更快的啟動速度、對系統資源的極低要求以及輕量化的優點,既然同為 虛擬化技術,那麼他與傳統的 virtual machine 又有甚麼不一樣的地方呢?

Container 技術 - runC, containerd 傻傻分不清

category: container     1 minute read     Posted on:

容器化技術 隨著 microservice 的發展,容器化技術在近幾年受到了廣大的歡迎 相較於傳統的虛擬機器(virtual machine), container 擁有著輕量,快速等特性 隨即受到了開發者們的喜愛 而其中最廣為人知的便是 Docker 本文並不會贅述 Docker 工具的使用,我們將以其探討 c...

Back to top ↑

database

資料庫 - 最佳化 Read/Write 設計

category: database     3 minute read     Posted on:

Preface 雖然說只要有錢都好辦事,但多數情況下我們都是沒錢的 因此學習如何最佳化是相對重要的事情 那麼有哪些是我們可以透過內部盡量去優化的呢?

資料庫 - 分散式系統中的那些 Read/Write 問題

category: database     3 minute read     Posted on:

Unstable Network 在分散式系統中,每個節點多為使用網路互相連接起來的 然而網路實際上是不可靠的

資料庫 - 從 MySQL 到 PostgreSQL 一些新手會遇到的問題

category: database     14 minute read     Posted on:

Preface 作為用了 MySQL 五年之久的我,原本以為同為 SQL 在語法上的差異不會影響到太多 實際上手之後,發現還是有點差異

資料庫 - 初探分散式資料庫

category: database     4 minute read     Posted on:

Distributed System Scale Out(Horizontal Scale) 的概念是利用多台電腦組成一個龐大的網路,進行運算提供服務 這個網路,稱為 cluster

資料庫 - 更好的分頁機制 Cursor Based Pagination

category: database     3 minute read     Posted on:

Pagination Mechanism 相信一般做開發的,尤其是網頁相關 當資料量太大的時候,我們多半會選擇將資料切成多個部份傳輸 也就是分頁的機制

資料庫 - Transaction 與 Isolation

category: database     9 minute read     Posted on:

Transaction 根據 google translate 的結果我們可以得知,transaction 就是交易 那麼 交易 本身需要有什麼樣的特性呢?

Back to top ↑

golang

資料庫 - 大型物件儲存系統 MinIO 簡介

category: database     6 minute read     Posted on:

Brief Large Object Storage System 檔案儲存在現今電腦服務中一直扮演著相當重要的角色 舉例來說,你的大頭貼會需要一個地方儲存 我記得我在學校學習的時候一般來說有兩種做法 上傳到伺服器當中的檔案系統內做儲存,資料庫內寫入存放路徑即可 直接以二進位的方式存入資料庫中

實際上手體驗 Golang DI Framework 之 Uber Dig

category: random     4 minute read     Posted on:

Uber/dig uber/dig 是一套基於 reflection 的 Dependency Injection Framework 意思是我們不需要手動指定依賴,而是透過 reflection 來幫我們自動找出依賴,依靠框架管理

Goroutine 與 Channel 的共舞

category: random     13 minute read     Posted on:

Preface 在了解 Channel 之前,我們需要先了解一些基本的概念 如果你已經很熟悉這些概念,可以直接跳到 Introduction to Golang Channel 部分

網頁程式設計三兩事 - 萬惡的 Same Origin 與 CORS

category: website     5 minute read     Posted on:

Preface 我最初遇到 CORS 的問題是在我的個人部落格上面,因為我引用了其他網站的圖片 某一天我突然發現圖片跑不出來了? 思來想去我應該也沒有改到程式碼才對 後來看了一下發現好像是 CORS 的問題 所以今天要來講講 CORS

網頁程式設計三兩事 - 不一樣的驗證思維 JWT(JSON Web Token)

category: website     11 minute read     Posted on:

Authorization 開發 API 的過程當中,我們提供了很多功能,其中可能包含較為隱私的功能(比如說,修改密碼,查詢個人資料等等的) 這個時候,你不會希望別人隨便修改你的密碼對吧? 所以就必須要驗證你的身份

Goroutine 與 Golang Runtime Scheduler

category: random     16 minute read     Posted on:

Process, Thread and Coroutine Process Process 是跑起來的 Program, 它擁有自己的 memory space, system resources 以及 system state 在系統開機之初,init process(pid 1) 被建立之後,就可以透過 fo...

Back to top ↑

transaction

設計模式 101 - 分散式交易的另一種作法 Saga Pattern

category: design pattern     1 minute read     Posted on:

Distributed Transaction with 2PC 在 microservices 的架構下,分散式交易是必須面對的問題 我們學過,2PC(Two-Phase Commit) 是其中一種解決方式 透過一個中心化的協調者(coordinator)與所有其他參與交易的服務進行溝通與決策

資料庫 - 分散式系統中的那些 Read/Write 問題

category: database     3 minute read     Posted on:

Unstable Network 在分散式系統中,每個節點多為使用網路互相連接起來的 然而網路實際上是不可靠的

從 0 認識 Blockchain - Transaction 以及你該知道的一切

category: blockchain     10 minute read     Posted on:

How does Blockchain Works 複習一下 blockchain 是如何運作的 blockchain 是由多個節點所組成的分散式計算網路 每個節點都嚴格遵循共識機制,共同維護區塊鏈上的資料

資料庫 - Transaction 與 Isolation

category: database     9 minute read     Posted on:

Transaction 根據 google translate 的結果我們可以得知,transaction 就是交易 那麼 交易 本身需要有什麼樣的特性呢?

資料庫 - Cache Strategies 與常見的 Solutions

category: database     7 minute read     Posted on:

Cache Cache 快取是在計算機當中最重要的概念 作為當今最有效加速的手段之一,其重要程度在作業系統、網頁伺服器以及資料庫當中都可以看到他的身影

Back to top ↑

blockchain

從 0 認識 Blockchain - 錢包基礎原理

category: blockchain     1 minute read     Posted on:

Preface 加密貨幣涉及了很多密碼學相關的知識 其中錢包這裡佔了滿多部份的 這篇文章會盡量的用簡單的方式來說明 跟我一起看看吧

從 0 認識 Blockchain - Transaction 以及你該知道的一切

category: blockchain     10 minute read     Posted on:

How does Blockchain Works 複習一下 blockchain 是如何運作的 blockchain 是由多個節點所組成的分散式計算網路 每個節點都嚴格遵循共識機制,共同維護區塊鏈上的資料

從 0 認識 Blockchain - Scaling Blockchain

category: blockchain     4 minute read     Posted on:

Why do we need to Scale Blockchain Ethereum blockchain 仰賴著共識機制,同時也深受共識機制帶來的效能影響 由於要求所有 node 都執行計算 transaction 正確性,導致同一筆交易會被驗算數次 進而消耗整體網路資源

從 0 認識 Blockchain - 區塊鏈基礎

category: blockchain     4 minute read     Posted on:

Introduction to Blockchain Blockchain 技術的概念,始於 2009 年 由 Satoshi Nakamoto 建立的 Bitcoin 根據 Bitcoin 白皮書 中所述 A purely peer-to-peer version of electronic cash w...

從 0 認識 Blockchain - Hardhat 全攻略

category: blockchain     7 minute read     Posted on:

Introduction to Hardhat ref: NomicFoundation/hardhat

Back to top ↑

ethereum

從 0 認識 Blockchain - 錢包基礎原理

category: blockchain     1 minute read     Posted on:

Preface 加密貨幣涉及了很多密碼學相關的知識 其中錢包這裡佔了滿多部份的 這篇文章會盡量的用簡單的方式來說明 跟我一起看看吧

從 0 認識 Blockchain - Transaction 以及你該知道的一切

category: blockchain     10 minute read     Posted on:

How does Blockchain Works 複習一下 blockchain 是如何運作的 blockchain 是由多個節點所組成的分散式計算網路 每個節點都嚴格遵循共識機制,共同維護區塊鏈上的資料

從 0 認識 Blockchain - Scaling Blockchain

category: blockchain     4 minute read     Posted on:

Why do we need to Scale Blockchain Ethereum blockchain 仰賴著共識機制,同時也深受共識機制帶來的效能影響 由於要求所有 node 都執行計算 transaction 正確性,導致同一筆交易會被驗算數次 進而消耗整體網路資源

從 0 認識 Blockchain - 區塊鏈基礎

category: blockchain     4 minute read     Posted on:

Introduction to Blockchain Blockchain 技術的概念,始於 2009 年 由 Satoshi Nakamoto 建立的 Bitcoin 根據 Bitcoin 白皮書 中所述 A purely peer-to-peer version of electronic cash w...

從 0 認識 Blockchain - Hardhat 全攻略

category: blockchain     7 minute read     Posted on:

Introduction to Hardhat ref: NomicFoundation/hardhat

Back to top ↑

version control

Git 進階使用 - Git Add

category: git     2 minute read     Posted on:

Recall the Basics 1.3 Getting Started - What is Git?

Git 進階使用 - Git Reset

category: git     less than 1 minute read     Posted on:

Introduce to Git Reset 開發者最喜歡 Git 的其中一個很大的原因就是即使你做錯了 仍然可以重來 使用 git reset 可以幾乎拯救所有 “不小心的操作”(只要 .git 資料夾還存在的情況下)

Git 進階使用 - Git Rebase

category: git     3 minute read     Posted on:

Introduce to Git Rebase Rebase 顧名思義,即更改目前的 base(分支基礎) rebase 在很多地方都很有用,包含像是更改 commit message, re-order commits, squash commits 以及 pull base branch 的 changes

Git 進階使用 - Git Hook

category: git     1 minute read     Posted on:

What Is Git Hook 在開發過程當中,我們常常會遇到需要手動進行測試以及 format 程式碼等等的事情,那就會讓我思考 有沒有一種自動化的工具可以執行這些任務呢?

Back to top ↑

container

Kubernetes 從零開始 - 容器基本抽象 Pod

category: kubernetes     3 minute read     Posted on:

Abstraction over Container Pod 其實是為了更好的管理 Container 而生的一層抽象層 所以他同時也是最小的部署單位(注意到不是 Container)

Kubernetes 從零開始 - Local 開發測試好朋友 Skaffold

category: kubernetes     1 minute read     Posted on:

Development Obstacles in Kubernetes 不知道你有沒有這種感覺,Kubernetes 對本地開發來說真的挺不友善的(至少以我來說) 除了你要架設一個本地的 Kubernetes Cluster 之外,還要不斷地手動更新 image

Kubernetes 從零開始 - 無痛初探 K8s!

category: kubernetes     7 minute read     Posted on:

Preface 現今網頁服務由於 container 的興起,大幅度的改變了整個 web 的生態系,一切都圍繞著 container 雖然說 container 改變了開發者的工作流程,使得大部分得以簡化,但是仍有一些問題依然存在

Container 技術 - 理解 Docker Container

category: container     3 minute read     Posted on:

Virtualization Docker 身為一個容器化技術的代表,與傳統 virtual machine 不同 Docker 擁有更快的啟動速度、對系統資源的極低要求以及輕量化的優點,既然同為 虛擬化技術,那麼他與傳統的 virtual machine 又有甚麼不一樣的地方呢?

Back to top ↑

sql

資料庫 - 新手做 Data Migration 資料遷移

category: database     1 minute read     Posted on:

Preface 資料搬遷,在現代軟體服務當中屬於較為常見的一種需求 不論是單純的機器之間的搬資料抑或者是因應商業邏輯而需要做的資料搬遷 都是屬於 Data Migration

資料庫 - 從 MySQL 到 PostgreSQL 一些新手會遇到的問題

category: database     14 minute read     Posted on:

Preface 作為用了 MySQL 五年之久的我,原本以為同為 SQL 在語法上的差異不會影響到太多 實際上手之後,發現還是有點差異

資料庫 - 更好的分頁機制 Cursor Based Pagination

category: database     3 minute read     Posted on:

Pagination Mechanism 相信一般做開發的,尤其是網頁相關 當資料量太大的時候,我們多半會選擇將資料切成多個部份傳輸 也就是分頁的機制

資料庫 - SQL N + 1 問題

category: database     2 minute read     Posted on:

Introduction to SQL N + 1 Problem 在使用 ORM 套件下,開發程式的過程中 你可能會不小心踩到所謂的 SQL N + 1 問題 假設你在開發一個社群網站 使用者可以發佈文章 現在你要實作一個功能 是要撈出所有符合條件的文章以及作者資訊(假設你想知道點讚數超過 10 的所有文章) ...

Back to top ↑

distributed

資料庫 - 最佳化 Read/Write 設計

category: database     3 minute read     Posted on:

Preface 雖然說只要有錢都好辦事,但多數情況下我們都是沒錢的 因此學習如何最佳化是相對重要的事情 那麼有哪些是我們可以透過內部盡量去優化的呢?

資料庫 - 分散式系統中的那些 Read/Write 問題

category: database     3 minute read     Posted on:

Unstable Network 在分散式系統中,每個節點多為使用網路互相連接起來的 然而網路實際上是不可靠的

資料庫 - 從 Apache Kafka 認識 Message Queue

category: database     15 minute read     Posted on:

Preface message queue 顧名思義他是一個 queue,用來存放 message 的 你可以用 Inter-Process Communication 的概念去思考它 基本上就是提供一個空間或是,讓兩個 process 進行通訊

資料庫 - 初探分散式資料庫

category: database     4 minute read     Posted on:

Distributed System Scale Out(Horizontal Scale) 的概念是利用多台電腦組成一個龐大的網路,進行運算提供服務 這個網路,稱為 cluster

Back to top ↑

cluster

資料庫 - 如何正確設定高可用的 Redis

category: database     11 minute read     Posted on:

Preface 要如何提高系統的高可用性以及高效能,最常想到的應該就是分散式系統了 基本上你可以發現,不論是哪一段的系統架構,他們通常都會是使用分散式架構以達到高可用性

資料庫 - 分散式系統中的那些 Read/Write 問題

category: database     3 minute read     Posted on:

Unstable Network 在分散式系統中,每個節點多為使用網路互相連接起來的 然而網路實際上是不可靠的

資料庫 - 從 Apache Kafka 認識 Message Queue

category: database     15 minute read     Posted on:

Preface message queue 顧名思義他是一個 queue,用來存放 message 的 你可以用 Inter-Process Communication 的概念去思考它 基本上就是提供一個空間或是,讓兩個 process 進行通訊

資料庫 - 初探分散式資料庫

category: database     4 minute read     Posted on:

Distributed System Scale Out(Horizontal Scale) 的概念是利用多台電腦組成一個龐大的網路,進行運算提供服務 這個網路,稱為 cluster

Back to top ↑

kubernetes

DevOps - 透過 Helm Chart 建立你自己的 GitHub Action Runner

category: devops     7 minute read     Posted on:

Preface 在 DevOps - 從 GitHub Actions 初探 CI/CD | Shawn Hsu 裡面有提到,你可以使用自架的 local runner 執行你的 GitHub Action 原因不外乎是因為 private repo 沒辦法免費的使用 GitHub 提供的 runner 所以你可...

資料庫 - 大型物件儲存系統 MinIO 簡介

category: database     6 minute read     Posted on:

Brief Large Object Storage System 檔案儲存在現今電腦服務中一直扮演著相當重要的角色 舉例來說,你的大頭貼會需要一個地方儲存 我記得我在學校學習的時候一般來說有兩種做法 上傳到伺服器當中的檔案系統內做儲存,資料庫內寫入存放路徑即可 直接以二進位的方式存入資料庫中

Container 技術 - runC, containerd 傻傻分不清

category: container     1 minute read     Posted on:

容器化技術 隨著 microservice 的發展,容器化技術在近幾年受到了廣大的歡迎 相較於傳統的虛擬機器(virtual machine), container 擁有著輕量,快速等特性 隨即受到了開發者們的喜愛 而其中最廣為人知的便是 Docker 本文並不會贅述 Docker 工具的使用,我們將以其探討 c...

Back to top ↑

dependency injection

實際上手體驗 Golang DI Framework 之 Uber Dig

category: random     4 minute read     Posted on:

Uber/dig uber/dig 是一套基於 reflection 的 Dependency Injection Framework 意思是我們不需要手動指定依賴,而是透過 reflection 來幫我們自動找出依賴,依靠框架管理

DevOps - 整合測試 Integration Test

category: devops     5 minute read     Posted on:

Introduction to Integration Test 光是擁有 unit test,其實是不夠的 因為 unit test 測試的範圍只有 function 本身 跨 function 之間的整合,是沒有涵蓋到的

DevOps - 單元測試 Unit Test

category: devops     7 minute read     Posted on:

Introduction to Testing 在軟體開發的過程當中,QA 測試其實是很重要的一個環節 有了 QA 驗證,可以確保程式不會因為不當的輸入而產生不如預期的結果

Back to top ↑

index

資料庫 - 最佳化 Read/Write 設計

category: database     3 minute read     Posted on:

Preface 雖然說只要有錢都好辦事,但多數情況下我們都是沒錢的 因此學習如何最佳化是相對重要的事情 那麼有哪些是我們可以透過內部盡量去優化的呢?

資料庫 - PostgreSQL 使用 Fuzzy Search 的效能測試

category: database     9 minute read     Posted on:

Introduction to Fuzzy Search 就是字串匹配,只不過它即使是沒有完全的把字拼對,也可以找的到

資料庫 - Index 與 Histogram 篇

category: database     8 minute read     Posted on:

Speed up Search In Large Data

Back to top ↑

typescript

資料庫 - PostgreSQL 使用 Fuzzy Search 的效能測試

category: database     9 minute read     Posted on:

Introduction to Fuzzy Search 就是字串匹配,只不過它即使是沒有完全的把字拼對,也可以找的到

邁向 Angular 前端工程師之路 - Obfuscation

category: angular     4 minute read     Posted on:

How Frontend Application Run in Real Life ref: [javascript]如何用chrome,ie去debug javascript

邁向 Angular 前端工程師之路 - Lifecycle Hooks

category: angular     3 minute read     Posted on:

Why do we Need Lifecycle Hook Angular 在一開始初始化 component,他的生命週期就開始了 為了使 component 更人性化一點,舉例來說我們希望在特定的時間做特定的事情 當資料改變的時候,我們希望重新 render 畫面,這時候 lifecycle hook 就很好...

Back to top ↑

prisma

資料庫 - 新手做 Data Migration 資料遷移

category: database     1 minute read     Posted on:

Preface 資料搬遷,在現代軟體服務當中屬於較為常見的一種需求 不論是單純的機器之間的搬資料抑或者是因應商業邏輯而需要做的資料搬遷 都是屬於 Data Migration

資料庫 - PostgreSQL 使用 Fuzzy Search 的效能測試

category: database     9 minute read     Posted on:

Introduction to Fuzzy Search 就是字串匹配,只不過它即使是沒有完全的把字拼對,也可以找的到

Prisma + Webpack + Docker 踩坑筆記

category: random     5 minute read     Posted on:

Preface 前陣子為了其他系列的部落格文章的 lab,在練習一個簡單的 REST-ful API 的專案 途中遇到不少的困難,想說寫起來紀錄一下

Back to top ↑

crd

Kubernetes 從零開始 - client-go 實操 CRD

category: kubernetes     3 minute read     Posted on:

Extend Kubernetes Resource Kubernetes 有許多內建的 Resource,像是 Pod, Deployment, Service 等等 但開發者的需求總是不斷的增加,有時候內建的 Resource 並不能滿足商業需求 假設你需要表達一個很複雜的資源,現有的其實寫起來會很複雜

Kubernetes 從零開始 - 從自幹 Controller 到理解狀態管理

category: kubernetes     8 minute read     Posted on:

Kubernetes Object Kubernetes object 並不是指 Pod 或者是 Deployment 這種 Resource 複習一下,Resource 是所有你可以透過 Kubernetes 使用的物件(操作 kubectl 或Kubernetes API) 而 object 是這些 Reso...

Kubernetes 從零開始 - Helm Controller

category: kubernetes     2 minute read     Posted on:

Introduction to Helm Controller 如果你是使用 Helm chart 來管理你的 Kubernetes 資源 一個常見的需求會是,你可能會需要更新你的 chart 不管是 image version 還是一些設定檔的更新

Back to top ↑

operating system

CS:APP - Representing and Manipulating Information

category: csapp     8 minute read     Posted on:

Information Storage 相較於直接操作 bits,使用 bytes(8 bits) 會顯得方便得多。以 machine-level 來看待記憶體就會是一連串的 byte 陣列,每個 bytes 都有一個獨立的 id(address),對於所有可能的 address 稱之為 virtual addr...

CS:APP - A Tour of Computer Systems

category: csapp     2 minute read     Posted on:

Information Is Bits + Context ```c // hello.c

Back to top ↑

c

CS:APP - Representing and Manipulating Information

category: csapp     8 minute read     Posted on:

Information Storage 相較於直接操作 bits,使用 bytes(8 bits) 會顯得方便得多。以 machine-level 來看待記憶體就會是一連串的 byte 陣列,每個 bytes 都有一個獨立的 id(address),對於所有可能的 address 稱之為 virtual addr...

CS:APP - A Tour of Computer Systems

category: csapp     2 minute read     Posted on:

Information Is Bits + Context ```c // hello.c

Back to top ↑

network

資料庫 - 分散式系統中的那些 Read/Write 問題

category: database     3 minute read     Posted on:

Unstable Network 在分散式系統中,每個節點多為使用網路互相連接起來的 然而網路實際上是不可靠的

Container 技術 - 理解 Docker Container

category: container     3 minute read     Posted on:

Virtualization Docker 身為一個容器化技術的代表,與傳統 virtual machine 不同 Docker 擁有更快的啟動速度、對系統資源的極低要求以及輕量化的優點,既然同為 虛擬化技術,那麼他與傳統的 virtual machine 又有甚麼不一樣的地方呢?

Back to top ↑

clock

資料庫 - 分散式系統中的那些 Read/Write 問題

category: database     3 minute read     Posted on:

Unstable Network 在分散式系統中,每個節點多為使用網路互相連接起來的 然而網路實際上是不可靠的

Linux Kernel - Clock

category: linux-kernel     3 minute read     Posted on:

Hardware and System Clock Linux 的世界裡,有兩種時鐘,他們分別為

Back to top ↑

python

設計模式 101 - Decorator Pattern

category: design pattern     3 minute read     Posted on:

Benchmark Time Elapsed 讓我們先從簡單的一個例子看起 ```python import grpc import time from proto import echo_pb2 from proto import echo_pb2_grpc

關於 Python 你該知道的那些事 - GIL(Global Interpreter Lock)

category: random     10 minute read     Posted on:

Preface

Back to top ↑

parallelism

Goroutine 與 Golang Runtime Scheduler

category: random     16 minute read     Posted on:

Process, Thread and Coroutine Process Process 是跑起來的 Program, 它擁有自己的 memory space, system resources 以及 system state 在系統開機之初,init process(pid 1) 被建立之後,就可以透過 fo...

關於 Python 你該知道的那些事 - GIL(Global Interpreter Lock)

category: random     10 minute read     Posted on:

Preface

Back to top ↑

concurrency

Goroutine 與 Golang Runtime Scheduler

category: random     16 minute read     Posted on:

Process, Thread and Coroutine Process Process 是跑起來的 Program, 它擁有自己的 memory space, system resources 以及 system state 在系統開機之初,init process(pid 1) 被建立之後,就可以透過 fo...

關於 Python 你該知道的那些事 - GIL(Global Interpreter Lock)

category: random     10 minute read     Posted on:

Preface

Back to top ↑

api

網頁程式設計三兩事 - gRPC 與 JSON-RPC

category: website     10 minute read     Posted on:

RPC RPC(Remote Procedure Call) 是一種通信協定, 它能夠 允許本機電腦程式呼叫遠端電腦程式 聽起來好像還好? 重點是它能夠以 類似於呼叫本地 function 般輕鬆(稱為 location transparency)

網頁程式設計三兩事 - RESTful API

category: website     1 minute read     Posted on:

What is API API - Application Programming Interface 是一種 介面,他高度抽象化了背後的實作原理 使得呼叫端可以透過簡單的呼叫達成一件相對複雜的事情

Back to top ↑

github action

DevOps - 透過 Helm Chart 建立你自己的 GitHub Action Runner

category: devops     7 minute read     Posted on:

Preface 在 DevOps - 從 GitHub Actions 初探 CI/CD | Shawn Hsu 裡面有提到,你可以使用自架的 local runner 執行你的 GitHub Action 原因不外乎是因為 private repo 沒辦法免費的使用 GitHub 提供的 runner 所以你可...

DevOps - 從 GitHub Actions 初探 CI/CD

category: devops     10 minute read     Posted on:

CI/CD Continuous Integration - CI 是現今軟體開發流程當中的一種 best practice 開發的過程當中,我們有可能在實作中不小心改壞了一個東西,又剛好 QA 沒有測出來直上 production 這時候出問題就比較麻煩了對吧?

Back to top ↑

ssh

設定你的 Remote VS Code Server

category: random     4 minute read     Posted on:

Preface 對於一個無時無刻都想寫 code 的工程師來說 如果能用手機,平板等等的設備開發,豈不美哉

GPG 與 YubiKey 的相遇之旅

category: random     20 minute read     Posted on:

PGP, OpenPGP and GPG - What’s The Difference Pretty Good Privacy - PGP 是 Philip R. Zimmermann 在 1991 年創造的對稱式加密法,其目的正是為了能夠在 BBS 上安全的儲存訊息以及檔案所創造的 之後在 1997 年,IE...

Back to top ↑

cache

資料庫 - Cache Strategies 與常見的 Solutions

category: database     7 minute read     Posted on:

Cache Cache 快取是在計算機當中最重要的概念 作為當今最有效加速的手段之一,其重要程度在作業系統、網頁伺服器以及資料庫當中都可以看到他的身影

重新認識網路 - HTTP1 與他的小夥伴們

category: network     15 minute read     Posted on:

Introduction 在 1989 年,Tim Berners-Lee 提出了跨網路交換超文本資料的初始架構 它包含了以下 超文本資料: HTML 傳輸協議: HTTP Client 以及 Server 直到 1990, 以上規範大致上都完成了 1991 年世界上第一台 server 正式開始啟...

Back to top ↑

unit test

實際上手體驗 Golang DI Framework 之 Uber Dig

category: random     4 minute read     Posted on:

Uber/dig uber/dig 是一套基於 reflection 的 Dependency Injection Framework 意思是我們不需要手動指定依賴,而是透過 reflection 來幫我們自動找出依賴,依靠框架管理

DevOps - 單元測試 Unit Test

category: devops     7 minute read     Posted on:

Introduction to Testing 在軟體開發的過程當中,QA 測試其實是很重要的一個環節 有了 QA 驗證,可以確保程式不會因為不當的輸入而產生不如預期的結果

Back to top ↑

mock

DevOps - 整合測試 Integration Test

category: devops     5 minute read     Posted on:

Introduction to Integration Test 光是擁有 unit test,其實是不夠的 因為 unit test 測試的範圍只有 function 本身 跨 function 之間的整合,是沒有涵蓋到的

DevOps - 單元測試 Unit Test

category: devops     7 minute read     Posted on:

Introduction to Testing 在軟體開發的過程當中,QA 測試其實是很重要的一個環節 有了 QA 驗證,可以確保程式不會因為不當的輸入而產生不如預期的結果

Back to top ↑

redis

資料庫 - 如何正確設定高可用的 Redis

category: database     11 minute read     Posted on:

Preface 要如何提高系統的高可用性以及高效能,最常想到的應該就是分散式系統了 基本上你可以發現,不論是哪一段的系統架構,他們通常都會是使用分散式架構以達到高可用性

資料庫 - Cache Strategies 與常見的 Solutions

category: database     7 minute read     Posted on:

Cache Cache 快取是在計算機當中最重要的概念 作為當今最有效加速的手段之一,其重要程度在作業系統、網頁伺服器以及資料庫當中都可以看到他的身影

Back to top ↑

redis cluster

資料庫 - 如何正確設定高可用的 Redis

category: database     11 minute read     Posted on:

Preface 要如何提高系統的高可用性以及高效能,最常想到的應該就是分散式系統了 基本上你可以發現,不論是哪一段的系統架構,他們通常都會是使用分散式架構以達到高可用性

資料庫 - Cache Strategies 與常見的 Solutions

category: database     7 minute read     Posted on:

Cache Cache 快取是在計算機當中最重要的概念 作為當今最有效加速的手段之一,其重要程度在作業系統、網頁伺服器以及資料庫當中都可以看到他的身影

Back to top ↑

coroutine

Goroutine 與 Channel 的共舞

category: random     13 minute read     Posted on:

Preface 在了解 Channel 之前,我們需要先了解一些基本的概念 如果你已經很熟悉這些概念,可以直接跳到 Introduction to Golang Channel 部分

Goroutine 與 Golang Runtime Scheduler

category: random     16 minute read     Posted on:

Process, Thread and Coroutine Process Process 是跑起來的 Program, 它擁有自己的 memory space, system resources 以及 system state 在系統開機之初,init process(pid 1) 被建立之後,就可以透過 fo...

Back to top ↑

algorithm

神奇的演算法 - Binary Indexed Tree

category: algorithm     3 minute read     Posted on:

Binary Indexed Tree 又名 Fenwick Tree, 是一種特殊資料結構,適用於需要大範圍的紀錄更新資料 像是下圖,假設我想要知道,達到 20% 採購率有哪些國家,達到 50% 的又有哪些 一般的作法是我可能開一個 map 去紀錄對吧 看起來會像以下這樣

神奇的演算法 - Subarray Sum

category: algorithm     6 minute read     Posted on:

Subarray Definition subarray 為一個 array 的連續子集合 subarray 不可為空,subarray sum 則為這個子陣列的和

Back to top ↑

gin

資料庫 - PostgreSQL 使用 Fuzzy Search 的效能測試

category: database     9 minute read     Posted on:

Introduction to Fuzzy Search 就是字串匹配,只不過它即使是沒有完全的把字拼對,也可以找的到

網頁程式設計三兩事 - 萬惡的 Same Origin 與 CORS

category: website     5 minute read     Posted on:

Preface 我最初遇到 CORS 的問題是在我的個人部落格上面,因為我引用了其他網站的圖片 某一天我突然發現圖片跑不出來了? 思來想去我應該也沒有改到程式碼才對 後來看了一下發現好像是 CORS 的問題 所以今天要來講講 CORS

Back to top ↑

webpack

Prisma + Webpack + Docker 踩坑筆記

category: random     5 minute read     Posted on:

Preface 前陣子為了其他系列的部落格文章的 lab,在練習一個簡單的 REST-ful API 的專案 途中遇到不少的困難,想說寫起來紀錄一下

邁向 Angular 前端工程師之路 - Obfuscation

category: angular     4 minute read     Posted on:

How Frontend Application Run in Real Life ref: [javascript]如何用chrome,ie去debug javascript

Back to top ↑

publisher

資料庫 - 從 Apache Kafka 認識 Message Queue

category: database     15 minute read     Posted on:

Preface message queue 顧名思義他是一個 queue,用來存放 message 的 你可以用 Inter-Process Communication 的概念去思考它 基本上就是提供一個空間或是,讓兩個 process 進行通訊

設計模式 101 - Observer Pattern

category: design pattern     2 minute read     Posted on:

Observer Pattern 程式設計中,時常會需要處理到所謂的 “事件” 這些的事件的出現是 隨機的, 亦即你沒辦法判定何時何地會突然有一個事件送進來

Back to top ↑

subscriber

資料庫 - 從 Apache Kafka 認識 Message Queue

category: database     15 minute read     Posted on:

Preface message queue 顧名思義他是一個 queue,用來存放 message 的 你可以用 Inter-Process Communication 的概念去思考它 基本上就是提供一個空間或是,讓兩個 process 進行通訊

設計模式 101 - Observer Pattern

category: design pattern     2 minute read     Posted on:

Observer Pattern 程式設計中,時常會需要處理到所謂的 “事件” 這些的事件的出現是 隨機的, 亦即你沒辦法判定何時何地會突然有一個事件送進來

Back to top ↑

replication

資料庫 - 如何正確設定高可用的 Redis

category: database     11 minute read     Posted on:

Preface 要如何提高系統的高可用性以及高效能,最常想到的應該就是分散式系統了 基本上你可以發現,不論是哪一段的系統架構,他們通常都會是使用分散式架構以達到高可用性

資料庫 - 初探分散式資料庫

category: database     4 minute read     Posted on:

Distributed System Scale Out(Horizontal Scale) 的概念是利用多台電腦組成一個龐大的網路,進行運算提供服務 這個網路,稱為 cluster

Back to top ↑

nodejs

理解 Node.js 中非同步處理與 Event Loop 的關係

category: random     6 minute read     Posted on:

Preface 1 2 3 4 5 6 7 8 9 10 (() => { setTimeout(() => { console.log(1) }) Promise.resolve().then(() => { console.log(2) }) consol...

如何正確模組化你的 OpenAPI 文件,以及如何建立 Mock Server

category: random     5 minute read     Posted on:

Preface

Back to top ↑

anchor

如何正確模組化你的 OpenAPI 文件,以及如何建立 Mock Server

category: random     5 minute read     Posted on:

Preface

如何正確模組化你的 OpenAPI 文件,以及如何建立 Mock Server

category: random     5 minute read     Posted on:

Preface

Back to top ↑

postgresql

資料庫 - PostgreSQL 使用 Fuzzy Search 的效能測試

category: database     9 minute read     Posted on:

Introduction to Fuzzy Search 就是字串匹配,只不過它即使是沒有完全的把字拼對,也可以找的到

資料庫 - 從 MySQL 到 PostgreSQL 一些新手會遇到的問題

category: database     14 minute read     Posted on:

Preface 作為用了 MySQL 五年之久的我,原本以為同為 SQL 在語法上的差異不會影響到太多 實際上手之後,發現還是有點差異

Back to top ↑

event

理解 Node.js 中非同步處理與 Event Loop 的關係

category: random     6 minute read     Posted on:

Preface 1 2 3 4 5 6 7 8 9 10 (() => { setTimeout(() => { console.log(1) }) Promise.resolve().then(() => { console.log(2) }) consol...

資料庫 - 從 Apache Kafka 認識 Message Queue

category: database     15 minute read     Posted on:

Preface message queue 顧名思義他是一個 queue,用來存放 message 的 你可以用 Inter-Process Communication 的概念去思考它 基本上就是提供一個空間或是,讓兩個 process 進行通訊

Back to top ↑

rabbitmq

Kubernetes 從零開始 - 無痛初探 K8s!

category: kubernetes     7 minute read     Posted on:

Preface 現今網頁服務由於 container 的興起,大幅度的改變了整個 web 的生態系,一切都圍繞著 container 雖然說 container 改變了開發者的工作流程,使得大部分得以簡化,但是仍有一些問題依然存在

資料庫 - 從 Apache Kafka 認識 Message Queue

category: database     15 minute read     Posted on:

Preface message queue 顧名思義他是一個 queue,用來存放 message 的 你可以用 Inter-Process Communication 的概念去思考它 基本上就是提供一個空間或是,讓兩個 process 進行通訊

Back to top ↑

webhook

資料庫 - 大型物件儲存系統 MinIO 簡介

category: database     6 minute read     Posted on:

Brief Large Object Storage System 檔案儲存在現今電腦服務中一直扮演著相當重要的角色 舉例來說,你的大頭貼會需要一個地方儲存 我記得我在學校學習的時候一般來說有兩種做法 上傳到伺服器當中的檔案系統內做儲存,資料庫內寫入存放路徑即可 直接以二進位的方式存入資料庫中

淺談 Polling, Long Polling 以及其他即時通訊方法論

category: random     2 minute read     Posted on:

Polling polling 輪詢是最為簡單的一種作法 其核心概念為定時的發出 request 確認

Back to top ↑

tcp

重新認識網路 - 從基礎開始

category: network     11 minute read     Posted on:

DNS - Domain Name System Domain Name System 是一個分散式的系統,用於紀錄網域名稱和 IP 位址之間的關聯 基本上現今我們在瀏覽網站的時候,多半是使用所謂的 domain name 上網的 比方說 google.com, facebook.com

淺談 Polling, Long Polling 以及其他即時通訊方法論

category: random     2 minute read     Posted on:

Polling polling 輪詢是最為簡單的一種作法 其核心概念為定時的發出 request 確認

Back to top ↑

queue

Kubernetes 從零開始 - 資源排隊神器 Kueue

category: kubernetes     3 minute read     Posted on:

Introduction to Kueue 你可以在 Kubernetes 裡面塞入任一數量的 job,但這只是理論上 實務上會因為硬體資源的限制,你只可以執行有限數量的 job Kueue 這個工具可以根據這些 限制,允許有限數量的 job 同時執行 它可以做到一些基礎的排程機制,如 Job 要不要等待,...

理解 Node.js 中非同步處理與 Event Loop 的關係

category: random     6 minute read     Posted on:

Preface 1 2 3 4 5 6 7 8 9 10 (() => { setTimeout(() => { console.log(1) }) Promise.resolve().then(() => { console.log(2) }) consol...

Back to top ↑

k3d

Kubernetes 從零開始 - Local 開發測試好朋友 Skaffold

category: kubernetes     1 minute read     Posted on:

Development Obstacles in Kubernetes 不知道你有沒有這種感覺,Kubernetes 對本地開發來說真的挺不友善的(至少以我來說) 除了你要架設一個本地的 Kubernetes Cluster 之外,還要不斷地手動更新 image

Kubernetes 從零開始 - 無痛初探 K8s!

category: kubernetes     7 minute read     Posted on:

Preface 現今網頁服務由於 container 的興起,大幅度的改變了整個 web 的生態系,一切都圍繞著 container 雖然說 container 改變了開發者的工作流程,使得大部分得以簡化,但是仍有一些問題依然存在

Back to top ↑

quorum

資料庫 - 如何正確設定高可用的 Redis

category: database     11 minute read     Posted on:

Preface 要如何提高系統的高可用性以及高效能,最常想到的應該就是分散式系統了 基本上你可以發現,不論是哪一段的系統架構,他們通常都會是使用分散式架構以達到高可用性

資料庫 - 大型物件儲存系統 MinIO 簡介

category: database     6 minute read     Posted on:

Brief Large Object Storage System 檔案儲存在現今電腦服務中一直扮演著相當重要的角色 舉例來說,你的大頭貼會需要一個地方儲存 我記得我在學校學習的時候一般來說有兩種做法 上傳到伺服器當中的檔案系統內做儲存,資料庫內寫入存放路徑即可 直接以二進位的方式存入資料庫中

Back to top ↑

scheduling

Kubernetes 從零開始 - 資源排隊神器 Kueue

category: kubernetes     3 minute read     Posted on:

Introduction to Kueue 你可以在 Kubernetes 裡面塞入任一數量的 job,但這只是理論上 實務上會因為硬體資源的限制,你只可以執行有限數量的 job Kueue 這個工具可以根據這些 限制,允許有限數量的 job 同時執行 它可以做到一些基礎的排程機制,如 Job 要不要等待,...

Kubernetes 從零開始 - 容器基本抽象 Pod

category: kubernetes     3 minute read     Posted on:

Abstraction over Container Pod 其實是為了更好的管理 Container 而生的一層抽象層 所以他同時也是最小的部署單位(注意到不是 Container)

Back to top ↑

helm chart

Kubernetes 從零開始 - Helm Controller

category: kubernetes     2 minute read     Posted on:

Introduction to Helm Controller 如果你是使用 Helm chart 來管理你的 Kubernetes 資源 一個常見的需求會是,你可能會需要更新你的 chart 不管是 image version 還是一些設定檔的更新

DevOps - 透過 Helm Chart 建立你自己的 GitHub Action Runner

category: devops     7 minute read     Posted on:

Preface 在 DevOps - 從 GitHub Actions 初探 CI/CD | Shawn Hsu 裡面有提到,你可以使用自架的 local runner 執行你的 GitHub Action 原因不外乎是因為 private repo 沒辦法免費的使用 GitHub 提供的 runner 所以你可...

Back to top ↑

dynamic client

Kubernetes 從零開始 - client-go 實操 CRD

category: kubernetes     3 minute read     Posted on:

Extend Kubernetes Resource Kubernetes 有許多內建的 Resource,像是 Pod, Deployment, Service 等等 但開發者的需求總是不斷的增加,有時候內建的 Resource 並不能滿足商業需求 假設你需要表達一個很複雜的資源,現有的其實寫起來會很複雜

Kubernetes 從零開始 - 如何測試你的 Kubernetes 應用程式?

category: kubernetes     2 minute read     Posted on:

Kubernetes Application Testing 軟體工程裡面測試應用程式是一個很重要的環節,開發 Cloud Native 應用程式的時候也一樣 常見的就是使用 Kubernetes 進行開發,建立 Pod 跑東西之類的 所以很明顯這種邏輯也是需要進行測試覆蓋的

Back to top ↑

client-go

Kubernetes 從零開始 - client-go 實操 CRD

category: kubernetes     3 minute read     Posted on:

Extend Kubernetes Resource Kubernetes 有許多內建的 Resource,像是 Pod, Deployment, Service 等等 但開發者的需求總是不斷的增加,有時候內建的 Resource 並不能滿足商業需求 假設你需要表達一個很複雜的資源,現有的其實寫起來會很複雜

Kubernetes 從零開始 - 如何測試你的 Kubernetes 應用程式?

category: kubernetes     2 minute read     Posted on:

Kubernetes Application Testing 軟體工程裡面測試應用程式是一個很重要的環節,開發 Cloud Native 應用程式的時候也一樣 常見的就是使用 Kubernetes 進行開發,建立 Pod 跑東西之類的 所以很明顯這種邏輯也是需要進行測試覆蓋的

Back to top ↑

clientset

Kubernetes 從零開始 - client-go 實操 CRD

category: kubernetes     3 minute read     Posted on:

Extend Kubernetes Resource Kubernetes 有許多內建的 Resource,像是 Pod, Deployment, Service 等等 但開發者的需求總是不斷的增加,有時候內建的 Resource 並不能滿足商業需求 假設你需要表達一個很複雜的資源,現有的其實寫起來會很複雜

Kubernetes 從零開始 - 如何測試你的 Kubernetes 應用程式?

category: kubernetes     2 minute read     Posted on:

Kubernetes Application Testing 軟體工程裡面測試應用程式是一個很重要的環節,開發 Cloud Native 應用程式的時候也一樣 常見的就是使用 Kubernetes 進行開發,建立 Pod 跑東西之類的 所以很明顯這種邏輯也是需要進行測試覆蓋的

Back to top ↑

github

自架部落格 - 使用 GitHub Pages 以及 Jekyll Chirpy 為例

category: random     1 minute read     Posted on:

What is GitHub Pages GitHub 提供了一個免費的服務 - Github Pages,可以讓開發者建立屬於自己的專屬部落格網站 沒錯 是完全免費!

Back to top ↑

blog

自架部落格 - 使用 GitHub Pages 以及 Jekyll Chirpy 為例

category: random     1 minute read     Posted on:

What is GitHub Pages GitHub 提供了一個免費的服務 - Github Pages,可以讓開發者建立屬於自己的專屬部落格網站 沒錯 是完全免費!

Back to top ↑

distroless image

Container 技術 - 理解 Docker Container

category: container     3 minute read     Posted on:

Virtualization Docker 身為一個容器化技術的代表,與傳統 virtual machine 不同 Docker 擁有更快的啟動速度、對系統資源的極低要求以及輕量化的優點,既然同為 虛擬化技術,那麼他與傳統的 virtual machine 又有甚麼不一樣的地方呢?

Back to top ↑

namespaces

Linux Kernel - namespaces

category: linux-kernel     2 minute read     Posted on:

Introduce to namespaces namespaces 是 linux kernel 的一種資源隔離機制,用以防止不同 process 看到不同資源

Back to top ↑

gil

關於 Python 你該知道的那些事 - GIL(Global Interpreter Lock)

category: random     10 minute read     Posted on:

Preface

Back to top ↑

atomic operation

關於 Python 你該知道的那些事 - GIL(Global Interpreter Lock)

category: random     10 minute read     Posted on:

Preface

Back to top ↑

race condition

關於 Python 你該知道的那些事 - GIL(Global Interpreter Lock)

category: random     10 minute read     Posted on:

Preface

Back to top ↑

grpc

網頁程式設計三兩事 - gRPC 與 JSON-RPC

category: website     10 minute read     Posted on:

RPC RPC(Remote Procedure Call) 是一種通信協定, 它能夠 允許本機電腦程式呼叫遠端電腦程式 聽起來好像還好? 重點是它能夠以 類似於呼叫本地 function 般輕鬆(稱為 location transparency)

Back to top ↑

rpc

網頁程式設計三兩事 - gRPC 與 JSON-RPC

category: website     10 minute read     Posted on:

RPC RPC(Remote Procedure Call) 是一種通信協定, 它能夠 允許本機電腦程式呼叫遠端電腦程式 聽起來好像還好? 重點是它能夠以 類似於呼叫本地 function 般輕鬆(稱為 location transparency)

Back to top ↑

json-rpc

網頁程式設計三兩事 - gRPC 與 JSON-RPC

category: website     10 minute read     Posted on:

RPC RPC(Remote Procedure Call) 是一種通信協定, 它能夠 允許本機電腦程式呼叫遠端電腦程式 聽起來好像還好? 重點是它能夠以 類似於呼叫本地 function 般輕鬆(稱為 location transparency)

Back to top ↑

design pattern

網頁程式設計三兩事 - gRPC 與 JSON-RPC

category: website     10 minute read     Posted on:

RPC RPC(Remote Procedure Call) 是一種通信協定, 它能夠 允許本機電腦程式呼叫遠端電腦程式 聽起來好像還好? 重點是它能夠以 類似於呼叫本地 function 般輕鬆(稱為 location transparency)

Back to top ↑

protobuf

網頁程式設計三兩事 - gRPC 與 JSON-RPC

category: website     10 minute read     Posted on:

RPC RPC(Remote Procedure Call) 是一種通信協定, 它能夠 允許本機電腦程式呼叫遠端電腦程式 聽起來好像還好? 重點是它能夠以 類似於呼叫本地 function 般輕鬆(稱為 location transparency)

Back to top ↑

grpc-gateway

網頁程式設計三兩事 - gRPC 與 JSON-RPC

category: website     10 minute read     Posted on:

RPC RPC(Remote Procedure Call) 是一種通信協定, 它能夠 允許本機電腦程式呼叫遠端電腦程式 聽起來好像還好? 重點是它能夠以 類似於呼叫本地 function 般輕鬆(稱為 location transparency)

Back to top ↑

stub

網頁程式設計三兩事 - gRPC 與 JSON-RPC

category: website     10 minute read     Posted on:

RPC RPC(Remote Procedure Call) 是一種通信協定, 它能夠 允許本機電腦程式呼叫遠端電腦程式 聽起來好像還好? 重點是它能夠以 類似於呼叫本地 function 般輕鬆(稱為 location transparency)

Back to top ↑

ci

DevOps - 從 GitHub Actions 初探 CI/CD

category: devops     10 minute read     Posted on:

CI/CD Continuous Integration - CI 是現今軟體開發流程當中的一種 best practice 開發的過程當中,我們有可能在實作中不小心改壞了一個東西,又剛好 QA 沒有測出來直上 production 這時候出問題就比較麻煩了對吧?

Back to top ↑

cd

DevOps - 從 GitHub Actions 初探 CI/CD

category: devops     10 minute read     Posted on:

CI/CD Continuous Integration - CI 是現今軟體開發流程當中的一種 best practice 開發的過程當中,我們有可能在實作中不小心改壞了一個東西,又剛好 QA 沒有測出來直上 production 這時候出問題就比較麻煩了對吧?

Back to top ↑

gpg

GPG 與 YubiKey 的相遇之旅

category: random     20 minute read     Posted on:

PGP, OpenPGP and GPG - What’s The Difference Pretty Good Privacy - PGP 是 Philip R. Zimmermann 在 1991 年創造的對稱式加密法,其目的正是為了能夠在 BBS 上安全的儲存訊息以及檔案所創造的 之後在 1997 年,IE...

Back to top ↑

yubikey

GPG 與 YubiKey 的相遇之旅

category: random     20 minute read     Posted on:

PGP, OpenPGP and GPG - What’s The Difference Pretty Good Privacy - PGP 是 Philip R. Zimmermann 在 1991 年創造的對稱式加密法,其目的正是為了能夠在 BBS 上安全的儲存訊息以及檔案所創造的 之後在 1997 年,IE...

Back to top ↑

osi

重新認識網路 - OSI 七層模型

category: network     5 minute read     Posted on:

Introduction OSI 七層模型是由 國際電信聯盟電信標準化部門 - ITU-T 與 國際標準組織 - ISO 於 1989 年制定的 開放式系統互聯模型 標準的部份目前我有看到兩個版本 ISO/IEC 7498 - 1989 第一版 ISO/IEC 7498 - 1994 第二版

Back to top ↑

rfc

重新認識網路 - OSI 七層模型

category: network     5 minute read     Posted on:

Introduction OSI 七層模型是由 國際電信聯盟電信標準化部門 - ITU-T 與 國際標準組織 - ISO 於 1989 年制定的 開放式系統互聯模型 標準的部份目前我有看到兩個版本 ISO/IEC 7498 - 1989 第一版 ISO/IEC 7498 - 1994 第二版

Back to top ↑

endian

重新認識網路 - OSI 七層模型

category: network     5 minute read     Posted on:

Introduction OSI 七層模型是由 國際電信聯盟電信標準化部門 - ITU-T 與 國際標準組織 - ISO 於 1989 年制定的 開放式系統互聯模型 標準的部份目前我有看到兩個版本 ISO/IEC 7498 - 1989 第一版 ISO/IEC 7498 - 1994 第二版

Back to top ↑

http0.9

重新認識網路 - HTTP1 與他的小夥伴們

category: network     15 minute read     Posted on:

Introduction 在 1989 年,Tim Berners-Lee 提出了跨網路交換超文本資料的初始架構 它包含了以下 超文本資料: HTML 傳輸協議: HTTP Client 以及 Server 直到 1990, 以上規範大致上都完成了 1991 年世界上第一台 server 正式開始啟...

Back to top ↑

http1.0

重新認識網路 - HTTP1 與他的小夥伴們

category: network     15 minute read     Posted on:

Introduction 在 1989 年,Tim Berners-Lee 提出了跨網路交換超文本資料的初始架構 它包含了以下 超文本資料: HTML 傳輸協議: HTTP Client 以及 Server 直到 1990, 以上規範大致上都完成了 1991 年世界上第一台 server 正式開始啟...

Back to top ↑

http1.1

重新認識網路 - HTTP1 與他的小夥伴們

category: network     15 minute read     Posted on:

Introduction 在 1989 年,Tim Berners-Lee 提出了跨網路交換超文本資料的初始架構 它包含了以下 超文本資料: HTML 傳輸協議: HTTP Client 以及 Server 直到 1990, 以上規範大致上都完成了 1991 年世界上第一台 server 正式開始啟...

Back to top ↑

etag

重新認識網路 - HTTP1 與他的小夥伴們

category: network     15 minute read     Posted on:

Introduction 在 1989 年,Tim Berners-Lee 提出了跨網路交換超文本資料的初始架構 它包含了以下 超文本資料: HTML 傳輸協議: HTTP Client 以及 Server 直到 1990, 以上規範大致上都完成了 1991 年世界上第一台 server 正式開始啟...

Back to top ↑

nginx

重新認識網路 - HTTP1 與他的小夥伴們

category: network     15 minute read     Posted on:

Introduction 在 1989 年,Tim Berners-Lee 提出了跨網路交換超文本資料的初始架構 它包含了以下 超文本資料: HTML 傳輸協議: HTTP Client 以及 Server 直到 1990, 以上規範大致上都完成了 1991 年世界上第一台 server 正式開始啟...

Back to top ↑

TDD

DevOps - 單元測試 Unit Test

category: devops     7 minute read     Posted on:

Introduction to Testing 在軟體開發的過程當中,QA 測試其實是很重要的一個環節 有了 QA 驗證,可以確保程式不會因為不當的輸入而產生不如預期的結果

Back to top ↑

dual boot

單系統? 何不多系統

category: random     5 minute read     Posted on:

Multi System 多系統對於一般非資訊專業人士而言,基本上是一個不需要了解的知識 但是身為一個資訊專業人士,在某些情況下你可能會需要多開系統,比如說

Back to top ↑

rdp

資料庫 - Cache Strategies 與常見的 Solutions

category: database     7 minute read     Posted on:

Cache Cache 快取是在計算機當中最重要的概念 作為當今最有效加速的手段之一,其重要程度在作業系統、網頁伺服器以及資料庫當中都可以看到他的身影

Back to top ↑

aof

資料庫 - Cache Strategies 與常見的 Solutions

category: database     7 minute read     Posted on:

Cache Cache 快取是在計算機當中最重要的概念 作為當今最有效加速的手段之一,其重要程度在作業系統、網頁伺服器以及資料庫當中都可以看到他的身影

Back to top ↑

memory hierarchy

資料庫 - Cache Strategies 與常見的 Solutions

category: database     7 minute read     Posted on:

Cache Cache 快取是在計算機當中最重要的概念 作為當今最有效加速的手段之一,其重要程度在作業系統、網頁伺服器以及資料庫當中都可以看到他的身影

Back to top ↑

cache warming

資料庫 - Cache Strategies 與常見的 Solutions

category: database     7 minute read     Posted on:

Cache Cache 快取是在計算機當中最重要的概念 作為當今最有效加速的手段之一,其重要程度在作業系統、網頁伺服器以及資料庫當中都可以看到他的身影

Back to top ↑

cache aside

資料庫 - Cache Strategies 與常見的 Solutions

category: database     7 minute read     Posted on:

Cache Cache 快取是在計算機當中最重要的概念 作為當今最有效加速的手段之一,其重要程度在作業系統、網頁伺服器以及資料庫當中都可以看到他的身影

Back to top ↑

read through

資料庫 - Cache Strategies 與常見的 Solutions

category: database     7 minute read     Posted on:

Cache Cache 快取是在計算機當中最重要的概念 作為當今最有效加速的手段之一,其重要程度在作業系統、網頁伺服器以及資料庫當中都可以看到他的身影

Back to top ↑

write through

資料庫 - Cache Strategies 與常見的 Solutions

category: database     7 minute read     Posted on:

Cache Cache 快取是在計算機當中最重要的概念 作為當今最有效加速的手段之一,其重要程度在作業系統、網頁伺服器以及資料庫當中都可以看到他的身影

Back to top ↑

write back

資料庫 - Cache Strategies 與常見的 Solutions

category: database     7 minute read     Posted on:

Cache Cache 快取是在計算機當中最重要的概念 作為當今最有效加速的手段之一,其重要程度在作業系統、網頁伺服器以及資料庫當中都可以看到他的身影

Back to top ↑

write around

資料庫 - Cache Strategies 與常見的 Solutions

category: database     7 minute read     Posted on:

Cache Cache 快取是在計算機當中最重要的概念 作為當今最有效加速的手段之一,其重要程度在作業系統、網頁伺服器以及資料庫當中都可以看到他的身影

Back to top ↑

memcached

資料庫 - Cache Strategies 與常見的 Solutions

category: database     7 minute read     Posted on:

Cache Cache 快取是在計算機當中最重要的概念 作為當今最有效加速的手段之一,其重要程度在作業系統、網頁伺服器以及資料庫當中都可以看到他的身影

Back to top ↑

isolation level

資料庫 - Transaction 與 Isolation

category: database     9 minute read     Posted on:

Transaction 根據 google translate 的結果我們可以得知,transaction 就是交易 那麼 交易 本身需要有什麼樣的特性呢?

Back to top ↑

orm

資料庫 - SQL N + 1 問題

category: database     2 minute read     Posted on:

Introduction to SQL N + 1 Problem 在使用 ORM 套件下,開發程式的過程中 你可能會不小心踩到所謂的 SQL N + 1 問題 假設你在開發一個社群網站 使用者可以發佈文章 現在你要實作一個功能 是要撈出所有符合條件的文章以及作者資訊(假設你想知道點讚數超過 10 的所有文章) ...

Back to top ↑

n+1

資料庫 - SQL N + 1 問題

category: database     2 minute read     Posted on:

Introduction to SQL N + 1 Problem 在使用 ORM 套件下,開發程式的過程中 你可能會不小心踩到所謂的 SQL N + 1 問題 假設你在開發一個社群網站 使用者可以發佈文章 現在你要實作一個功能 是要撈出所有符合條件的文章以及作者資訊(假設你想知道點讚數超過 10 的所有文章) ...

Back to top ↑

temp table

資料庫 - SQL N + 1 問題

category: database     2 minute read     Posted on:

Introduction to SQL N + 1 Problem 在使用 ORM 套件下,開發程式的過程中 你可能會不小心踩到所謂的 SQL N + 1 問題 假設你在開發一個社群網站 使用者可以發佈文章 現在你要實作一個功能 是要撈出所有符合條件的文章以及作者資訊(假設你想知道點讚數超過 10 的所有文章) ...

Back to top ↑

temporary table

資料庫 - SQL N + 1 問題

category: database     2 minute read     Posted on:

Introduction to SQL N + 1 Problem 在使用 ORM 套件下,開發程式的過程中 你可能會不小心踩到所謂的 SQL N + 1 問題 假設你在開發一個社群網站 使用者可以發佈文章 現在你要實作一個功能 是要撈出所有符合條件的文章以及作者資訊(假設你想知道點讚數超過 10 的所有文章) ...

Back to top ↑

histogram

資料庫 - Index 與 Histogram 篇

category: database     8 minute read     Posted on:

Speed up Search In Large Data

Back to top ↑

thread

Goroutine 與 Golang Runtime Scheduler

category: random     16 minute read     Posted on:

Process, Thread and Coroutine Process Process 是跑起來的 Program, 它擁有自己的 memory space, system resources 以及 system state 在系統開機之初,init process(pid 1) 被建立之後,就可以透過 fo...

Back to top ↑

scheduler

Goroutine 與 Golang Runtime Scheduler

category: random     16 minute read     Posted on:

Process, Thread and Coroutine Process Process 是跑起來的 Program, 它擁有自己的 memory space, system resources 以及 system state 在系統開機之初,init process(pid 1) 被建立之後,就可以透過 fo...

Back to top ↑

gm

Goroutine 與 Golang Runtime Scheduler

category: random     16 minute read     Posted on:

Process, Thread and Coroutine Process Process 是跑起來的 Program, 它擁有自己的 memory space, system resources 以及 system state 在系統開機之初,init process(pid 1) 被建立之後,就可以透過 fo...

Back to top ↑

gmp

Goroutine 與 Golang Runtime Scheduler

category: random     16 minute read     Posted on:

Process, Thread and Coroutine Process Process 是跑起來的 Program, 它擁有自己的 memory space, system resources 以及 system state 在系統開機之初,init process(pid 1) 被建立之後,就可以透過 fo...

Back to top ↑

work steal

Goroutine 與 Golang Runtime Scheduler

category: random     16 minute read     Posted on:

Process, Thread and Coroutine Process Process 是跑起來的 Program, 它擁有自己的 memory space, system resources 以及 system state 在系統開機之初,init process(pid 1) 被建立之後,就可以透過 fo...

Back to top ↑

jwt

網頁程式設計三兩事 - 不一樣的驗證思維 JWT(JSON Web Token)

category: website     11 minute read     Posted on:

Authorization 開發 API 的過程當中,我們提供了很多功能,其中可能包含較為隱私的功能(比如說,修改密碼,查詢個人資料等等的) 這個時候,你不會希望別人隨便修改你的密碼對吧? 所以就必須要驗證你的身份

Back to top ↑

session

網頁程式設計三兩事 - 不一樣的驗證思維 JWT(JSON Web Token)

category: website     11 minute read     Posted on:

Authorization 開發 API 的過程當中,我們提供了很多功能,其中可能包含較為隱私的功能(比如說,修改密碼,查詢個人資料等等的) 這個時候,你不會希望別人隨便修改你的密碼對吧? 所以就必須要驗證你的身份

Back to top ↑

jws

網頁程式設計三兩事 - 不一樣的驗證思維 JWT(JSON Web Token)

category: website     11 minute read     Posted on:

Authorization 開發 API 的過程當中,我們提供了很多功能,其中可能包含較為隱私的功能(比如說,修改密碼,查詢個人資料等等的) 這個時候,你不會希望別人隨便修改你的密碼對吧? 所以就必須要驗證你的身份

Back to top ↑

jwe

網頁程式設計三兩事 - 不一樣的驗證思維 JWT(JSON Web Token)

category: website     11 minute read     Posted on:

Authorization 開發 API 的過程當中,我們提供了很多功能,其中可能包含較為隱私的功能(比如說,修改密碼,查詢個人資料等等的) 這個時候,你不會希望別人隨便修改你的密碼對吧? 所以就必須要驗證你的身份

Back to top ↑

jwk

網頁程式設計三兩事 - 不一樣的驗證思維 JWT(JSON Web Token)

category: website     11 minute read     Posted on:

Authorization 開發 API 的過程當中,我們提供了很多功能,其中可能包含較為隱私的功能(比如說,修改密碼,查詢個人資料等等的) 這個時候,你不會希望別人隨便修改你的密碼對吧? 所以就必須要驗證你的身份

Back to top ↑

oauth

網頁程式設計三兩事 - 不一樣的驗證思維 JWT(JSON Web Token)

category: website     11 minute read     Posted on:

Authorization 開發 API 的過程當中,我們提供了很多功能,其中可能包含較為隱私的功能(比如說,修改密碼,查詢個人資料等等的) 這個時候,你不會希望別人隨便修改你的密碼對吧? 所以就必須要驗證你的身份

Back to top ↑

realm

網頁程式設計三兩事 - 不一樣的驗證思維 JWT(JSON Web Token)

category: website     11 minute read     Posted on:

Authorization 開發 API 的過程當中,我們提供了很多功能,其中可能包含較為隱私的功能(比如說,修改密碼,查詢個人資料等等的) 這個時候,你不會希望別人隨便修改你的密碼對吧? 所以就必須要驗證你的身份

Back to top ↑

authorization

網頁程式設計三兩事 - 不一樣的驗證思維 JWT(JSON Web Token)

category: website     11 minute read     Posted on:

Authorization 開發 API 的過程當中,我們提供了很多功能,其中可能包含較為隱私的功能(比如說,修改密碼,查詢個人資料等等的) 這個時候,你不會希望別人隨便修改你的密碼對吧? 所以就必須要驗證你的身份

Back to top ↑

cors

網頁程式設計三兩事 - 萬惡的 Same Origin 與 CORS

category: website     5 minute read     Posted on:

Preface 我最初遇到 CORS 的問題是在我的個人部落格上面,因為我引用了其他網站的圖片 某一天我突然發現圖片跑不出來了? 思來想去我應該也沒有改到程式碼才對 後來看了一下發現好像是 CORS 的問題 所以今天要來講講 CORS

Back to top ↑

website

網頁程式設計三兩事 - 萬惡的 Same Origin 與 CORS

category: website     5 minute read     Posted on:

Preface 我最初遇到 CORS 的問題是在我的個人部落格上面,因為我引用了其他網站的圖片 某一天我突然發現圖片跑不出來了? 思來想去我應該也沒有改到程式碼才對 後來看了一下發現好像是 CORS 的問題 所以今天要來講講 CORS

Back to top ↑

preflight request

網頁程式設計三兩事 - 萬惡的 Same Origin 與 CORS

category: website     5 minute read     Posted on:

Preface 我最初遇到 CORS 的問題是在我的個人部落格上面,因為我引用了其他網站的圖片 某一天我突然發現圖片跑不出來了? 思來想去我應該也沒有改到程式碼才對 後來看了一下發現好像是 CORS 的問題 所以今天要來講講 CORS

Back to top ↑

same origin

網頁程式設計三兩事 - 萬惡的 Same Origin 與 CORS

category: website     5 minute read     Posted on:

Preface 我最初遇到 CORS 的問題是在我的個人部落格上面,因為我引用了其他網站的圖片 某一天我突然發現圖片跑不出來了? 思來想去我應該也沒有改到程式碼才對 後來看了一下發現好像是 CORS 的問題 所以今天要來講講 CORS

Back to top ↑

chrome

網頁程式設計三兩事 - 萬惡的 Same Origin 與 CORS

category: website     5 minute read     Posted on:

Preface 我最初遇到 CORS 的問題是在我的個人部落格上面,因為我引用了其他網站的圖片 某一天我突然發現圖片跑不出來了? 思來想去我應該也沒有改到程式碼才對 後來看了一下發現好像是 CORS 的問題 所以今天要來講講 CORS

Back to top ↑

hooks

邁向 Angular 前端工程師之路 - Lifecycle Hooks

category: angular     3 minute read     Posted on:

Why do we Need Lifecycle Hook Angular 在一開始初始化 component,他的生命週期就開始了 為了使 component 更人性化一點,舉例來說我們希望在特定的時間做特定的事情 當資料改變的時候,我們希望重新 render 畫面,這時候 lifecycle hook 就很好...

Back to top ↑

obfuscation

邁向 Angular 前端工程師之路 - Obfuscation

category: angular     4 minute read     Posted on:

How Frontend Application Run in Real Life ref: [javascript]如何用chrome,ie去debug javascript

Back to top ↑

hardhat

從 0 認識 Blockchain - Hardhat 全攻略

category: blockchain     7 minute read     Posted on:

Introduction to Hardhat ref: NomicFoundation/hardhat

Back to top ↑

block

從 0 認識 Blockchain - Transaction 以及你該知道的一切

category: blockchain     10 minute read     Posted on:

How does Blockchain Works 複習一下 blockchain 是如何運作的 blockchain 是由多個節點所組成的分散式計算網路 每個節點都嚴格遵循共識機制,共同維護區塊鏈上的資料

Back to top ↑

observer

設計模式 101 - Observer Pattern

category: design pattern     2 minute read     Posted on:

Observer Pattern 程式設計中,時常會需要處理到所謂的 “事件” 這些的事件的出現是 隨機的, 亦即你沒辦法判定何時何地會突然有一個事件送進來

Back to top ↑

observable

設計模式 101 - Observer Pattern

category: design pattern     2 minute read     Posted on:

Observer Pattern 程式設計中,時常會需要處理到所謂的 “事件” 這些的事件的出現是 隨機的, 亦即你沒辦法判定何時何地會突然有一個事件送進來

Back to top ↑

subject

設計模式 101 - Observer Pattern

category: design pattern     2 minute read     Posted on:

Observer Pattern 程式設計中,時常會需要處理到所謂的 “事件” 這些的事件的出現是 隨機的, 亦即你沒辦法判定何時何地會突然有一個事件送進來

Back to top ↑

topic

設計模式 101 - Observer Pattern

category: design pattern     2 minute read     Posted on:

Observer Pattern 程式設計中,時常會需要處理到所謂的 “事件” 這些的事件的出現是 隨機的, 亦即你沒辦法判定何時何地會突然有一個事件送進來

Back to top ↑

vscode

設定你的 Remote VS Code Server

category: random     4 minute read     Posted on:

Preface 對於一個無時無刻都想寫 code 的工程師來說 如果能用手機,平板等等的設備開發,豈不美哉

Back to top ↑

decorator

設計模式 101 - Decorator Pattern

category: design pattern     3 minute read     Posted on:

Benchmark Time Elapsed 讓我們先從簡單的一個例子看起 ```python import grpc import time from proto import echo_pb2 from proto import echo_pb2_grpc

Back to top ↑

query

資料庫 - 更好的分頁機制 Cursor Based Pagination

category: database     3 minute read     Posted on:

Pagination Mechanism 相信一般做開發的,尤其是網頁相關 當資料量太大的時候,我們多半會選擇將資料切成多個部份傳輸 也就是分頁的機制

Back to top ↑

pagination

資料庫 - 更好的分頁機制 Cursor Based Pagination

category: database     3 minute read     Posted on:

Pagination Mechanism 相信一般做開發的,尤其是網頁相關 當資料量太大的時候,我們多半會選擇將資料切成多個部份傳輸 也就是分頁的機制

Back to top ↑

CAP

資料庫 - 初探分散式資料庫

category: database     4 minute read     Posted on:

Distributed System Scale Out(Horizontal Scale) 的概念是利用多台電腦組成一個龐大的網路,進行運算提供服務 這個網路,稱為 cluster

Back to top ↑

single leader

資料庫 - 初探分散式資料庫

category: database     4 minute read     Posted on:

Distributed System Scale Out(Horizontal Scale) 的概念是利用多台電腦組成一個龐大的網路,進行運算提供服務 這個網路,稱為 cluster

Back to top ↑

multi leader

資料庫 - 初探分散式資料庫

category: database     4 minute read     Posted on:

Distributed System Scale Out(Horizontal Scale) 的概念是利用多台電腦組成一個龐大的網路,進行運算提供服務 這個網路,稱為 cluster

Back to top ↑

scale up

資料庫 - 初探分散式資料庫

category: database     4 minute read     Posted on:

Distributed System Scale Out(Horizontal Scale) 的概念是利用多台電腦組成一個龐大的網路,進行運算提供服務 這個網路,稱為 cluster

Back to top ↑

scale out

資料庫 - 初探分散式資料庫

category: database     4 minute read     Posted on:

Distributed System Scale Out(Horizontal Scale) 的概念是利用多台電腦組成一個龐大的網路,進行運算提供服務 這個網路,稱為 cluster

Back to top ↑

leaderless

資料庫 - 初探分散式資料庫

category: database     4 minute read     Posted on:

Distributed System Scale Out(Horizontal Scale) 的概念是利用多台電腦組成一個龐大的網路,進行運算提供服務 這個網路,稱為 cluster

Back to top ↑

sequential io

資料庫 - 初探分散式資料庫

category: database     4 minute read     Posted on:

Distributed System Scale Out(Horizontal Scale) 的概念是利用多台電腦組成一個龐大的網路,進行運算提供服務 這個網路,稱為 cluster

Back to top ↑

random io

資料庫 - 初探分散式資料庫

category: database     4 minute read     Posted on:

Distributed System Scale Out(Horizontal Scale) 的概念是利用多台電腦組成一個龐大的網路,進行運算提供服務 這個網路,稱為 cluster

Back to top ↑

quorum consensus

資料庫 - 初探分散式資料庫

category: database     4 minute read     Posted on:

Distributed System Scale Out(Horizontal Scale) 的概念是利用多台電腦組成一個龐大的網路,進行運算提供服務 這個網路,稱為 cluster

Back to top ↑

raft consensus

資料庫 - 初探分散式資料庫

category: database     4 minute read     Posted on:

Distributed System Scale Out(Horizontal Scale) 的概念是利用多台電腦組成一個龐大的網路,進行運算提供服務 這個網路,稱為 cluster

Back to top ↑

swagger

如何正確模組化你的 OpenAPI 文件,以及如何建立 Mock Server

category: random     5 minute read     Posted on:

Preface

Back to top ↑

openapi

如何正確模組化你的 OpenAPI 文件,以及如何建立 Mock Server

category: random     5 minute read     Posted on:

Preface

Back to top ↑

swagger-ui

如何正確模組化你的 OpenAPI 文件,以及如何建立 Mock Server

category: random     5 minute read     Posted on:

Preface

Back to top ↑

mock server

如何正確模組化你的 OpenAPI 文件,以及如何建立 Mock Server

category: random     5 minute read     Posted on:

Preface

Back to top ↑

json pointer

如何正確模組化你的 OpenAPI 文件,以及如何建立 Mock Server

category: random     5 minute read     Posted on:

Preface

Back to top ↑

mysql

資料庫 - 從 MySQL 到 PostgreSQL 一些新手會遇到的問題

category: database     14 minute read     Posted on:

Preface 作為用了 MySQL 五年之久的我,原本以為同為 SQL 在語法上的差異不會影響到太多 實際上手之後,發現還是有點差異

Back to top ↑

sql standard

資料庫 - 從 MySQL 到 PostgreSQL 一些新手會遇到的問題

category: database     14 minute read     Posted on:

Preface 作為用了 MySQL 五年之久的我,原本以為同為 SQL 在語法上的差異不會影響到太多 實際上手之後,發現還是有點差異

Back to top ↑

array

神奇的演算法 - Monotonic Stack

category: algorithm     2 minute read     Posted on:

Preface 千言萬語都比不上一個真實的範例

Back to top ↑

stack

神奇的演算法 - Monotonic Stack

category: algorithm     2 minute read     Posted on:

Preface 千言萬語都比不上一個真實的範例

Back to top ↑

monotonic

神奇的演算法 - Monotonic Stack

category: algorithm     2 minute read     Posted on:

Preface 千言萬語都比不上一個真實的範例

Back to top ↑

gist

資料庫 - PostgreSQL 使用 Fuzzy Search 的效能測試

category: database     9 minute read     Posted on:

Introduction to Fuzzy Search 就是字串匹配,只不過它即使是沒有完全的把字拼對,也可以找的到

Back to top ↑

pg_trgm

資料庫 - PostgreSQL 使用 Fuzzy Search 的效能測試

category: database     9 minute read     Posted on:

Introduction to Fuzzy Search 就是字串匹配,只不過它即使是沒有完全的把字拼對,也可以找的到

Back to top ↑

integration test

DevOps - 整合測試 Integration Test

category: devops     5 minute read     Posted on:

Introduction to Integration Test 光是擁有 unit test,其實是不夠的 因為 unit test 測試的範圍只有 function 本身 跨 function 之間的整合,是沒有涵蓋到的

Back to top ↑

e2e test

DevOps - 整合測試 Integration Test

category: devops     5 minute read     Posted on:

Introduction to Integration Test 光是擁有 unit test,其實是不夠的 因為 unit test 測試的範圍只有 function 本身 跨 function 之間的整合,是沒有涵蓋到的

Back to top ↑

isolation

DevOps - 整合測試 Integration Test

category: devops     5 minute read     Posted on:

Introduction to Integration Test 光是擁有 unit test,其實是不夠的 因為 unit test 測試的範圍只有 function 本身 跨 function 之間的整合,是沒有涵蓋到的

Back to top ↑

backtracking

神奇的演算法 - Backtracking 與 Divide and Conquer

category: algorithm     1 minute read     Posted on:

Algorithm Brainstorming 直接看題目比較快,LeetCode 93. Restore IP Addresses 根據題目要求,給定一個只有數字的字串,找出所有合法的 ip address 的組合

Back to top ↑

divide-and-conquer

神奇的演算法 - Backtracking 與 Divide and Conquer

category: algorithm     1 minute read     Posted on:

Algorithm Brainstorming 直接看題目比較快,LeetCode 93. Restore IP Addresses 根據題目要求,給定一個只有數字的字串,找出所有合法的 ip address 的組合

Back to top ↑

recursion

神奇的演算法 - Backtracking 與 Divide and Conquer

category: algorithm     1 minute read     Posted on:

Algorithm Brainstorming 直接看題目比較快,LeetCode 93. Restore IP Addresses 根據題目要求,給定一個只有數字的字串,找出所有合法的 ip address 的組合

Back to top ↑

fixed point

浮點數 - 如何解決精度問題以及其原理

category: random     4 minute read     Posted on:

Preface ref: Damn you floating point binary addition, you’ve caused me tons of bugs over the years

Back to top ↑

ieee754

浮點數 - 如何解決精度問題以及其原理

category: random     4 minute read     Posted on:

Preface ref: Damn you floating point binary addition, you’ve caused me tons of bugs over the years

Back to top ↑

floating point

浮點數 - 如何解決精度問題以及其原理

category: random     4 minute read     Posted on:

Preface ref: Damn you floating point binary addition, you’ve caused me tons of bugs over the years

Back to top ↑

binary

浮點數 - 如何解決精度問題以及其原理

category: random     4 minute read     Posted on:

Preface ref: Damn you floating point binary addition, you’ve caused me tons of bugs over the years

Back to top ↑

overflow

浮點數 - 如何解決精度問題以及其原理

category: random     4 minute read     Posted on:

Preface ref: Damn you floating point binary addition, you’ve caused me tons of bugs over the years

Back to top ↑

underflow

浮點數 - 如何解決精度問題以及其原理

category: random     4 minute read     Posted on:

Preface ref: Damn you floating point binary addition, you’ve caused me tons of bugs over the years

Back to top ↑

message queue

資料庫 - 從 Apache Kafka 認識 Message Queue

category: database     15 minute read     Posted on:

Preface message queue 顧名思義他是一個 queue,用來存放 message 的 你可以用 Inter-Process Communication 的概念去思考它 基本上就是提供一個空間或是,讓兩個 process 進行通訊

Back to top ↑

consumer

資料庫 - 從 Apache Kafka 認識 Message Queue

category: database     15 minute read     Posted on:

Preface message queue 顧名思義他是一個 queue,用來存放 message 的 你可以用 Inter-Process Communication 的概念去思考它 基本上就是提供一個空間或是,讓兩個 process 進行通訊

Back to top ↑

producer

資料庫 - 從 Apache Kafka 認識 Message Queue

category: database     15 minute read     Posted on:

Preface message queue 顧名思義他是一個 queue,用來存放 message 的 你可以用 Inter-Process Communication 的概念去思考它 基本上就是提供一個空間或是,讓兩個 process 進行通訊

Back to top ↑

kafka

資料庫 - 從 Apache Kafka 認識 Message Queue

category: database     15 minute read     Posted on:

Preface message queue 顧名思義他是一個 queue,用來存放 message 的 你可以用 Inter-Process Communication 的概念去思考它 基本上就是提供一個空間或是,讓兩個 process 進行通訊

Back to top ↑

amqp

資料庫 - 從 Apache Kafka 認識 Message Queue

category: database     15 minute read     Posted on:

Preface message queue 顧名思義他是一個 queue,用來存放 message 的 你可以用 Inter-Process Communication 的概念去思考它 基本上就是提供一個空間或是,讓兩個 process 進行通訊

Back to top ↑

mqtt

資料庫 - 從 Apache Kafka 認識 Message Queue

category: database     15 minute read     Posted on:

Preface message queue 顧名思義他是一個 queue,用來存放 message 的 你可以用 Inter-Process Communication 的概念去思考它 基本上就是提供一個空間或是,讓兩個 process 進行通訊

Back to top ↑

jms

資料庫 - 從 Apache Kafka 認識 Message Queue

category: database     15 minute read     Posted on:

Preface message queue 顧名思義他是一個 queue,用來存放 message 的 你可以用 Inter-Process Communication 的概念去思考它 基本上就是提供一個空間或是,讓兩個 process 進行通訊

Back to top ↑

dlq

資料庫 - 從 Apache Kafka 認識 Message Queue

category: database     15 minute read     Posted on:

Preface message queue 顧名思義他是一個 queue,用來存放 message 的 你可以用 Inter-Process Communication 的概念去思考它 基本上就是提供一個空間或是,讓兩個 process 進行通訊

Back to top ↑

polling

淺談 Polling, Long Polling 以及其他即時通訊方法論

category: random     2 minute read     Posted on:

Polling polling 輪詢是最為簡單的一種作法 其核心概念為定時的發出 request 確認

Back to top ↑

long polling

淺談 Polling, Long Polling 以及其他即時通訊方法論

category: random     2 minute read     Posted on:

Polling polling 輪詢是最為簡單的一種作法 其核心概念為定時的發出 request 確認

Back to top ↑

webrtc

淺談 Polling, Long Polling 以及其他即時通訊方法論

category: random     2 minute read     Posted on:

Polling polling 輪詢是最為簡單的一種作法 其核心概念為定時的發出 request 確認

Back to top ↑

websocket

淺談 Polling, Long Polling 以及其他即時通訊方法論

category: random     2 minute read     Posted on:

Polling polling 輪詢是最為簡單的一種作法 其核心概念為定時的發出 request 確認

Back to top ↑

file descriptor

淺談 Polling, Long Polling 以及其他即時通訊方法論

category: random     2 minute read     Posted on:

Polling polling 輪詢是最為簡單的一種作法 其核心概念為定時的發出 request 確認

Back to top ↑

socket

淺談 Polling, Long Polling 以及其他即時通訊方法論

category: random     2 minute read     Posted on:

Polling polling 輪詢是最為簡單的一種作法 其核心概念為定時的發出 request 確認

Back to top ↑

data migration

資料庫 - 新手做 Data Migration 資料遷移

category: database     1 minute read     Posted on:

Preface 資料搬遷,在現代軟體服務當中屬於較為常見的一種需求 不論是單純的機器之間的搬資料抑或者是因應商業邏輯而需要做的資料搬遷 都是屬於 Data Migration

Back to top ↑

greedy

神奇的演算法 - Greedy Algorithm

category: algorithm     2 minute read     Posted on:

Preface 還記得之前上演算法的時候,最看不懂的東西就是貪婪法了 不過其實他的核心概念很簡單,寫起來也簡單 趁著還記得細節的時候,把它紀錄起來

Back to top ↑

infrastructure as code

DevOps - 成就完美的自動化 IaC 與 CaC

category: devops     1 minute read     Posted on:

Infrastructure 當軟體開發完成之後,Infra 對於整體運作來說是很重要的 沒有基礎設施,如網路,電腦以及儲存空間,我們將沒辦法提供服務

Back to top ↑

configuration as code

DevOps - 成就完美的自動化 IaC 與 CaC

category: devops     1 minute read     Posted on:

Infrastructure 當軟體開發完成之後,Infra 對於整體運作來說是很重要的 沒有基礎設施,如網路,電腦以及儲存空間,我們將沒辦法提供服務

Back to top ↑

iac

DevOps - 成就完美的自動化 IaC 與 CaC

category: devops     1 minute read     Posted on:

Infrastructure 當軟體開發完成之後,Infra 對於整體運作來說是很重要的 沒有基礎設施,如網路,電腦以及儲存空間,我們將沒辦法提供服務

Back to top ↑

cac

DevOps - 成就完美的自動化 IaC 與 CaC

category: devops     1 minute read     Posted on:

Infrastructure 當軟體開發完成之後,Infra 對於整體運作來說是很重要的 沒有基礎設施,如網路,電腦以及儲存空間,我們將沒辦法提供服務

Back to top ↑

pm2

DevOps - 成就完美的自動化 IaC 與 CaC

category: devops     1 minute read     Posted on:

Infrastructure 當軟體開發完成之後,Infra 對於整體運作來說是很重要的 沒有基礎設施,如網路,電腦以及儲存空間,我們將沒辦法提供服務

Back to top ↑

logging

網頁程式設計三兩事 - Logging 最佳實踐

category: website     2 minute read     Posted on:

Introduction to Logging log 對於現今電腦系統來說是一個至關重要的資訊檔案 救援回復以及修 bug 其實都離不開 log

Back to top ↑

contextual logging

網頁程式設計三兩事 - Logging 最佳實踐

category: website     2 minute read     Posted on:

Introduction to Logging log 對於現今電腦系統來說是一個至關重要的資訊檔案 救援回復以及修 bug 其實都離不開 log

Back to top ↑

slack

網頁程式設計三兩事 - Logging 最佳實踐

category: website     2 minute read     Posted on:

Introduction to Logging log 對於現今電腦系統來說是一個至關重要的資訊檔案 救援回復以及修 bug 其實都離不開 log

Back to top ↑

sentry

網頁程式設計三兩事 - Logging 最佳實踐

category: website     2 minute read     Posted on:

Introduction to Logging log 對於現今電腦系統來說是一個至關重要的資訊檔案 救援回復以及修 bug 其實都離不開 log

Back to top ↑

integration

網頁程式設計三兩事 - Logging 最佳實踐

category: website     2 minute read     Posted on:

Introduction to Logging log 對於現今電腦系統來說是一個至關重要的資訊檔案 救援回復以及修 bug 其實都離不開 log

Back to top ↑

archive

網頁程式設計三兩事 - Logging 最佳實踐

category: website     2 minute read     Posted on:

Introduction to Logging log 對於現今電腦系統來說是一個至關重要的資訊檔案 救援回復以及修 bug 其實都離不開 log

Back to top ↑

log rotation

網頁程式設計三兩事 - Logging 最佳實踐

category: website     2 minute read     Posted on:

Introduction to Logging log 對於現今電腦系統來說是一個至關重要的資訊檔案 救援回復以及修 bug 其實都離不開 log

Back to top ↑

logrotate

網頁程式設計三兩事 - Logging 最佳實踐

category: website     2 minute read     Posted on:

Introduction to Logging log 對於現今電腦系統來說是一個至關重要的資訊檔案 救援回復以及修 bug 其實都離不開 log

Back to top ↑

log4j

網頁程式設計三兩事 - Logging 最佳實踐

category: website     2 minute read     Posted on:

Introduction to Logging log 對於現今電腦系統來說是一個至關重要的資訊檔案 救援回復以及修 bug 其實都離不開 log

Back to top ↑

wallet

從 0 認識 Blockchain - 錢包基礎原理

category: blockchain     1 minute read     Posted on:

Preface 加密貨幣涉及了很多密碼學相關的知識 其中錢包這裡佔了滿多部份的 這篇文章會盡量的用簡單的方式來說明 跟我一起看看吧

Back to top ↑

seed

從 0 認識 Blockchain - 錢包基礎原理

category: blockchain     1 minute read     Posted on:

Preface 加密貨幣涉及了很多密碼學相關的知識 其中錢包這裡佔了滿多部份的 這篇文章會盡量的用簡單的方式來說明 跟我一起看看吧

Back to top ↑

hash

從 0 認識 Blockchain - 錢包基礎原理

category: blockchain     1 minute read     Posted on:

Preface 加密貨幣涉及了很多密碼學相關的知識 其中錢包這裡佔了滿多部份的 這篇文章會盡量的用簡單的方式來說明 跟我一起看看吧

Back to top ↑

mnemonic

從 0 認識 Blockchain - 錢包基礎原理

category: blockchain     1 minute read     Posted on:

Preface 加密貨幣涉及了很多密碼學相關的知識 其中錢包這裡佔了滿多部份的 這篇文章會盡量的用簡單的方式來說明 跟我一起看看吧

Back to top ↑

wordlist

從 0 認識 Blockchain - 錢包基礎原理

category: blockchain     1 minute read     Posted on:

Preface 加密貨幣涉及了很多密碼學相關的知識 其中錢包這裡佔了滿多部份的 這篇文章會盡量的用簡單的方式來說明 跟我一起看看吧

Back to top ↑

bitcoin

從 0 認識 Blockchain - 錢包基礎原理

category: blockchain     1 minute read     Posted on:

Preface 加密貨幣涉及了很多密碼學相關的知識 其中錢包這裡佔了滿多部份的 這篇文章會盡量的用簡單的方式來說明 跟我一起看看吧

Back to top ↑

master key

從 0 認識 Blockchain - 錢包基礎原理

category: blockchain     1 minute read     Posted on:

Preface 加密貨幣涉及了很多密碼學相關的知識 其中錢包這裡佔了滿多部份的 這篇文章會盡量的用簡單的方式來說明 跟我一起看看吧

Back to top ↑

hierarchical deterministic wallet

從 0 認識 Blockchain - 錢包基礎原理

category: blockchain     1 minute read     Posted on:

Preface 加密貨幣涉及了很多密碼學相關的知識 其中錢包這裡佔了滿多部份的 這篇文章會盡量的用簡單的方式來說明 跟我一起看看吧

Back to top ↑

deterministic wallet

從 0 認識 Blockchain - 錢包基礎原理

category: blockchain     1 minute read     Posted on:

Preface 加密貨幣涉及了很多密碼學相關的知識 其中錢包這裡佔了滿多部份的 這篇文章會盡量的用簡單的方式來說明 跟我一起看看吧

Back to top ↑

udp

重新認識網路 - 從基礎開始

category: network     11 minute read     Posted on:

DNS - Domain Name System Domain Name System 是一個分散式的系統,用於紀錄網域名稱和 IP 位址之間的關聯 基本上現今我們在瀏覽網站的時候,多半是使用所謂的 domain name 上網的 比方說 google.com, facebook.com

Back to top ↑

ssl

重新認識網路 - 從基礎開始

category: network     11 minute read     Posted on:

DNS - Domain Name System Domain Name System 是一個分散式的系統,用於紀錄網域名稱和 IP 位址之間的關聯 基本上現今我們在瀏覽網站的時候,多半是使用所謂的 domain name 上網的 比方說 google.com, facebook.com

Back to top ↑

tls

重新認識網路 - 從基礎開始

category: network     11 minute read     Posted on:

DNS - Domain Name System Domain Name System 是一個分散式的系統,用於紀錄網域名稱和 IP 位址之間的關聯 基本上現今我們在瀏覽網站的時候,多半是使用所謂的 domain name 上網的 比方說 google.com, facebook.com

Back to top ↑

dns

重新認識網路 - 從基礎開始

category: network     11 minute read     Posted on:

DNS - Domain Name System Domain Name System 是一個分散式的系統,用於紀錄網域名稱和 IP 位址之間的關聯 基本上現今我們在瀏覽網站的時候,多半是使用所謂的 domain name 上網的 比方說 google.com, facebook.com

Back to top ↑

nc

重新認識網路 - 從基礎開始

category: network     11 minute read     Posted on:

DNS - Domain Name System Domain Name System 是一個分散式的系統,用於紀錄網域名稱和 IP 位址之間的關聯 基本上現今我們在瀏覽網站的時候,多半是使用所謂的 domain name 上網的 比方說 google.com, facebook.com

Back to top ↑

tcpdump

重新認識網路 - 從基礎開始

category: network     11 minute read     Posted on:

DNS - Domain Name System Domain Name System 是一個分散式的系統,用於紀錄網域名稱和 IP 位址之間的關聯 基本上現今我們在瀏覽網站的時候,多半是使用所謂的 domain name 上網的 比方說 google.com, facebook.com

Back to top ↑

wireshark

重新認識網路 - 從基礎開始

category: network     11 minute read     Posted on:

DNS - Domain Name System Domain Name System 是一個分散式的系統,用於紀錄網域名稱和 IP 位址之間的關聯 基本上現今我們在瀏覽網站的時候,多半是使用所謂的 domain name 上網的 比方說 google.com, facebook.com

Back to top ↑

broadcast

重新認識網路 - 從基礎開始

category: network     11 minute read     Posted on:

DNS - Domain Name System Domain Name System 是一個分散式的系統,用於紀錄網域名稱和 IP 位址之間的關聯 基本上現今我們在瀏覽網站的時候,多半是使用所謂的 domain name 上網的 比方說 google.com, facebook.com

Back to top ↑

load balance

重新認識網路 - 從基礎開始

category: network     11 minute read     Posted on:

DNS - Domain Name System Domain Name System 是一個分散式的系統,用於紀錄網域名稱和 IP 位址之間的關聯 基本上現今我們在瀏覽網站的時候,多半是使用所謂的 domain name 上網的 比方說 google.com, facebook.com

Back to top ↑

ip

重新認識網路 - 從基礎開始

category: network     11 minute read     Posted on:

DNS - Domain Name System Domain Name System 是一個分散式的系統,用於紀錄網域名稱和 IP 位址之間的關聯 基本上現今我們在瀏覽網站的時候,多半是使用所謂的 domain name 上網的 比方說 google.com, facebook.com

Back to top ↑

telnet

重新認識網路 - 從基礎開始

category: network     11 minute read     Posted on:

DNS - Domain Name System Domain Name System 是一個分散式的系統,用於紀錄網域名稱和 IP 位址之間的關聯 基本上現今我們在瀏覽網站的時候,多半是使用所謂的 domain name 上網的 比方說 google.com, facebook.com

Back to top ↑

multicast

重新認識網路 - 從基礎開始

category: network     11 minute read     Posted on:

DNS - Domain Name System Domain Name System 是一個分散式的系統,用於紀錄網域名稱和 IP 位址之間的關聯 基本上現今我們在瀏覽網站的時候,多半是使用所謂的 domain name 上網的 比方說 google.com, facebook.com

Back to top ↑

unicast

重新認識網路 - 從基礎開始

category: network     11 minute read     Posted on:

DNS - Domain Name System Domain Name System 是一個分散式的系統,用於紀錄網域名稱和 IP 位址之間的關聯 基本上現今我們在瀏覽網站的時候,多半是使用所謂的 domain name 上網的 比方說 google.com, facebook.com

Back to top ↑

cname

重新認識網路 - 從基礎開始

category: network     11 minute read     Posted on:

DNS - Domain Name System Domain Name System 是一個分散式的系統,用於紀錄網域名稱和 IP 位址之間的關聯 基本上現今我們在瀏覽網站的時候,多半是使用所謂的 domain name 上網的 比方說 google.com, facebook.com

Back to top ↑

dynamic programming

神奇的演算法 - 動態規劃 Dynamic Programming

category: algorithm     5 minute read     Posted on:

Preface 動態規劃一直是我覺的不容易掌握的演算法技巧,它不像其他演算法技巧有一個固定的模式,而是一種思維方式 題目的靈活性高,不太容易掌握

Back to top ↑

dp

神奇的演算法 - 動態規劃 Dynamic Programming

category: algorithm     5 minute read     Posted on:

Preface 動態規劃一直是我覺的不容易掌握的演算法技巧,它不像其他演算法技巧有一個固定的模式,而是一種思維方式 題目的靈活性高,不太容易掌握

Back to top ↑

javascript

理解 Node.js 中非同步處理與 Event Loop 的關係

category: random     6 minute read     Posted on:

Preface 1 2 3 4 5 6 7 8 9 10 (() => { setTimeout(() => { console.log(1) }) Promise.resolve().then(() => { console.log(2) }) consol...

Back to top ↑

event loop

理解 Node.js 中非同步處理與 Event Loop 的關係

category: random     6 minute read     Posted on:

Preface 1 2 3 4 5 6 7 8 9 10 (() => { setTimeout(() => { console.log(1) }) Promise.resolve().then(() => { console.log(2) }) consol...

Back to top ↑

first class function

理解 Node.js 中非同步處理與 Event Loop 的關係

category: random     6 minute read     Posted on:

Preface 1 2 3 4 5 6 7 8 9 10 (() => { setTimeout(() => { console.log(1) }) Promise.resolve().then(() => { console.log(2) }) consol...

Back to top ↑

closure

理解 Node.js 中非同步處理與 Event Loop 的關係

category: random     6 minute read     Posted on:

Preface 1 2 3 4 5 6 7 8 9 10 (() => { setTimeout(() => { console.log(1) }) Promise.resolve().then(() => { console.log(2) }) consol...

Back to top ↑

callback

理解 Node.js 中非同步處理與 Event Loop 的關係

category: random     6 minute read     Posted on:

Preface 1 2 3 4 5 6 7 8 9 10 (() => { setTimeout(() => { console.log(1) }) Promise.resolve().then(() => { console.log(2) }) consol...

Back to top ↑

microtask queue

理解 Node.js 中非同步處理與 Event Loop 的關係

category: random     6 minute read     Posted on:

Preface 1 2 3 4 5 6 7 8 9 10 (() => { setTimeout(() => { console.log(1) }) Promise.resolve().then(() => { console.log(2) }) consol...

Back to top ↑

macrotask queue

理解 Node.js 中非同步處理與 Event Loop 的關係

category: random     6 minute read     Posted on:

Preface 1 2 3 4 5 6 7 8 9 10 (() => { setTimeout(() => { console.log(1) }) Promise.resolve().then(() => { console.log(2) }) consol...

Back to top ↑

libuv

理解 Node.js 中非同步處理與 Event Loop 的關係

category: random     6 minute read     Posted on:

Preface 1 2 3 4 5 6 7 8 9 10 (() => { setTimeout(() => { console.log(1) }) Promise.resolve().then(() => { console.log(2) }) consol...

Back to top ↑

libeio

理解 Node.js 中非同步處理與 Event Loop 的關係

category: random     6 minute read     Posted on:

Preface 1 2 3 4 5 6 7 8 9 10 (() => { setTimeout(() => { console.log(1) }) Promise.resolve().then(() => { console.log(2) }) consol...

Back to top ↑

lexical scoping

理解 Node.js 中非同步處理與 Event Loop 的關係

category: random     6 minute read     Posted on:

Preface 1 2 3 4 5 6 7 8 9 10 (() => { setTimeout(() => { console.log(1) }) Promise.resolve().then(() => { console.log(2) }) consol...

Back to top ↑

solid

如何寫出好的程式碼架構

category: random     1 minute read     Posted on:

Preface 這個議題我覺的是軟體工程師的必經之路啦 本篇文章基本上就是紀錄我目前學到的一些東西以及方法

Back to top ↑

architecture

如何寫出好的程式碼架構

category: random     1 minute read     Posted on:

Preface 這個議題我覺的是軟體工程師的必經之路啦 本篇文章基本上就是紀錄我目前學到的一些東西以及方法

Back to top ↑

couple

如何寫出好的程式碼架構

category: random     1 minute read     Posted on:

Preface 這個議題我覺的是軟體工程師的必經之路啦 本篇文章基本上就是紀錄我目前學到的一些東西以及方法

Back to top ↑

cohesion

如何寫出好的程式碼架構

category: random     1 minute read     Posted on:

Preface 這個議題我覺的是軟體工程師的必經之路啦 本篇文章基本上就是紀錄我目前學到的一些東西以及方法

Back to top ↑

byzantine fault

資料庫 - 分散式系統中的那些 Read/Write 問題

category: database     3 minute read     Posted on:

Unstable Network 在分散式系統中,每個節點多為使用網路互相連接起來的 然而網路實際上是不可靠的

Back to top ↑

split brain

資料庫 - 分散式系統中的那些 Read/Write 問題

category: database     3 minute read     Posted on:

Unstable Network 在分散式系統中,每個節點多為使用網路互相連接起來的 然而網路實際上是不可靠的

Back to top ↑

monotonic read

資料庫 - 分散式系統中的那些 Read/Write 問題

category: database     3 minute read     Posted on:

Unstable Network 在分散式系統中,每個節點多為使用網路互相連接起來的 然而網路實際上是不可靠的

Back to top ↑

vector clock

資料庫 - 分散式系統中的那些 Read/Write 問題

category: database     3 minute read     Posted on:

Unstable Network 在分散式系統中,每個節點多為使用網路互相連接起來的 然而網路實際上是不可靠的

Back to top ↑

version vector

資料庫 - 分散式系統中的那些 Read/Write 問題

category: database     3 minute read     Posted on:

Unstable Network 在分散式系統中,每個節點多為使用網路互相連接起來的 然而網路實際上是不可靠的

Back to top ↑

last write wins

資料庫 - 分散式系統中的那些 Read/Write 問題

category: database     3 minute read     Posted on:

Unstable Network 在分散式系統中,每個節點多為使用網路互相連接起來的 然而網路實際上是不可靠的

Back to top ↑

lamport timestamp

資料庫 - 分散式系統中的那些 Read/Write 問題

category: database     3 minute read     Posted on:

Unstable Network 在分散式系統中,每個節點多為使用網路互相連接起來的 然而網路實際上是不可靠的

Back to top ↑

2PC

資料庫 - 分散式系統中的那些 Read/Write 問題

category: database     3 minute read     Posted on:

Unstable Network 在分散式系統中,每個節點多為使用網路互相連接起來的 然而網路實際上是不可靠的

Back to top ↑

3PC

資料庫 - 分散式系統中的那些 Read/Write 問題

category: database     3 minute read     Posted on:

Unstable Network 在分散式系統中,每個節點多為使用網路互相連接起來的 然而網路實際上是不可靠的

Back to top ↑

sharding

資料庫 - 最佳化 Read/Write 設計

category: database     3 minute read     Posted on:

Preface 雖然說只要有錢都好辦事,但多數情況下我們都是沒錢的 因此學習如何最佳化是相對重要的事情 那麼有哪些是我們可以透過內部盡量去優化的呢?

Back to top ↑

table partitioning

資料庫 - 最佳化 Read/Write 設計

category: database     3 minute read     Posted on:

Preface 雖然說只要有錢都好辦事,但多數情況下我們都是沒錢的 因此學習如何最佳化是相對重要的事情 那麼有哪些是我們可以透過內部盡量去優化的呢?

Back to top ↑

store program

資料庫 - 最佳化 Read/Write 設計

category: database     3 minute read     Posted on:

Preface 雖然說只要有錢都好辦事,但多數情況下我們都是沒錢的 因此學習如何最佳化是相對重要的事情 那麼有哪些是我們可以透過內部盡量去優化的呢?

Back to top ↑

rebalance

資料庫 - 最佳化 Read/Write 設計

category: database     3 minute read     Posted on:

Preface 雖然說只要有錢都好辦事,但多數情況下我們都是沒錢的 因此學習如何最佳化是相對重要的事情 那麼有哪些是我們可以透過內部盡量去優化的呢?

Back to top ↑

producer consumer

Kubernetes 從零開始 - 無痛初探 K8s!

category: kubernetes     7 minute read     Posted on:

Preface 現今網頁服務由於 container 的興起,大幅度的改變了整個 web 的生態系,一切都圍繞著 container 雖然說 container 改變了開發者的工作流程,使得大部分得以簡化,但是仍有一些問題依然存在

Back to top ↑

service

Kubernetes 從零開始 - 無痛初探 K8s!

category: kubernetes     7 minute read     Posted on:

Preface 現今網頁服務由於 container 的興起,大幅度的改變了整個 web 的生態系,一切都圍繞著 container 雖然說 container 改變了開發者的工作流程,使得大部分得以簡化,但是仍有一些問題依然存在

Back to top ↑

deployment

Kubernetes 從零開始 - 無痛初探 K8s!

category: kubernetes     7 minute read     Posted on:

Preface 現今網頁服務由於 container 的興起,大幅度的改變了整個 web 的生態系,一切都圍繞著 container 雖然說 container 改變了開發者的工作流程,使得大部分得以簡化,但是仍有一些問題依然存在

Back to top ↑

configmap

Kubernetes 從零開始 - 無痛初探 K8s!

category: kubernetes     7 minute read     Posted on:

Preface 現今網頁服務由於 container 的興起,大幅度的改變了整個 web 的生態系,一切都圍繞著 container 雖然說 container 改變了開發者的工作流程,使得大部分得以簡化,但是仍有一些問題依然存在

Back to top ↑

secret

Kubernetes 從零開始 - 無痛初探 K8s!

category: kubernetes     7 minute read     Posted on:

Preface 現今網頁服務由於 container 的興起,大幅度的改變了整個 web 的生態系,一切都圍繞著 container 雖然說 container 改變了開發者的工作流程,使得大部分得以簡化,但是仍有一些問題依然存在

Back to top ↑

dig

實際上手體驗 Golang DI Framework 之 Uber Dig

category: random     4 minute read     Posted on:

Uber/dig uber/dig 是一套基於 reflection 的 Dependency Injection Framework 意思是我們不需要手動指定依賴,而是透過 reflection 來幫我們自動找出依賴,依靠框架管理

Back to top ↑

aws s3

資料庫 - 大型物件儲存系統 MinIO 簡介

category: database     6 minute read     Posted on:

Brief Large Object Storage System 檔案儲存在現今電腦服務中一直扮演著相當重要的角色 舉例來說,你的大頭貼會需要一個地方儲存 我記得我在學校學習的時候一般來說有兩種做法 上傳到伺服器當中的檔案系統內做儲存,資料庫內寫入存放路徑即可 直接以二進位的方式存入資料庫中

Back to top ↑

minio

資料庫 - 大型物件儲存系統 MinIO 簡介

category: database     6 minute read     Posted on:

Brief Large Object Storage System 檔案儲存在現今電腦服務中一直扮演著相當重要的角色 舉例來說,你的大頭貼會需要一個地方儲存 我記得我在學校學習的時候一般來說有兩種做法 上傳到伺服器當中的檔案系統內做儲存,資料庫內寫入存放路徑即可 直接以二進位的方式存入資料庫中

Back to top ↑

storage

資料庫 - 大型物件儲存系統 MinIO 簡介

category: database     6 minute read     Posted on:

Brief Large Object Storage System 檔案儲存在現今電腦服務中一直扮演著相當重要的角色 舉例來說,你的大頭貼會需要一個地方儲存 我記得我在學校學習的時候一般來說有兩種做法 上傳到伺服器當中的檔案系統內做儲存,資料庫內寫入存放路徑即可 直接以二進位的方式存入資料庫中

Back to top ↑

erasure set

資料庫 - 大型物件儲存系統 MinIO 簡介

category: database     6 minute read     Posted on:

Brief Large Object Storage System 檔案儲存在現今電腦服務中一直扮演著相當重要的角色 舉例來說,你的大頭貼會需要一個地方儲存 我記得我在學校學習的時候一般來說有兩種做法 上傳到伺服器當中的檔案系統內做儲存,資料庫內寫入存放路徑即可 直接以二進位的方式存入資料庫中

Back to top ↑

bit rot healing

資料庫 - 大型物件儲存系統 MinIO 簡介

category: database     6 minute read     Posted on:

Brief Large Object Storage System 檔案儲存在現今電腦服務中一直扮演著相當重要的角色 舉例來說,你的大頭貼會需要一個地方儲存 我記得我在學校學習的時候一般來說有兩種做法 上傳到伺服器當中的檔案系統內做儲存,資料庫內寫入存放路徑即可 直接以二進位的方式存入資料庫中

Back to top ↑

erasure coding

資料庫 - 大型物件儲存系統 MinIO 簡介

category: database     6 minute read     Posted on:

Brief Large Object Storage System 檔案儲存在現今電腦服務中一直扮演著相當重要的角色 舉例來說,你的大頭貼會需要一個地方儲存 我記得我在學校學習的時候一般來說有兩種做法 上傳到伺服器當中的檔案系統內做儲存,資料庫內寫入存放路徑即可 直接以二進位的方式存入資料庫中

Back to top ↑

lifecycle management

資料庫 - 大型物件儲存系統 MinIO 簡介

category: database     6 minute read     Posted on:

Brief Large Object Storage System 檔案儲存在現今電腦服務中一直扮演著相當重要的角色 舉例來說,你的大頭貼會需要一個地方儲存 我記得我在學校學習的時候一般來說有兩種做法 上傳到伺服器當中的檔案系統內做儲存,資料庫內寫入存放路徑即可 直接以二進位的方式存入資料庫中

Back to top ↑

permission

網頁程式設計三兩事 - 基礎權限管理 RBAC, ABAC 與 PBAC

category: website     2 minute read     Posted on:

Brief Permission Management 權限管理在現今的網頁系統中是個很重要的議題 拿你我都熟悉的社群軟體來說,其實你無意中已經接觸過權限管理了

Back to top ↑

acl

網頁程式設計三兩事 - 基礎權限管理 RBAC, ABAC 與 PBAC

category: website     2 minute read     Posted on:

Brief Permission Management 權限管理在現今的網頁系統中是個很重要的議題 拿你我都熟悉的社群軟體來說,其實你無意中已經接觸過權限管理了

Back to top ↑

rbac

網頁程式設計三兩事 - 基礎權限管理 RBAC, ABAC 與 PBAC

category: website     2 minute read     Posted on:

Brief Permission Management 權限管理在現今的網頁系統中是個很重要的議題 拿你我都熟悉的社群軟體來說,其實你無意中已經接觸過權限管理了

Back to top ↑

abac

網頁程式設計三兩事 - 基礎權限管理 RBAC, ABAC 與 PBAC

category: website     2 minute read     Posted on:

Brief Permission Management 權限管理在現今的網頁系統中是個很重要的議題 拿你我都熟悉的社群軟體來說,其實你無意中已經接觸過權限管理了

Back to top ↑

pbac

網頁程式設計三兩事 - 基礎權限管理 RBAC, ABAC 與 PBAC

category: website     2 minute read     Posted on:

Brief Permission Management 權限管理在現今的網頁系統中是個很重要的議題 拿你我都熟悉的社群軟體來說,其實你無意中已經接觸過權限管理了

Back to top ↑

casbin

網頁程式設計三兩事 - 基礎權限管理 RBAC, ABAC 與 PBAC

category: website     2 minute read     Posted on:

Brief Permission Management 權限管理在現今的網頁系統中是個很重要的議題 拿你我都熟悉的社群軟體來說,其實你無意中已經接觸過權限管理了

Back to top ↑

permission granularity

網頁程式設計三兩事 - 基礎權限管理 RBAC, ABAC 與 PBAC

category: website     2 minute read     Posted on:

Brief Permission Management 權限管理在現今的網頁系統中是個很重要的議題 拿你我都熟悉的社群軟體來說,其實你無意中已經接觸過權限管理了

Back to top ↑

aslr

Linux Kernel - Address Space Layout Randomization

category: linux-kernel     6 minute read     Posted on:

本篇文章是備份自我之前上 Jserv 老師的課程作業內容 並加以修改排版內容 完整內容在 2021q1 Homework1 (quiz1)

Back to top ↑

prng

Linux Kernel - Address Space Layout Randomization

category: linux-kernel     6 minute read     Posted on:

本篇文章是備份自我之前上 Jserv 老師的課程作業內容 並加以修改排版內容 完整內容在 2021q1 Homework1 (quiz1)

Back to top ↑

pie

Linux Kernel - Address Space Layout Randomization

category: linux-kernel     6 minute read     Posted on:

本篇文章是備份自我之前上 Jserv 老師的課程作業內容 並加以修改排版內容 完整內容在 2021q1 Homework1 (quiz1)

Back to top ↑

local development

Kubernetes 從零開始 - Local 開發測試好朋友 Skaffold

category: kubernetes     1 minute read     Posted on:

Development Obstacles in Kubernetes 不知道你有沒有這種感覺,Kubernetes 對本地開發來說真的挺不友善的(至少以我來說) 除了你要架設一個本地的 Kubernetes Cluster 之外,還要不斷地手動更新 image

Back to top ↑

yaml

Kubernetes 從零開始 - Local 開發測試好朋友 Skaffold

category: kubernetes     1 minute read     Posted on:

Development Obstacles in Kubernetes 不知道你有沒有這種感覺,Kubernetes 對本地開發來說真的挺不友善的(至少以我來說) 除了你要架設一個本地的 Kubernetes Cluster 之外,還要不斷地手動更新 image

Back to top ↑

skaffold

Kubernetes 從零開始 - Local 開發測試好朋友 Skaffold

category: kubernetes     1 minute read     Posted on:

Development Obstacles in Kubernetes 不知道你有沒有這種感覺,Kubernetes 對本地開發來說真的挺不友善的(至少以我來說) 除了你要架設一個本地的 Kubernetes Cluster 之外,還要不斷地手動更新 image

Back to top ↑

registry

Kubernetes 從零開始 - Local 開發測試好朋友 Skaffold

category: kubernetes     1 minute read     Posted on:

Development Obstacles in Kubernetes 不知道你有沒有這種感覺,Kubernetes 對本地開發來說真的挺不友善的(至少以我來說) 除了你要架設一個本地的 Kubernetes Cluster 之外,還要不斷地手動更新 image

Back to top ↑

local cluster

Kubernetes 從零開始 - Local 開發測試好朋友 Skaffold

category: kubernetes     1 minute read     Posted on:

Development Obstacles in Kubernetes 不知道你有沒有這種感覺,Kubernetes 對本地開發來說真的挺不友善的(至少以我來說) 除了你要架設一個本地的 Kubernetes Cluster 之外,還要不斷地手動更新 image

Back to top ↑

pod

Kubernetes 從零開始 - 容器基本抽象 Pod

category: kubernetes     3 minute read     Posted on:

Abstraction over Container Pod 其實是為了更好的管理 Container 而生的一層抽象層 所以他同時也是最小的部署單位(注意到不是 Container)

Back to top ↑

lifecycle

Kubernetes 從零開始 - 容器基本抽象 Pod

category: kubernetes     3 minute read     Posted on:

Abstraction over Container Pod 其實是為了更好的管理 Container 而生的一層抽象層 所以他同時也是最小的部署單位(注意到不是 Container)

Back to top ↑

node

Kubernetes 從零開始 - 容器基本抽象 Pod

category: kubernetes     3 minute read     Posted on:

Abstraction over Container Pod 其實是為了更好的管理 Container 而生的一層抽象層 所以他同時也是最小的部署單位(注意到不是 Container)

Back to top ↑

binding

Kubernetes 從零開始 - 容器基本抽象 Pod

category: kubernetes     3 minute read     Posted on:

Abstraction over Container Pod 其實是為了更好的管理 Container 而生的一層抽象層 所以他同時也是最小的部署單位(注意到不是 Container)

Back to top ↑

ephemeral

Kubernetes 從零開始 - 容器基本抽象 Pod

category: kubernetes     3 minute read     Posted on:

Abstraction over Container Pod 其實是為了更好的管理 Container 而生的一層抽象層 所以他同時也是最小的部署單位(注意到不是 Container)

Back to top ↑

scale

Kubernetes 從零開始 - 容器基本抽象 Pod

category: kubernetes     3 minute read     Posted on:

Abstraction over Container Pod 其實是為了更好的管理 Container 而生的一層抽象層 所以他同時也是最小的部署單位(注意到不是 Container)

Back to top ↑

workloads

Kubernetes 從零開始 - 容器基本抽象 Pod

category: kubernetes     3 minute read     Posted on:

Abstraction over Container Pod 其實是為了更好的管理 Container 而生的一層抽象層 所以他同時也是最小的部署單位(注意到不是 Container)

Back to top ↑

redis sentinel

資料庫 - 如何正確設定高可用的 Redis

category: database     11 minute read     Posted on:

Preface 要如何提高系統的高可用性以及高效能,最常想到的應該就是分散式系統了 基本上你可以發現,不論是哪一段的系統架構,他們通常都會是使用分散式架構以達到高可用性

Back to top ↑

master-slave

資料庫 - 如何正確設定高可用的 Redis

category: database     11 minute read     Posted on:

Preface 要如何提高系統的高可用性以及高效能,最常想到的應該就是分散式系統了 基本上你可以發現,不論是哪一段的系統架構,他們通常都會是使用分散式架構以達到高可用性

Back to top ↑

distributed system

資料庫 - 如何正確設定高可用的 Redis

category: database     11 minute read     Posted on:

Preface 要如何提高系統的高可用性以及高效能,最常想到的應該就是分散式系統了 基本上你可以發現,不論是哪一段的系統架構,他們通常都會是使用分散式架構以達到高可用性

Back to top ↑

replication id

資料庫 - 如何正確設定高可用的 Redis

category: database     11 minute read     Posted on:

Preface 要如何提高系統的高可用性以及高效能,最常想到的應該就是分散式系統了 基本上你可以發現,不論是哪一段的系統架構,他們通常都會是使用分散式架構以達到高可用性

Back to top ↑

strong consistency

資料庫 - 如何正確設定高可用的 Redis

category: database     11 minute read     Posted on:

Preface 要如何提高系統的高可用性以及高效能,最常想到的應該就是分散式系統了 基本上你可以發現,不論是哪一段的系統架構,他們通常都會是使用分散式架構以達到高可用性

Back to top ↑

failover

資料庫 - 如何正確設定高可用的 Redis

category: database     11 minute read     Posted on:

Preface 要如何提高系統的高可用性以及高效能,最常想到的應該就是分散式系統了 基本上你可以發現,不論是哪一段的系統架構,他們通常都會是使用分散式架構以達到高可用性

Back to top ↑

sentinel

資料庫 - 如何正確設定高可用的 Redis

category: database     11 minute read     Posted on:

Preface 要如何提高系統的高可用性以及高效能,最常想到的應該就是分散式系統了 基本上你可以發現,不論是哪一段的系統架構,他們通常都會是使用分散式架構以達到高可用性

Back to top ↑

hash slot

資料庫 - 如何正確設定高可用的 Redis

category: database     11 minute read     Posted on:

Preface 要如何提高系統的高可用性以及高效能,最常想到的應該就是分散式系統了 基本上你可以發現,不論是哪一段的系統架構,他們通常都會是使用分散式架構以達到高可用性

Back to top ↑

partition

資料庫 - 如何正確設定高可用的 Redis

category: database     11 minute read     Posted on:

Preface 要如何提高系統的高可用性以及高效能,最常想到的應該就是分散式系統了 基本上你可以發現,不論是哪一段的系統架構,他們通常都會是使用分散式架構以達到高可用性

Back to top ↑

cluster bus

資料庫 - 如何正確設定高可用的 Redis

category: database     11 minute read     Posted on:

Preface 要如何提高系統的高可用性以及高效能,最常想到的應該就是分散式系統了 基本上你可以發現,不論是哪一段的系統架構,他們通常都會是使用分散式架構以達到高可用性

Back to top ↑

no downtime

資料庫 - 如何正確設定高可用的 Redis

category: database     11 minute read     Posted on:

Preface 要如何提高系統的高可用性以及高效能,最常想到的應該就是分散式系統了 基本上你可以發現,不論是哪一段的系統架構,他們通常都會是使用分散式架構以達到高可用性

Back to top ↑

high availability

資料庫 - 如何正確設定高可用的 Redis

category: database     11 minute read     Posted on:

Preface 要如何提高系統的高可用性以及高效能,最常想到的應該就是分散式系統了 基本上你可以發現,不論是哪一段的系統架構,他們通常都會是使用分散式架構以達到高可用性

Back to top ↑

local runner

DevOps - 透過 Helm Chart 建立你自己的 GitHub Action Runner

category: devops     7 minute read     Posted on:

Preface 在 DevOps - 從 GitHub Actions 初探 CI/CD | Shawn Hsu 裡面有提到,你可以使用自架的 local runner 執行你的 GitHub Action 原因不外乎是因為 private repo 沒辦法免費的使用 GitHub 提供的 runner 所以你可...

Back to top ↑

rancher

DevOps - 透過 Helm Chart 建立你自己的 GitHub Action Runner

category: devops     7 minute read     Posted on:

Preface 在 DevOps - 從 GitHub Actions 初探 CI/CD | Shawn Hsu 裡面有提到,你可以使用自架的 local runner 執行你的 GitHub Action 原因不外乎是因為 private repo 沒辦法免費的使用 GitHub 提供的 runner 所以你可...

Back to top ↑

customize runner image

DevOps - 透過 Helm Chart 建立你自己的 GitHub Action Runner

category: devops     7 minute read     Posted on:

Preface 在 DevOps - 從 GitHub Actions 初探 CI/CD | Shawn Hsu 裡面有提到,你可以使用自架的 local runner 執行你的 GitHub Action 原因不外乎是因為 private repo 沒辦法免費的使用 GitHub 提供的 runner 所以你可...

Back to top ↑

helm controller

Kubernetes 從零開始 - Helm Controller

category: kubernetes     2 minute read     Posted on:

Introduction to Helm Controller 如果你是使用 Helm chart 來管理你的 Kubernetes 資源 一個常見的需求會是,你可能會需要更新你的 chart 不管是 image version 還是一些設定檔的更新

Back to top ↑

terratest

Kubernetes 從零開始 - Helm Controller

category: kubernetes     2 minute read     Posted on:

Introduction to Helm Controller 如果你是使用 Helm chart 來管理你的 Kubernetes 資源 一個常見的需求會是,你可能會需要更新你的 chart 不管是 image version 還是一些設定檔的更新

Back to top ↑

json patch patch

Kubernetes 從零開始 - Helm Controller

category: kubernetes     2 minute read     Posted on:

Introduction to Helm Controller 如果你是使用 Helm chart 來管理你的 Kubernetes 資源 一個常見的需求會是,你可能會需要更新你的 chart 不管是 image version 還是一些設定檔的更新

Back to top ↑

strategic merge patch

Kubernetes 從零開始 - Helm Controller

category: kubernetes     2 minute read     Posted on:

Introduction to Helm Controller 如果你是使用 Helm chart 來管理你的 Kubernetes 資源 一個常見的需求會是,你可能會需要更新你的 chart 不管是 image version 還是一些設定檔的更新

Back to top ↑

json patch

Kubernetes 從零開始 - Helm Controller

category: kubernetes     2 minute read     Posted on:

Introduction to Helm Controller 如果你是使用 Helm chart 來管理你的 Kubernetes 資源 一個常見的需求會是,你可能會需要更新你的 chart 不管是 image version 還是一些設定檔的更新

Back to top ↑

kubectl patch

Kubernetes 從零開始 - Helm Controller

category: kubernetes     2 minute read     Posted on:

Introduction to Helm Controller 如果你是使用 Helm chart 來管理你的 Kubernetes 資源 一個常見的需求會是,你可能會需要更新你的 chart 不管是 image version 還是一些設定檔的更新

Back to top ↑

kubernetes controller

Kubernetes 從零開始 - 從自幹 Controller 到理解狀態管理

category: kubernetes     8 minute read     Posted on:

Kubernetes Object Kubernetes object 並不是指 Pod 或者是 Deployment 這種 Resource 複習一下,Resource 是所有你可以透過 Kubernetes 使用的物件(操作 kubectl 或Kubernetes API) 而 object 是這些 Reso...

Back to top ↑

state

Kubernetes 從零開始 - 從自幹 Controller 到理解狀態管理

category: kubernetes     8 minute read     Posted on:

Kubernetes Object Kubernetes object 並不是指 Pod 或者是 Deployment 這種 Resource 複習一下,Resource 是所有你可以透過 Kubernetes 使用的物件(操作 kubectl 或Kubernetes API) 而 object 是這些 Reso...

Back to top ↑

wrangler

Kubernetes 從零開始 - 從自幹 Controller 到理解狀態管理

category: kubernetes     8 minute read     Posted on:

Kubernetes Object Kubernetes object 並不是指 Pod 或者是 Deployment 這種 Resource 複習一下,Resource 是所有你可以透過 Kubernetes 使用的物件(操作 kubectl 或Kubernetes API) 而 object 是這些 Reso...

Back to top ↑

kubernetes operator

Kubernetes 從零開始 - 從自幹 Controller 到理解狀態管理

category: kubernetes     8 minute read     Posted on:

Kubernetes Object Kubernetes object 並不是指 Pod 或者是 Deployment 這種 Resource 複習一下,Resource 是所有你可以透過 Kubernetes 使用的物件(操作 kubectl 或Kubernetes API) 而 object 是這些 Reso...

Back to top ↑

kubernetes resource

Kubernetes 從零開始 - 從自幹 Controller 到理解狀態管理

category: kubernetes     8 minute read     Posted on:

Kubernetes Object Kubernetes object 並不是指 Pod 或者是 Deployment 這種 Resource 複習一下,Resource 是所有你可以透過 Kubernetes 使用的物件(操作 kubectl 或Kubernetes API) 而 object 是這些 Reso...

Back to top ↑

kubernetes object

Kubernetes 從零開始 - 從自幹 Controller 到理解狀態管理

category: kubernetes     8 minute read     Posted on:

Kubernetes Object Kubernetes object 並不是指 Pod 或者是 Deployment 這種 Resource 複習一下,Resource 是所有你可以透過 Kubernetes 使用的物件(操作 kubectl 或Kubernetes API) 而 object 是這些 Reso...

Back to top ↑

reconcile

Kubernetes 從零開始 - 從自幹 Controller 到理解狀態管理

category: kubernetes     8 minute read     Posted on:

Kubernetes Object Kubernetes object 並不是指 Pod 或者是 Deployment 這種 Resource 複習一下,Resource 是所有你可以透過 Kubernetes 使用的物件(操作 kubectl 或Kubernetes API) 而 object 是這些 Reso...

Back to top ↑

control loop

Kubernetes 從零開始 - 從自幹 Controller 到理解狀態管理

category: kubernetes     8 minute read     Posted on:

Kubernetes Object Kubernetes object 並不是指 Pod 或者是 Deployment 這種 Resource 複習一下,Resource 是所有你可以透過 Kubernetes 使用的物件(操作 kubectl 或Kubernetes API) 而 object 是這些 Reso...

Back to top ↑

controller pattern

Kubernetes 從零開始 - 從自幹 Controller 到理解狀態管理

category: kubernetes     8 minute read     Posted on:

Kubernetes Object Kubernetes object 並不是指 Pod 或者是 Deployment 這種 Resource 複習一下,Resource 是所有你可以透過 Kubernetes 使用的物件(操作 kubectl 或Kubernetes API) 而 object 是這些 Reso...

Back to top ↑

operator pattern

Kubernetes 從零開始 - 從自幹 Controller 到理解狀態管理

category: kubernetes     8 minute read     Posted on:

Kubernetes Object Kubernetes object 並不是指 Pod 或者是 Deployment 這種 Resource 複習一下,Resource 是所有你可以透過 Kubernetes 使用的物件(操作 kubectl 或Kubernetes API) 而 object 是這些 Reso...

Back to top ↑

self healing

Kubernetes 從零開始 - 從自幹 Controller 到理解狀態管理

category: kubernetes     8 minute read     Posted on:

Kubernetes Object Kubernetes object 並不是指 Pod 或者是 Deployment 這種 Resource 複習一下,Resource 是所有你可以透過 Kubernetes 使用的物件(操作 kubectl 或Kubernetes API) 而 object 是這些 Reso...

Back to top ↑

operator sdk

Kubernetes 從零開始 - 從自幹 Controller 到理解狀態管理

category: kubernetes     8 minute read     Posted on:

Kubernetes Object Kubernetes object 並不是指 Pod 或者是 Deployment 這種 Resource 複習一下,Resource 是所有你可以透過 Kubernetes 使用的物件(操作 kubectl 或Kubernetes API) 而 object 是這些 Reso...

Back to top ↑

saga

設計模式 101 - 分散式交易的另一種作法 Saga Pattern

category: design pattern     1 minute read     Posted on:

Distributed Transaction with 2PC 在 microservices 的架構下,分散式交易是必須面對的問題 我們學過,2PC(Two-Phase Commit) 是其中一種解決方式 透過一個中心化的協調者(coordinator)與所有其他參與交易的服務進行溝通與決策

Back to top ↑

microservices

設計模式 101 - 分散式交易的另一種作法 Saga Pattern

category: design pattern     1 minute read     Posted on:

Distributed Transaction with 2PC 在 microservices 的架構下,分散式交易是必須面對的問題 我們學過,2PC(Two-Phase Commit) 是其中一種解決方式 透過一個中心化的協調者(coordinator)與所有其他參與交易的服務進行溝通與決策

Back to top ↑

2pc

設計模式 101 - 分散式交易的另一種作法 Saga Pattern

category: design pattern     1 minute read     Posted on:

Distributed Transaction with 2PC 在 microservices 的架構下,分散式交易是必須面對的問題 我們學過,2PC(Two-Phase Commit) 是其中一種解決方式 透過一個中心化的協調者(coordinator)與所有其他參與交易的服務進行溝通與決策

Back to top ↑

compensating transaction

設計模式 101 - 分散式交易的另一種作法 Saga Pattern

category: design pattern     1 minute read     Posted on:

Distributed Transaction with 2PC 在 microservices 的架構下,分散式交易是必須面對的問題 我們學過,2PC(Two-Phase Commit) 是其中一種解決方式 透過一個中心化的協調者(coordinator)與所有其他參與交易的服務進行溝通與決策

Back to top ↑

job

Kubernetes 從零開始 - 資源排隊神器 Kueue

category: kubernetes     3 minute read     Posted on:

Introduction to Kueue 你可以在 Kubernetes 裡面塞入任一數量的 job,但這只是理論上 實務上會因為硬體資源的限制,你只可以執行有限數量的 job Kueue 這個工具可以根據這些 限制,允許有限數量的 job 同時執行 它可以做到一些基礎的排程機制,如 Job 要不要等待,...

Back to top ↑

kueue

Kubernetes 從零開始 - 資源排隊神器 Kueue

category: kubernetes     3 minute read     Posted on:

Introduction to Kueue 你可以在 Kubernetes 裡面塞入任一數量的 job,但這只是理論上 實務上會因為硬體資源的限制,你只可以執行有限數量的 job Kueue 這個工具可以根據這些 限制,允許有限數量的 job 同時執行 它可以做到一些基礎的排程機制,如 Job 要不要等待,...

Back to top ↑

resource

Kubernetes 從零開始 - 資源排隊神器 Kueue

category: kubernetes     3 minute read     Posted on:

Introduction to Kueue 你可以在 Kubernetes 裡面塞入任一數量的 job,但這只是理論上 實務上會因為硬體資源的限制,你只可以執行有限數量的 job Kueue 這個工具可以根據這些 限制,允許有限數量的 job 同時執行 它可以做到一些基礎的排程機制,如 Job 要不要等待,...

Back to top ↑

taints

Kubernetes 從零開始 - 資源排隊神器 Kueue

category: kubernetes     3 minute read     Posted on:

Introduction to Kueue 你可以在 Kubernetes 裡面塞入任一數量的 job,但這只是理論上 實務上會因為硬體資源的限制,你只可以執行有限數量的 job Kueue 這個工具可以根據這些 限制,允許有限數量的 job 同時執行 它可以做到一些基礎的排程機制,如 Job 要不要等待,...

Back to top ↑

toleration

Kubernetes 從零開始 - 資源排隊神器 Kueue

category: kubernetes     3 minute read     Posted on:

Introduction to Kueue 你可以在 Kubernetes 裡面塞入任一數量的 job,但這只是理論上 實務上會因為硬體資源的限制,你只可以執行有限數量的 job Kueue 這個工具可以根據這些 限制,允許有限數量的 job 同時執行 它可以做到一些基礎的排程機制,如 Job 要不要等待,...

Back to top ↑

affinity

Kubernetes 從零開始 - 資源排隊神器 Kueue

category: kubernetes     3 minute read     Posted on:

Introduction to Kueue 你可以在 Kubernetes 裡面塞入任一數量的 job,但這只是理論上 實務上會因為硬體資源的限制,你只可以執行有限數量的 job Kueue 這個工具可以根據這些 限制,允許有限數量的 job 同時執行 它可以做到一些基礎的排程機制,如 Job 要不要等待,...

Back to top ↑

taskset

Kubernetes 從零開始 - 資源排隊神器 Kueue

category: kubernetes     3 minute read     Posted on:

Introduction to Kueue 你可以在 Kubernetes 裡面塞入任一數量的 job,但這只是理論上 實務上會因為硬體資源的限制,你只可以執行有限數量的 job Kueue 這個工具可以根據這些 限制,允許有限數量的 job 同時執行 它可以做到一些基礎的排程機制,如 Job 要不要等待,...

Back to top ↑

unsturctured object

Kubernetes 從零開始 - 如何測試你的 Kubernetes 應用程式?

category: kubernetes     2 minute read     Posted on:

Kubernetes Application Testing 軟體工程裡面測試應用程式是一個很重要的環節,開發 Cloud Native 應用程式的時候也一樣 常見的就是使用 Kubernetes 進行開發,建立 Pod 跑東西之類的 所以很明顯這種邏輯也是需要進行測試覆蓋的

Back to top ↑

fake client

Kubernetes 從零開始 - 如何測試你的 Kubernetes 應用程式?

category: kubernetes     2 minute read     Posted on:

Kubernetes Application Testing 軟體工程裡面測試應用程式是一個很重要的環節,開發 Cloud Native 應用程式的時候也一樣 常見的就是使用 Kubernetes 進行開發,建立 Pod 跑東西之類的 所以很明顯這種邏輯也是需要進行測試覆蓋的

Back to top ↑

GVR

Kubernetes 從零開始 - 如何測試你的 Kubernetes 應用程式?

category: kubernetes     2 minute read     Posted on:

Kubernetes Application Testing 軟體工程裡面測試應用程式是一個很重要的環節,開發 Cloud Native 應用程式的時候也一樣 常見的就是使用 Kubernetes 進行開發,建立 Pod 跑東西之類的 所以很明顯這種邏輯也是需要進行測試覆蓋的

Back to top ↑

cr

Kubernetes 從零開始 - client-go 實操 CRD

category: kubernetes     3 minute read     Posted on:

Extend Kubernetes Resource Kubernetes 有許多內建的 Resource,像是 Pod, Deployment, Service 等等 但開發者的需求總是不斷的增加,有時候內建的 Resource 並不能滿足商業需求 假設你需要表達一個很複雜的資源,現有的其實寫起來會很複雜

Back to top ↑

api aggregation

Kubernetes 從零開始 - client-go 實操 CRD

category: kubernetes     3 minute read     Posted on:

Extend Kubernetes Resource Kubernetes 有許多內建的 Resource,像是 Pod, Deployment, Service 等等 但開發者的需求總是不斷的增加,有時候內建的 Resource 並不能滿足商業需求 假設你需要表達一個很複雜的資源,現有的其實寫起來會很複雜

Back to top ↑