Skip to content

Instantly share code, notes, and snippets.

View pocc's full-sized avatar
🏠
Working from home

Ross Jacobs pocc

🏠
Working from home
View GitHub Profile
@pocc
pocc / workflow.md
Created May 8, 2018 05:19
Versioning and Git Workflow

Semantic Versioning

Details:

Versions are denoted using a standard triplet of integers: MAJOR.MINOR.PATCH. The basic intent is that MAJOR versions are incompatible, large-scale upgrades of the API. MINOR versions retain source and binary compatibility with older minor versions, and changes in the PATCH level are perfectly compatible, forwards and backwards.

@pocc
pocc / phoNETic-alphabet.txt
Created April 19, 2018 20:10
The phoNETic alphabet for Network Engineers
A - Addressing
B - Broadcast
C - Connection
D - Duplex
E - Ethernet
F - Firewall
G - Gateway
H - Hardware
I - Internet
J - Jitter
@pocc
pocc / overwrite-from-master.sh
Created April 15, 2018 02:25
Git force pull to overwrite local files
# Shamelessly stolen from https://gist.github.com/vladimirtsyupko/10964772
git fetch --all
git reset --hard origin/master
git pull origin master