@makandra

2 Followers
6 Following
14 Posts
At makandra, we develop and operate sophisticated digital solutions. Our knowledge database: http://makandracards.com/makandra

Since we founded makandra 15 years ago, we’ve worked on hundreds of Rails projects. Now we’re turning that experience into a new service for your app’s long-term health.

Rails LTS Active Maintenance keeps your Rails app secure and performant for a fixed monthly price, so your team can focus on building.

Read more about how and why on our blog:

https://makandra.de/articles/active-maintenance-for-rails-776

#rubyonrails #railslts #webdevelopment #tech #devops

New: Rails LTS Active Maintenance

We keep your Rails app running: proactive maintenance, updates, and troubleshooting at a fixed price.

makandra.de

The team behind Hardcover.app moved away from Next.js + React and back to Rails with Inertia.js.

They write honestly about performance, speed, and mental overhead and why Rails now fits their team and product better.

Read the post:
https://hardcover.app/blog/part-1-how-we-fell-out-of-love-with-next-js-and-back-in-love-with-ruby-on-rails-inertia-js

Part 1: How We Fell Out of Love with Next.js and Back in Love with Ruby on Rails & Inertia.js - Hardcover Blog

A look at how and why we migrated from Next.js to Ruby on Rails.

Hardcover

RubyUI offers accessible, customizable UI components. All components are built with Phlex.

No extra dependencies, just copy & paste into your app.

https://rubyui.com/

RubyUI - Component Library

Sorbet now (experimentally) supports inline RBS comments. This way you can write standard RBS directly in your Ruby code

No more sig {} blocks, no external .rbs files.

https://sorbet.org/docs/rbs-support

#ruby #rbs #it

RBS Comments Support · Sorbet

## Signature comments

Which LLM writes the best Ruby code?

Oskars Ezerins has built LLM Benchmarks: an open-source tool to test how GPT-4, Claude, and others perform on real-world Ruby and Rails tasks.

https://benchmarks.oskarsezerins.site

Which model performs best for your Ruby work?

#ruby #ai #opensource

Ruby LLM benchmarks - AI Model Performance Dashboard

Comprehensive benchmarks comparing Large Language Model performance across multiple Ruby coding challenges and problem domains.

Rails World 2025 was a blast – great talks, great people, and great energy.

We had the chance to talk to so many of you at our booth. A huge thank you to the Rails Foundation and AmandaPerino for the perfect organization, and to everyone who stopped by our booth!

We’ve collected our impressions, highlights & photos in a short recap:
👉 https://makandra.de/articles/recap-rails-world-2025-756

#RailsWorld #RubyOnRails #makandra #DevCommunity #Rails

Recap: Rails World 2025

Team makandra visited the Rails World conference! Once again with a large team – and for the first time – with a booth to support the conference and engage in conversation with as many people as possible.

makandra.de

Using open-source in closed-source projects?
Make sure your dependencies don’t come with legal baggage.
This post shows how to use license_finder to validate licenses automatically and stay compliant.

👉 Details: https://makandracards.com/makandra/481903-automatically-validating-dependency-licenses-license

#RubyOnRails #OpenSource #Compliance #makandra

Automatically validating dependency licenses with License Finder

"Open-source software (OSS) is great. Anyone can use virtually any open-source code in their projects." Well, it depends. Licenses can make things difficult, especially when you are developing clos...

Tired of noisy diffs from structure.sql in Rails?

We explain why it happens, when to use it over schema.rb, and how to make your SQL schema Git-friendly – with or without tooling.

Read on: https://makandracards.com/makandra/625028-rails-keeping-structure-sql-stable-developers

#RubyOnRails #PostgreSQL #DevTips #makandra

Rails: Keeping structure.sql stable between developers

Why Rails has multiple schema formats When you run migrations, Rails will write your current database schema into db/schema.rb. This file allows to reset the database schema without running migrati...

Would you buy a product that explicitly advertises its AI function?

A new study shows: many wouldn’t – even if it’s better or cheaper.

The "with AI" label may hurt more than help.

Do you agree? How do you feel about tools or content with AI?

👉 Source: https://futurism.com/the-byte/study-consumers-turned-off-products-ai

#AIethics #UX #ProductDesign #makandra

I don't mind
0%
I would not buy it
100%
Poll ended at .
Study Finds Consumers Are Actively Turned Off by Products That Use AI

Researchers have found that including the words "artificial intelligence" in product marketing is a major turn-off for consumers.

Futurism

Need full-text search in Rails without extra gems?

This guide shows how to implement multi-column, ranked search using just PostgreSQL + ActiveRecord.

Stemming, ranking, boosting, indexing – no gem needed.

👉 https://makandracards.com/makandra/624991-rails-postgresql-full-text-search-gem

#PostgreSQL #RailsDev #Search

Rails: Using PostgreSQL full-text search without a gem

PostgreSQL can cosplay as a full-text search engine. It doesn't have the features or fidelity of ElasticSearch or Algolia, but it's good enough if you just need to search and rank large volumes of ...