Skip to content

Instantly share code, notes, and snippets.

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@springmeyer
springmeyer / world-merc-z1-wgs84.geojson
Last active August 1, 2019 23:05
World Mercator tiling scheme @ z1
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
codecov:
token: uuid # Your private repository token
url: "http" # for Codecov Enterprise customers
slug: "owner/repo" # for Codecov Enterprise customers
branch: master # override the default branch
bot: username # set user whom will be the consumer of oauth requests
ci: # Custom CI domains if Codecov does not identify them automatically
- ci.domain.com
- !provider # ignore these providers when checking if CI passed
# ex. You may test on Travis, Circle, and AppVeyor, but only need
@springmeyer
springmeyer / z0.geojson
Last active May 6, 2019 21:23
GoogleCRS84Quad
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.
@springmeyer
springmeyer / z0.geojson
Last active May 21, 2019 21:07
WGS84 tiling scheme
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@springmeyer
springmeyer / build-boost-geom-asan.sh
Last active August 12, 2018 18:57
build boost::geometry with address sanitizer
#!/usr/bin/env bash
set -eu
set -o pipefail
${HOME}/projects/mason/mason install clang++ 5.0.1
${HOME}/projects/mason/mason link clang++ 5.0.1
export ASAN_SYMBOLIZER_PATH=$(pwd)/mason_packages/.link/bin/llvm-symbolizer
export MSAN_SYMBOLIZER_PATH=$(pwd)/mason_packages/.link/bin/llvm-symbolizer
// generic code
// interface
var Coord = function() {
this.one = 'one';
};
Coord.two = function() {
return 'two';
};
@springmeyer
springmeyer / readme.md
Last active July 23, 2018 04:04
gzip longest_match testcase
@springmeyer
springmeyer / build.sh
Last active July 16, 2018 23:48
build valhalla node bindings statically
#!/usr/bin/env bash
: '
Script to build valhalla against mason deps
Intended to be run inside a valhalla checkout of https://github.com/valhalla/valhalla/pull/1341
'