Blogs
Popular Blog Posts
What are load balancers ?
Server
What are load balancers ?
Load balancers are devices or software components that distribute incoming network traffic across multiple servers or resources to optimize…
How to configure GCP load balancer
Server
How to configure GCP load balancer
To configure a load balancer in Google Cloud Platform (GCP), you can utilize the Google Cloud Load Balancing service. Here's a general overview of…
Create a Virtual Host on Xampp in 5 steps
Xampp
Create a Virtual Host on Xampp in 5 steps
To create a virtual host (vhost) using XAMPP, you'll need to follow these steps: Step 1: Open the Apache configuration file Locate the httpd-vhosts…
How to creating a FOR loop and a WHILE loop
Javascipt
How to creating a FOR loop and a WHILE loop in JavaScript
Creating a for loop and a while loop in JavaScript using below simple example: // Example: Printing numbers from 1 to 5 using a for loop for (let i…
Calculator program HTML & PHP
PHP
Calculator program HTML & PHP
Simple calculator program in PHP that performs basic arithmetic operations: <?php if ($_SERVER['REQUEST_METHOD'] === 'POST') { $num1 = $…
How to setup Multisite in drupal 9
Drupal
How to setup Multisite in drupal 9
Set up a multisite configuration in Drupal 9, you can follow these steps: Prepare the Environment: Ensure that you have a working Drupal 9…
How to create your own artificial
Artificial intelligence
How to create your own artificial intelligence (AI) program
Creating your own artificial intelligence (AI) program involves several steps and considerations. Here is a general guide to get you started:…
Top 10 useful commands for GIT with example
GIT
Top 10 useful commands for GIT with example
Here are ten useful Git commands along with examples: git init: Initializes a new Git repository in the current directory. git init git…
Algothrim to create a web application
Other
Algothrim to create a web application
Creating a web application involves several steps and considerations. Here's a general algorithmic approach to guide you through the process:…
10 Git Useful Commands for Every Developer
GIT
10 Git Useful Commands for Every Developer
Git commands: 1) git init : This command is used to start a new repository 2) git clone : This command is used to obtain a repository from an…
Using HTML submit form data to google
AppScript
Using HTML submit form data to google speedsheet using appscript
Hello, today we will see how we can upload the data in a Google spreadsheet using Google App script. So let's start We need to follow the 5 steps…
How to bypass recaptcha in automation
Other
How to bypass recaptcha in automation testing ?
Bypassing reCAPTCHA in automation testing is not recommended or encouraged as it goes against the intended purpose of reCAPTCHA, which is to protect…
Python Script to check battery status
Python
Python Script to check battery status Windows 11
Below an example of a Python script that checks the battery status on a Windows system: import psutil battery = psutil.sensors_battery() plugged…
What are MySQL Joins ?
MySQL
What are MySQL Joins ?
MySQL joins allow you to combine rows from multiple tables based on a related column between them. They are used to retrieve data from multiple…
Play mp3 audio track using python code
Python
Play mp3 audio track using python code
Hi again, we will see how you can play songs using python code so let's begin To play songs using Python, you can utilize the pygame library, which…
How to Install the Terraform on WIndows
DevOps
How to Install the Terraform on WIndows
Hey Guys, we are back with the new article, it's not a new topic as terraform is a very popular tool and widely used by many users and developers…
How to delete large size folder faster on
Command line
How to delete large size folder faster on Windows 10
Hey there, We all know that when we want to delete the extra large folders and folders of programming files from windows is very time-consuming. so…
Reset the user password drupal 8
Drupal
Reset the user password drupal 8 programmatically
In this page you can see how you can update the password of any user in drupal 8 programmatically There are several case in which you don't have the…
How to add page templates for content types
Drupal 8
How to add page templates for content types in Drupal 8
Hey, Drupal 8 or Drupal 9 allow you override the template, so you can able to apply styling and structured the html in better way. So many of the…
How to Create Block type twig template
Drupal 8
How to Create Block type twig template Drupal 8 / Drupal 9
Hey,today we will see how we can create the block type twig template for any specific block type in drupal 8 or drupal 9. Drupal 8/9 provided a…
Load Javascript in Wordpress Custom Plugin
Wordpress
Load Javascript in Wordpress Custom Plugin
While creating wordpress plugin, often we need javascript to use extend the user experience. In this tutorial let see how we can load javascript in…
Create Your WordPress theme in 2 seconds
Wordpress
Create Your WordPress theme in 2 seconds
Hey there, This article is based on wordpress theme. Many of us know the wordpress has simple interface and very Useful CMS and easy to understand…
[solved] The minCompileSdk (31) specified in
Android
[solved] The minCompileSdk (31) specified in a dependency's AAR metadata (META-INF/com/android/build/gradle/aar-metadata.properties) is greater than this module's compileSdkVersion (android-27).
Hi everyone, Today we see the common andorid studio error for java/kotlin and its solution. Error: The minCompileSdk (31) specified in a…
Set Geolocation field programmatically
Drupal 8
Set Geolocation field programmatically Drupal 8
Hi, In this page we can see how we can populate the geolocation field programmatically, On several cases while updating and creating the node we…