This file contains 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
""" | |
A webserver to test Google OAuth in a couple of scenarios. | |
""" | |
import argparse | |
import time | |
import tornado.ioloop | |
import tornado.web | |
import tornado.auth | |
import tornado.gen |
This file contains 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
""" | |
Combine multiple images of the same size vertically. Usage: | |
python image_stacker.py path/to/img_1.jpg path/to/img_2.jpg ... img_n.jpg | |
""" | |
import sys | |
from PIL import Image | |
size = (1920, 1080 * len(sys.argv[1:])) | |
output = Image.new('RGB', size) | |
for i, image in enumerate(sys.argv[1:]): |
This file contains 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
# CIF file generated by openbabel 2.3.90, see http://openbabel.sf.net | |
data_I | |
_chemical_name_common '' | |
_cell_length_a 73.3402 | |
_cell_length_b 73.3402 | |
_cell_length_c 73.3402 | |
_cell_angle_alpha 90 | |
_cell_angle_beta 90 | |
_cell_angle_gamma 90 | |
_space_group_name_H-M_alt 'P 1' |
This file contains 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
import smtplib | |
from email.mime.text import MIMEText | |
# Message to be sent | |
message = MIMEText("Hello, texting!") | |
# Sending email username/password and receiving phone number | |
email_username = "" | |
email_password = "" | |
phone_number = "" |
This file contains 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
import requests | |
import getpass | |
import sys | |
import json | |
import Queue | |
# This is a script, let's be lazy. We'll fill up this global and print it. | |
g = {"nodes": {}, "edges": []} | |
# And here's the cutoff criterion | |
MAX_NODES = 1000 |
This file contains 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
####################################################################### | |
# | |
# Cambridge Crystallographic Data Centre | |
# CCDC | |
# | |
####################################################################### | |
# | |
# If this CIF has been generated directly or indirectly from an entry in the | |
# Cambridge Structural Database, then it will include bibliographic, chemical, |
NewerOlder