Writing on software development and anything else I find interesting.

All of my long-form thoughts on programming, content creation, and more, collected in chronological order.

Implementation of Singly Linked List in Java

Linked lists are fundamental data structures that play a crucial role in Data structures. Among the various linked lists, the singly linked list stands out for its simplicity and efficiency in specific scenarios. In this blog post, we’ll dive into im

Spring Boot with PostgreSQL & pgAdmin in Docker

Embarking on your journey with Spring IO is a breeze, and I'm here to guide you through the initial steps. The process begins at start.spring.io, where you'll set up a Maven project with Java, opting for the latest Spring Boot version (currently 3.1.1). To personalize your project, choose "dev.vishsali" as the group ID . Our Java arsenal will be fortified with version 17, and included the following dependencies: the web dependency, Spring Data JPA, Postgres driver, and Spring Boot's Docker Compose support.

Basic JWT