Blog

Ruby on Rails: scalare la tua app per una crescita rapida

Scaling the growth of an app has been a really intimidating topic nowadays. Most of the internet resources and blog posts are revolving around scaling Ruby applications. It is very interesting to know what is the ceiling and how much Ruby on Rails can achieve for the rapid growth of applications. Scaling increases Not by …

Ruby on Rails: scalare la tua app per una crescita rapida Leggi altro »

Guida passo passo per costruire la tua prima gemma di rubino

Nowadays all the functionalities in Rails are built as Ruby gems. For example we can use devise gem for the authentication part of the application. It’s like a package or library that is written in Ruby programming language. Moreover it can be imported and used by others in their programs. Step 1 Bundler is like …

Guida passo passo per costruire la tua prima gemma di rubino Leggi altro »

Ruby contro PHP

With more and more applications being built every day, programming languages too are becoming generic and all-purpose. Every programming language comes with its own set of specialization, and comparison between one programming languages to others may seem like a comparison between apples and oranges. However, comparison between two programming languages may offer you insights that …

Ruby contro PHP Leggi altro »

Suddivisione dell'applicazione con binari monolitici in microservizi

As a business gets bigger, they require more functionalities and thus you can’t help but add new models/controller to the existing Rails application and sometimes it becomes a monolith. If you are facing a monolith application which has become unmaintainable and difficult to deploy, you need to know some ways to manage it. If your …

Suddivisione dell'applicazione con binari monolitici in microservizi Leggi altro »

Come aggiungere funzionalità alle classi Ruby con i decoratori

Decorators allow us to add behavior to objects in runtime and don’t affect other objects of the class. Decorators can be applied when you need to dynamically add and remove responsibility to a class. The decorator pattern is a helpful alternative to creating sub-classes. They give additional functionality to a class while still keeping the …

Come aggiungere funzionalità alle classi Ruby con i decoratori Leggi altro »

Come tradurre le stringhe JavaScript in Rails

Rails I18n and elegant message passing to JavaScript The process of “internationalization” usually means to abstract all strings and other locale specific bits (such as date or currency formats) out of your application. The process of “localization” means to provide translations and localized formats for these bits. How I18n in Ruby on Rails Works ❝The …

Come tradurre le stringhe JavaScript in Rails Leggi altro »

it_ITItalian