This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Protocol</key> | |
<string>s3</string> | |
<key>Vendor</key> | |
<string>s3-path-style-http</string> | |
<key>Scheme</key> | |
<string>http</string> |
This file contains hidden or 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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>I'm the title</title> | |
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"> | |
</head> | |
<body> | |
<p>I'm the content</p> | |
</body> |
This file contains hidden or 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
<!DOCTYPE html> | |
<html class="no-js" lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta content="ie=edge" http-equiv="x-ua-compatible"> | |
<meta content="width=device-width, initial-scale=1.0" name="viewport"> | |
<title> | |
Site title | |
</title> | |
<link href="//unpkg.com/[email protected]/dist/css/phila-standards.min.css" rel="stylesheet" type="text/css"> |
This file contains hidden or 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
(function (global, factory) { | |
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('vue'), require('vuex'), require('leaflet'), require('jquery'), require('axios'), require('turf')) : | |
typeof define === 'function' && define.amd ? define(['exports', 'vue', 'vuex', 'leaflet', 'jquery', 'axios', 'turf'], factory) : | |
(factory((global.Mapboard = {}),global.Vue,global.Vuex,global.L,global.$,global.axios,global.turf)); | |
}(this, (function (exports,Vue,Vuex,L$1,$$1,axios$1,turf) { 'use strict'; | |
Vue = Vue && Vue.hasOwnProperty('default') ? Vue['default'] : Vue; | |
Vuex = Vuex && Vuex.hasOwnProperty('default') ? Vuex['default'] : Vuex; | |
var L$1__default = 'default' in L$1 ? L$1['default'] : L$1; | |
$$1 = $$1 && $$1.hasOwnProperty('default') ? $$1['default'] : $$1; |
This file contains hidden or 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
TODO |
This file contains hidden or 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
(() => { | |
const GATEKEEPER_KEY = '35ae5b7bf8f0ff2613134935ce6b4c1e'; | |
return { | |
geocoder: { | |
methods: { | |
search: { | |
url(input) { | |
const inputEncoded = encodeURIComponent(input); | |
return `//api.phila.gov/ais/v1/search/${inputEncoded}` |
This file contains hidden or 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
declare | |
d date; | |
begin | |
for i in (select * from properties_csv) loop | |
begin | |
d:= to_date(i.sale_date, 'yyyymmdd'); | |
exception | |
when others then | |
dbms_output.put_line('KO: "' || i.sale_date || '"'); | |
end; |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
26013 silly addNameRange versions [ 'spdx-license-ids', | |
26013 silly addNameRange [ '0.0.0', '1.0.0', '1.0.1', '1.0.2', '1.1.0', '1.2.0', '1.2.1' ] ] | |
26014 silly addNamed [email protected] | |
26015 verbose addNamed "1.2.1" is a plain semver version for spdx-license-ids | |
26016 verbose readDependencies loading dependencies from /usr/lib/node_modules/kong-dashboard/node_modules/node-sass/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/generate-object-property/node_modules/is-property/package.json | |
26017 verbose afterAdd /home/ubuntu/.npm/spdx-license-ids/1.2.1/package/package.json written | |
26018 silly install resolved [ { name: 'spdx-license-ids', | |
26018 silly install resolved version: '1.2.1', | |
26018 silly install resolved description: 'A list of SPDX license identifiers', | |
26018 silly install resolved repository: |
This file contains hidden or 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
import datum | |
from ais import Geocoder | |
# Connect to dataset. This could be SFTP, local CSV, GeoDB2, whatever. | |
props = datum.table('sftp://user:[email protected]/path/to/data.csv') | |
# Rename fields. | |
props.map_fields({ | |
'acct': 'account_num', |
This file contains hidden or 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
"""Make State Plane | |
Revision ID: 872041725db8 | |
Revises: 685d969dbc0e | |
Create Date: 2016-03-23 15:46:13.297247 | |
""" | |
# revision identifiers, used by Alembic. | |
revision = '872041725db8' |
NewerOlder