Talk about new wordlists in README.md

This commit is contained in:
Starbeamrainbowlabs 2018-09-02 22:36:53 +01:00
parent 97ac12d834
commit 388867f884
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 12 additions and 3 deletions

View File

@ -28,9 +28,18 @@ Linux users might need to explicitly run it with `mono`:
mono ./MarkovGrams.exe 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 ## 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. - 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 - 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!