Skip to content

Instantly share code, notes, and snippets.

View allthesignals's full-sized avatar
🥑
coding lotsa code

Matt Gardner allthesignals

🥑
coding lotsa code
View GitHub Profile
<WMS_Capabilities xmlns="http://www.opengis.net/wms" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:esri_wms="http://www.esri.com/wms" version="1.3.0" xsi:schemaLocation="http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd http://www.esri.com/wms http://elb-arcserver1-1252108108.us-east-1.elb.amazonaws.com:80/arcgis/services/gisdata/b07204_geomobility_in_migration_acs_m/MapServer/WmsServer?version=1.3.0%26service=WMS%26request=GetSchemaExtension">
<Service>
<Name>
<![CDATA[WMS]]>
</Name>
<Title>
<![CDATA[ gisdata_b07204_geomobility_in_migration_acs_m ]]>
</Title>
<Abstract>WMS</Abstract>
<KeywordList>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>carto-mapboxgl-demo</title>
<link href='https://api.mapbox.com/mapbox-gl-js/v0.26.0/mapbox-gl.css' rel='stylesheet' />
<style>
body {
@allthesignals
allthesignals / README-Template.md
Last active May 26, 2017 20:51 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Screenshots

image

Getting Started

@allthesignals
allthesignals / components.child-component.js
Last active September 21, 2017 02:31
Weird Attr Binding Issue
import Ember from 'ember';
export default Ember.Component.extend({
didUpdateAttrs() {
alert('did receive attributes on child component')
},
});
import Ember from 'ember';
export default Ember.Controller.extend({
queryParams: ['housingFilters.type','housingFilters.unitsMin', 'housingFilters.unitsMax', 'housingFilters'],
housingFilters: {
type: 'multi',
unitsMin: 100,
unitsMax: 200
},
});
import Ember from 'ember';
import QueryParams from 'ember-parachute';
export const myQueryParams = new QueryParams({
'qps.housingType': {
as: 'type',
defaultValue: 'single',
},
'qps.housing.developmentType': {
as: 'housing.developmentType',
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
status: 'active'
});
@allthesignals
allthesignals / README.md
Last active October 20, 2017 15:01
Ember Twiddle Demo: Mirage with Ember Twiddle

Ember Twiddle Demo: Mirage with Ember Twiddle

Demo

This is a very trivial example of using mirage with Ember Twiddle.

@allthesignals
allthesignals / .block
Last active October 31, 2017 20:48 — forked from shancarter/.block
Mister Nester
license: mit
height: 700
SELECT *, (t2.historic_comparison_sum - t1.sum) as delta_sum, (t2.historic_comparison_m - t1.m) as delta_m FROM ( SELECT regexp_replace(lower(variable), '[^A-Za-z0-9]', '_', 'g') as variable, regexp_replace(lower(profile), '[^A-Za-z0-9]', '_', 'g') as profile, regexp_replace(lower(category), '[^A-Za-z0-9]', '_', 'g') as category, sum, base, m FROM ( SELECT SUM(e), SQRT( SUM( POWER(m, 2) ) ) AS m, variable FROM support_fact_finder WHERE geoid IN ('4056100','4053900','4053100','4066701','4061301','3027900') AND year = 'Y2011-2015' GROUP BY variable) support_fact_finder INNER JOIN support_fact_finder_meta_update ON support_fact_finder_meta_update.variablename = support_fact_finder.variable) t1 INNER JOIN ( SELECT sum AS historic_comparison_sum, m AS historic_comparison_m, variable as t2_var FROM ( SELECT regexp_replace(lower(variable), '[^A-Za-z0-9]', '_', 'g')