Blogs
How to Create a Simple CRUD App with Rails and React · James Hibbard
Most web applications need to persist data in one form or other. When working with a server-side language, this is normally a straightforward task. However when you add a front-end JavaScript framework to the mix, things start to get a bit trickie...
Tips to improve Rails performance. Learn how to make your it much faster.
Since Ruby on Rails is not the fastest web framework out there you sometimes need to improve the performance in order to keep up. This post will list some great tips to improve Rails performance.Learn how to make your Ruby on Rails application muc...
A prettier plugin for the Ruby programming language
prettier-ruby is a prettier plugin for the Ruby programming language. prettier is an opinionated code formatter that supports multiple languages and integrates with most editors. The idea is to eliminate discussions of style in code review and all...
How to Protect Individual Resources with Passwords
User authentication in Rails is a solved problem but how can we protect individual resources with a password? It turns out that all we need is vanilla Rails.Let’s say we’re building a file sharing website where users can upload files and share lin...