Skip to content

Instantly share code, notes, and snippets.

View rafaelcavalcante's full-sized avatar
🏠
(I wish i was) Working from home

Rafael Cavalcante rafaelcavalcante

🏠
(I wish i was) Working from home
View GitHub Profile
@rafaelcavalcante
rafaelcavalcante / .gitconfig
Last active August 4, 2016 00:10
my .gitconfig aliases
[alias]
# simple commands
co = checkout
st = status
br = branch
cp = cherry-pick
ci = commit
cob = checkout -b
@rafaelcavalcante
rafaelcavalcante / .git_commit_msg.txt
Created May 5, 2016 20:26 — forked from danielfilho/.git_commit_msg.txt
Template for commit messages.
# If this commit is applied, it will:
# Why was this change made?
# Any references to tickets, articles etc?
@rafaelcavalcante
rafaelcavalcante / mixin-multi_column_layout.sass
Created September 28, 2015 19:01
Multi Column Sass Mixin
@mixin split($columns, $gap) {
// Number of columns
-webkit-column-count: $columns;
-moz-column-count: $columns;
-o-column-count: $columns;
-o-column-count: $columns;
// Gap size
-webkit-column-gap: $gap;
-moz-column-gap: $gap;
-o-column-gap: $gap;