Author Archives: Jitendra Singh

JavaScript API Mocking Techniques

API mocking has become an integral part of the software development process, especially in JavaScript development. It allows developers to simulate actual APIs and receive realistic responses generated with custom data. This practice proves invaluable in various scenarios, such as writing unit tests or dealing with situations where external dependencies are unavailable.  What is API Continue Reading »

Haskell

Haskell Programming Language: Haskell is a modern, standard, only functional, and non-strict language. It is specially designed to handle many applications from numbers to characters. It has an impressive syntax and vibrant built-in architecture. Haskell is a functional language only, not limited to functional. It is specifically designed to handle large business applications. It is Continue Reading »

Ruby on Rails

What is Rails? Rails is a web application development framework written in the Ruby programming language. It aims to simplify web application programming by assuming what every developer needs to get started. It allows you to write less code and do more than many other languages ​​and frameworks. Experienced Rails developers also report that it Continue Reading »

Recursion vs Dynamic Programming — Fibonacci

Introduction of Recursion and Dynamic Programming: Recursion is the process in which a function calls itself until the base cases are reached. And during the process, complex situations will be traced recursively and become simpler and simpler. The whole structure of the process is tree-like. Recursion does not store any value until reaching the final Continue Reading »