Forked from Phil Hoyt's Pen Generic CSS Button Kit.
A Pen by Mark Silverberg on CodePen.
#!/bin/bash | |
IFS="," | |
while read file args | |
do | |
echo "++ Kicking off Domino run with 'domino run $file $args' ++" | |
domino run --no-sync $file $args | |
done < $1 |
from domino import Domino | |
import pandas as pd | |
import json | |
import os | |
# connect to domino; be sure to have DOMINO_USER_API_KEY env set. Domino automatically includes this for you | |
domino = Domino("nick/digits", api_key=os.environ['DOMINO_USER_API_KEY'], host="https://app.dominodatalab.com") | |
raw_runs = domino.runs_list()['data'] | |
print raw_runs |
var callWithJQuery; | |
callWithJQuery = function(pivotModule) { | |
if (typeof exports === "object" && typeof module === "object") { | |
return pivotModule(require("jquery"), require("c3")); | |
} else if (typeof define === "function" && define.amd) { | |
return define(["jquery", "c3"], pivotModule); | |
} else { | |
return pivotModule(jQuery, c3); | |
} |
(function() { | |
var callWithJQuery; | |
callWithJQuery = function(pivotModule) { | |
if (typeof exports === "object" && typeof module === "object") { | |
return pivotModule(require("jquery"), require("c3")); | |
} else if (typeof define === "function" && define.amd) { | |
return define(["jquery", "c3"], pivotModule); | |
} else { | |
return pivotModule(jQuery, c3); |
https://data.seattle.gov/resource/3c4b-gdxv.json?$select=*,DISTANCE_IN_METERS(location, 'POINT(-122.334540 47.59815)') AS distance_in_meters&$limit=5&$order=distance_in_meters asc |
{ | |
"version": "2", | |
"header": { | |
"title": "Sample of Combined NNDSS Table II Data (2016)", | |
"description": "<strong style='font-size:16px;'><a href='https://data.cdc.gov/'>Data from multiple data.cdc.gov datasets</a> </strong> | This page by [email protected] <br><br>In these tables, all conditions with a 5-year average annual national total of more than or equals 1,000 cases but less than or equals 10,000 cases will be displayed (≥ 1,000 and ≤ 10,000). The Table includes total number of cases reported in the United States, by region and by states, in accordance with the current method of displaying MMWR data. Data on United States exclude counts from US territories.", | |
"navigation": [ | |
{ | |
"url": "https://cdc-science.demo.socrata.com/dataset/Sample-of-Combined-NNDSS-datasets/nmaj-nshg", | |
"label": "Full dataset" | |
}, |
Forked from Phil Hoyt's Pen Generic CSS Button Kit.
A Pen by Mark Silverberg on CodePen.
# Requires official IBM SPSS extension to be installed [https://www.ibm.com/developerworks/community/wikis/home?lang=en#!/wiki/We70df3195ec8_4f95_9773_42e448fa9029/page/Downloads%20for%20IBM%C2%AE%20SPSS%C2%AE%20Statistics] | |
* Encoding: UTF-8. | |
BEGIN PROGRAM Python. | |
# Import python dependencies | |
import urllib2 | |
import csv |