Skip to content

Instantly share code, notes, and snippets.

View timle's full-sized avatar

Tim Leonard timle

  • New York, NY
View GitHub Profile
@timle
timle / hdf5_tables_install.sh
Last active August 25, 2016 05:08 — forked from ads901119/hdf5_tables_install.sh
Install HDF5 and pytables on OS X Mavericks
# build and install HDF5
# compiled on 10.11.6
# set where HDF5 will be installed; this is needed for pytables and is used in the configuration line for HDF5 below
export HDF5_DIR=/opt/hdf5
# download, configure and install HDF5
curl -O 'http://www.hdfgroup.org/ftp/HDF5/current/src/hdf5-1.8.17.tar.bz2'
tar xjf hdf5-1.8.17.tar.bz2
cd hdf5-1.8.17
@timle
timle / bigquery.js
Created December 3, 2015 18:39 — forked from soundTricker/bigquery.js
BiqQuery API with Google Apps Script CheatSheet
var projectId = ScriptProperties.getProperty("projectId");
function プロジェクトの取得() {
var list = BigQuery.Projects.list();
Logger.log(list);
}