January 10, 2025
The simplest way to implement a Kubernetes cluster on AWS is to use the EKS (Elastic Kubernetes Service) managed
service. However, it was found that EKS is expensive, with a starting price that is unrelated to EC2 compute costs,
solely from EKS. To learn (save money), we will use bare EC2 instances to build a Kubernetes cluster and integrate
ArgoCD to achieve CD (Continuous Deployment).
...
March 18, 2024
With a coding scheme where the minimum hamming distance between two valid codewords is m, it can detect r-bit errors at most when
...
November 7, 2023
When we use channels to serialize tasks, we create an asynchronous flow. It is easy to mess things up in asynchronous programming, especially if we have additional requirements like timeout and cancelation.
...
October 29, 2023
Most of these patterns have one thing in common, which is to connect producers and consumers through the interface. The abstraction of the interface is the key. It reflects a deep understanding of the underlying type. Knowing this can simply things, no matter what scenario we are dealing with, or what language is being used.
...