Web

Understanding the Basic Fundamentals of DNS

Reading Time: 4 minutes In this blog, we will be gaining a basic understanding of Domain Name Systems (DNS) like what is DNS, what is an IP Address and how a DNS actually works. So stick to this blog, to learn the basic fundamentals of a Domain Name System. Introduction In the world of networking, computers don’t go by names as we humans do, they go by numbers. That’s Continue Reading

Programming Equipment in Dark

Web Accessibility in React

Reading Time: 3 minutes What is Web Accessibility? Web Accessibility, also known as A11y ( Cause there are 11 letters between “a” and “y” ), is the idea that a website should be usable by people irrespective of their physical disability or internet bandwidth speed, or socio-economic shortcoming. So making our compatibility with keyboard support and screen readers makes it possible for users with visual or motor disabilities to Continue Reading

Young Asian software developer working over new program

Fundamentals of Micronaut and its features

Reading Time: 5 minutes In this blog, we will discuss Micronaut in context of what and why, and we will also see how to create an application from Micronaut launch. Before taking a deep dive into Micronaut, let us get familiar with some of the associated terminologies. Having this information will help us better understand it. Ahead of time compilation(AOT) – It is the pre-computation of application code using Continue Reading

How to start with Spring web-flux

Reading Time: 4 minutes Spring Boot provides very good support for building RESTful Web Services for enterprise applications. This blog will explain building RESTful web services using Spring Boot in detail with a pinch of reactive programming using web flux. I will mostly be walking through the code snippets which we can use to quickly start with the web flux without having to dive deep. It is like a Continue Reading

MarkLogic and CRUD operations: for Better Performance.

Reading Time: 5 minutes Introduction We have been working a lot on MarkLogic Streams and it’s great to see how many people are using them. As part of this work, we’ve also been able to release some new capabilities that allow you to do CRUD operations using the HTTP protocol. We think this will make it easier for people who want to build applications that require more flexibility than Continue Reading

person holding pen pointing at graph

Axon Framework: Event Sourcing with MongoDB

Reading Time: 4 minutes If you want to build Microservices, You may prefer Axon, a Java-based framework. It provides utility to implement CQRS (Command Query Responsibility Segregation), Event Sourcing, and DDD (Domain Driven Design) architectural patterns while developing a software application. Axon facilitates the implementation of Command Handling, Event Routing, Event Sourcing, Snapshotting, and many more building blocks. It has very friendly APIs to use these implementations and build Continue Reading

Developing programmer Development Website design and coding technologies working

Introduction to Liferay. Liferay simple learning in 5 mins.

Reading Time: 3 minutes Liferay is an open-source enterprise portal used to enable corporate intranet and extranet. This Java-based web application platform provides a toolset for the development of customization of portals and websites. Liferay also supports the use of open standards such as the OAI-PMH standard for metadata extraction from repositories (e.g., academic journals). There are different types of Portlet containers such as Apache Pluto, Oracle Web center Continue Reading

Introduction to Liferay DXP: A simple way of web development.

Reading Time: 4 minutes Introduction Liferay Portal is an open-source enterprise portal software, which provides companies with a single platform to manage all their content and applications. It brings together all the disparate systems in your business, such as email, intranet site, knowledge base, discussion forum etc. Liferay DXP is an extension of Liferay 7 CE (Community Edition) and contains additional modules such as EJB container and JMS broker Continue Reading

What Is RegEx? Its Importance and How To Use It.

Reading Time: 6 minutes In this blog, you will get a logical understanding of what is RegEx, what it can do, and what it can’t do, and also you will get a piece of knowledge about when to use them and — more importantly — when not to. So Let’s start. Introduction On an abstract level a regular expression, regex for short, is a shorthand representation for a set Continue Reading

Understanding Shadow and Virtual DOM

Reading Time: 4 minutes In this blog we will understand what is shadow and Virtual DOM that is being used now a days by two famous frontend tools angular and react respectively. To understand these two first we need to understand what is DOM. So, we will divide the whole blog into 3 parts – DOM Shadow DOM. Virtual DOM. Understanding DOM Let us take a simple example of Continue Reading

Let’s Have A Look At MVC (Model View Controller) Architecture

Reading Time: 3 minutes MVC Architecture or Model View Controller Architecture is an architectural pattern where the application is separated into three important parts: The model part, the view part, and the controller part. Nowadays this Architecture is widely used to develop mobile and web applications. If you are interested in web development or mobile application development then this blog can help you to know about the basics of Continue Reading

Sharing Content On Social Media By JavaScript

Reading Time: 2 minutes Social Sharing by JavaScript is one of the biggest and time taking tasks. In this blog, I am going to share how can we easily share our content on Facebook or Twitter-like applications. In this blog, we are going to integrate APIs that are given by Facebook and Twitter. By this, we will share our content on Facebook and Twitter. What is API? API is Continue Reading

Adding Elements Dynamically in Angular

Reading Time: 3 minutes Adding Elements Dynamically in Angular is a very hot and interesting topic. Angular gives us two nice ways to handle form data Reactive Form & Template Driven Form. In this blog, I am going to share how can we dynamically add form field controls in Reactive form. Prerequesties: Knowledge of Angular Reactive form, JavaScript. What is an Angular FormArray? In Angular Reactive Forms, every form Continue Reading