https://github.com/outofcoffee/base36
CLI that implements Base36 encoding and decoding.
https://github.com/outofcoffee/base36
base36 cli
Last synced: about 1 year ago
JSON representation
CLI that implements Base36 encoding and decoding.
- Host: GitHub
- URL: https://github.com/outofcoffee/base36
- Owner: outofcoffee
- License: mit
- Created: 2020-02-22T21:20:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-22T21:25:04.000Z (over 6 years ago)
- Last Synced: 2025-03-08T23:02:03.593Z (over 1 year ago)
- Topics: base36, cli
- Language: Go
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# About
[](https://travis-ci.org/outofcoffee/base36)
CLI that implements Base36 encoding and decoding.
## Examples
```shell script
# build docker image
make docker
# encode to base36
docker run --rm -it outofcoffee/base36 --encode hello
5PZCSZU7
# decode from base36
docker run --rm -it outofcoffee/base36 --decode 5PZCSZU7
hello
```
## License
[MIT](LICENSE)