Ruby – how to turn integers into base36 for urls
Here’s a nice trick for turning long integers into much shorter “tinyurl” style strings. 12345.to_s(36) => “9ix” “9ix”.to_i(36) => 12345…
Portfolio site for Chris Kairalla
Here’s a nice trick for turning long integers into much shorter “tinyurl” style strings. 12345.to_s(36) => “9ix” “9ix”.to_i(36) => 12345…