Building Robust APIs with Ruby on Rails: A Glimpse into Modern Web DevelopmentAug 19, 2023·3 min read
Parallel Testing in Rails 7: Benefits and PitfallsParallel testing has emerged as a popular strategy for speeding up test suites, and with Rails 7, it's more efficient and effective than ever.Aug 28, 2023·3 min read
Declarative Query Params in Ruby on RailsA quick look at reducing and clarifying controller code via declarative parameters.Aug 6, 2023·2 min read
Revolutionize Your Rails App with DynamoDB: Unleash Speed and Scalability!When developing a new service, we realized that a core model would be well-suited for storage in DynamoDB, Amazon’s fast and scalable NoSQL solution. Why DynamoDB? In my experience, when developing apps, the data primarily shown to users is often kep...Aug 5, 2023·5 min read
Optimizing Data Storage in Ruby on Rails: A Seamless Migration from Database to AWS S3Our application has a table dedicated to storing SENT email messages. This feature enables us to present a record of sent items to users and track changes to email templates. Currently, we store all this data in our database, which accounts for the l...Aug 1, 2023·4 min read
Loading Dynamic Content on Opening Bootstrap Modals with Stimulus JSWhen working on a recent project for Zonmaster.com, I encountered a requirement that called for loading dynamic data into a Bootstrap 5 modal every time it was opened. By default, Bootstrap modals are rendered during the page load and remain static t...Jul 29, 2023·5 min read
How to Pass Data from a Rails view to Stimulus: A Simple GuideEveryone talks about the importance of pulling data from endpoints, but what if you already have your data on the page and want to pass it directly to your Stimulus controller? Here’s an efficient method of passing data to Stimulus! The Problem I hav...Jul 22, 2023·3 min read