Skip to content

Instantly share code, notes, and snippets.

View jzbyers's full-sized avatar
🐆
keeping busy

Jack Byers jzbyers

🐆
keeping busy
  • Oden Technologies
  • Brooklyn, NY
View GitHub Profile
@mattmc3
mattmc3 / modern_sql_style_guide.md
Last active May 22, 2024 06:50
Modern SQL Style Guide
layout author title revision version description
default
mattmc3
Modern SQL Style Guide
2019-01-17
1.0.1
A guide to writing clean, clear, and consistent SQL.

Modern SQL Style Guide

@nicktoumpelis
nicktoumpelis / repo-rinse.sh
Created April 23, 2014 13:00
Cleans and resets a git repo and its submodules
git clean -xfd
git submodule foreach --recursive git clean -xfd
git reset --hard
git submodule foreach --recursive git reset --hard
git submodule update --init --recursive