Dimensionality Reduction : PCA, tSNE, UMAP

Why dimensionality reduction ? Dimensionality reduction is a technique used in machine learning and data analysis to reduce the number of input variables or features in a dataset while retaining the most important information. The process involves transforming

By |2024-01-08T17:00:20+05:3018 May 2023|0 Comments

How to pass a Bearer token in Rest assured?

What is the Authorization Header? The Authorization request header includes credentials to authenticate the client on the server. HTTP provides a built-in framework for user authentication and controlling access to protected resources Bearer token Bearer tokens enable

By |2023-05-15T13:25:43+05:3015 May 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

Implement SSL Using Docker in Maven

Introduction SSL (Secure Socket Layer) is an encryption-based internet security protocol for ensuring the data privacy, authentication and data integrity. It is widely used in the world of internet but it's use in securing web over https

By |2023-05-08T18:29:03+05:308 May 2023|0 Comments

Locking in Spring Boot

When multiple users try to access and modify the same data simultaneously, concurrency issues can arise. In a database system, locks are used to prevent multiple users from modifying the same data simultaneously. There are different types

By |2023-04-28T12:12:33+05:3028 April 2023|0 Comments

Docker Overview

Introduction to Docker Docker is an open-source platform that allows developers to easily create, deploy, and run applications in containers. A container is a lightweight, standalone executable package of software that includes everything needed to run the

By |2023-05-18T12:08:41+05:302 April 2023|0 Comments

Normalization in DBMS

Database Normalization is the process of organizing a relational database in accordance with a series of so-called normal forms in order to reduce data redundancy and improve data integrity. It was first proposed

By |2023-05-16T14:28:08+05:3031 March 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

Introduction to UiKit

What is a Uikit UiKit is an open-source frontend framework for our web development which means that it's basically a collection of CSS and Javascript that helps you to structure your project and basically includes a lot

By |2023-03-13T11:46:36+05:302 March 2023|0 Comments

Storybook

What is a Storybook and How Can I Use it?   Storybook is an open-source JavaScript tool that allows developers to create organized UI systems making both the building process and documentation more efficient and easier to use.

By |2023-03-02T13:35:25+05:302 March 2023|0 Comments

ChatGPT: The Secret Weapon for Professionals in the AI Rivalry Between Google and Microsoft

It's a rare possibility that you missed the ChatGPT buzz! It is an AI-powered chatbot developed by OpenAI, based on the GPT (Generative Pretrained Transformer) language model that uses deep learning techniques to generate human-like responses to

By |2023-02-28T17:32:35+05:3028 February 2023|0 Comments

Apache Druid an Overview

Introduction:- “Apache Druid is a high performance real-time analytics database. It’s designed for workflows where fast queries and ingest matter. Druid excels at instant data visibility, ad-hoc queries, operational analytics, and handling high concurrency.” Apache Druid is

By |2023-03-13T12:20:01+05:304 January 2023|Comments Off on Apache Druid an Overview

OpenAI using Spring Boot

OpenAI is an artificial intelligence research laboratory focused on creating a digital intelligence that surpasses human intelligence. OpenAI's mission is to ensure that artificial general intelligence (AGI) benefits all of humanity. OpenAI works on advancing AI capabilities, safety,

By |2023-01-17T19:45:07+05:301 January 2023|Comments Off on OpenAI using Spring Boot

Criteria Query

Queries are the methods that finds the information from the database and these methods are written inside the interface. Query Creation from method names We have User Model with the attributes : [crayon-6628814fb7008477393100/] Now if we have to

By |2023-01-17T19:45:17+05:3030 December 2022|Comments Off on Criteria Query
Go to Top