Tutorials
Getting Started with Rails — Ruby on Rails Guides
Getting Started with RailsThis guide covers getting up and running with Ruby on Rails.After reading this guide, you will know: How to install Rails, create a new Rails application, and connect your application to a database. The general layout of ...
Calculating the largest known prime in Ruby - JP Camara
Looking to impress your Ruby friends by calculating the largest known prime, 2 ** 136_279_841-1?
On Ruby 3.4.0-preview2 and earlier, 2 ** 136_279_841-1 logs a warning and returns Infinity 😔:
2 ** 136_279_841-1 # warning: in a**b, b may be too big ...