- Get the
mtg-neural-deck.pyscript to download some cards. - Build a deck with your freshly hallucinated cards.
- ???
- Profit!
Check out the Jupyter notebook eda.ipynb to throw some statistics on your already downloaded cards.
| #!/usr/bin/env python | |
| """ | |
| Pandoc filter to convert all images to WebP format. | |
| """ | |
| import os | |
| from pandocfilters import toJSONFilter, Image | |
| from PIL import Image as PILImage |
| #!/usr/bin/env bash | |
| # nixpkgs queries and parses search.nixos.org in a dirty way | |
| channel=22.05 | |
| sort_mode=relevance | |
| max_wait=10000 | |
| function usage() { | |
| echo "Usage:" | |
| echo "$(basename ""$0"") SEARCH_TERM" | |
| exit 1 |
| #!/usr/bin/env python3 | |
| # Download a list of subscribed subreddits | |
| # Since this program uses stderr incoke it like this to store subs to file: | |
| # | |
| # reddit-list-subs > subs.lst | |
| import getpass | |
| import praw | |
| import sys |