https://github.com/wiremoons/tripass
tripass : cli password generator that uses a dictionary of three letter words.
https://github.com/wiremoons/tripass
Last synced: 5 months ago
JSON representation
tripass : cli password generator that uses a dictionary of three letter words.
- Host: GitHub
- URL: https://github.com/wiremoons/tripass
- Owner: wiremoons
- License: mit
- Created: 2023-07-02T12:29:15.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-07-20T08:50:26.000Z (11 months ago)
- Last Synced: 2025-07-20T10:24:28.757Z (11 months ago)
- Language: Odin
- Size: 115 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# tripass
tripass : cli password generator that uses a dictionary of three letter words.
**WORK IN PROGRESS** : project to try out Odin programming language. Now fully functional since v0.9.0.
## SCREENSHOTS
Default output:

CLI options:

Additional info output:

## HOW TO BUILD
The steps below assume a working install of the Odin compiler. Full instructions are available on the [Odin](https://odin-lang.org/) web site if needed.
To clone and build for first time:
```
git clone --recurse-submodules https://github.com/wiremoons/tripass.git
cd tripass
git submodule update --remote --merge
./build.sh
./tripass
```
To refresh a previous clone and re-build:
```
cd tripass
git pull --recurse-submodules
git submodule update --remote --merge
./build.sh
./tripass
```
## LICENSE
The program is licensed under the "MIT License" see
http://opensource.org/licenses/MIT for more details.
Copy of the [tripass license](./LICENSE)