Skip to content

Instantly share code, notes, and snippets.

View AidanRocke's full-sized avatar

Aidan Rocke AidanRocke

View GitHub Profile
@AidanRocke
AidanRocke / gitbook_on_github
Created April 28, 2018 23:20
Gitbook on Github pages
## taken from: http://sangsoonam.github.io/2016/08/02/publish-gitbook-to-your-github-pages.html
# install the plugins and build the static site
gitbook install && gitbook build
# checkout to the gh-pages branch
git checkout gh-pages
# pull the latest updates
git pull origin gh-pages --rebase
@AidanRocke
AidanRocke / normal_approximation
Created March 14, 2018 00:29
approximating a uniform distribution with a normal distribution
"""
Created on Tue Mar 13 19:17:39 2018
@author: aidanrocke
"""
import tensorflow as tf
import numpy as np