Codeminer42's Engineering Blog
The Miners

Modeling data with DynamoDB
In this article, we will perform the modeling and queries of a simple e-commerce domain using the NoSQL database, DynamoDB, and address its main concepts. And before we start modeling…
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.…
Enhancing User Experience with Dynamic iFrame Height
In the realm of web development, iframes have long been an essential tool for integrating content from one website into another. Whether it's by embedding a video, displaying a map,…
Understanding Front End Under the Hood
In web development, we typically have two main goals: displaying the desired content to users and enabling them to interact with it by modifying the data they see. However, dealing…
Implementing high-performance multiple sort-rules query in SQL
Hello everyone! I will talk about SQL in this article, more precisely on how to have two completely different order rules for your returning records according to the index. In…