Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am fivetentaylor on github.
  • I am fivetentaylor (https://keybase.io/fivetentaylor) on keybase.
  • I have a public key ASBDmAK6p1ErvCx0qE1Lg0T2aSrAhZu3dbTcG1jlaugJIQo

To claim this, I am signing this object:

@fivetentaylor
fivetentaylor / gist:9595d55a434c326bfd16
Created June 23, 2015 23:26
Streaming unzip of s3 resource back into s3
aws s3 cp s3://<bucket_name>/<resource>.gz - | pv | zcat | aws s3 cp - s3://<bucket_name>/<resource>
@fivetentaylor
fivetentaylor / README.md
Last active August 29, 2015 14:23
Reservoir Sampling Viz

###Given an endless stream of random inputs, resevoir sampling allows one to uniformly sample an exact number of values from the stream

@fivetentaylor
fivetentaylor / index.html
Last active December 18, 2015 06:09
modified the "bounce" easing function in d3.js
<!DOCTYPE html>
<html>
<head>
<title>Welcome to d3!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}