Skip to content

Instantly share code, notes, and snippets.

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

Luke Hayes lukehayes

🏠
Working from home
View GitHub Profile
@lukehayes
lukehayes / bash-cheatsheet.sh
Created August 17, 2017 12:40 — forked from LeCoupa/bash-cheatsheet.sh
Bash CheatSheet for UNIX Systems
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04
@lukehayes
lukehayes / scss
Created May 25, 2017 14:17
Generating typography scale
$baseFontSize : 1.3em;
$baseEm : 1;
$baseLineHeight : 1.6;
$scale : 1.250; // Major Third
$leading: $baseLineHeight * $baseEm + em;
html {
font: normal ($baseFontSize * $scale)/ $baseLineHeight $font_main;
}