Skip to content

Instantly share code, notes, and snippets.

@brettkelly
brettkelly / TextExpander.py
Created April 20, 2011 18:02
Select a random snippet and write it to STDOUT
#!/usr/bin/env python
import random, sys
# define our list of candidate snippets
s = ["%snippet:typo1%","%snippet:typo2%","%snippet:typo3%"]
# select one at random and write it to STDOUT
sys.stdout.write(random.choice(s))
@givens
givens / RESHAPE
Created December 14, 2012 16:28
Mathematica RESHAPE array command
Reshape[list_, dimensions_] :=
First[Fold[Partition[#1, #2] &, Flatten[list], Reverse[dimensions]]]