Heroku-like memorable random name generator. Golang port of haikunator.
By default the generator provides 8645 unique combinations.
sparkling-cherry
snowy-brook
bitter-darkness
View the docs.
package main
import (
"fmt"
"github.com/yelinaung/go-haikunator"
"time"
)
func main() {
haikunator := haikunator.New(time.Now().UTC().UnixNano())
fmt.Println(haikunator.HaikuNate())
}
Haikunator is also available in other languages. Check them out:
- Node: https://github.com/AtroxDev/haikunatorjs
- Python: https://github.com/AtroxDev/haikunator
- Ruby: https://github.com/usmanbashir/haikunator
MIT