-
Maximum Subarray Sum
Input: arr[] = {2, 3, -8, 7, -1, 2, 3}Output: 11Explanation: The subarray {7, -1, 2, 3} has the largest sum 11. Input: arr[] = {-2, -4}Output: –2Explanation: The subarray {-2} has the largest sum -2. Input: arr[] = {5, 4, 1, 7, 8}Output: 25Explanation: The subarray {5, 4, 1, 7, 8} has the largest sum 25. // C# Program to find the…
-
Basic SQL Interview Questions
Basic SQL Interview Questions All set to kickstart your career in SQL? Look no further and start your professional career with these SQL interview questions for freshers. We will start with the basics and slowly move towards slightly advanced questions to set the pace. If you are an experienced professional, this section will help you…
-
Microservices
Microservices The term microservices portrays a software development style that has grown from contemporary trends to set up practices that are meant to increase the speed and efficiency of developing and managing software solutions at scale. Microservices is more about applying a certain number of principles and architectural patterns as architecture. Each microservice lives independently,…
-
Choreography-Orchestration with Saga
Implementation of Choreography-based Saga in .NET Microservices Published by Gökhan Gökalp on February 21, 2021 In today’s technology era, almost all of us talk about microservices and try to develop applications. When we just talk about microservices before get started to implement, everything might seems very clear and easy to implement. But, especially when the topic comes to…
-
Guide to Docker for .NET
1 So, what is Docker? According to Wikipedia, “Docker is a set of coupled software-as-a-service and platform-as-a-service products that use operating-system-level virtualization to develop and deliver software in packages called containers.” Let’s pull that apart and understand what it really means. The heart of Docker is that you can package applications in so-called images, giving the applications…
-
Ocelot-Creating the API Gateway with Microservices
Create the Solution For this article, we are going to create three APIs to represent our microservices. When we finish with implementation, every microservice is going to be inside the same .NET Solution. That said, we need to create an empty solution that will be the container for all of our APIs. Once the solution…
-
Microservice Design Patterns
What are microservices design patterns? A microservice consists of independent app components that perform specific functions for a system. It may have a single instance or multiple instances based on the functional requirements. Together with the client-side (web interface and mobile UI) and other integrated services in the intermediate layers, each of these microservices forms a complete…
Maximum Subarray Sum
adminInput: arr[] = {2, 3, -8, 7, -1, 2, 3}Output: 11Explanation: The subarray {7, -1, 2, 3} has…
Basic SQL Interview Questions
adminBasic SQL Interview Questions All set to kickstart your career in SQL? Look no further…
Microservices
adminMicroservices The term microservices portrays a software development style that has grown from contemporary trends…
Choreography-Orchestration with Saga
adminImplementation of Choreography-based Saga in .NET Microservices Published by Gökhan Gökalp on February 21, 2021 In today’s technology…
Guide to Docker for .NET
adminSo, what is Docker? According to Wikipedia, “Docker is a set of coupled software-as-a-service and platform-as-a-service…
Ocelot-Creating the API Gateway with Microservices
adminCreate the Solution For this article, we are going to create three APIs to represent…