Rails offset method
Rails has a method for skipping records in a query, 'offset'. It is available through the ActiveRecord::QueryMethods
library.
The docs recommend using it with 'order'. I used the two methods today to return all blog posts, excluding the ten most recent:
Tweet