Country | OSM - all roads and paths | OSM - motor-roads only | CIA Factbook |
---|---|---|---|
Afghanistan | 67845 | 25400 | 26191 |
Aland | 1321 | 963 | N/A |
Albania | 18829 | 13614 | 11185 |
Algeria | 109759 | 98451 | 70622 |
American Samoa | 223 | 207 | 150 |
Andorra | 719 | 289 | 199 |
Angola | 42498 | 39817 | 31956 |
Anguilla | 229 | 166 | 109 |
This file contains 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
./turf_modules/turf-hex/index.js | |
41:6 error cellHeight is defined but never used no-unused-vars | |
99:11 error i is already declared in the upper scope no-shadow | |
./turf_modules/turf-isobands/index.js | |
40:6 error addEdgesResult is defined but never used no-unused-vars | |
65:19 error Don't make functions within a loop no-loop-func | |
77:11 error x is already defined no-redeclare | |
98:31 error c is already declared in the upper scope no-shadow | |
117:4 error sizeResult is defined but never used no-unused-vars |
This file contains 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
./node_modules/turf-aggregate/index.js | |
172:6 error unrecognizedError is defined but never used no-unused-vars | |
./node_modules/turf-along/index.js | |
64:1 error Missing semicolon semi | |
./node_modules/turf-average/index.js | |
110:59 error done is defined but never used no-unused-vars | |
121:1 error Missing semicolon semi |
$driver = $this->pdo->getAttribute(\PDO::ATTR_DRIVER_NAME);
$this->pdo->beginTransaction();
try {
// SERIALIZABLE transactions fail if multiple of them
// even try to touch the same rows at the same time
if ($driver == "pgsql") {
$isolation = $this->pdo->prepare(
Download and unzip... wherever you feel like: Phaser Project
In whatever folder you unzipped into:
npm install
This file contains 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
git clone https://github.com/tchannel/phaser-coffeescript.git | |
cd phaser-coffeescript | |
# The branch i'm testing on. The phaser dependency | |
# Is pointing at a fork I made of phaser (tchannel/phaser) | |
# Where i setup the sourcemap and build tasks | |
git checkout origin/test-phaser-sourcemap | |
npm install |
This file contains 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
class L.PolyCircle extends L.Path | |
options: | |
polyOptions: {} | |
nodes: 16 | |
initialize: (center, radius, options)-> | |
L.setOptions @,options |
This file contains 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
}}}}}}}}}}$*$[>}~-$]<[$>\>_}}}}}${{*$<<%&[(Fizz Buzz)){{]}[>$<\>>_}}}}}$<<%&[(Buzz)){{]}[>$<\>>_}}}$<<%&[(Fizz)){{]}[>:)<_]]]<] |
This file contains 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
## The more functional way | |
head = (x) -> ((z,zs...) -> z) x... | |
tail = (x) -> ((z,zs...) -> zs) x... | |
last = (x) -> ((zs...,z) -> z) x... | |
init = (x) -> ((zs...,z) -> zs) x... | |
## OR, the more coffee-scripty way: | |
headCS = (xs) -> xs[0] | |
tailCS = (xs) -> xs[1..xs.length] | |
initCS = (xs) -> xs[0...xs.length-1] |
This file contains 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
{- | |
Calling powerset with a list | |
will return a list of all combinations of elements in the list. Example: | |
powerset [1,2,3] | |
returns : [[1,2,3],[1,2],[1,3],[1],[2,3],[2],[3],[]] | |
-} | |
import Control.Monad |
NewerOlder