WE did a bunch f stoakjdhfkajsn dlkfj ;dkalj fasdj f;lsad j
- one
- asdfkdjs
- alsdkfjads
- lkdjsf
WE did a bunch f stoakjdhfkajsn dlkfj ;dkalj fasdj f;lsad j
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Networks with D3plus</title> | |
<!-- load D3plus CSS --> | |
<link href="/css/d3plus.css" media="screen" rel="stylesheet" type="text/css" /> | |
Date Time Category Item Quantity Price Point Name SKU Modifiers Applied Gross Sales Discounts Net Sales Payment ID Device Name Notes Details | |
2/5/14 21:14:04 Coffee Espresso 1 Single $1.68 $0.00 $1.68 A47ND940CXZBK Sean https://squareup.com/dashboard/sales/transactions/A47ND940CXZBK | |
2/5/14 21:14:04 Ice Cream Ice Cream 2 1 Scoop $7.94 $0.00 $7.94 A47ND940CXZBK Sean https://squareup.com/dashboard/sales/transactions/A47ND940CXZBK | |
2/5/14 21:07:23 Ice Cream Ice Cream 1 1 Scoop $3.97 $0.00 $3.97 gfVmsGnVNBs0Tvyj0GB Sean https://squareup.com/dashboard/sales/transactions/gfVmsGnVNBs0Tvyj0GB | |
2/5/14 21:07:00 Ice Cream Ice Cream 1 Pint $6.31 $0.00 $6.31 SSg7vyD9bn8xqtdT0GB Sean https://squareup.com/dashboard/sales/transactions/SSg7vyD9bn8xqtdT0GB | |
2/5/14 21:04:40 Ice Cream Ice Cream 2 2 Scoop $10.28 $0.00 $10.28 2FEN3ZPAB82N7 Sean https://squareup.com/dashboard/sales/transactions/2FEN3ZPAB82N7 | |
2/5/14 21:02:00 Ice Cream Ice Cream 1 2 Scoop $5.14 $0.00 $5.14 oTHlrXaAWgVrhLe60GB Sean https |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF8"> | |
</head> | |
<body> | |
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> | |
<script src="http://code.shutterstock.com/rickshaw/vendor/d3.layout.min.js"></script> | |
<script src="http://code.shutterstock.com/rickshaw/rickshaw.min.js"></script> |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF8"> | |
</head> | |
<body> | |
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> | |
<script src="http://code.shutterstock.com/rickshaw/vendor/d3.layout.min.js"></script> | |
<script src="http://code.shutterstock.com/rickshaw/rickshaw.min.js"></script> |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF8"> | |
</head> | |
<body> | |
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> | |
<script src="tosci.js" charset="utf-8"></script> |
#!/bin/bash | |
# Run this: | |
# | |
# curl https://gist.github.com/nicerobot/7664605/raw/install.sh | bash -s do-sudo | |
# | |
# which will run: | |
[ -f qgis2-homebrew-build.sh ] || { | |
curl -O https://gist.github.com/nicerobot/7664605/raw/qgis2-homebrew-build.sh |
(function() { | |
// get a reference to the d3.selection prototype, | |
// and keep a reference to the old d3.selection.on | |
var d3_selectionPrototype = d3.selection.prototype, | |
d3_on = d3_selectionPrototype.on; | |
// our shims are organized by event: | |
// "desired-event": ["shimmed-event", wrapperFunction] | |
var shims = { |
#from forms.py | |
class LayerReviewForm(forms.ModelForm): | |
"""For editing and configuring the layer information for each layer.""" | |
class Meta: | |
model = DataLayer | |
# we should get geometry_type from the shp file. Users can't | |
# change it. | |
fields = ['name', 'notes', 'srs','geometry_type'] | |
#from views.py |