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
javascript:s=document.createElement('script');s.type='text/javascript';s.src='https://gist.github.com/raw/674826/typekit-colophon.js';document.getElementsByTagName('head').item(0).appendChild(s);void('') |
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 subprocess import call | |
import time | |
ho = 'h' | |
def ooer(): | |
while True: | |
for i in range(6): | |
yield 'o' | |
yield '-o' |
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
from urllib import urlencode | |
from urlparse import parse_qsl | |
from flask import Flask, request, redirect, url_for | |
import requests | |
GITHUB_AUTHORIZE_URL = 'https://github.com/login/oauth/authorize' | |
GITHUB_ACCESS_TOKEN_URL = 'https://github.com/login/oauth/access_token' | |
app = Flask(__name__) |