These are the results of running the following command at the root of a copy of ftp://ftp02.portlandoregon.gov
from 2015-03-31
find . -type f | rev | cut -d . -f1 | rev | sort | uniq -ic | sort -rn
17499 pdf
6807 jpg
3289 JPG
function first (input, callback) { | |
var output = input.reverse() | |
callback(output) | |
} | |
function second (output) { | |
console.log(output) | |
} | |
first([1,2,3], second) |
These are the results of running the following command at the root of a copy of ftp://ftp02.portlandoregon.gov
from 2015-03-31
find . -type f | rev | cut -d . -f1 | rev | sort | uniq -ic | sort -rn
17499 pdf
6807 jpg
3289 JPG
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
This has been updated and expanded into an article. Read the updated version here:
https://github.com/ungoldman/open-source-maintenance-guidelines
Old version:
~/dev/lab/ruby $ ruby rubying_while_true.rb | |
10/10 100.0% ββββββββββ | |
9/10 90.0% βββββββββ | |
8/10 80.0% ββββββββ | |
7/10 70.0% βββββββ | |
6/10 60.0% ββββββ | |
5/10 50.0% βββββ | |
4/10 40.0% ββββ | |
3/10 30.0% βββ | |
2/10 20.0% ββ |
As of v0.1.1, geojson2csv doesn't work with polygons. Trying to figure out the best way to represent polygons in a CSV in the first place and ran into this issue.
angular.service('zoningLayer', function(){ | |
var privateVariable = 'derp'; | |
function privateFunction () {} | |
this.create = function() { | |
return new L.whatever(function(){ | |
return { | |
fill: privateVariable(privateFunction), |
<script src="https://rawgit.com/Esri/Terraformer/master/terraformer.js"></script> | |
<script src="https://rawgit.com/Esri/terraformer-arcgis-parser/master/terraformer-arcgis-parser.js"></script> | |
<!-- CDN or locally hosted is ideal but I'm using raw github so that we get error reporting within the unminified source | |
<script src="http://cdn-geoweb.s3.amazonaws.com/terraformer/1.0.4/terraformer.min.js"></script> | |
<script src="http://cdn-geoweb.s3.amazonaws.com/terraformer-arcgis-parser/1.0.4/terraformer-arcgis-parser.min.js"></script> | |
--> | |
<script> | |
var input = { | |
"objectIdFieldName" : "OBJECTID", | |
"globalIdFieldName" : "", |