Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ajeetdsouza/clidle
Play Wordle over SSH.
https://github.com/ajeetdsouza/clidle
cli command-line go golang hacktoberfest ssh tui wordle
Last synced: 21 days ago
JSON representation
Play Wordle over SSH.
- Host: GitHub
- URL: https://github.com/ajeetdsouza/clidle
- Owner: ajeetdsouza
- License: mit
- Created: 2022-02-01T23:32:55.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-08T07:36:31.000Z (4 months ago)
- Last Synced: 2024-10-04T10:07:12.238Z (about 1 month ago)
- Topics: cli, command-line, go, golang, hacktoberfest, ssh, tui, wordle
- Language: Go
- Homepage:
- Size: 244 KB
- Stars: 546
- Watchers: 8
- Forks: 22
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-tuis - clidle
- charm-in-the-wild - clidle - A Wordle clone. (_built with Bubble Tea_) (Applications / Games)
README
# clidle
**Wordle, now over SSH.**
**Try it:**
```sh
ssh clidle.duckdns.org -p 3000
```**Or, run it locally:**
```sh
go install github.com/ajeetdsouza/clidle@latest
```## How to play
You have 6 attempts to guess the correct word. Each guess must be a valid 5 letter
word.After submitting a guess, the letters will turn green, yellow, or gray.
- **Green:** The letter is correct, and is in the correct position.
- **Yellow:** The letter is present in the solution, but is in the wrong position.
- **Gray:** The letter is not present in the solution.## Scoring
Your final score is based on how many guesses it took to arrive at the solution:
| Guesses | Score |
| ------- | ----- |
| 1 | 100 |
| 2 | 90 |
| 3 | 80 |
| 4 | 70 |
| 5 | 60 |
| 6 | 50 |