Skip to content

Instantly share code, notes, and snippets.

View mastastealth's full-sized avatar

Brian Franco mastastealth

View GitHub Profile
@mastastealth
mastastealth / biblebooks.js
Last active September 30, 2024 12:25 — forked from amereservant/biblebooks.php
Simple JS array of the books of the Bible
var books = [
'Genesis',
'Exodus',
'Leviticus',
'Numbers',
'Deuteronomy',
'Joshua',
'Judges',
'Ruth',
'1 Samuel',
@mastastealth
mastastealth / emmet.cson
Created July 12, 2014 15:56
Emmet for Atom Windows
'.editor:not(.mini)':
'cmd-E': 'emmet:expand-abbreviation'
'ctrl-d': 'emmet:balance-outward'
'alt-d': 'emmet:balance-inward'
'ctrl-alt-j': 'emmet:matching-pair'
'ctrl-right': 'emmet:next-edit-point'
'ctrl-left': 'emmet:prev-edit-point'
'cmd-`': 'emmet:split-join-tag'
"cmd-;": 'emmet:remove-tag'
'cmd-Y': 'emmet:evaluate-math-expression'
@mastastealth
mastastealth / sass-animation
Created April 16, 2013 14:30
Some SASS mixins for animation stuff
@mixin animation ($animations) {
-moz-animation: $animations;
-o-animation: $animations;
-webkit-animation: $animations;
animation: $animations;
}
@mixin animation-fill-mode ($mode) {
-moz-animation-fill-mode: $mode;
-o-animation-fill-mode: $mode;