Skip to content

Instantly share code, notes, and snippets.

View sybrenstuvel's full-sized avatar

Sybren A. Stüvel sybrenstuvel

View GitHub Profile
[tool.poetry]
name = "poetry-test"
version = "0.1.0"
description = ""
authors = ["Me <sybren@example.com>"]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
@sybrenstuvel
sybrenstuvel / sandpile
Created January 16, 2017 16:06
Python code to toy around with Sandpiles, as described on Numberphile: https://www.youtube.com/watch?v=1MtEUErz7Gg
#!/usr/bin/env python
"""Computations on Sandpiles.
See: https://www.youtube.com/watch?v=1MtEUErz7Gg
"""
import numpy as np