SSsuraj sunkarainboggey-man.hashnode.dev·Mar 4 · 4 min readServer-Sent Events (SSE) – Real-Time Updates Made SimpleWhat is SSE? Server-Sent Events (SSE) is a lightweight web technology that enables a server to continuously push real-time updates to a client (browser) over a single, long-lived HTTP connection. Unli00
SSsuraj sunkarainboggey-man.hashnode.dev·Feb 19 · 3 min readUnderstanding gRPCgRPC = Google Remote Procedure Call gRPC is very important if you want to work in microservices, backend, or high-performance systems. It is a framework that allows one application to call a method in another application as if it were a local functio...00
SSsuraj sunkarainboggey-man.hashnode.dev·Jul 15, 2025 · 2 min readJava CollectionsThink of collections as containers to hold objects ➤ a. List – Ordered, allows duplicates Real-world: List of users in a chat javaCopyEditList<String> users = new ArrayList<>(); users.add("Alice"); users.add("Bob"); ➤ b. Set – Unordered, no duplic...00
SSsuraj sunkarainboggey-man.hashnode.dev·Aug 2, 2024 · 4 min readStreams In JavaScriptNode.js is a way to move data from a source to a destination in bit-by-bit, to avoid any Out-Of-Memory Errors. To understand what a stream does, consider a scenario with two buckets named source and destination. The source bucket is full of water, wh...00