Learning logs · 7 posts
Short write-ups on networking, databases and the fundamentals underneath the systems I work on.
- 01Threads and ProcessesTo fully understand how our backend applications compete for CPU resources and how to effectively configure them to utilize available resources. We…general1 min read
- 02Cap TheoremCAP theorem states that a distributed system can only provide two of three of the following properties simultaneously. The theorem helps justify the…general4 min read
- 03Data Structures - TreesIn this post, I'm going to be defining what a tree is in the framing of data structures, the properties that make it a tree, common implementations…general3 min read
- 04Load BalancingAs an application scales, a single server is not enough. A single server means a single instance serving all requests. Eventually as the request…networking3 min read
- 05The OSI ModelThe OSI modelnetworking1 min read
- 06Testing CI docker push via github action locallyA tool called act makes this possible. It allows us to test run github actions locally. This can be useful for a quicker feedback loop than setting…general1 min read
- 07Supabase - Increment or insert column value with postgres functionsLooking for a quick way to increment a value in a supabase table?database1 min read