🗒️ Explore my blog
Key Vaults
• Securely stores classified information
Similar to AWS Secrets Manager
Status: #idea
Tags: Cloud, Data Protection and Identity
References
Kubernetes
Often compared to the conductor in a large, complex orchestra. Each musician (or application) has a specific role, and the conductor ensures everyone starts, performs, and stops at the correct times.
* Manages Containers across a group of computers
* clusters
* Kubernetes cluster - unified set of containerized applications working together
* Cluster forms the backbone of Kubernetes
* Workloads are deployed and supervised
Status: #idea
Tags: Cloud
References
Left Factoring
S -> aa | ab
S -> aX
X -> a | b
C -> Dab | Dac | D | f
C -> DC' | f
C' -> ab | ac | ε
C' -> aC'' | ε
C'' -> b | c
Status: #idea
Tags: compilation-techniques
References
Left Recursive
A -> Aα | β
A -> βA'
A' -> αA' | ε
E -> E + T | E - T | T | C
A -> A α A α β β
E -> TE' | CE'
E' -> +TE' | -TE' | ε
A no longer exists and is now A' placed at the end of
β at the top and α at the bottom
min 1 α and 1 β
Status: #idea
Tags: compilation-techniques
References
Linked Free Space List on Disk
There is a list that stores blocks that are empty
Linked
* There are 1-2 bytes that is used to store pointers to the next block
* Each file is a linked list of disk blocks: blocks may be scattered anywhere on the disk
* We store start and end blocks
good for sequential, not random
if the block contains a pointer, usually need more than one blocks to store the file unless the size of the file \< size of the block
Screenshot 2025-01-01 at 11.09.15 AM.png