...
Cloak | ||||
---|---|---|---|---|
| ||||
|
Code Block | ||
---|---|---|
| ||
#!/usr/bin/python
import googlemaps
import json
import sys
import re
f = open('/mit/boojum/Secret/google-map-key', 'r')
key = f.readline().rstrip('\n');
gmaps = googlemaps.Client(key);
home='10 Lester Terrace, Somerville, MA'
places = []
portalfile = sys.argv[1]
f = open(portalfile)
for line in f:
if '#' not in line[0]:
if 'http' in line:
url = line.split(';')[2]
geo = url.split('=')[3]
places.append(geo)
places.append(home)
totalmin = 0 |
Latex |
---|
$\sum_0^1 x^y$ |
Latex |
---|
\[ \left( \begin{array}{ccc} a & b & c \\ d & e & f \\ g & h & i \end{array} \right)\] is given by the formula \[ \chi(\lambda) = \left| \begin{array}{ccc} \lambda - a & -b & -c \\ -d & \lambda - e & -f \\ -g & -h & \lambda - i \end{array} \right|.\] |
...