Skip to content

Instantly share code, notes, and snippets.

View antoniomo's full-sized avatar

Antonio Macías Ojeda antoniomo

View GitHub Profile
@antoniomo
antoniomo / README.md
Last active August 29, 2015 13:58 — forked from agnoster/README.md
@antoniomo
antoniomo / 0_reuse_code.js
Created June 6, 2014 12:48
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@antoniomo
antoniomo / s2distance.go
Last active March 4, 2023 15:13
Distance calculation on databases using S2 Geometry in Golang (POC)
package main
import (
"fmt"
"github.com/golang/geo/s1"
"github.com/golang/geo/s2"
)
// https://blog.nobugware.com/post/2016/geo_db_s2_geohash_database/