πŸ”’ Free SSL Certificates for Your Ruby on Rails App Using Let’s Encrypt

May 9, 2025 Security is no longer optional β€” every modern web app must support HTTPS. Thankfully, Let's Encrypt provides free SSL certificates, and with a bit of Ruby magic, you can integrate them directly into your Rails application. Recently, I worked on automating this setup and even contributed a pull request to simplify the … Continue reading πŸ”’ Free SSL Certificates for Your Ruby on Rails App Using Let’s Encrypt

πŸ”— Connecting Ruby on Rails and React: Building a Simple User List API

May 5, 2025 In my recent project, I built a basic full-stack integration using Ruby on Rails as an API backend and React for the frontend, both running in Docker containers. The goal was simple: list users fetched from a Rails API into a React component. What surprised me the most? It turned out to … Continue reading πŸ”— Connecting Ruby on Rails and React: Building a Simple User List API

✨ The Art of Lossless Data Compression in Ruby

April 24, 2025 In a world overflowing with data, compression isn't just a matter of saving spaceβ€”it’s about efficiency, speed, and clean design. That’s where lossless data compression stands out: perfect reconstruction of original data, with zero information loss. Recently, I explored a classic algorithmβ€”Run-Length Encoding (RLE)β€”and implemented it in pure Ruby. It’s a great … Continue reading ✨ The Art of Lossless Data Compression in Ruby

πŸš€ Introducing TrixGenius Alpha 0.1.2 – Now with AI-Powered Math Evaluation!

TrixGenius Alpha 0.1.2 April 15, 2025 πŸ“’ I just released a new version of my Rails engine and gem: TrixGenius! This gem extends the beloved Trix Editor with some fresh, AI-powered superpowers β€” all using Hotwire (Turbo + Stimulus). Whether you're building internal tools, CMS interfaces, or AI-enhanced content platforms, TrixGenius gives your rich text … Continue reading πŸš€ Introducing TrixGenius Alpha 0.1.2 – Now with AI-Powered Math Evaluation!

πŸš€ Finally! The Alpha Version of TrixGenius Has Arrived β€” Supercharge Your Trix Editing Experience with AI! πŸ§ 

April 10, 2025 After many late-night commits, experiments, and way too much mate β˜• β€” I’m incredibly excited to introduce the alpha release of a gem I’ve been crafting with love: TrixGenius β€” A smart extension for Trix + ActionText + Hotwire. πŸš€ Supercharge Your Trix Editor with DeepSeek AI in Ruby on Rails Discover … Continue reading πŸš€ Finally! The Alpha Version of TrixGenius Has Arrived β€” Supercharge Your Trix Editing Experience with AI! πŸ§ 

πŸ”§ Making Ruby on Rails Integration Easier with trix-genius Generators

April 9, 2025 I recently added a Rails Generator to the trix-genius gem β€” a small improvement that aims to make integration smoother and faster for developers using Trix with Rails and Stimulus. πŸ‘‰ TL;DR: rails generate trix_genius:install now does the setup for you. πŸ’¬ Need a Custom Ruby Gem for Your App? If you're … Continue reading πŸ”§ Making Ruby on Rails Integration Easier with trix-genius Generators

πŸš€ Automating Ruby Gem Creation with Thor: A Guide to the Generator Script πŸš€

March 28, 2025 Creating a Ruby gem from scratch often involves repetitive tasks such as setting up the gemspec, creating directories, and initializing version control. To simplify this process, I’ve written a Thor script that automates gem creation. In this post, I’ll walk you through the code behind the generator and explain how to use … Continue reading πŸš€ Automating Ruby Gem Creation with Thor: A Guide to the Generator Script πŸš€

Creating Reusable code in Rails: Plugins, Metaprogramming, and Best Practices

March 25, 2025 Rails developers often face the challenge of writing clean, reusable, and maintainable code. Achieving this requires leveraging plugins, metaprogramming, and Ruby’s dynamic nature. In this article, we’ll explore practical ways to implement these techniques, ensuring your Rails code is DRY (Don’t Repeat Yourself) and efficient. πŸ’‘ Looking to improve your application's code … Continue reading Creating Reusable code in Rails: Plugins, Metaprogramming, and Best Practices

Handling File Transfers in a Heroku Environment with Net::SFTP

March 20, 2025 Daily readers, today’s article is a bit different. Usually, I dive into a specific Ruby or Ruby on Rails topic, but today, time is short, and I need to handle different tasks. So, I’ll share a quick but useful real-world problem I encountered. Need Help with a Heroku Project? Do you need … Continue reading Handling File Transfers in a Heroku Environment with Net::SFTP

🎨 Enhancing the Trix Rich Text Editor in Ruby on Rails 8: A Custom Touch for a Better Experience!

March 13, 2025 Hey there, Rails enthusiasts! πŸ‘‹ I recently dove into customizing the Trix Rich Text Editor on a Ruby on Rails 8 project, and I wanted to share my journey with you all. Whether you're a seasoned Rails developer or just starting out, customizing your text editor can add a personal touch to … Continue reading 🎨 Enhancing the Trix Rich Text Editor in Ruby on Rails 8: A Custom Touch for a Better Experience!