@BoggeyMan
Nothing here yet.
Nothing here yet.
Feb 19 · 3 min read · gRPC = 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...
Join discussionJul 15, 2025 · 2 min read · Think 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...
Join discussionAug 2, 2024 · 4 min read · Node.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...
Join discussion