Posts

Showing posts from 2024

True Education Through My Lens !

Image
R eal Education : Building The Foundation Of A Better Future !                “We all are formally educated, but Are we truly prepared for life?” Real education is the process of learning that empowers individuals to think critically, act ethically with empathy and contribute meaningfully to society. Our challenge isn't to outdo others on standardized, externally defined metrics, it's to unlearn comparison and bias of scores, instead cultivate the courage to explore and grow into the best version of ourselves shaped not by competition but by passion, purpose and authenticity. And the one who's passionate, the one is truly fond of, ultimately blooms and succeeds. It’s not a race to the top, It’s journey inward. "The function of education is to teach one to think intensively and to think critically" - Martin Luther King Jr.      We are not born perfect, every day we can try, evolve and becoming best version of ourselves ...

Building a RESTful API with Java Spring Boot and JWT Authentication

Image
A Spring Boot   RESTful API   is a web service built using the Spring Boot framework that follows   REST (Representational State Transfer)   architectural principles. It exposes endpoints over HTTP to perform CRUD : Create, Read, Update, Delete operations on resources such as data entities (e.g. models, books, products, items, users ). Spring Boot uses annotations like  @Component ,  @Entity ,  @Repository ,  @Controller ,  @Service  . Main Application @SpringBootApplication public class JwtReimbursementApplication { public static void main(String[] args) { SpringApplication.run(JwtReimbursementApplication.class, args); System.out.println("Application Starts..!"); } } Model Class @Entity public class ReimbursementModel { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private int id; @Column(unique = true) private String employeeName; int employeeNumber; String productType; String productName; String productPro...

Code, Circles and Calm : Journey into Mandala Art | Precision in Two Languages : Building Software and Crafting Mandalas ! ✨

Image
  B eing a software developer and an artist, Both roles demand accuracy, iteration and pattern recognition. My mandalas hand-drafted or digitally rendered extend those principles beyond code, turning geometric rigor into journals, tech accessories and interface motifs. S oftware development rewards meticulous logic, mandala art rewards meticulous geometry. I practice both for the same reason: clarity through structure. A form that requires a unique combination of precision, structure and sustained focus. While art began as a creative interest, it has quietly sharpened my ability to work through technical challenges with composure and focus. In that way, it’s become not just a practice, but a quiet reinforcement of the skills, I apply in my professional work. “Though the tools differ, pen and paper vs. IDE and terminal or Debugging lines vs. designing lines the principles are the same : Attention, Repetition and Refinement.” The process of building a layer by layer, detail by detail...