Skip to content

Instantly share code, notes, and snippets.

View johnwalley's full-sized avatar

John Walley johnwalley

View GitHub Profile
@johnwalley
johnwalley / .block
Last active January 13, 2020 03:44
WEHoRR Winning Times and Flow Correlation
license: bsd-3-clause
@johnwalley
johnwalley / .block
Last active January 13, 2020 03:46
WEHoRR Winning Times
license: mit
@johnwalley
johnwalley / .block
Last active December 5, 2023 13:49
Cambridge Pub Map
license: bsd-3-clause
@johnwalley
johnwalley / .block
Last active September 16, 2020 10:31
d3-simple-slider
license: bsd-3-clause
scrolling: yes
border: no
@johnwalley
johnwalley / .block
Last active January 13, 2020 03:41
Cambridge Bike Theft
license: mit
@johnwalley
johnwalley / Plex
Created July 2, 2017 14:26
Docker create scripts
docker create --name plex --net=host -e VERSION=latest -e PUID=1000 -e PGID=1000 -e TZ=Europe/London -v /media/data/plex/config:/config -v /media/data/tv:/data/tv -v /media/data/films:/data/films linuxserver/plex
@johnwalley
johnwalley / .block
Last active December 20, 2017 23:15
Bumps Fines
license: mit
@johnwalley
johnwalley / index.html
Last active October 31, 2017 11:42
Sierpinski triangle
<style>
body {
background: #202020;
margin: 0px;
padding: 0px;
}
p {
position: absolute;
font-family: Open Sans, sans-serif;
@johnwalley
johnwalley / Memoize
Last active January 9, 2017 20:59
Memoization
function memoize(func) {
var cache = {};
return function(n) {
if (cache.hasOwnProperty(n)) {
return cache[n];
}
var result = func(n);
cache[n] = result;
@johnwalley
johnwalley / README.md
Last active May 5, 2023 01:47
3D Printer Contour Plot

A contour plot of the height of the bed of a 3d printer.