TO THE NEW Blog PAGES

DevOpsDrupal

Learn how to configure Drupal with Lando

What is Lando? “Lando is a free, open-source, cross-platform, local development environment and DevOps tool built on Docker container technology. It is mainly designed to work with most major languages, frameworks, and services. Lando provides an easy way for developers of all skill levels to specify simple or complex project requirements and then quickly get […]

Drupal

Migrating CSV files into Drupal

Today will teach you how to import content into Drupal from a Comma-Separated Values (CSV) file. The most recent version of the Migrate Source CSV module will be used. We’ll demonstrate how to set the source plugin up to read files. We’ll also go through a brand-new function that lets you set the file location […]

Automation TestingManual TestingTechnology

Risk Mitigation in Testing

Risk mitigation is a strategy companies use to prepare for and mitigate the impact of hazards. Risk mitigation, like risk reduction, involves taking measures to lessen the negative impact of risks and disasters on company operations. Cyberattacks, natural disasters, and other occurrences that create real or virtual harm are some threats that might endanger a […]

Ansha
Ansha
Read

Drupal

Boosting Drupal 9 Performance: A Step-by-Step Optimisation Guide

Introduction In today’s fast-paced digital landscape, ensuring optimal website performance is paramount for user satisfaction and search engine rankings. Drupal 9, a powerful content management system, offers many features. However, it is crucial to optimise its performance for your site’s success. In this blog post, we will explore effective strategies and techniques to optimise the […]

Drupal

Drupal 9.4 Queue Worker with Batch Processing

In Drupal 9.4, the Queue API has been enhanced to support batch processing. This allows developers to efficiently process a large number of queued items in smaller batches, improving performance and resource utilization. In this blog post, we’ll explore how to implement a Queue Worker with batch processing in Drupal 9.4 using a practical example. […]

Front End Development

Optimization in Vue.js: Tips & Techniques for Improving Vue.js Performance

Introduction: Vue.js is a popular JavaScript framework that simplifies building user interfaces with its intuitive syntax, reactivity system, and component-based architecture. Optimizing the performance of your Vue.js applications is crucial for providing a quick and seamless user experience. Performance is a crucial component of web development. We will explore various tips and techniques to optimize […]

Drupal

Migrate Data from online XML to Drupal 9

The Migrate API provides various services for migrating data from different sources to Drupal 9 (or later). Today we are going to learn how to migrate data from online xml file to our site of Drupal 9. The prerequisite contrib modules are : Migrate Plus, Migrate Tools, Migrate. For setting up folder structure and creating […]

Drupal

Add inline Javascript code in Drupal 9

In our Drupal projects, we have requirements to add some kind of inline javascript code, like adding GTM script. This can be in the page header or page bottom as per requirements. So in the blog, we will see how we can achieve this by both methods. Drupal provides hooks to do this in a […]

Drupal

How to Create Custom Location Dropdown Block On Your Drupal Site

Here we are creating the Location Dropdown Block (Country-Region Dropdown) with the help of taxonomy terms. Steps:- First of all, We have to go on over Drupal Site and Create the Vocabulary Name ‘Location’: structure/taxonomy/Location   Then Create Country as Parent Term And Region as Child Term accordingly :   Create a Custom Module For […]

Drupal

Cache Lifecycle in Drupal 9

Cache Life cycle is important to understand as it plays an important role in optimizing the performance and scalability of web applications. In this blog, I will dive deep into the cache life cycle in Drupal 9, exploring its key stages and highlighting best practices to maximize caching benefits. Various Stages are as follows:- ● […]

Java/JVM

Embracing Virtual Threads in Spring Boot

In this blog, we will see how we can take leverage of project loom virtual threads in spring-boot. We will also do some load testing with the help of JMeter and see how response time is for both virtual threads and normal threads. Let’s quickly setup our spring boot project. <?xml version=”1.0″ encoding=”UTF-8″?> <project xmlns=”http://maven.apache.org/POM/4.0.0″ xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” […]

Blockchain

Blockchain Based DApps as the Future Of Decentralisation

Decentralized applications (DApps) have emerged as a major topic of interest for tech lovers everywhere. Because of its improved security, autonomy, and transparency, blockchain-based DApps use the ‘blockchain’ technology architecture to alter how people interact with technology fundamentally. 1. Open source It allows for monitoring changes by all network users as opposed to just one, […]

Services