Skip to content

Instantly share code, notes, and snippets.

@ashleytbasinger
Last active December 25, 2015 00:39
Show Gist options
  • Save ashleytbasinger/6889527 to your computer and use it in GitHub Desktop.
Save ashleytbasinger/6889527 to your computer and use it in GitHub Desktop.
Heroku names
def anonymizer
adjectives = [
"boiling", "hidden", "bitter", "misty", "loquacious", "empty", "dry", "dark",
"rick-rolled", "icy", "cryptic", "quiet", "caffeinated", "cool", "radiant", "electric",
"patient", "superfluous", "dawn", "crimson", "furious", "dry", "blue",
"billowing", "broken", "cold", "bearded", "falling", "frosty", "green",
"long", "late", "lingering", "bold", "little", "morning", "muddy", "blazing",
"red", "rough", "feisty", "small", "sparkling", "throbbing", "shy",
"wandering", "emo", "wild", "black", "screaming", "falling", "solitary",
"fragrant", "shielded", "snowy", "proud", "agile", "twerking", "thirsty",
"Vulcan", "ancient", "green", "lively", "nameless"
]
nouns = [
"waterfall", "river", "breeze", "ninja", "wizard", "rain", "sea", "astronaut",
"Weasley", "yeti", "sunset", "pine", "shadow", "leaf", "dawn", "shoes", "tribble",
"forest", "harbor", "cloud", "jedi", "sandwich", "glade", "eagles", "brook",
"butterfly", "ocean", "dew", "kitten", "dumpling", "fire", "launcher", "firefly",
"feather", "REDBULL", "haze", "mountain", "night", "elf", "darkness",
"fjord", "silence", "reef", "hobbit", "shape", "surf", "thunder",
"citadel", "water", "shwag", "dragon", "water", "resonance", "sword",
"wood", "bayou", "cherry", "tree", "MajorTom", "frost", "crocodile", "octocat",
"frog", "fox", "canyon"
]
"#{adjectives.sample}-#{nouns.sample}-#{rand(1000-9999)}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment