Skip to content

Instantly share code, notes, and snippets.

View isosphere's full-sized avatar

Matthew Scheffel isosphere

View GitHub Profile
@russellsamora
russellsamora / us_county_latlng.csv
Last active April 24, 2025 15:01
US counties with fips code, name, and lat lng
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
@lindemann09
lindemann09 / install_CmdStan.sh
Last active June 18, 2024 11:40
CmdStan installation script for Debian Linux
#!/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!
@Pretz
Pretz / generate.py
Created February 8, 2012 21:04
CSV to WAV: Needed a way to convert a list of numbers in a CSV file to a wave audio file. Go python.
#!/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):
@gaute
gaute / githubprint.user.js
Created November 11, 2011 10:45
Printable GitHub issues
// ==UserScript==
// @name Printable GitHub issues
// @namespace https://github.com/gaute
// @include https://github.com/*/issues/*
// ==/UserScript==
if (typeof($) === "undefined") {
$ = unsafeWindow.$;
}