Thanasekar K

Thanasekar K

CEO - Self Employed

About

I'm a Software Developer proficient in Java programming with a deep understanding of the language's complexities. I'm an opensource contributor and a life long learner. Currently I'm learning Java, Spring Boot, J2EE, Hibernate, RESTapi, Microservices and MySQL. I have also contributed my expertise to the online world by writing numerous articles on various topics.

2 Articles Published

Articles by Thanasekar K

2 articles

How to add gradient borders in css?

CSS
Thanasekar K
Thanasekar K
Updated on 15-Mar-2026 435 Views

Gradient borders add a modern and visually appealing touch to web elements, making them stand out. However, achieving this effect in CSS isn't straightforward because the border property doesn't natively support gradients. This article explores practical workarounds to implement gradient borders using three different methods. Syntax /* Method 1: Using border-image */ selector { border-width: 5px; border-style: solid; border-image: linear-gradient(direction, color1, color2) 1; } /* Method 2: Background and Padding */ .parent { background: linear-gradient(direction, color1, color2); ...

Read More

Decimal vs Double vs Float in MySQL

Thanasekar K
Thanasekar K
Updated on 17-Mar-2025 665 Views

When designing a MySQL database, selecting the right numeric data type is crucial for balancing precision, storage efficiency, and performance. Decimal, Double, and Float are three common numeric types, each serving distinct purposes. While Decimal offers exact precision for financial data, Float and Double handle approximate values for scientific calculations. This article explores their differences, use cases, and practical examples to help you make informed decisions. What is Decimal Decimal (or DECIMAL(M, D)) is a fixed-point data type designed for precise arithmetic, such as financial calculations. It stores exact numeric values with a specified precision (M = total ...

Read More
Showing 1–2 of 2 articles
« Prev 1 Next »
Advertisements