https://github.com/deftio/wordgen
Generate random words by combining 2-5 letter scrabble words.
https://github.com/deftio/wordgen
Last synced: 4 months ago
JSON representation
Generate random words by combining 2-5 letter scrabble words.
- Host: GitHub
- URL: https://github.com/deftio/wordgen
- Owner: deftio
- License: other
- Created: 2022-11-25T08:22:34.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-19T21:06:34.000Z (over 3 years ago)
- Last Synced: 2025-04-06T23:41:20.705Z (about 1 year ago)
- Language: HTML
- Homepage: https://deftio.github.io/wordgen/index.html
- Size: 111 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Word Gen
A simple html page which generates words by smashing 2-5 letter scrabble words together.
BSD-2 license
## Usage
Clone via git
Deploy as a single page website or file:://open should work
Using URL parameters you can control the word generation.
## Examples (hosted on github pages)
#### Generate words using 2-letter, 3-letter, and 5-letter lists:
[https://deftio.github.io/wordgen/index.html?use=2,3,5](https://deftio.github.io/wordgen/index.html?use=2,3,5)
#### Generate words by combining 3 random words:
[https://deftio.github.io/wordgen/index.html?wpw=3](https://deftio.github.io/wordgen/index.html?wpw=3)
#### Combining 3 words from the lists of 2 and 3 letter words:
[https://deftio.github.io/wordgen/index.html?wpw=3&use=2,3](https://deftio.github.io/wordgen/index.html?wpw=3&use=2,3)
## Building etc
There is no building or bundler - this is a static HTML project written with [bitwrench.js](https://github.com/deftio/bitwrench) and [Bootstrap](https://www.getbootstrap.com)
### Simple use with python3
Make sure you have python3 installed.
Then run this command in the wordgen directory:
```
python3 -m http.server 8080
```
now open your browser:
localhost:8080
to see the web page.
This also works in the AWS cloud9 IDE as a simple demo.