TO THE NEW Blog PAGES

WordPress

Customize Logo on WordPress Login/Register Page

Like any other page you develop, the login page should be well-designed, but the challenge is that there isn’t much content you can put on a login screen. Its function is to enable the user to log in. On a standard login screen, you will notice a username and password field and the registration or […]

Satya Prakash
Satya Prakash
Read

Java/JVMSoftware developmentTesting

Unit Testing using JUnit and Mockito

Introduction to Unit testing What is Unit testing? Unit testing is a process that is used to verify a unit or unit’s functionality. This step helps in the estimation of the codes by other team members and also creates a record of all necessary information including errors that occur. It provides an opportunity for the […]

Ajay Kumar
Ajay Kumar
Read

Front End DevelopmentMEANReact.js

Server-side Rendering vs Static Site Generation in Next.js

NextJs is a framework to build a full-stack application with features such as server-side rendering using React framework. Today, it has become a consolidated framework for building amazing web applications. There can be many advantages of Next.js as: Great for SEO. Image Optimization – Next.js provide its Image component that improves the performance of the […]

Rahul Vashishtha
Rahul Vashishtha
Read

CloudDevOpsJava/JVM

Dockerizing a Spring Boot Application

Dockerizing a spring boot application, that uses more than one container. We have a spring boot application that takes user input as form data and saves it in a MySQL database. The context of dockerizing a spring boot application is so that other developer using my application doesn’t have to set up the tomcat server […]

Himanshu Kumar
Himanshu Kumar
Read

Adobe

XML Add On – Conditional/Filtered DITA content output in AEM

Use cases Let’s assume we have a large number of published articles or topics. Each article contains some paragraphs or content that is obsolete now and should not be displayed to the end users. Since the number of articles is large, it is difficult to update the content quickly. Let’s say we have all content […]

Vijay Kumar
Vijay Kumar
Read

DevOpsJava/JVMSoftware development

Docker for Beginners

Why Docker?  Has it ever happened to you that you create an application it runs successfully on your machine? You share this application with your friends because it doesn’t work on their machines. But it worked on my machine !! What is Docker? Docker is a tool for running applications in an isolated environment, it […]

Himanshu Kumar
Himanshu Kumar
Read

Testing

Best Practices For Writing Test Cases

What is a Test Case?   Test cases are specific set of conditions that are performed on the software application to achieve a determined output and to verify the functionality of the feature. Test cases guide the testers through the sequence of steps to validate whether the software application is free of bugs, and it is […]

Madhuri A
Madhuri A
Read

Java/JVM

Java Transformation from Java 7 to Java 18

A lot has changed in Java from its beginnings in 1995 until today. Java 8 was a revolutionary release that put Java back on the pedestal of the best programming languages. We will go through most of the changes in the Java language that happened from Java 8 in 2014 until today. I will try […]

Ankit Sagar
Ankit Sagar
Read

Digital AnalyticsDigital Marketing

Google Analytics Updates: The Timeline Of Major Updates

Google Analytics is the widely accessed web analytics platform on the internet. Plenty of reasons are there for people using Google Analytics. But, the potential reason is that it renders unique and useful analytics resources. In October 2020, Google launched the most recent update to this platform, Google Analytics 4 (GA4). GA4 has launched on […]

Poonam Singh
Poonam Singh
Read

WordPress

How to move WordPress Website from Local to Live Server

Do you believe the time has come to launch your website into the world? You can make your local site live without hesitation if you thoroughly inspect it. It is beneficial to build a website on a local server to speed up development. It also saves you the effort of disrupting your site while debugging. […]

Satya Prakash
Satya Prakash
Read

React.js

useEffect Hook – Reactjs

React Hooks are the feature that was introduced in React version 16.8, allowing us to use state and other class components features in our functional components. Out of all the hooks introduced, there is one salient hook named the UseEffect. The useEffect hook is a boon for the functional components. It basically allows us to […]

Shrishtee Suman
Shrishtee Suman
Read

Testing

Automating the API testing using Rest Assured

In any project, we have a large number of APIs, and if we only stick to manual testing, then it will take a lot of time and resource consumption; managing this situation is also very challenging in this recurring release trend in the industry. To overcome this, it is good to start the API Automation […]