Skip to content

Instantly share code, notes, and snippets.

@KasaiMagi
KasaiMagi / gitflow-breakdown.md
Created July 12, 2018 19:07 — forked from JamesMGreene/gitflow-breakdown.md
A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository

@KasaiMagi
KasaiMagi / gmradius.sql
Last active December 17, 2015 07:58 — forked from anonymous/gist:5576377
# INITIAL QUERY
SELECT *,
(
(
ACOS(
SIN($LAT * Pi() / 180)
* SIN(latitude * Pi() / 180)
+
COS($LAT * Pi() / 180)
* COS(latitude * Pi() / 180)