Skip to content

Instantly share code, notes, and snippets.

View angrychimp's full-sized avatar

Randall Kahler angrychimp

View GitHub Profile
@angrychimp
angrychimp / useful.md
Last active May 7, 2022 21:14
A collection of tools, scripts, browser extensions, etc. that I've found make my life easier.

Browser Extentions

/* 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,
@MikeRixWolfe
MikeRixWolfe / steamsales.py
Last active February 29, 2024 22:22
Steam Sales Checker (via Big Picture data feeds)
#!/usr/bin/env python
import json
import os
import requests
import time
debug = False
debug_path = 'debug'