Skip to content

Instantly share code, notes, and snippets.

View abramhindle's full-sized avatar

Abram Hindle abramhindle

View GitHub Profile
(
s.boot;
~snd = Buffer.read(s, "/home/me/final.flac");
)
(
var b = { Buffer.alloc(s,2048,1) }.dup;
var hop = 1/4;
PyOnce("
@sofakid
sofakid / gist:6ca32911f4edcd76b00e
Created March 13, 2016 11:52
SuperCollider grammar
CurlyOpen: {
CurlyClose: }
SquareOpen: [
SquareClose: ]
RoundOpen: (
RoundClose: )
GreaterThan: >
LessThan: <
@tkarpinski
tkarpinski / github_issues_to_csv.rb
Created April 12, 2012 18:09 — forked from henare/github_issues_to_csv.rb
Exports Github issues to CSV (API v3)
require 'octokit'
require 'csv'
require 'date'
# Github credentials to access your private project
USERNAME="USER_NAME"
PASSWORD="SEKRIT"
# Project you want to export issues from
USER="REPO_OWNER"
PROJECT="REPO_NAME"
@henare
henare / github_issues_to_csv.rb
Created July 26, 2011 05:00
Exports Github issues to CSV so it can be imported into Jira
require 'json'
require 'open-uri'
require 'csv'
require 'date'
# Github credentials to access your private project
USERNAME="myusername"
PASSWORD="mypassword"
# Project you want to export issues from