This repository contains multiple Java-based projects developed for practice, learning, and demonstration purposes. Each folder represents a self-contained Java project with its own purpose, logic, and features.
1. ๐ง email-builder
A Java console application that generates company emails for employees with:
- Department selection
- Random secure password generation
- Email ID creation logic
2. ๐ง BitCompressor
A Java application to compress bit streams using bitwise manipulation and encoding techniques. (Planned or WIP)
3. ๐งฎ process-scheduling-java
Simulates various CPU scheduling algorithms like:
- FCFS
- Round Robin
- SJF (Preemptive/Non-Preemptive)
- HRRN
- Priority & Aging
Useful for OS & DSA practice.
4. โโญ Java-TicTacToe
A fully functional terminal-based Tic Tac Toe game written in Java, supporting:
- Two-player mode
- Win/draw logic
- Neat board UI in console
Navigate to any folder and compile/run the Java files using:
cd folder-name
javac MainFile.java
java MainFile