From Bulls to Bytes: Excel Data Importation Made Easy with Ruby on Rails
Simplifying Data Integration using Roo
Last Updated on April 11, 2024 Have you ever wondered about the complexity of importing data from Excel files (.xlsx) into a Ruby on Rails …
Two’s Complement trick revealed
Last Updated on April 11, 2024 In my last post I made a promise. We talked about IEEE 754 Standard and some other things. One …
CodeTips#7: Spread operator: the slow beauty
Let’s go learn how and when to use the beautiful spread operator
Last Updated on September 4, 2024 For a couple of years now, the JS community has been using the famous spread operator, AKA three dots …
Command and Conquer Web Applications
Do, Undo, and Redo
Last Updated on September 7, 2024 Sometimes I wonder how great would it be if we could simply undo things in life. Ate more than …
Codeminer42 Open-Source Retrospective
Last Updated on January 11, 2024 At Codeminer, we value and encourage contributions to open-source projects and this year was no different as we kept …
This is the way… the Callable Way
Last Updated on April 11, 2024 Hello, fellow readers! Once again, we are here to talk about some neat Ruby features to make your perfect …
Upgrading Rails: Steps to a Smooth Transition
Rails Renewed: Strategies for Safely and Efficiently Upgrading Your Application
Last Updated on September 4, 2024 Upgrading a Ruby on Rails application may sound like a daunting task, but fear not! This guide presents a …
Coding with GitHub Copilot
Exploring Its Pros and Pitfalls from Side Projects to Real-World Applications
Last Updated on April 11, 2024 GitHub Copilot is an AI-powered code completion and generation tool that works seamlessly within integrated development environments (IDEs). It …
Beyond State
Exploring Mutability, Immutability, and Copying in Programming
Immutability is a fundamental pillar within the functional programming paradigm. This allows us to write robust, simple, and reliable code. An immutable object, once created, …
Auto-Saving Forms Done Right 2/2
Implement a good auto-saving form using React Hooks
Last Updated on April 11, 2024 Auto-Saving is a way to ensure that data provided in a form gets persisted without the need to click …