top of page

Never its about your favorite framework/language

  • RFilo CTO
  • há 21 horas
  • 1 min de leitura

framework/language

The beauty of programming isn’t about favoring one language or framework—it’s about achieving the end goal: solving problems that matter. Whether you’re building a REST API with Ruby on Rails, a responsive UI with React, or a scalable backend with Spring Boot, the focus should be on delivering value to users. Each tool has its strengths, but the mission remains the same.

For example, rendering a simple user list can be done in multiple ways:

Ruby on Rails (ERB):

<% @users.each do |user| %>
  <li><%= user.name %></li>
<% end %>

React (JSX):

{users.map(user => (
  <li key={user.id}>{user.name}</li>
))}

Spring Boot (Thymeleaf):

<th:each="user : ${users}">
  <li th:text="${user.name}"></li>
</th:each>

These snippets achieve the same result—displaying a user list—yet use different syntax and frameworks. The real win? Choosing the tool that best fits your project’s needs, not chasing a "favorite." What’s your preferred stack for solving real-world problems? #Programming #WebDevelopment #Coding #Tech #SoftwareEngineering

 
 
 

Comentários


rails-rtoledo_edited.png

Hi, I'm Rodrigo Toledo

A full-stack developer skilled in both front-end and back-end development, building and maintaining web applications

  • Facebook
  • Youtube
  • LinkedIn
  • Instagram

I don't know everything, help me

I'm always seeking to improve what I build and to refine my skills. Whenever I master something, I share it. And when I don't understand, I dive deep until I do—learning, growing, and helping others along the way.

Subscribe

Thanks for submitting!

bottom of page