Type something to search...

Blog Posts

CSS Animation Notes

CSS Animation Notes

CSS Animation rules and principles. ShothandsTransition - It follows the following syntax:transition: property duration timing-function delay; /* e.g. */ transition: b

read more
CSS Basics Notes

CSS Basics Notes

CSS basic rules and principles. em and rem Both are unit of current font-size used for removing the hardcoded font sizes. em is relative to font-size of its direct or nearest parent. em

read more
CSS Selector Notes

CSS Selector Notes

CSS (SCSS) applies dynamic rules to html elements and with that it follows certain rules and principles. Here, we'll discuss different selectors to apply those rules and what order those will be appli

read more
Handling of blob in JPA and JDBC

Handling of blob in JPA and JDBC

You can store large JSON/String objects in RDBMS with blob. Oracle DB recommends blob for storing JSON objects. In this article, we'll learn it how to handle it using JPA. Hibernate supports blob t

read more