Code for Keras plays catch blog post
python qlearn.py
- Generate figures
# LICENSE: MIT | |
import collections | |
RIGHT, LEFT = range(2) | |
Op = collections.namedtuple('Op', [ | |
'precedence', | |
'associativity']) |
Code for Keras plays catch blog post
python qlearn.py
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ | |
/* ========================================================================== | |
HTML5 display definitions | |
========================================================================== */ | |
/** | |
* Correct `block` display not defined in IE 8/9. | |
*/ |
Do your part to resist Government surveillance and take back your privacy:
#!/bin/sh | |
# LaTeX | |
echo "installing LaTeX" | |
sudo apt-get -qq install texlive-full texlive-fonts-extra cm-super texlive-latex-extra auctex | |
sudo texconfig paper letter | |
wget http://www.tug.org/fonts/getnonfreefonts/install-getnonfreefonts | |
chmod +x install-getnonfreefonts | |
sudo ./install-getnonfreefonts | |
sudo getnonfreefonts garamond |
#!/bin/sh | |
echo "updating ubuntu" | |
sudo apt-get -qq update | |
sudo apt-get -qq upgrade | |
# development | |
echo "installing development tools" | |
sudo apt-get -qq install build-essential |