Skip to content

Instantly share code, notes, and snippets.

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
These are Abe Stanway's wallets. To verify, make sure you're viewing the raw text and verify by pasting this entire message into http://keybase.io/verify.
Bitcoin:
1BWm6Fe1TkFy8EqZz9Q1ReD42VjydiQ6fy
Litecoin:

Keybase proof

I hereby claim:

  • I am astanway on github.
  • I am abe (https://keybase.io/abe) on keybase.
  • I have a public key whose fingerprint is 85B7 94E3 6F3E 9DD7 AB6E 0ECA F879 3B52 47ED 2B36

To claim this, I am signing this object:

data = [
... {
... "name": "response_times",
... "columns": ["time", "value"],
... "points": [
... [1382819388, 234.3],
... [1382819389, 120.1],
... [1382819380, 340.9]
... ]
... }
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE/I6dyrjHJ5WW0H/39cMxDwgGSzcX0xBw/eMhUWh1ar12dwq4NtE8vOwJBh9A10P2G5SbS4bmnzAUJquiT1UzHd6HsRNn31PrqLzuyFKngXnjxZ6J8BJidTwdKfPCKfM/XjMMjVVoF5CW/c54w7Yb/YjNYhINjRZzKVrNEf9FcD2mRnE7bhotE+i9TT249PUxRprKS68kn/ux/5z6HSZNFWArw1LHP792qTYaCtIWy7w9SVYqA58BQJbt7z6wEzbolcvhZ+UfscXJYeAICI43SbPCeAISzRd0sFwjNC8A/2pWQJO/nFsRX8yb1sAAFWWhJFhxQJqcL8cHKASI3l7t abestanway@gmail.com
package main
import (
"io"
"log"
"net/http"
"strings"
)
func CallbackHandler(w http.ResponseWriter, r *http.Request) {
package app
import (
"encoding/json"
"log"
"net/http"
"net/url"
"time"
)
func Pummeler(schema interface{}, callback string, failedAttempts chan bool, pummelers chan int) {
pummelers <- 1
// Format request
jsonEncoded, err := json.Marshal(schema)
if err != nil {
log.Println("Could not encode JSON")
return
}
from pandas import stats, Series
import numpy as np
from numpy import linalg as numpy_linalg
from numpy import mean as numpy_mean
from numpy import sqrt as numpy_sqrt
from numpy import round as numpy_round
from scipy import stats as sci_stats
from scipy import array as scipy_array
from scipy import std as scipy_std
from time import time
# Optimizations
ujson_loads = ujson.loads
time_time = time.time()
settings_ANALYZER_PROCESSES = settings.ANALYZER_PROCESSES
self_analyze = self.analyze
json = ujson_loads('my string')
self_analyze(json)
@astanway
astanway / SHELL_SLOW_CAP.sh
Created February 19, 2013 02:50
SHELL SLOW CLAP
#!/bin/bash
SLOW=10
while true
do sleep $SLOW
echo "clap"
SLOW=$(($SLOW - 1))
done