So far, the \"common\" way to get a random record from the Database has been:
# Postgress Model.order(\"RANDOM()\").first # MySQL Model.order(\"RAND()\").f
I'm a fan of this solution:
Model.offset(rand(Model.count)).first