Posts
All the articles I've posted.
Understanding Structs in Golang
Understanding pointers in Golang
Golang Snippets
Simple HTTP Server in Golang
What is Kafka
Apache Kafka is a distributed event streaming platform that is used for building real-time data pipelines and streaming applications.
Shared Prototypes Problem
Rate Limiter Problem
Enums in Typescript
Enums in TypeScript are a way to define a set of named constants.
Typescript Utility Types: Partial<Type>
The Partial utility type in TypeScript is used to make all properties of a type optional.
Typescript Utility Types: Record<Keys, Type>
The Record utility type in TypeScript is used to create an object type whose keys are of a specified type and whose values are of another specified type. This utility type is useful for creating objects with specific key-value pairs, such as dictionaries or maps.