This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* if you want images to drop a shadow */ | |
img { | |
box-shadow: 10px 10px 5px #888; | |
} | |
/* if you want "fleurons" instead of bullets in unordered lists */ | |
ul { | |
padding-left:1em; | |
list-style:none; | |
margin-left:0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from urllib2 import urlopen, urlencode | |
from pymongo import connection | |
import json | |
from optparse import OptionParser | |
from time import sleep | |
verbose = 1 | |
parser = OptionParser() |
NewerOlder