Skip to content

Instantly share code, notes, and snippets.

@ijunaid8989
Created June 29, 2016 10:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ijunaid8989/ad821697f0a703bf2c4084226cc0381d to your computer and use it in GitHub Desktop.
Save ijunaid8989/ad821697f0a703bf2c4084226cc0381d to your computer and use it in GitHub Desktop.
clip_exid = title.downcase.gsub(' ','')
chars = [('a'..'z'), (0..9)].flat_map { |i| i.to_a }
random_string = (0...3).map { chars[rand(chars.length)] }.join
clip_exid = "#{clip_exid[0..5]}-#{random_string}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment