https://github.com/berrypay/runegen
Rune Generator
https://github.com/berrypay/runegen
golang-package hacktoberfest hactoberfest2022 opensource random-generation randomizer
Last synced: 5 months ago
JSON representation
Rune Generator
- Host: GitHub
- URL: https://github.com/berrypay/runegen
- Owner: berrypay
- License: mit
- Created: 2022-09-20T05:12:04.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-13T04:11:48.000Z (almost 2 years ago)
- Last Synced: 2024-08-13T05:25:54.148Z (almost 2 years ago)
- Topics: golang-package, hacktoberfest, hactoberfest2022, opensource, random-generation, randomizer
- Language: Go
- Homepage:
- Size: 5.62 MB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# runegen #
Random string generator.
### What is this repository for? ###
* This is the main repository for random string generator library and command line.
### How do I get set up? ###
* import the library in go lang code:
```bash
$# go get github.com/berrypay/runegen
```
```go
import (
"fmt"
"github.com/berrypay/runegen"
)
func main() {
fmt.Println(runegen.GetRandom(1, 6))
}
```
There's also a command line tool 'runegen' which can be used to generate random string. To compile:
```bash
$# make
$# cd bin
$# ./runegen -c 7 -l 8 --strict=true -startalpha=true
```
Then you can find the binary in the 'bin' folder.
### License ###
**MIT License**
Copyright (c) 2022 Sallehuddin Abdul Latif
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
### Contribution guidelines ###
* Writing tests
* Code review
* Other guidelines
### Who do I talk to? ###
* Any issues? Contact sallehuddin[AT]gmail.com