Categories:
What Is Vibe Coding
What is vibe coding? It is the next major shift in how modern software is created and maintained. Instead of relying solely on manual programming, developers now describe what they want in plain language, while artificial intelligence (AI) tools translate that intent into functioning code. This marks a transformation not only in how programs are written but in how creativity, speed, and precision coexist within development environments.
This article explains what vibe coding is, how it works, and which tools power it. You will learn about its benefits, challenges, and the emerging concept of VibeOps, where AI assistance extends into full software operations. The article also explores how we at JetRockets apply this emerging practice to deliver faster, more scalable results.
Function Calling in Ruby: how to create intelligent AI Agents
Large Language Models (LLMs) are powerful, but, in general, they're limited to the knowledge in their training data. What if your AI needs to search your database, create structured itineraries or call other services? This is where Function Calling (also known as tool calling) comes in. It transforms your model into an intelligent agent that can interact with real-time data and services. As we see in the last post, the ruby_llm gem not only makes it easier to work across multiple AI providers (OpenAI, Claude, and Gemini), but it also greatly simplifies the implementation of function calling. To see this implementation in action and explore the details, be sure to check out the repository containing the code examples used in this article.
Building a resilient AI Client in Ruby with Stoplight and Ruby_LLM
Calling external AI providers (like OpenAI, Gemini, or Claude) is a common task in modern web applications. However, these services can sometimes be slow, return errors, or become completely unavailable. This can lead to cascading failures that bring your entire application down. To prevent this, you can use the Circuit Breaker pattern, which isolates failing services and even allows for a graceful failover to a backup provider. In Ruby, the
stoplight gem provides a straightforward way to implement this pattern and build a resilient client, in this article we will use it with ruby_llm to handle AI providers. To see this implementation in action and explore the details, be sure to check out the repository containing the code examples used in this article.CSS Scroll Snap for Overflow Elements
Creating smooth, native-feeling horizontal tab navigation is essential for modern web applications. CSS Scroll Snap provides an elegant solution that ensures your tabs feel polished and intuitive across all devices, with special attention to mobile touch interactions.
Creating an Accordion Without JavaScript Using the HTML `<details>` Tag
An accordion is a popular UI component that allows you to hide and show content on click. Usually, JavaScript is used to create it, but HTML provides us with a built-in <details> tag that allows you to create a functional accordion without a single line of JavaScript!