Ansible

Automating with Ansible: A Newbie-Friendly Guide Ansible is a powerful DevOps tool designed for automating tasks on remote servers or nodes. In simple terms, it allows you to automate commands and functions on multiple remote machines from a

By |2023-11-03T14:50:37+05:303 November 2023|0 Comments

Software Development Life Cycle

Software Development Life Cycle is also known as SDLC. It is a procedure to develop software applications. It consists of different stages or different phases. 1. Requirement Gathering / Collection:- Usually, the customer or client gives the requirement

By |2023-05-12T16:16:31+05:3012 May 2023|0 Comments

MYSQL JOINS

JOINS :- JOINS are used to retrieve data from multiple tables in a single query. For JOINs to work, the tables need to be related to each other with a common key value. MySQL Joins Joins is

By |2023-05-12T16:16:39+05:3012 May 2023|0 Comments

What is triggers in SQL?

In MySQL, triggers can be used as a replacement for any task that we need to perform after a certain task performed. This will be executed automatically in response to specific events, such as INSERT, DELETE and UPDATE operations on a table

By |2023-05-12T16:17:11+05:3027 March 2023|0 Comments

WordPress Optimization

Introduction Best tools for speed test Reasons for WordPress Website Slowing down Backup our WordPress Installation Install WordPress Caching Plugin Remove Unused Plugins Optimize Images for Speed Use Lazy Loading if Needed Selectively Load Scripts Updating the PHP

By |2023-01-17T19:54:44+05:3030 August 2022|Comments Off on WordPress Optimization

Headless CMS and Strapi

What is Headless CMS? A headless CMS is a backend content management system (CMS) where the content repository or “body” is separated or decoupled from the presentation layer or “Head”. It allows you to manage content in one

By |2023-01-17T19:54:56+05:3029 August 2022|Comments Off on Headless CMS and Strapi

Basics Of ModelMapper

Today, we are going to look at a basic overview of ModelMapper in a spring boot application. Basically, Modelmapper is a object mapping library which is used for mapping to map DTOs into entities and vice-versa. We are

By |2023-01-17T19:55:01+05:3025 August 2022|Comments Off on Basics Of ModelMapper

Implementing Subscriptions/Recurring Payments using Stripe

What is Stripe ? Stripe is a payment gateway which provides traders the opportunity to sell their products on their platforms and charge their customers based on the product. It provides users the opportunity to sell their product globally

By |2023-01-17T19:55:31+05:3018 August 2022|Comments Off on Implementing Subscriptions/Recurring Payments using Stripe

Blog Crud using Laravel Livewire

Laravel Laravel is a free and open-source PHP Framework for Web Artisans based on Symfony that helps craft Web Applications following the MVC (Model View Controller) design pattern. Many developers would prefer the MVC framework as the architecture

By |2023-01-17T19:55:57+05:308 August 2022|Comments Off on Blog Crud using Laravel Livewire

Introduction of Jboss Drool

In this article, we are going to take a little introduction to JBoss Drool. So, Basically, Java Drool is used to write Rule Engines. A Rule Engine is a domain expert system that applies business rules to the

By |2023-01-17T19:56:17+05:3031 July 2022|Comments Off on Introduction of Jboss Drool

Creating custom Spring Events

In this article, we will create a simple spring boot application to demonstrate sping events. Events are one of the framework's most underutilized but also most valuable capabilities. Spring events are published using publishers and we need a

By |2023-01-17T19:57:03+05:3030 June 2022|Comments Off on Creating custom Spring Events

Realtime Database in Firebase v9

How is a realtime database different from a static database? Realtime Database as the name suggests allows the user to read and write to the database in realtime. The data stored in the database is in key-value format. 

By |2023-01-17T19:58:30+05:302 May 2022|Comments Off on Realtime Database in Firebase v9

How to increase accuracy of Tesseract

Accuracy of Tesseract OCR in Java What is OCR? OCR stands for "Optical Character Recognition". It is a technology that recognizes text within a image. It is commonly used to recognize text in scanned documents and images. OCR

By |2023-01-17T20:03:50+05:3026 April 2022|Comments Off on How to increase accuracy of Tesseract

Add custom java objects using jsonb in spring-boot

Scratch the NoSQL Surface with Spring Boot and PostgreSQL’s JSONB Data Structure NoSQL databases are, as the name says, databases that do not store their data with relationships. There are many types of NoSQL databases: graph , key-value

By |2023-01-17T19:59:24+05:3031 March 2022|Comments Off on Add custom java objects using jsonb in spring-boot

Accessing Google Calendar data using Google Calendar API

In this article, we will create a simple spring boot application for Authorization and fetching data from Google Calendar API. We will authenticate users with Google OAuth 2.0 and use the authentication token to call Google Calendar API

By |2023-01-17T19:59:39+05:3024 March 2022|Comments Off on Accessing Google Calendar data using Google Calendar API

How to Read Encrypted Attachments using Gmail API?

What is Encrypted Attachment? The attachments which are unreadable without a digital key. In generalize form, those files which contents can’t be read without having a digital key (password) are known as encrypted attachments. Why do we need encrypted

By |2023-01-17T19:59:59+05:3011 March 2022|Comments Off on How to Read Encrypted Attachments using Gmail API?

Unit Testing in Django

Testing is a essential step for software development process. Many developers ignore this step and ended up finding bugs in production. Manual testing is fine until your application grows on a large scale. Once your application is big 

By |2023-01-17T20:02:31+05:305 October 2021|Comments Off on Unit Testing in Django

Spring Boot Logging using Log4J2

What is Logging? Logging is defined as storing some key information about a process or application in a file or database. Like date and time, filename, some messages etc. Why do we need to log in to our

By |2023-01-17T20:02:55+05:3020 September 2021|Comments Off on Spring Boot Logging using Log4J2
Go to Top