Skip to content

Instantly share code, notes, and snippets.

View ericdvb's full-sized avatar

Eric Willenson ericdvb

View GitHub Profile
@ericdvb
ericdvb / MapboxComponent.js
Created August 9, 2018 13:36
Mapbox Component with animation
class MapboxComponent extends React.Component {
async componentDidMount() {
// Some map instantiation
map.on('style.load', () => {
map.addSource('vehicles', {
"type": "geojson",
"buffer": 5,
"data": {
"type": "FeatureCollection",
@ericdvb
ericdvb / keybase.md
Created March 30, 2018 15:29
keybase.md

Keybase proof

I hereby claim:

  • I am ericdvb on github.
  • I am ericdvb (https://keybase.io/ericdvb) on keybase.
  • I have a public key ASDbYh-ZwQ32Ss9jA-bogbYXU0FK9nEmyWoHCHtp_sGuSwo

To claim this, I am signing this object:

@ericdvb
ericdvb / .vimrc
Created February 2, 2016 00:34
my current .vimrc
set nocompatible " be iMproved, required
filetype off " required
" set runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" Let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'