Talk about new wordlists in README.md
This commit is contained in:
parent
97ac12d834
commit
388867f884
1 changed files with 12 additions and 3 deletions
15
README.md
15
README.md
|
@ -28,9 +28,18 @@ Linux users might need to explicitly run it with `mono`:
|
|||
mono ./MarkovGrams.exe
|
||||
```
|
||||
|
||||
## Wordlists
|
||||
The `wordlists/` directory contains a few interesting wordlists I used when writing and testing this program.
|
||||
|
||||
Filename | Contents | Comments
|
||||
----------------|--------------|------------------
|
||||
`colours.txt` | List of colours | Built with a sneaky bit of Javascript in the developer tools of [this webpage](http://www.colorhexa.com/color-names) from [colorhexa](http://www.colorhexa.com/), which turns out to be a really useful website about colours.
|
||||
`Science Words.txt` | List of cool sciencey-type words | Compiled from scratch by [Starbeamrainbowlabs](https://starbeamrainbowlabs.com/) - that's me!
|
||||
`Cross-Code-Items.txt` | List of items in _[Cross-Code](http://cross-code.com/)_ | A list of all items in the game _CrossCode_. Scraped from [here](https://crosscode.gamepedia.com/Items) by a clever bit of bash in `wordlists/download.sh`. I obviously don't own any of these names.
|
||||
`Final-Fantasy-15-Items.txt` | List of items in _[Final Fantasy 15](https://finalfantasyxv.square-enix-games.com/)_ | Another list of in-game items - this time from _Final Fantasy XV_. Scraped from [this wiki page](http://finalfantasy.wikia.com/wiki/List_of_Final_Fantasy_XV_items) and related pages. The even cleverer bit of bash that does this is also in `wordlists/download.sh`. Again, I don't own any of these :-)
|
||||
|
||||
## Credits
|
||||
- The code was written by [Starbeamrainbowlabs](https://starbeamrainbowlabs.com/) - that's me!
|
||||
- The code was written by [Starbeamrainbowlabs](https://starbeamrainbowlabs.com/) - that's me too!
|
||||
- I found the [Markov Chain Text Generation](http://nullprogram.com/blog/2012/09/05/) post by [Chris Wellons](http://nullprogram.com/) rather useful when writing this.
|
||||
- Wordlists
|
||||
- The list of colours was built with a sneaky bit of Javascript in the developer tools of [this webpage](http://www.colorhexa.com/color-names) from [colorhexa](http://www.colorhexa.com/), which turns out to be a really useful website about colours.
|
||||
- The list of sciencey words was built from scratch by [Starbeamrainbowlabs](https://starbeamrainbowlabs.com/) - that's me too!
|
||||
|
||||
|
|
Loading…
Reference in a new issue