- Tabli
- https://chrome.google.com/webstore/detail/tabli/igeehkedfibbnhbfponhjjplpkeomghi
- straight forward tab manager that allows quick-closing for tabs
- Lock Tab
- https://chrome.google.com/webstore/detail/lock-tab/jnikalcnjojfkpleicbncjmnieimjlfe
- lets you lock a tab and prevents accidental closing.
- (As of 4/18, open the options and disable the "hit message" to rename tabs - this breaks the functionality)
- Typio
- https://chrome.google.com/webstore/detail/typio-form-recovery/djkbihbnjhkjahbhjaadbepppbpoedaa
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
/* create elb raw logs table with partition */ | |
CREATE EXTERNAL TABLE IF NOT EXISTS elb_logs_raw_partition ( | |
request_timestamp string, | |
elb_name string, | |
request_ip string, | |
request_port int, | |
backend_ip string, | |
backend_port int, | |
request_processing_time double, | |
backend_processing_time double, |
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 | |
import json | |
import os | |
import requests | |
import time | |
debug = False | |
debug_path = 'debug' |