Skip to content

Instantly share code, notes, and snippets.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@s2t2
s2t2 / Citywide_Performance_Measures_FY14_Dataset.csv
Last active August 29, 2015 14:13
City of San Francisco Performance Metrics
We can't make this file beautiful and searchable because it's too large.
Dept,Department,Owner,Program,Goal,KPI_CODE,Performance_Measure,Description,Technical_Description,Performance_Pattern,Unit_of_Measure,FY_2012_Total_Actual_Data,FY_2013_Total_Actual_Data,FY_2014_June_Actual_Data,FY_2014_Total_Actual_Data,FY_2014_Total_Target_Data,FY_2014_Total_Projected_Data,FY_2015_Total_Target_Data,FY_2016_Total_Target_Data,FY_2014_Yr_End_Actual_Explanation,FY_2014_Yr_End_Dept_Comment,Major_Service_Area,Annual_Performance_Measure_Report,City_Survey_Report,CAFR_Report,Government_Barometer_Report,Mayors_Budget_Book,Performance_Appraisal_Report
AAM,ASIAN ART MUSEUM,"Trujillo, Adrian",ASIAN ART MUSEUM,Increase museum membership,AAM.EEI.01.1.1,Number of museum members,"Total number of AAM members: includes general membership up to levels of $3,000 and above, as of the last day of the period. ","Collection Method: Records are developed and maintained in our database: Raiser's Edge. This database houses individual membership records including a member's history, gift date history, gift date, membe
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@s2t2
s2t2 / README.md
Last active July 19, 2016 16:04
Developerweek Accelerate Hackathon (view map live at http://bl.ocks.org/s2t2/raw/cd45dfd8007fcf83fef7/)
@s2t2
s2t2 / NOTES.md
Created February 18, 2015 00:46
Notes on using Vagrant and Test Kitchen with Chef. From an "Ask a Chef Architect" session at the AWS Popup Loft.

Overview

Test Kitchen provides command line tools for interacting with one or more vagrant virtual machines, and can generate multiple vagrant configurations based on information provided in a .kitchen.ymlfile.

Vagrant configures a development environment based on information proved in the Vagrantfile.

Virtual Box is the default virtual machine provider used with the "vagrant" driver (see .kitchen.yml).

BATS is a simple BASH-based unit testing framework for testing the actions that have actually been performed on a virtual machine.

@s2t2
s2t2 / README.md
Last active August 29, 2015 14:15
CodeAcross Project: GovWiki
-- HOSTED FEEDS (row per feed)
SELECT
f.id AS feed_id
-- ,f.name AS feed_name
,f.source_url AS feed_source_url
,h.id AS host_id
,h.name AS host_name
,v.last_modified_at AS feed_last_modified_at
-- ,v.etag AS feed_last_modification_etag
,v.last_checked_at AS feed_last_checked_at
@s2t2
s2t2 / .gitignore
Last active August 29, 2015 14:18
download tracks from the hype machine
tracks
@s2t2
s2t2 / text_reader.rb
Created April 12, 2015 03:46
reads text from a public github repository
require 'github_api'
github = Github.new
dir = github.repos.contents.get :user => 's2t2', :repo => 'text', :path => '/'
files = dir.map{|f|
github.repos.contents.get :user => 's2t2', :repo => 'text', :path => f.path.to_s
}