yashdhadve.hashnode.devNobody's hiring jr. dev so I made my own memory allocator in CIn this blog, we will be learning how to make a malloc function and free function. Ofcourse it's not gonna be how a really malloc works in c but you will get an idea. our malloc will be able to allocate dynamic size of memory also it can deallocate t...Aug 13, 2025·12 min read
nimbusnotes.hashnode.devDeploying Kubernetes cluster with KGateway on AWS for beginnersIn this blog, we will quickly go through how can we deploy our application on AWS EKS cluster with kgateway. We will go through following things - Installing Gateway Crd’s Deploying a FooBar test application Exposing endpoints via KGateway Access...Aug 10, 2025·3 min read
nimbusnotes.hashnode.devBuild your own Json parser in GolangBefore we start, if you find anything hard to understand in this or theres something can be improved let me know in the comments or you can reach me out on x.com/Yash_Dhadve4 First of all what even is a parser? Well parser is simply a application/fun...Jan 12, 2025·16 min read
nimbusnotes.hashnode.devNginx Basicswhat is Nginx? NGINX is open-source web server software used for reverse proxy, load balancing, and caching. It provides HTTPS server capabilities and is mainly designed for maximum performance and stability. It also functions as a proxy server for e...Dec 30, 2024·3 min read
nimbusnotes.hashnode.devScaling websockets to million connectionsUnderstanding how to scale Scaling a websocket is a hard task compared to http, as the connections are persistent in websocket and we cannot share the same connection between 2 different servers. Like in http we can just create many instances of our ...Dec 22, 2024·6 min read