Blog List

How to resolve CORS issues with Keycloak and Apache
TOP Apache Keycloak How To

How to resolve CORS issues with Keycloak and Apache

Fix CORS issues using easy Keycloak 'Web Origins' setup and Apache reverse proxy tweaks

Setting up SSH keys for logging into Linux
TOP Linux

Setting up SSH keys for logging into Linux

SSH keys provide a secure way of logging into your server and are recommended for all users. The SSH uses public-key cryptography, also known as asymmetric cryptography, which uses a key pair consisting of a public key and a private key.

Integrating Stripe payment for Smartwcm subscription module
TOP

Integrating Stripe payment for Smartwcm subscription module

Smartwcm payment module is one of the core features of Smartwcm platform by Pagematics. Our invoice and subscription modules are built based on the Smartwcm payment module.

How SitePM helped Coliman Pool Plasters
TOP Business Development

How SitePM helped Coliman Pool Plasters

Small and medium business owners struggle to find time to manage their businesses and market them. Website is the most effective way to market a business.

Twilio SMS API integration for A1 Rental Vans reservations
TOP

Twilio SMS API integration for A1 Rental Vans reservations

Naturally, each business has their set of specific requirements when it comes to selecting a platform to automate everything.

Why Social Media Marketing is Important
Trending Articles Digital Marketing Online Marketing Social Media Marketing

Why Social Media Marketing is Important

Social media marketing is one of the most critical characters of digital marketing, which gives incredible advantages that help reach millions of users worldwide. Marketing in social media is one of the most adaptable and cost-effective methods that small businesses can use to reach their audience and boost sales over time.

Reasons why a website is needed for a business
Trending Articles SEO Web Design

Reasons why a website is needed for a business

Know in detail why a website is a key element for the success of any business in this era.

How IndiaNear Works
TOP

How IndiaNear Works

IndiaNear is a business listing platform that allows businesses to showcase their businesses.IndiaNear helps deliver a consistent online presence across all digital channels.

20231202 Factory Design Pattern Interview Questions
TOP Articles Trending Articles Ubuntu Web Design

20231202 Factory Design Pattern Interview Questions

The main difference between the Abstract Factory and Factory Design Patterns is that the Factory Design Pattern is used to create a single type of object, while the Abstract Factory Design Pattern is used to create families of related objects.

Search Engine Journal
Web Site Design and Development Process
Java TOP Articles Web Design

Web Site Design and Development Process

The Singleton pattern is a design pattern that ensures a class has only one instance and provides a global point of access to that instance. It is used when we want to restrict the instantiation of a class to a single instance and provide a global point of access to that instance.

Singleton pattern interview questions
Linux Web Design

Singleton pattern interview questions

The Singleton pattern is a design pattern that ensures a class has only one instance and provides a global point of access to that instance. It is used when we want to restrict the instantiation of a class to a single instance and provide a global point of access to that instance.

Singleton Design pattern
Trending Articles Web Design

Singleton Design pattern

The Singleton design pattern is a creational design pattern that restricts the instantiation of a class to one single instance and provides a global point of access to that instance.

MVC Design Pattern2
TOP Articles Ubuntu Web Design

MVC Design Pattern2

The Model-View-Controller (MVC) design pattern is a widely used architecture for developing software applications, especially in the context of graphical user interfaces (GUIs). In the MVC pattern, an application is divided into three interconnected components: Model, View, and Controller. This pattern requires that each of these be separated into different objects.

MVC Design Pattern
Recent Articles Web Design

MVC Design Pattern

The MVC design pattern is a software architectural pattern that separates the application into three components: Model, View, and Controller. The Model component represents the application's data and business logic. The view is responsible for displaying the data to the user. The Controller component handles user input and manages communication between the model and the view.

Multiton Design Pattern
TOP Articles Web Design

Multiton Design Pattern

The Multiton design pattern is a variation of the Singleton pattern that allows the creation of a limited number of instances of a class. In software engineering, the multiton pattern is a design pattern that generalizes the singleton pattern. The multiton pattern allows for the controlled creation of multiple instances, which it manages through a map.

Microservice for Content Moderation
SEO

Microservice for Content Moderation

Humans, automated systems, or a combination can do content moderation. Here we are explaining a microservice for doing content moderation. This microservice takes advantage of Azure content moderator to moderate the content. The whole process involved in content moderation is explained below.

Microservice case study on Smartwcm application
Recent Articles SEO

Microservice case study on Smartwcm application

There are four main modules in the Smartwcm application: Web Content Management System, User Management, Customer Relationship Management, and Payment.

Logger in Java
Java TOP

Logger in Java

The Java logging components help the developer to create logs, pass the logs to the respective destination and maintain a proper format. The logging components are described below.

Interview questions on DNS
TOP Articles Web Design Architecture

Interview questions on DNS

When a DNS resolver receives a query for a domain name within a subdomain, it first sends the query to the DNS server for the parent domain (in this case, example.com). The DNS server for the parent domain responds with the name of the authoritative DNS servers for the subdomain, which the resolver can then query directly for the DNS information for the subdomain.

How does DNS (Domain Name System) work
TOP Articles Linux

How does DNS (Domain Name System) work

A DNS server is a computer server that contains the database of public IP addresses and their corresponding host names. When a client device requests the IP address for a domain name, the DNS server will respond with the corresponding IP address. There are different types of DNS servers, such as authoritative DNS servers, which store the DNS records for a specific domain, and caching DNS servers, which store recently accessed DNS records to speed up DNS resolution.

Function App with Cosmos DB connectivity to save user info
TOP

Function App with Cosmos DB connectivity to save user info

Azure offers a lot of resources to ease development and deployment. Azure Function is a serverless computing service that enables users to run event-triggered code without managing the infrastructure.

Function App to search user info from Cosmos DB
Java Recent Articles Web Design

Function App to search user info from Cosmos DB

Azure offers a lot of resources to ease development and deployment. Azure Function is a serverless computing service that enables users to run event-triggered code without managing the infrastructure. Azure Cosmos DB is a cloud-based database service to store and manage large amounts of data across multiple regions of the world.

Factory Design Pattern
Web Design Architecture

Factory Design Pattern

Factory design pattern defines an interface or abstract class for creating an object. But let the subclasses decide which class to instantiate. The factory method is also known as a virtual constructor. Here subclasses can define the type of objects to deal with them.

Factory Design Pattern Interview Questions
Recent Articles Web Design Architecture

Factory Design Pattern Interview Questions

The main difference between the Abstract Factory and Factory Design Patterns is that the Factory Design Pattern is used to create a single type of object, while the Abstract Factory Design Pattern is used to create families of related objects.

Difference between String, StringBuffer, and StringBuilder
Java TOP

Difference between String, StringBuffer, and StringBuilder

String is useful when you need to represent a fixed string value, whereas StringBuffer and StringBuilder are useful when you need to dynamically modify a string value. If you're working with a large amount of string data or need to perform many modifications to a string, StringBuffer or StringBuilder can offer better performance, depending on whether you're working in a multi-threaded or single-threaded environment.

Creating a good website

Creating a good website

A good website has to be fast alongside with being attractive. According to recent studies, users revisit websites that takes very less time to load and in most cases people don't care even if the website is not attractive if the page loads fast and the site is easy to use. It doesn't take too much extra work to design clean and fast websites, all that is required is to take care of few basics that we usually ignore during development

Comparing the Performance of different implementations
Java TOP Articles

Comparing the Performance of different implementations

The performance of all the list interface implementations is compared in the following example. The most common operations on the list, insertion, deletion, accessing elements, and sorting are compared in the example.

Collection FrameWorks
Java Trending Articles Microservice

Collection FrameWorks

The Java Collection Framework is a built-in library in Java that provides a set of interfaces, implementations, and algorithms for managing collections of objects

Azure Function App
TOP Logging

Azure Function App

Azure Function is a serverless computing service that enables users to run event-triggered code without managing the infrastructure. The cloud infrastructure provides all the up-to-date resources needed to keep the applications running

Abstract Factory Design Pattern

Abstract Factory Design Pattern

The Abstract Factory Design Pattern is a creational pattern that provides an interface for creating families of related objects without specifying their concrete classes.