Now a days all the projects are managed the Agile way and project management activities are performed using different tools which helps the teams to manage the projects in an effective way. JIRA offers good tools for project management and one such very popular tool is "Dashboard" . JIRA Dashboard provides a consolidated view for … Continue reading Creating an Agile Project Management Dashboard Using JIRA: Part I
Category: General
A Brief Guide to Imperative & Declarative Programming
What you do in general while coding? Tell the machine how to do it or ask the machine to do it for ourselves. Photo by Goran Ivos on Unsplash So today we will be going through the concepts like imperative programming and declarative programming.These concepts are not languag specific. So what is imperative programming? Imperative programming means you … Continue reading A Brief Guide to Imperative & Declarative Programming
Native Vs. ImmutableJS Vs. Immer — Are Libraries the Way-to-go For Immutability in React?
Maintaining immutability when dealing with objects and arrays is very important in React. It ensures that the DOM updates correctly and predictably. But when we have nested data structures, maintaining immutability in our data can get ugly, very fast. This article explores 3 approaches to immutability — doing it natively, using ImmutableJS (a library which … Continue reading Native Vs. ImmutableJS Vs. Immer — Are Libraries the Way-to-go For Immutability in React?