React.jsSoftware development

Creating a Simple Dynamic form Using Data from Strapi CMS

In my previous blog, I showed how we could create a collection in Strapi that could further be used as input data to a dynamic form component to render a form as per users requirements. Create a React Project  Create a project using create react app. Refer https://reactjs.org/docs/create-a-new-react-app.html in case of any issues. Install axios […]

Anshul Mittal
Anshul Mittal
Read

Software developmentTechnology

Using Strapi-CMS to Create a Collection for Form Data

Today I am going to write about how we can use Strapi CMS to create a collection that can be later used to create forms. In my project, a similar approach has been used to create forms, It helps reduce code and makes an easy-to-use common component. Strapi is an open-source, Node. js-based, Headless CMS […]

Anshul Mittal
Anshul Mittal
Read

AdobeSoftware developmentTechnology

Step by Step Tutorial on Setting up AEM Repo tool for Syncing AEM with IntelliJ on Windows

When working with AEM, we often have to make changes to our jcr content while developing components and to get those changes up to the AEM server, we have to deploy code again and again. These multiple deployments can slow down our development cycle and eat up developers’ time. So to tackle this problem, we […]

Anubhav Gupta
Anubhav Gupta
Read

Java/JVMSoftware development

Step By Step Guide : Sending Emails in Spring Boot

Using the JavaMailSender interface, Spring Boot offers a simple method for sending emails. You may send an email with Gmail transport layer security by utilizing the spring boot restful web API. STEP 0: Add the Spring Boot Starter Mail dependency to your project STEP 1: Configuring mail settings in application.properties In the application.properties file, configure […]

Muskan Lama
Muskan Lama
Read

Front End DevelopmentMEANNode.js

Why and how finally{…} block is NOT meaningless

A definition first (from the internet): try-catch-finally is used to handle runtime errors and prevent them from halting the execution of a program. The finally block triggers regardless of: what is implemented inside the try-catch block any errors encountered inside try-catch block any return statement written inside the try-catch block Example 1 Consider this example where there’s no error: (()=>{ try { console.log(`Try block triggered`) […]

DrupalFront End DevelopmentNode.js

Introduction to Gulp.js: Beginner’s Guide

INTRODUCTION Gulp is an open-source Javascript toolkit and task runner which is built on Node.js and NPM and used for the optimization of time-consuming and repetitive tasks. It reduces the time and effort required for repetitive tasks, making it an essential tool for teams working on custom web application development and scalable digital solutions. Hundreds […]

Eram Fatima
Eram Fatima
Read

Java/JVMSoftware development

Customizing Validation in Spring Boot: How to Create Your Own Constraints

Customizing Validation in Spring Boot: How to Create Your Own Constraints  By developing unique constraint annotations and validator classes for Spring Boot, customized validation can be implemented.Here we can show more than one validation error messages The general steps to build a custom validator in Spring Boot are as follows: STEP 0 : Add dependency […]

Muskan Lama
Muskan Lama
Read

Digital TransformationSoftware developmentTechnology

Go Pointers! Let’s talk about it…

A pointer, as name suggests, is a variable that points to a location in the memory of your system where a value is stored rather than a value itself. Basically, it is an address to the value stored in memory. The definition is simple but this concept can be a little tricky to wrap your […]

AndroidHybridiOS

Choosing your Tech platform for your next Cross platform app – Flutter or React Native?

Selecting one or the other technology is always a matter of individual preferences but knowing which platform has what benefits can help in deciding the best option. In this blog, we are going to discuss two of the very popular technologies for creating cross-platform apps i.e. Flutter & React Native. Programming Languages Let’s start by […]

Ayush Awasthi
Ayush Awasthi
Read