Skip to content

Instantly share code, notes, and snippets.

View JulianNorton's full-sized avatar
🔒

Julian Norton JulianNorton

🔒
View GitHub Profile
@font-face {
font-family: 'Lincoln';
src:url('AbrahamLincoln.ttf');
font-weight: normal;
font-style: normal;
}
@font-face{
font-family: 'LincolnBold'
src:url('AbrahamLincoln.ttf');

Keybase proof

I hereby claim:

  • I am juliannorton on github.
  • I am juliannorton (https://keybase.io/juliannorton) on keybase.
  • I have a public key whose fingerprint is 3BD2 C207 7B4D 9F59 DD22 7CBF B925 8BF2 58CF 49D1

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am juliannorton on github.
  • I am juliannorton (https://keybase.io/juliannorton) on keybase.
  • I have a public key whose fingerprint is 3BD2 C207 7B4D 9F59 DD22 7CBF B925 8BF2 58CF 49D1

To claim this, I am signing this object:

let FIXTURES = [
{
title :'Hello'
},
{
title : 'World'
}
]
@JulianNorton
JulianNorton / octave-installer.md
Last active April 25, 2016 21:31
Installing Octave and gnuplot on mac for machine learning on cousera [andrew ng]

step 1 [octave]

  • brew tap homebrew/science
  • brew update && brew upgrade
  • brew install octave
  • brew tap --repair
  • brew install octave
  • setenv GNUTERM x11

step 2 [aquaterm]

@JulianNorton
JulianNorton / python-setup.md
Last active April 28, 2016 16:30
Installing juypter notebook and python 3
  1. brew uninstall python
  2. brew install python3
  3. brew linkapps python3
  4. brew install python
  5. brew link --overwrite python
  6. brew link --overwrite python3
  7. pip install --upgrade pip
  8. ipython3 kernel install
  9. jupyter kernelspec install-self
  10. brew update
egrep -o '\w+(.\w)*@\w+\.\w.\S' *
import numpy as np
from matplotlib import pyplot as plt
from numpy import zeros, ones, reshape, array, linspace, logspace, add, dot, transpose, shape, negative
# import matplotlib.pyplot as plt
from pylab import scatter, show, title, xlabel, ylabel, plot, contour
a = np.identity(5)
# print(a)
@JulianNorton
JulianNorton / Preferences.sublime-settings
Created August 11, 2016 17:25
sublime-text 3 user preferences
{
"always_show_minimap_viewport": true,
"auto_complete_triggers":
[
{
"characters": "<",
"selector": "text.html"
},
{
"characters": ".",
@JulianNorton
JulianNorton / genetic-algo-tutorial.py
Last active December 7, 2016 18:26
genetic-algorithm-tutorial
print 'test'
import random
def chromosome():
gene = ""
for i in xrange(8):
gene += str(random.randint(0,1))
return gene