Skip to content

Instantly share code, notes, and snippets.

View mjrdnk's full-sized avatar
👋

Maciej Jordanek mjrdnk

👋
View GitHub Profile
https://github.com/anthropics/skills
https://github.com/obra/superpowers
https://github.com/VoltAgent/awesome-claude-code-subagents
https://github.com/OthmanAdi/planning-with-files
https://github.com/huangserva/skill-prompt-generator
@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
};