Techy Chalkboard in Bits and Pieces

There’s always someone who knows better than Google!

gRPC in Simple Terms (Modern RPC)

gRPC is a modern way for applications to talk to each other in distributed systems. It is the latest evolution of RPC (Remote Procedure Call) designed for speed, efficiency, and scalability. Simply put: gRPC allows one service to call another service’s function just like calling a local method — but faster and smarter for cloud…

Cold vs Hot Observables in Rx.NET

Reactive Extensions (Rx.NET) is used to handle asynchronous data streams in .NET applications. One of the most important concepts to understand is the difference between Cold Observables and Hot Observables. What is an Observable? An Observable is a data stream that we can subscribe to and receive values over time. IObservable<int> stream = Observable.Range(1, 3);…

Fixing “Value cannot be null. (Parameter ‘provider’)” Error While Running Azure Function Apps Locally

While developing Azure Function Apps locally, you may encounter the runtime error: Value cannot be null. (Parameter ‘provider’) This issue can be frustrating because it appears during startup and often looks like a coding problem. However, in most cases, it is caused by local tooling or runtime installation issues. 🚨 Problem When running the Function…

Azure Blob Storage: Block, Append, and Page Blobs Explained

Azure Blob Storage provides three types of blobs designed for different workloads: Block Blobs, Append Blobs, and Page Blobs. Each blob type is optimized for specific data access patterns and storage requirements. Block Blobs Block blobs are designed for efficient upload and storage of large amounts of unstructured data such as documents, images, videos, and…

Something went wrong. Please refresh the page and/or try again.


Follow My Blog

Get new content delivered directly to your inbox.