Skip to content

Instantly share code, notes, and snippets.

View jzbyers's full-sized avatar

Jack Byers jzbyers

View GitHub Profile
@mattmc3
mattmc3 / modern_sql_style_guide.md
Last active December 11, 2025 01:16
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