Codeminer42's Engineering Blog
Advanced

Be cool. Don’t use float/double for storing monetary values
What you're looking for You saw that joke telling that JavaScript doesn't know math because of the expression below. 0.1 + 0.2 === 0.3 This expression will result in false.…
Component-Driven UI Patterns Part ll
In the previous post we talked about creating components and the various patterns that can be used in different ways to create a variety of outcomes. This time around, we’re…
Symmetric Encryption in JavaScript for PII
Disclaimer While this article provides an overview of symmetric encryption and its implementation using standard JavaScript libraries, it should not be considered a substitute for a thorough security review by…
Everything you need to know about Concurrent React (with a little bit of Suspense)
Table of Contents Intro The Problem Synchronous Rendering The Solution Concurrent List Filtering Concurrent Rendering ~ Branching Workflow Concurrent Features Transitions Deferred Values Suspense Additional Considerations Suspension Points Low Priority…
How to use dynamic Components in Vue
Hi guys, in today's post I want to share an interesting scenario about using dynamic components with you. Imagine this situation where you have a search feature in your application.…