Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View frankrowe's full-sized avatar

Frank Rowe frankrowe

View GitHub Profile
<table cellpadding="0" cellspacing="0" class="Table2__table-scroller Table2__table" aria-describedby="descr"><caption class="Table2__table__caption"><div><span>Final Standings</span></div></caption><colgroup span="9" class="Table2__colgroup"><col class="Table2__col"><col class="Table2__col"><col class="Table2__col"><col class="Table2__col"><col class="Table2__col"><col class="Table2__col"><col class="Table2__col"><col class="Table2__col"><col class="Table2__col"></colgroup><thead class="Table2__thead"><tr class="Table2__header-row Table2__tr Table2__even"><th title="" class="Table2__th"><div title="Ranking" class="jsx-2810852873 table--cell rank tar header sortable"><span>RK</span></div></th><th title="" class="Table2__th"><div title="Team" class="jsx-2810852873 table--cell team__column header"><span>Team</span></div></th><th title="Record" class="Table2__th"><div title="Record" class="jsx-2810852873 table--cell header sortable"><span>REC</span></div></th><th title="" class="Table2__th"><div title="Points For
{
"tilejson": "2.1.0",
"name": "lines",
"tiles": [
"http://localhost:8080/geoserver/gwc/service/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&LAYER=tiger:3Atiger_roads&STYLE=&TILEMATRIX=EPSG:4326:{z}&TILEMATRIXSET=EPSG:900913&FORMAT=application/x-protobuf;type=mapbox-vector&TILECOL={x}&TILEROW={y}"
]
}
{
"version": 8,
"sources": {
"osm": {
"type": "vector",
"tiles": ["https://chopper.boundlessgeo.io/tiles/{z}/{x}/{y}"]
}
},
"layers": [
{
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
# @gf3’s Sexy Bash Prompt, inspired by “Extravagant Zsh Prompt”
# Shamelessly copied from https://github.com/gf3/dotfiles
# Screenshot: http://i.imgur.com/s0Blh.png
if [[ $COLORTERM = gnome-* && $TERM = xterm ]] && infocmp gnome-256color >/dev/null 2>&1; then
export TERM=gnome-256color
elif infocmp xterm-256color >/dev/null 2>&1; then
export TERM=xterm-256color
fi
@frankrowe
frankrowe / gist:4a32c6a92a33116da3c0
Created August 4, 2014 13:41
default_colors.less
// COLOR VARIABLES
// Cool
@aqua: #7FDBFF;
@blue: #0074D9;
@navy: #001F3F;
@teal: #39CCCC;
@green: #2ECC40;
@olive: #3D9970;
var express = require('express')
, csvorjson = require('csvorjson')
var workController = express.Router()
workController.get('/jobs', function(req, res, next) {
runquery(function(data){
csvorjson(req, res, data)
}
})
@frankrowe
frankrowe / README.md
Last active August 29, 2015 14:00 — forked from mbostock/.block

This choropleth encodes unemployment rates from 2008 with a quantize scale ranging from 0 to 15%. A threshold scale is a useful alternative for coloring arbitrary ranges.

// This product includes color specifications and designs developed by Cynthia Brewer (http://colorbrewer.org/).
var colorbrewer = {YlGn: {
3: ["#f7fcb9","#addd8e","#31a354"],
4: ["#ffffcc","#c2e699","#78c679","#238443"],
5: ["#ffffcc","#c2e699","#78c679","#31a354","#006837"],
6: ["#ffffcc","#d9f0a3","#addd8e","#78c679","#31a354","#006837"],
7: ["#ffffcc","#d9f0a3","#addd8e","#78c679","#41ab5d","#238443","#005a32"],
8: ["#ffffe5","#f7fcb9","#d9f0a3","#addd8e","#78c679","#41ab5d","#238443","#005a32"],
9: ["#ffffe5","#f7fcb9","#d9f0a3","#addd8e","#78c679","#41ab5d","#238443","#006837","#004529"]
},YlGnBu: {