TO THE NEW Blog PAGES

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, […]

Java/JVM

Top 10 Spring Boot Annotations.

                                                                                SpringBootApplication: The primary annotation used in Spring Boot applications. It combines three other annotations:  @Configuration, […]

AnayticsBig DataCloud

Improving query performance in Snowflake and its related costs

In the previous blog, we understood how to Optimally use Snowflake Warehouse and Tables. Now, we continue the series by diving into Snowflake performance tuning, focusing on how to enhance query performance and manage associated costs in Snowflake cloud services. So let’s continue the blog series, where we will now focus on improving the performance […]

Java/JVM

Structured Task Scope – New Concurrency Model in JVM

Since the advent of virtual threads in Java, we have had a new and nice concurrency model introduced as StructuredTaskScope. We will see some patterns in this new model. We need to know that with virtual threads, since they are very cheap, we don’t need to pool them. Also, we need to know that a virtual […]

Drupal

Creating a Custom Text Format Filter Plugin in Drupal: A Beginner’s Tutorial with Code Examples

What is Text Format Filter plugin in Drupal? Text Format Filter Plugins in Drupal are like editing tools that allow you to change the content of text fields on your website. These fields could be things like the main body of a blog post or a user’s comment on your site. These plugins let you […]

Automation TestingCloudDevOps

Implementing Terraform for Azure Cloud

In today’s digital world, everything is moving towards automation, including cloud computing. Microsoft Azure is one example of a public cloud computing service. All hardware, software, and other supporting infrastructure within the public cloud is owned and managed by the cloud provider. Here you can access these services and manage your account using a web […]

CloudDevOps

Penny Pincher – Cloud Resource Optimization recommendation based on historical data to save cost.

With growing businesses in Amazon Web Services (AWS), finding idle resources, auditing your costs and managing your inventory are some of the most complex use-cases. This is particularly true for businesses or organizations that utilize a wide range of AWS services and resources, as keeping track of all these or idle resources can quickly become […]