Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matthewelse/readable-ids
Human Readable Identifiers in Go
https://github.com/matthewelse/readable-ids
Last synced: about 1 month ago
JSON representation
Human Readable Identifiers in Go
- Host: GitHub
- URL: https://github.com/matthewelse/readable-ids
- Owner: matthewelse
- License: mit
- Created: 2015-12-20T00:36:39.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-20T00:38:54.000Z (about 9 years ago)
- Last Synced: 2023-08-02T14:56:17.530Z (over 1 year ago)
- Language: Go
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# readable-ids
Human Readable Identifiers in Go. Generates a random, memorable, human-readable string.
## Usage
```go
package mainimport (
"fmt"
"crypto/rand"
"github.com/matthewelse/readable-ids"
)func main() {
fmt.Println(readableid.GenID(rand.Reader, 100))
}
```## Improvements
- [ ] Increase the number of possible combinations by adding verbs and adverbs.