Tagged "Algorithm"

Write a time-series database engine from scratch

This blog post walks you through how to implement a time-series database engine based on what I’ve learned from my experience of writing a lightweight one from scratch.

Fixed/Variable-length encoding in Go

This post covers how to use the standard encoding/binary package to encode binary according to a custom format, and how it works.

Understanding how AES encryption works

I recently had the opportunity to encrypt/decrypt stuff using AES, but I didn’t know it inside out well. I couldn’t help but be curious about how it is working, and I realized my mind could only be satisfied by digging deeper into its implementation.