Skip to content

Instantly share code, notes, and snippets.

@yblein
yblein / .block
Last active March 11, 2023 21:57
WebGL Cellular Automata
license: gpl-3.0
@yblein
yblein / csv2pgf.py
Last active January 25, 2016 10:44
Print a tex file plotting the given csv file with pgfplots
#!/usr/bin/python
# Print a tex file plotting the given csv file with pgfplots
import csv
import sys
if len(sys.argv) < 2:
print "error: expected csv filename"
sys.exit()