golang-petname
golang-petname copied to clipboard
Please tag releases of this library that correspond to the versions you list in `debian/changelog`. Doing so will greatly help individuals who are packaging this library and using something like...
This is fairly obvious after taking a peek at the source and seeing the use of `rand.Intn`. That said I think it would be a good idea to add a...
This came up on reddit: https://github.com/zippoxer/petname/ https://www.reddit.com/r/golang/comments/bfjhhe/petname_a_go_package_that_generates_silly_pet/ He seems to "credit" you but that's not the same as following your license. He's had 3 days to fix it. He's commented...
Hi, Following your comment on Reddit, this is my attempt at making a pull request with the changes I've made at [zippoxer/petname](https://github.com/zippoxer/petname). This pull request adds support for multiple dictionaries...
Hi, Nice tool! Would you be open to publishing a simple Docker image on Docker Hub for this?
Hi, We'd like to use your library to generate nonces but I'm concerned about the [init() function](https://github.com/dustinkirkland/golang-petname/blob/master/petname.go#L76) that's included in petname.go. This init() will be called on startup and could...
You've got this function calling rand.Seed for a non deterministic mode. https://github.com/dustinkirkland/golang-petname/blob/e794b9370d4969374b205de6d84b7894d35c2812/petname.go#L45 However, since go 1.20, rand is automatically seeded, unless explicitly disabled: ``` // Prior to Go 1.20, the...
We use this package to generate some customer-facing names. `burro` in Portuguese (the native language of part of our audience) directly translates to "dumb" in English. Can we remove this...