I hereby claim:
- I am mikexine on github.
- I am mikexine (https://keybase.io/mikexine) on keybase.
- I have a public key whose fingerprint is 761B 0E57 BB38 D818 A65B 1A31 F52F 58FE 3139 3970
To claim this, I am signing this object:
| <html> | |
| <body> | |
| <script type="text/javascript"> | |
| getTableau = function() { | |
| return parent.parent.tableau; | |
| }; | |
| getCurrentViz = function() { | |
| return getTableau().VizManager.getVizs()[0]; | |
| }; |
I hereby claim:
To claim this, I am signing this object:
| This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
| Token for proof: | |
| [Verifying my OpenPGP key: openpgp4fpr:761b0e57bb38d818a65b1a31f52f58fe31393970] |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import config | |
| from tweepy import Stream | |
| from tweepy.streaming import StreamListener | |
| from tweepy import OAuthHandler | |
| auth = OAuthHandler(config.consumer_key, config.consumer_secret) | |
| auth.set_access_token(config.access_token, config.access_secret) |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import operator | |
| import json | |
| from nltk import bigrams | |
| from collections import Counter | |
| import re | |
| from collections import defaultdict | |
| from nltk.corpus import stopwords |
| from datetime import datetime | |
| import urllib2 | |
| import urllib | |
| import json | |
| import os | |
| def ajaxRequest(url=None): | |
| """ | |
| Makes an ajax get request. | |
| url - endpoint(string) |