I build things, break things, and write what I learn.
Currently exploring:
- → LLMs
- → DevOps
- → Systems
JAVA EXAMPLE CODES

Here, you can find some basic Java example codes to help you get started. These examples cover a variety of fundamental concepts and are great for beginners looking to practice and learn. 1-D 1class …
JAVA - Super and This Keyword

Super and This keywords of Java Super Keyword: Definition: super is a reference to the immediate parent class of the current object. It is mainly used in the context of inheritance. Usage: Call the …
Multithreading in Java

Multithreading in Java is a powerful feature that allows concurrent execution of two or more threads within a program. A thread is a lightweight subprocess and the smallest unit of processing, and …