Last letter...

There are days when I feel that I have lost my grip on who I am. Moments when I forget what I am supposed to be, where I am supposed to go, or even the connections that anchor me. It feels like living in a blur, repeating mistakes and retracing paths that always lead to wrong outcomes.

Why do I keep walking this same road when I know how it ends?

It's often easier to follow in patterns of familiarity, even though it hurts, than it is to carve out a new direction. Fear, habit, or maybe even denial convinces me that this time it will be different. But it isn't.

What is odd is that I frequently forget why I embarked on these cycles in the first place. Was it comfort? Was it a fear of change? Or was it just the overwhelming pull of memories, some good and some bad, which keeps me tied to the past?

There's something haunting about forgetting yourself. You're a little stranger to your own reflection caught between who you were, and who you're meant to be. And, yet, even in this haze, a small voice still whispers: It doesn't have to be this way.

Isn't it blame, blame myself, nor others.
It’s about understanding that forgetting is human, but remembering is where healing begins. If I’ve been here before, I can leave.

The road ahead may still feel uncertain, but one thing is clear: I don’t have to stay lost forever. Maybe I was never meant to stay grounded. Maybe I was always meant to leave — this planet of pain I kept orbiting. Time to find a new world within. I’m leaving — not the planet, but the pain I kept calling home.

Peace out...

~kickyourfeels


JDBC & Servlet

  1. Write a simple JDBC program to connect to a MySQL database and print a success message.
  2. Create a Servlet that prints “Hello from Servlet” on the browser.
  3. Create a Servlet to read two numbers from the user and display their sum.
  4. Create a Servlet that demonstrates session handling using HttpSession (store and retrieve a username).

JSP

  1. Create a simple JSP page that displays the current date and time.
  2. Create a JSP page that accepts a name from the user and displays a welcome message.

Filter

  1. Implement a basic Authentication Filter that allows only requests containing a specific parameter (like a token).

Spring Boot Basics

  1. Create a Spring Boot project using Spring Initializr and run it successfully.
  2. Create a REST Controller in Spring Boot that returns a simple “Hello Spring Boot” message.

Spring Boot REST APIs

  1. Create Spring Boot endpoints for GET and POST operations for a Student resource (without a database).
  2. Create a Spring Boot service class and call it from a controller to return a processed message.

Spring Boot + Database

  1. Connect Spring Boot to MySQL and print “Database Connected Successfully”.
  2. Create a Student model class and perform basic CRUD operations using Spring Boot + JDBC Template or JPA.

Testing & Documentation

  1. Test all REST API endpoints using Postman and document request/response outputs.





CPU Scheduling Algorithms

  1. Write a C program to implement the FCFS (First Come First Serve) Scheduling Algorithm.
  2. Write a C program to implement the SJF (Shortest Job First) Scheduling Algorithm.
  3. Write a C program to implement the Priority Scheduling Algorithm.
  4. Write a C program to implement the Round Robin Scheduling Algorithm.

Memory Allocation Algorithms

  1. Write a C program to implement the First Fit Allocation Algorithm.
  2. Write a C program to implement the Best Fit Allocation Algorithm.
  3. Write a C program to implement the Next Fit Allocation Algorithm.
  4. Write a C program to implement the Worst Fit Allocation Algorithm.

Linux Commands

  1. Perform any 10 basic Linux commands and display their outputs.
Q.1 - CASESTUDY HYPERVISOR TYPE 1 VS TYPE 2:

AIM : To Study HYPERVISOR TYPE 1 VS TYPE 2 with advantages and disadvantages

Hypervisor is software layer that allwoing mutiple viertual machines to run on  a single physical system. it mainly divided on two types
1: Type 1
2: Type 2
type 1 directly runs on sytem hardware without OS, while  type 2 runs on top of existing OS. Microsfot hyper v is example of type 1 and Orale viertualbox is example of type 2...

A Type 1 hypervisor runs directly on the physical hardware without needing an underlying operating system. Examples include  Microsoft Hyper-V. Because it sits directly on the hardware, it provides better performance, higher efficiency, and stronger security. It is commonly used in data centers and enterprise environments where reliability and scalability are critical. The advantages of Type 1 hypervisors include faster performance, better resource management, and improved isolation between virtual machines. However, the disadvantages are that they can be more complex to set up and manage, require dedicated hardware, and are not as user-friendly for beginners.

In contrast, a Type 2 hypervisor runs on top of a host operating system, just like a regular application. Examples include Oracle VM VirtualBox  . This makes them easier to install and use, especially for personal use, testing, and development. The advantages of Type 2 hypervisors are simplicity, ease of use, and flexibility since they can run on existing operating systems like Windows or Linux. However, they have some disadvantages such as lower performance due to the extra layer of host OS, higher resource usage, and slightly weaker security compared to Type 1 hypervisors.

Type 1 hypervisors are best suited for enterprise-level applications where performance and security are priorities, while Type 2 hypervisors are ideal for learning, testing, and casual use due to their convenience and ease of setup.


Q.2- S3


login in AWS...

go to S3 services...

create bucket : 
select bucket type
global or regional
give name to bucket

 then create bucket 
 then upolad your fiels t o buclet 







Post a Comment

0 Comments