I hereby claim:
- I am yanofsky on github.
- I am yanofsky (https://keybase.io/yanofsky) on keybase.
- I have a public key whose fingerprint is 159B 5596 7E1F D37B C966 773A A23B 423C FEDF C341
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <html> | |
| <head> | |
| <!-- Load the d3 library. --> | |
| <script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> | |
| <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'> | |
| <style> | |
| body { font-family: "Open Sans"; } | |
| text.stateID { dominant-baseline: middle; text-anchor: middle; } | |
| </style> | |
| </head> |
| DATA_FILE = ./GSHPUB.DAT | |
| DATA_ZIP = ./gshpub.zip | |
| DATA_ZIP_LOCATION = http://www.seismo.ethz.ch/static/gshap/gshpub.zip | |
| IMAGE_SCRIPT = ./create_earthquake_raster.py | |
| OUTPUT_IMAGE = ./output.tiff | |
| all: ${OUTPUT_IMAGE} |
The Delaunay triangulation, the dual of Voronoi tesselation, creates a planar, triangular mesh for a given set of points. This example updates the Delaunay triangulation in response to mouse interaction! Colors by Cynthia Brewer; algorithm by Steven Fortune; implementation based on work by Nicolas Garcia Belmonte; interaction inspired by Raymond Hill.
| import glob | |
| from PIL import Image | |
| import json | |
| def calculate_black_stats(): | |
| data = {} | |
| files = glob.glob("png/*.png") | |
| for f in files: | |
| year = f.split(".pdf")[0].split("__")[1] | |
| page = int(f.split("-")[1].split(".png")[0]) |
| #!/bin/bash | |
| # | |
| #````````````````````````````````````````````````````````````````````````````````````````````````````````````````````` | |
| #```````````***`````````````***```````***```````````***````````````******```````````************``````************```` | |
| #```````***********`````````***```````***``````````*****```````````**********```````************``````************```` | |
| #`````***`````````***```````***```````***`````````***`***``````````***`````***``````````***```````````````````***````` | |
| #````***```````````***``````***```````***````````***```***`````````***``````***`````````***`````````````````***``````` | |
| #````***```````````***``````***```````***```````***`````***````````***********``````````***```````````````***````````` | |
| #````***``````***`***```````***```````***``````*************```````*********````````````***``````````````***`````````` | |
| #`````***```````****`````````***`````***``````***************``````***````***```````````***````````````***```````````` |
| Place Overall Place Gender Place Division Name Bib Half Finish Net Finish Gun url | |
| 3284 3012 520 Aaberg, Thomas (USA) 6337 01:31:31 03:07:34 03:11:44 http://boston-iframe.r.mikatiming.de/2013/?content=detail&fpid=search&pid=search&idp=999999117A73260000086958&lang=EN&event=R | |
| Aaker, Aaron (USA) 2018 http://boston-iframe.r.mikatiming.de/2013/?content=detail&fpid=search&pid=search&idp=999999117A732600000889BD&lang=EN&event=R | |
| 4067 3686 686 Aalholm, Christopher (NOR) 6400 01:31:32 03:11:45 03:15:53 http://boston-iframe.r.mikatiming.de/2013/?content=detail&fpid=search&pid=search&idp=999999117A73260000089E91&lang=EN&event=R | |
| 9887 2607 1948 Aanonsen, Jacqueline (USA) 21345 01:39:14 03:35:11 03:38:16 http://boston-iframe.r.mikatiming.de/2013/?content=detail&fpid=search&pid=search&idp=999999117A7326000008981C&lang=EN&event=R | |
| 11119 3283 2330 Abanero, Jennifer (USA) 16758 01:47:03 03:39:28 03:44:41 http://boston-iframe.r.mikatiming.de/2013/?content=detail&fpid=search&pid=search&idp=999999117A73260000089E58&lang |
| #change the working directory to the Desktop | |
| cd ~/Desktop | |
| #unzip the word doc into a new directory called anonDocument | |
| unzip myDocument.docx -d anonDocument/ | |
| #search all of the files in the word doc package and replace any comment or track changes author with anonymous edit | |
| grep -rl "w:author" ./anonDocument | xargs sed -i '' 's/w:author="[a-zA-Z0-9 ]*"/w:author="anonymous edit"/g' | |
| #change the working directory to the anonDocument directory |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
| <title>Text bbox issue</title> | |
| </head> | |
| <style type="text/css" media="screen"> | |
| @import url(http://fonts.googleapis.com/css?family=Cutive); | |
| svg text { |
| #!/usr/bin/env python | |
| # encoding: utf-8 | |
| import sys | |
| import os | |
| import csv | |
| import datetime | |
| #define market holidays | |
| marketHolidays = ["2013-01-21","2013-02-18","2013-03-29","2013-05-27","2013-07-04","2013-09-02","2013-11-28","2013-12-25"] |