petname-scala − a utility to generate "pet names", consisting of a random combination of adverbs, an adjective, and an animal name.
This library is not well tested, use at your own risk.
http://blog.dustinkirkland.com/2015/01/introducing-petname-libraries-for.html
This utility will generate "pet names", consisting of a random combination of an adverb, adjective, and an animal name. These are useful for unique hostnames or container names, for instance.
As such, PetName tries to follow the tenets of Zooko’s triangle. Names are, human meaningful, decentralized and secure.
Currently published to the sonatype snapshots repository.
in build.sbt add
resolvers += Resolver.sonatypeRepo("staging")
libraryDependencies += "space.piwo" %% "petname-scala" % "0.2"
in code you can
import space.piwo.petname.{Complexity, Petname}
Petname.generate(words = 3, complexity = Complexity.Large)
The initial idea, word-lists, parts of the algorithms and parts of the readme were written by Dustin Kirkland <[email protected]> for Ubuntu systems (but may be used by others). Permission is granted to copy, distribute and/or modify this document and the utility under the terms of the Apache2 License.
The complete text of the Apache2 License can be found in /usr/share/common-licenses/Apache-2.0 on Debian/Ubuntu systems.