start new:
tmux
start new with session name:
tmux new -s myname
| import os | |
| from PIL import Image | |
| import numpy as np | |
| files = [f for f in os.listdir("handwriting/numbers/")] | |
| files = ["handwriting/numbers/" + f for f in files] | |
| STANDARD_SIZE = (50, 50) | |
| def get_image_data(filename): | |
| img = Image.open(filename) |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |