Skip to content

Instantly share code, notes, and snippets.

View mjrdnk's full-sized avatar
👋

Maciej Jordanek mjrdnk

👋
View GitHub Profile
@mjrdnk
mjrdnk / README.md
Created March 16, 2017 22:11 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
@mjrdnk
mjrdnk / reverse-geocode-geohash.js
Last active May 3, 2017 15:20
Reverse Google Maps geocoding with geohash for area of 3-letter hash accuracy
let NodeGeocoder = require('node-geocoder');
let geohash = require('latlon-geohash');
const options = {
provider: 'google',
httpAdapter: 'https',
apiKey: process.env.GOOGLE_MAPS_KEY,
formatter: null
};