Exploring open data:
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
We can't make this file beautiful and searchable because it's too large.
This file contains 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
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.
View at http://bl.ocks.org/s2t2/raw/cd45dfd8007fcf83fef7/.
Or develop locally at http://localhost:8888/.
git clone [email protected]:/cd45dfd8007fcf83fef7.git
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.yml
file.
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.
CodeAcross Project: GovWiki
This file contains 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
-- 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 |
This file contains 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
tracks |
This file contains 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
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 | |
} |