Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Markov commands now work! #55

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
0181e68
created testing.json for testing, updated .gitignore, updated some co…
jellopudding Apr 9, 2017
4e2c42c
changed `change_game(...)` to `change_presence(...)`
jellopudding Apr 9, 2017
60032c3
added `!about` command
jellopudding Apr 9, 2017
3c2ff83
fixed `'User' object has no attribute 'nick'`
jellopudding Apr 10, 2017
313a9bd
implimented markov!
jellopudding Apr 10, 2017
afe47c3
configured markov abit
jellopudding Apr 10, 2017
d2e4167
misc changes
jellopudding Jun 8, 2017
46fe348
removed markov
jellopudding Mar 6, 2018
3255b6d
removed markov
jellopudding Mar 6, 2018
5e76743
Added newline at end of file
jellopudding Apr 26, 2018
4903e21
corrected typo
jellopudding Apr 26, 2018
eca4733
reimplemented markov!
jellopudding Apr 26, 2018
f98498e
added readchannel command
jellopudding Apr 27, 2018
6e1341f
made markov save more often
jellopudding Apr 27, 2018
73625ee
made markov try until the end of the desired length
jellopudding Apr 27, 2018
72f11b5
made markov try until the end of the desired length
jellopudding Apr 27, 2018
9ff58cf
allowed markov to read channels other then the one called
jellopudding Apr 27, 2018
09350a9
made the bot not read its own messages
jellopudding Apr 27, 2018
4979602
added vocab.json and words.json to .gitignore
jellopudding Apr 27, 2018
6ab6524
fixed message length stuff
jellopudding Apr 27, 2018
c9c45ea
fixed all insied of msgs
jellopudding Apr 27, 2018
2533d7e
irrelevant changes to default parameters
jellopudding Apr 27, 2018
6199bbc
added newmarkov.py, a better markov then the old one
jellopudding Apr 28, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,15 @@ target/

#Ipython Notebook
.ipynb_checkpoints

# Keep git from pushing `settings.json`s with keys/tokens while keeping
# default settings.json format
testing.json
vocab.json
words.json

# Keep pycharm files out of repo
.idea/S.C.S.I..iml
.idea/misc.xml
.idea/modules.xml
.idea/workspace.xml
Loading