VTVincent Taneriinrevirial.hashnode.dev·Sep 30, 2022 · 1 min readMake Image Fade To Transparent With CSSIn this post, we're going to take a look at how to make an image fade to transparent, or what I like to call transparent image gradient with CSS. This is the example. Notice how the bottom part of the image is slowly fading into the background, mak...00
VTVincent Taneriinrevirial.hashnode.dev·Sep 21, 2022 · 1 min readHow To Debug Typescript In VSCodeLet's take a look at how we can configure VSCode's built-in debugger to debug a Typescript Node application. First, you have to install these dependencies (I prefer installing them as dev dependencies): npm install --save-dev typescript ts-node tscon...00
VTVincent Taneriinrevirial.hashnode.dev·Sep 8, 2022 · 8 min readIntroduction to Java's Stream API With ExamplesOverview Let's start with the question "What is a stream?". Stream is basically just a wrapper for a data source that allows you to work with the data declaratively. By using stream, we can process data much faster than when working with it imperativ...00
VTVincent Taneriinrevirial.hashnode.dev·Sep 3, 2022 · 7 min readIntroduction To Transaction in SpringWhat Is A Transaction Let's start the tutorial by introducing the concept of transaction. What exactly is a transaction? A transaction is a sequence of operations that are either executed successfully together or not at all. In the real-world scenari...00
VTVincent Taneriinrevirial.hashnode.dev·Sep 2, 2022 · 1 min readUnderstanding JavaScript Function As First-class CitizenWe often hear the phrase "Function is a first-class citizen in JavaScript", but what exactly does it mean? It means that JavaScript function possesses all the capabilities of JavaScript object and is thus treated like any other object in the language...00