Home
Pravin on Software
Cancel

Understanding the impact of inaccurate User Acceptance Testing Environment

User Acceptance Testing (UAT) is a crucial stage in the software development lifecycle. This process provides an opportunity for end-users to validate the functionality, usability, and compatibilit...

REST API Based Workflow Design Using iWF Framework

Using the iWF DSL framework to write workflow on the top of the Temporal platform In this article, We are going to discuss Workflow and design a simple use case using the iWF framework (with Tempo...

Code Smell Series: Big Class

The secret to high-quality code is following the path of clean code. Is it a bad approach to have large code files? Yes, It’s bad to have big classes/files in programming. A big file means it...

Understaning RAFT - distributed consensus protocol

RAFT - Distributed Consensus Protocol In this presentation, I talked about the RAFT consensus algorithm which is commonly used in large different systems to achieve consensus in a distributed envi...

Code Smell Series: Unit Test

The secret to high-quality code is following the path of clean code. A code will remain at its highest quality if it has an understandable and meaningful test. Robert C. Martin in his book, “C...

Do not trust others' code

In this article, I shared one instance of poor API implementation with numerous bugs and my experience with it. Background Context As per the current business process, If someone wants a loan agai...

How (Not) To Document Your APIs

How (Not) To document Your APIs In this presentation, I talked about the troubles I faced due to poor API design. It happened due to less emphasis on documenting changes. Developers who do not hav...

State in reactive system - Orchestration-based Saga Pattern

State in Reactive System In this presentation, I talked about something we are already familiar. For some, it will be a refreshing session; for others, it will be new learning. We see how our des...

What makes API documentation terrible?

Is this another article on How to write documentation? No, this article is not about How to write API documentation but about what things everyone should avoid while writing API documentation. This...

Code Smell Series: Shh…something is happening there

…Shh…let me tell you…something is happening in that code. Last month, I encountered one problem in the code. That code act as a decision-maker to decide the next step in the application, based...