/randname

Go CLI app for generating random names

Primary LanguageGo

randname

Random name generator written in Go for practice. Inspired by phobologic's version and the Docker implementation.

Installation

$ go get github.com/onethirdzero/randname

Usage

# Assuming you have $GOPATH/bin added to your $PATH.
$ randname
> blurrycoral

# Short for --delimiter.
$ randname -d .
> pretty.sapphire

$ randname -d " "
> zippy rose

# Short for --camelcase.
$ randname -c
> MuzzyLilac

Wishlist

  • Make this a cli app
  • Pull words from a public API
  • Add tests
  • Make camel case an option?
  • Make this a proper Go package