This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fips_code | name | lng | lat | |
---|---|---|---|---|
01059 | Franklin | -87.843283 | 34.44238135 | |
13111 | Fannin | -84.31929617 | 34.86412558 | |
19109 | Kossuth | -94.20689787 | 43.20413984 | |
40115 | Ottawa | -94.81058917 | 36.83587796 | |
42115 | Susquehanna | -75.80090451 | 41.82127676 | |
40053 | Grant | -97.78493404 | 36.79651364 | |
31029 | Chase | -101.6979407 | 40.52371008 | |
29213 | Taney | -93.04127586 | 36.65473646 | |
32510 | Carson City | -119.7473502 | 39.15108405 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Linux installation script for CmdStan (http://mc-stan.org/) | |
# Downloads and installs CmdStan on DEBIAN/UBUNTU LINUX | |
# The following shell commands will be created (/usr/bin/...): | |
# stanc | |
# stan_make | |
# stan_print | |
# | |
# Please adapt VERSION number! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import wave | |
import numpy | |
import struct | |
import sys | |
import csv | |
from scikits.samplerate import resample | |
def write_wav(data, filename, framerate, amplitude): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Printable GitHub issues | |
// @namespace https://github.com/gaute | |
// @include https://github.com/*/issues/* | |
// ==/UserScript== | |
if (typeof($) === "undefined") { | |
$ = unsafeWindow.$; | |
} |