Skip to content

Instantly share code, notes, and snippets.

View waxpancake's full-sized avatar

Andy Baio waxpancake

View GitHub Profile
// ==UserScript==
// @name @chaoticvibing Twitter Blue Clown - twitter.com
// @namespace Violentmonkey Scripts
// @match *://*.twitter.com/*
// @grant none
// @version 1.1.2
// @author @chaoticvibing - GH @busybox11
// @description 11/9/2022, 18:45:28 PM
// @updateURL https://gist.github.com/waxpancake/0abb39e04f053a0fc989c8ade720fb09
// @downloadURL https://gist.github.com/waxpancake/0abb39e04f053a0fc989c8ade720fb09
@waxpancake
waxpancake / keybase.md
Created February 15, 2018 23:07
Keybase

Keybase proof

I hereby claim:

  • I am waxpancake on github.
  • I am andybaio (https://keybase.io/andybaio) on keybase.
  • I have a public key ASBUOpGiCnfE6Py6LBMKUtSZVdTsj53tDGS3dMXASiKoYwo

To claim this, I am signing this object:

A web-based apparatus and device for changing the order
ABSTRACT
A web-based apparatus and device for changing the order. The devices comprises a three-legged stool, a little house, a whole window, a violent shake, a looked round, a golden key, a small cake, a dark hall, a little room, a low hall, a funny watch, a collected round, a large plate, an interesting dance, a large fan, a little bottle, a low curtain, a great wig, a long hall, a large pool, a large round, a pretty dance, a crimson velvet, a large canvas, a large saucepan, a large dish, a large cauldron, a little door, a great hall, a right house, a red-hot poker, a large kitchen, a great letter, an other dish, a clean cup
BRIEF DESCRIPTION OF THE DRAWINGS
@waxpancake
waxpancake / gist:1793368
Created February 10, 2012 22:04
horse_ebookmarklet
javascript:(function()%7Bvar%20head=document.getElementsByTagName('head')%5B0%5D,script=document.createElement('script');script.type='text/javascript';script.src='http://www.heyben.com/horse_ebookmarklet/js/horse_ebookmarklet.js?'%20+%20Math.floor(Math.random()*99999);head.appendChild(script);%7D)();%20void%200
@waxpancake
waxpancake / parse_daily.py
Created February 23, 2011 17:41
Python script to parse The Daily iPad app's JSON and spit out an HTML index
#!/usr/bin/python
import json, sys, re
filename = sys.argv[1]
f = open(filename, 'r')
contents = json.load(f)
contentIndex = {}
for content in contents['content']:
@waxpancake
waxpancake / ThinkUp on EC2 Ubuntu User-Data Script
Created January 4, 2011 04:29
Install script for non-interactively installing ThinkUp and prerequisites
#!/bin/bash -ex
exec > >(tee /var/log/user-data.log|logger -t user-data -s 2>/dev/console) 2>&1
# install ThinkUp on EC2 Ubuntu instance:
#
# @spara 12/23/10
# @waxpancake 1/3/11
# install required packages
sudo apt-get update