Posts
All the articles I've posted.
Virtual environment in Python
Published: at 05:26 PMTalking about the convenience of Python's virtual environments—a helpful toolbox that keeps your projects tidy by managing dependencies and versions separately, ensuring a stable system.
TIL Spring Data JPA: Making Database Stuff Easier
Published: at 07:12 AMSpring Data JPA simplifies database tasks, reducing boilerplate code with JpaRepository and enabling clear custom queries through intuitive method naming.
Introducing Deliciousness: A Multipage React App for Food Enthusiasts
Published: at 01:44 PMDeliciousness, a multipage React app, showcases my coding journey with a modular structure, key dependencies like React Router and styled-components, and API integration for fetching food recipes, providing an engaging and user-friendly experience.
Calculator React App
Published: at 09:19 AMA React calculator app showcasing CSS Grid layout, useReducer hook for state management, and custom components for digits and operations, providing a functional and interactive experience.
TIL Database Transactions and ACID Principles!
Published: at 06:31 PMDatabase transactions and the crucial ACID properties (Atomicity, Consistency, Isolation, Durability) are explored to ensure data integrity and reliability in real-world applications, using a practical example of money transfer between bank accounts.
Custom Exceptions in Java
Published: at 04:47 PMIn Java programming, custom exceptions act as personalized safety nets, allowing the creation of tailored error-catching mechanisms to handle unique situations beyond the scope of built-in exceptions, enhancing code clarity and maintainability.