Integrate OpenAI API with Rails
ChatGPT and OpenAI is definitely the rage right now. I’m specifically amazed by the reach of this technology more than anything else. I’d argue that going by this trend, ChatGPT might reach more us...
ChatGPT and OpenAI is definitely the rage right now. I’m specifically amazed by the reach of this technology more than anything else. I’d argue that going by this trend, ChatGPT might reach more us...
I was recently tasked with this feature to create a modal in our Rails monolithic application at work. This was the acceptance criteria in the ticket: Bit of background: We have an applicati...
I am going to start a series where I write about some of my favorite gems in Ruby / Ruby on Rails. These gems are in no specific order. I would like to start this series with the annotate gem. Wha...
Testing is a huge aspect of a Ruby on Rails developer’s life. Concepts like TDD are hugely popular and also heavily contested at the same time in the Rails community. Even if a company follows test...
A Ruby on Rails web app is nothing but several Rack apps stacked on top of each other. When a request is made to a Ruby on Rails web server, the request is passed along several Rack apps before it ...
In the previous post, I wrote about how we can use APIPIE to document and validate a REST API. We define the request response schema format in a separate file outside of our controller which helps ...
Have you ever had to scavenge through the source code just to figure out how to use the damn REST API? Have you ever had a bug because the front-end was expecting a response in a different format?...