Linchpin in motion.
Currently exploring:
- → LLMs
- → DevOps
- → Systems
DVT Practise

to generate various visiualization using pandas and matplotlib. 1import pandas as pd 2import matplotlib.pyplot as plt 3 4# Sample Data 5data = { 6 'Month': ['Jan', 'Feb', …
ML PRACTISE CODES

program 5 - Random Forest Classification – Weather and Iris Dataset 1 2import pandas as pd import numpy as np 3import matplotlib.pyplot as plt import seaborn as sns 4from sklearn.model_selection …
Kafka practise
kafka in wsl home folder cd ~/kafka_2.13-3.8.0 bin/zookeeper-server-start.sh config/zookeeper.properties bin/kafka-server-start.sh config/server.properties nano …
CN Practise Codes
GBN 1#include <stdio.h> 2 3int main() { 4 int total, win, lost, i, j; 5 6 printf("Total frames: "); 7 scanf("%d", &total); 8 9 printf("Window size: "); 10 …
DBMS Practise
plsql to update salary of employee 20% manager, 15% salesman and 10% for others. declare job emp.job%type; esal emp.sal%type; eno emp.eit%type; inc number(7,2); begin eno:=: eid; select job into ejob …
OS PRACTISE CODES
Banker's Algorithmsssss 1#include <stdio.h> 2 3int main() { 4 int n = 5; // Number of processes 5 int m = 3; // Number of resource types 6 int i, j, k; 7 8 int alloc[5][3] = { 9 { 0, 1, 0 }, // …
SSH - Secure Shell

SSH (Secure Shell) is a cryptographic network(encryption and decryption) protocol that allows secure communication between a client and a server over an unsecured network. It encrypts all data sent …
Getting comfortable with my system...
When we set our new system, while setting up an operating system on our system, we got an option to select the hard disk, do I want to divide my memory in certain section, you can divide the memory in …
Let's talk about different environments on my system.
Now let's talk about different environments, so on our system, we can work on more than one O.S. if, like on my windows I have ubuntu. In case of Windows for installing a secondary O.S. there is a …
MD - Markdown

Markdown is a lightweight markup language that allows you to add formatting elements to plaintext text documents. Developed by John Gruber in 2004. In md files we can use certain Html commands easily. …