Posts

Best Engineering Principles

Image
Best Engineering Principles                                                             In this article  we will try to understand the Best Engineering practices while developing or building the high class products.  In this post, I’ll be introducing a details about what I have learnt in my past year of professional software development career.   Idea behind following the best practice during the Start or initiation of project/product cycle is           importance because any product can not be developed or enhanced in a days or weeks , it takes      good amount of effort and time cycle . To avoid any bottleneck obstacles at the end of product cycle we must follow certain principles           during the initial phase of o...

Cloud Services

Image
  Cloud Services 

Multi-Cloud Security Tools

Image
 

What Is Cyclomatic Complexity – Learn With An Example

Image
Cyclomatic Complexity                                                                                                       Cyclomatic complexity is a software metric used to indicate the complexity of a program. It is a quantitative measure of the number of linearly independent paths through a program's source code. It was developed by Thomas J. McCabe, Sr. in 1976. Cyclomatic Complexity is a very common buzz word in the Development   community which is used for measuring development process time line. Mainly used to determine the complexity of a piece of code or functionality. Developed by MaCabe and helps to identify the below  questions for the programs/features For QA...

GDPR & Whats in it?

Image

Migration to Cloud Data lake - Best Practices

Image
   Today we will touch base on what all best practices to be followed during cloud data lake. We have decided this task in three major section to understand better. Pre-Migration Steps During Migration Steps Post-Migration steps

Event Driven Architecture - Key Principles

Image
    Event Driven Architecture In this article you'll learn the core concepts of EDA. In next section you'll walk through the implementation of a simple EDA use case Project.  Lets start with some basic questions and understanding ...  Have you ever developed an event-driven application or heard about this architectural approach?   You might be surprised to learn that you may be using it even if you've never heard of it! In this we will try to learn and understand what EDA architecture is, why it was created, what its components are, and how it is used in the ecosystem.   Let’s understand this little bit , Service-based architectures, like microservices or SOA, are commonly built with synchronous request-response protocols.  This approach is very natural. It is, after all, the way we write programs: we make calls to other code modules, await a response, and continue. It also fits closely with a lot of use cases we see each day: front-facing we...