Adjective adjective animal passphrase generator
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
cmd/aaa
aaa.go
aaa_test.go
adjectives.go
animals.go
readme.md

readme.md

GoDoc

Adjective Adjective Animal

This is a port of this node.js project.

It will generate a specified number of adjectives, then an animal at the end. The words are separated by a character of your choice.

Installation

$ go get -u github.com/nii236/adjectiveadjectiveanimal

Example Usage

package main

import (
	"fmt"

	aaa "github.com/nii236/adjectiveadjectiveanimal"
)

func main() {
	result := aaa.Generate(3, "-")
	fmt.Println(result)
}
$ go run main.go
unprotected-ultramicroscopic-foolproof-millipede

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D