I hereby claim:
- I am bennlich on github.
- I am bennlich (https://keybase.io/bennlich) on keybase.
- I have a public key whose fingerprint is A621 9222 6545 374F 4324 3C6A DE6B EC4D C354 EAC4
To claim this, I am signing this object:
mapboxgl.accessToken = config.accessToken; | |
var origin = [-122.4340, 37.7353, 1000]; | |
var map = new mapboxgl.Map({ | |
container: 'map', | |
style: 'mapbox://styles/mapbox/light-v9', | |
center: origin, | |
zoom: 15.95, | |
pitch: 60, | |
heading: 41, |
mapboxgl.accessToken = 'pk.eyJ1IjoiYmVubmxpY2giLCJhIjoieUxHOHQyNCJ9.VLDDBTTdzeHKJvR5ABYaLA' | |
let tubeMesh; | |
let tubeMaterial; | |
let origin = [-122.2639955060099, 37.7994199370347, 1000]; | |
let map = new mapboxgl.Map({ | |
container: 'map', | |
style: 'mapbox://styles/mapbox/light-v9', | |
center: origin, | |
zoom: 12, |
# Sublime's HTML reindenting is currently pretty bad. And Tidy and xmllint | |
# change my code in ways I don't really like or need. I just need the thing | |
# reindented sanely. Emacs did that pretty well. | |
# | |
# One thing led to another. A few drinks later and now I'm using Emacs to | |
# reindent HTML from within Sublime. | |
# | |
# Save the contents of this file as ohmygodemacs.py in your User directory. | |
# Then save the contents of the following docstring as ohmygodemacs.elisp in your | |
# User directory |
var customEnvelope = { | |
levels: [0, 1, 0], | |
times: [0.5, 0.5] | |
}; | |
var gateDef = { | |
ugen: "flock.ugen.sequencer", | |
durations: [1, 1, 1], | |
values: [1, 1, 1], | |
options: { |
I hereby claim:
To claim this, I am signing this object:
/* global angular, google */ | |
angular.module('app') | |
.service('router', ['$q', function($q){ | |
var router = new google.maps.DirectionsService(); | |
this.getRoutePromise = function(_origin, _destination) { | |
var deferred = $q.defer(); | |
var request = { |
(function() { | |
ABM.DatGUI = (function() { | |
function DatGUI(fbui) { | |
var self = this; | |
this.gui = new dat.GUI(); | |
this.model = {}; | |
this.fbui = fbui; | |
fbui.fb.on('child_added', function(uiSnap) { | |
var uiEl = uiSnap.val(), |
var count = 0; | |
while (agent.patchRightAndAhead(0,1).isWall()) { | |
agent.rotate(Math.PI/2); | |
count++; | |
if (count >= 3) { | |
agent.die(); | |
} | |
} |
// v1 | |
{ | |
birth_certificate: { | |
lat: 54, | |
lon: 22, | |
etc: etc | |
}, | |
data: { | |
height: 4, |
var bogart = require('bogart'); | |
var router = bogart.router(); | |
router.get('/', function(req) { | |
return bogart.middleware.respondWithFile(req, 'index.html'); | |
}); | |
var app = bogart.app(); | |
app.use(bogart.batteries); | |
app.use(router); |