Fawazwhoisfawaz.hashnode.dev·Jan 14, 2025🌟 CloudCheck: Award-Winning Cloud-Native Solution for AI-Generated Image Detection with Federated Learning🌟Introduction 🌍 I'm thrilled to share with you the groundbreaking work behind CloudCheck, a cloud-native solution my team and I developed for detecting AI-generated images, which won the prestigious Dell Cloud Native Award in Cloud and Distributed Co...cloud native
Deepak Sharmacncflandscape.hashnode.dev·Jan 8, 2025Heterogeneous Systems and InterfaceIf a lion could talk, we would not understand him.— Ludwig Wittgenstein Let’s discuss the challenges of communication across heterogeneous systems and the need for using abstract notation for such communications. What are heterogeneous systems? To u...Learning gRPCheterogeneous
Deepak Sharmacncflandscape.hashnode.dev·Jan 8, 2025IDL and RPC: A Historical OverviewSince the launch of Protocol Buffers and GRPC, we have seen a sharp rise in interest in and adoption of Interface Description Languages across many organizations. Given the rise of microservice architecture and Cloud Native Applications and a new era...Learning gRPCgRPC
Shreyansh Agarwalshreyanshagarwal.hashnode.dev·Jan 5, 2025Introduction to gRPC in Python : A Hands-on Guide to Modern Client-Server CommunicationIntroduction In this blog, we delve into the world of gRPC, a cutting-edge framework developed by Google for seamless and efficient client-server communication. Designed to work across various programming languages, gRPC is a powerful tool for modern...1.2K readsgRPC
Jason Joseph Nathangeekist.co·Dec 23, 2024The Art of ProxyingWelcome back to the Taming Nginx series! In this article, we’re diving into the art of reverse proxying. While many guides focus on the basics, this article is for those who want to push Nginx to its limits, we'll explore advanced and peculiar use ca...Taming NginxLayer 7
Jaydeep Duttaprotocol-and-communication-model.hashnode.dev·Dec 15, 2024gRPC vs HTTP1 vs HTTP/2protocol and communication model 1. Protocol and Communication Model gRPC: gRPC is a Remote Procedure Call (RPC) framework, meaning that it allows you to define services and methods that can be called remotely from client to server. It uses Protoc...gRPC
Rushapi-academy.hashnode.dev·Dec 6, 2024How to Test gRPC APIs?gRPC (Google Remote Procedure Call) is an open-source framework developed by Google for building high-performance, cross-platform, and language-agnostic APIs. It's widely used for building distributed systems and microservices architectures. Unlike t...gRPC
Joshua Akosadevwithjosh.com·Dec 5, 2024Building a Low-Latency gRPC Service for Real-Time Inter-Microservice Communication in C# and ASP.NET CoreIn modern distributed systems, low-latency communication is crucial for maintaining performance and responsiveness, especially in microservice architectures. This blog demonstrates how to use gRPC in C# and ASP.NET Core to achieve low-latency inter-m...250 readsMastering gRPC with C# and ASP.NET CoregRPC
Joshua Akosadevwithjosh.com·Dec 5, 2024Introduction To gRPC in C# and ASP.NET CoregRPC (gRPC Remote Procedure Call) is a modern open-source RPC framework that can run in any environment. It uses HTTP/2 for transport, Protocol Buffers (Protobuf) for defining APIs, and provides features like bi-directional streaming, client-server c...124 readsMastering gRPC with C# and ASP.NET CoregRPC
HKHair77.hashnode.dev·Nov 27, 2024광고 업체 유효성 검사 시스템 개선오늘은 광고 업체 유효성 검사 시스템을 어떻게 발전시켜 왔는지 과정을 정리해봤다. 처음에는 단순한 API 호출로 시작했지만, 지금은 Kafka 기반의 실시간 이벤트 처리 시스템으로 진화를 거듭했으며 이 포스트는 해당 여정을 정리한 글이다🚀 Version 1.0: "단순하게 시작해보자" - 직접 API 호출 방식 시스템 구성 처음에는 정말 단순했다 광고 파트가 사용하는 광고 검사 URL을 서버에서 호출한다. 광고 파트에서 제공하는 API를 직접...kafka