[ create a new paste ] login | about

ploffie

Name:
Email:
Site/Blog:
Location:
Default language:
Favorite languages:
About:

Saved pastes by ploffie:

Python, pasted on Jul 1:
1
2
3
4
5
from __future__ import division

from math import sqrt, pi, sin, cos, atan

def signum(x):
...
view (199 lines, 2 lines of output)
Python, pasted on Jun 24:
1
2
3
4
5
HALT = -1

def simulate(program, tape, head, NULL="_", display=False):
    tape, state = list(tape), 0
    rules = {}
...
view (55 lines, 132 lines of output)
Python, pasted on Mar 18:
1
2
3
4
from math import cos
from time import clock

EPS = 2.22e-16
...
view (125 lines, 3 lines of output)
Python, pasted on Feb 13:
1
2
3
4
5
# -*- coding: utf-8 -*-
"""
Created on Fri Jan 31 13:34:25 2014

@author:Paul Hofstra
...
view (224 lines, 10 lines of output)
Python, pasted on Feb 13:
1
2
3
4
5
# -*- coding: utf-8 -*-
"""
Created on Fri Jan 31 13:34:25 2014

@author:Paul Hofstra
...
view (217 lines, 6 lines of output)