Skip to content

Instantly share code, notes, and snippets.

@aliirz
Created October 21, 2014 08:16
Show Gist options
  • Save aliirz/66af713ed7a1dec4d2da to your computer and use it in GitHub Desktop.
Save aliirz/66af713ed7a1dec4d2da to your computer and use it in GitHub Desktop.
def create_uuid(prefix=nil)
time = (Time.now.to_f * 10_000_000).to_i
jitter = rand(10_000_000)
key = "#{jitter}#{time}".to_i.to_s(36)
[prefix, key].compact.join('_')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment