Posts by Category

random

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

category: random     4 minute read     Posted on:

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

如何寫出好的程式碼架構

category: random     1 minute read     Posted on:

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

理解 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...

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

category: random     2 minute read     Posted on:

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

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

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

如何正確模組化你的 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 的專案 途中遇到不少的困難,想說寫起來紀錄一下

設定你的 Remote VS Code Server

category: random     4 minute read     Posted on:

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

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...

單系統? 何不多系統

category: random     5 minute read     Posted on:

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

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...

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

category: random     10 minute read     Posted on:

Preface

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

category: random     1 minute read     Posted on:

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

Back to top ↑

database

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

category: database     11 minute read     Posted on:

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

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

category: database     6 minute read     Posted on:

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

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

category: database     3 minute read     Posted on:

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

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

category: database     3 minute read     Posted on:

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

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

category: database     1 minute read     Posted on:

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

資料庫 - 從 Apache Kafka 認識 Message Queue

category: database     15 minute read     Posted on:

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

資料庫 - 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 在語法上的差異不會影響到太多 實際上手之後,發現還是有點差異

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

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

資料庫 - Index 與 Histogram 篇

category: database     8 minute read     Posted on:

Speed up Search In Large Data

資料庫 - SQL N + 1 問題

category: database     2 minute read     Posted on:

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

資料庫 - 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 ↑

kubernetes

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 跑東西之類的 所以很明顯這種邏輯也是需要進行測試覆蓋的

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

category: kubernetes     3 minute read     Posted on:

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

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 還是一些設定檔的更新

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 改變了開發者的工作流程,使得大部分得以簡化,但是仍有一些問題依然存在

Back to top ↑

website

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

category: website     2 minute read     Posted on:

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

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

category: website     2 minute read     Posted on:

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

網頁程式設計三兩事 - 萬惡的 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 的過程當中,我們提供了很多功能,其中可能包含較為隱私的功能(比如說,修改密碼,查詢個人資料等等的) 這個時候,你不會希望別人隨便修改你的密碼對吧? 所以就必須要驗證你的身份

網頁程式設計三兩事 - 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 ↑

algorithm

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

category: algorithm     5 minute read     Posted on:

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

神奇的演算法 - Greedy Algorithm

category: algorithm     2 minute read     Posted on:

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

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

category: algorithm     1 minute read     Posted on:

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

神奇的演算法 - Monotonic Stack

category: algorithm     2 minute read     Posted on:

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

神奇的演算法 - 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 ↑

devops

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 - 成就完美的自動化 IaC 與 CaC

category: devops     1 minute read     Posted on:

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

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 驗證,可以確保程式不會因為不當的輸入而產生不如預期的結果

DevOps - 從 GitHub Actions 初探 CI/CD

category: devops     10 minute read     Posted on:

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

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 ↑

git

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

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 ↑

linux-kernel

Linux Kernel - Address Space Layout Randomization

category: linux-kernel     6 minute read     Posted on:

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

Linux Kernel - namespaces

category: linux-kernel     2 minute read     Posted on:

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

Linux Kernel - Clock

category: linux-kernel     3 minute read     Posted on:

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

Back to top ↑

network

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

category: network     11 minute read     Posted on:

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

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

category: network     15 minute read     Posted on:

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

重新認識網路 - 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 ↑

design pattern

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

category: design pattern     1 minute read     Posted on:

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

設計模式 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

設計模式 101 - Observer Pattern

category: design pattern     2 minute read     Posted on:

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

Back to top ↑

csapp

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 ↑

angular

邁向 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 ↑