Codeminer42's Engineering Blog
The Miners

Ruby and the State of Artificial Intelligence
Hello, fellow readers! It's been a while since I showed up here, and today, we'll talk about a hot topic: Artificial Intelligence (AI) and Machine Learning (ML) in the Ruby…
Exploring the ChatGPT API
A Generative Pre-trained Transformer, or simply, GPT, is one specific model of a kind known as Large Language Models (LLMs). LLMs are a subset of Deep Learning, which is part…
The Right Form of Forming Forms
Imagine you just got paid and can finally buy the laptop you have been dreaming about for months. Since it is expensive (and you are smart), it's better to be…
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.…