Skip to content

IdentifierSentence is a simple lib to let you generate (probably) unique, memorable ids in Java applications.

Notifications You must be signed in to change notification settings

PerWiklander/IdentifierSentence

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IdentifierSentence: Create unique, memorable ids in Java

IdentifierSentence is a simple tool to let you generate (probably) unique, memorable ids in Java applications.

It creates sentences on the form count + adjective + noun + verb + adverb, as described in this Asana blog post by Greg Slovacek, whom this tool is named after.

Linus G Thiel wrote a Node.js implementation that I based my work on.

Pull requests are welcome.

Version

0.0.1

Requirements

  • None

Installation

Via local maven repo:

$ git clone git@github.com:PerWiklander/IdentifierSentence.git
$ cd IdentifierSentence && mvn install

Not released into Maven central yet.

Usage

// Generate a random identifier
String randomSentence = IdentifierSentence.random();

System.out.println(
  String.format(
    "The sentence \"%s\" corresponds to the id %d",
    randomSentence, IdentifierSentence.parse(randomSentence)
  )
);

Credits

Per Wiklander <per@wiklanderconsulting.se>

Thank you

Greg Slovacek

Linus G Thiel <linus@hanssonlarsson.se>

License

(The MIT License)

Copyright (c) 2010 Hansson & Larsson <info@hanssonlarsson.se>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

IdentifierSentence is a simple lib to let you generate (probably) unique, memorable ids in Java applications.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages