I hereby claim:
- I am phreeza on github.
- I am tmco (https://keybase.io/tmco) on keybase.
- I have a public key whose fingerprint is CD4C 0BFB 64C8 D681 4227 561E 5924 70A9 0C46 A0EE
To claim this, I am signing this object:
| I’ve created 2 mailing lists for people to keep in touch. | |
| [http://groups.google.com/group/cells-game-users] | |
| [http://groups.google.com/group/cells-game-devs] |
| from random import random | |
| while True: | |
| #keep my room warm | |
| i = random() |
| #include <iostream> // for standard I/O | |
| #include <string> // for strings | |
| #include <iomanip> // for controlling float print precision | |
| #include <sstream> // string to number conversion | |
| #include <opencv2/imgproc/imgproc.hpp> // Gaussian Blur | |
| #include <opencv2/core/core.hpp> // Basic OpenCV structures (cv::Mat, Scalar) | |
| #include <mtip.h> | |
| int ocvMedianBlurMDF(HMTIPMOD hMod) |
| % This is a slightly modified version of the jneuroscience style, which itself is based on the namedplus style. | |
| % Last modified 2014 July 01 by Thomas McColgan | |
| % | |
| % version = 0.1 of jneurophysiol.bst 2014 July 01 | |
| % | |
| % Currently only @article and @incollection entries have been checked to conform with the formatting. | |
| % | |
| % This style makes use of the Automatic Journal Title Abbreviation Package, which can be obtained at | |
| % http://www.compholio.com/latex/jabbrv/ | |
| % Include it by adding \usepackage[noperiod]{jabbrv} to your preamble. |
| # Test the regularisation parameter on the convolutional Layer | |
| from keras.datasets import mnist | |
| from keras.models import Sequential | |
| from keras.layers.convolutional import Convolution2D | |
| from keras.layers.core import Dense,Flatten | |
| from keras.utils import np_utils | |
| from keras.regularizers import l2 | |
| import numpy as np |
| import urllib | |
| import datetime as dt | |
| from datetime import timedelta | |
| import pytz | |
| from PIL import Image | |
| import numpy as np | |
| import subprocess | |
| import socket | |
| import os |
I hereby claim:
To claim this, I am signing this object:
| # -*- coding: utf-8 -*- | |
| # -*- mode: python -*- | |
| # Adapted from mpl_toolkits.axes_grid2 | |
| # LICENSE: Python Software Foundation (http://docs.python.org/license.html) | |
| from matplotlib.offsetbox import AnchoredOffsetbox | |
| class AnchoredScaleBar(AnchoredOffsetbox): | |
| def __init__(self, transform, sizex=0, sizey=0, labelx=None, labely=None, loc=4, | |
| pad=0.1, borderpad=0.1, sep=2, prop=None, **kwargs): | |
| """ |
| # This script is released 'as is' into the public domain | |
| from math import cos,sin | |
| import os | |
| from time import sleep | |
| def y(p): | |
| return (sin(p)**3) | |
| def x(p): | |
| return -(13*cos(p)-5*cos(2*p)-2*cos(3*p)-cos(4*t))/16 | |
| while True: | |
| for r in range(14): |
| # adapted from http://stackoverflow.com/a/12502560/379300 | |
| # Output should be valid markdown, so it can be turned into a nice pdf with pandoc | |
| import poppler | |
| import sys | |
| import urllib | |
| import os | |
| def main(): | |
| input_filename = sys.argv[1] | |
| # http://blog.hartwork.org/?p=612 |