This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Kill Bill logo CSS version by @nahuelsotelo | |
* forge with Dabblet (http://dabblet.com) | |
* url: http://dabblet.com/gist/2008294 | |
*/ | |
body { | |
background: #fcf9e5; | |
} | |
.container { | |
background:#fada00 url(http://cl.ly/3D1u3a1d1X0f0Z391C1n/killbill_bg.jpg) center; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Experimenting with CSS3 selector by @nahuelsotelo | |
* forge with Dabblet (http://dabblet.com) | |
* url: http://dabblet.com/gist/2714343 | |
*/ | |
body { | |
background: lavender; | |
font-family: sans-serif; | |
} | |
.container { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var beep = require('beepbeep'); | |
var colors = require('colors'); | |
var onError = function(err) { | |
beep([200, 200]); | |
var formatOutput = function(context) { | |
var msg, file, line, description; | |
if(context == 'gulp-babel') { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ############################## | |
# Git push and pull allways from the current branch. | |
# ############################## | |
get_git_branch() { | |
echo `git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'` | |
} | |
alias gpull='git pull origin `get_git_branch`' | |
alias gpush='git push origin `get_git_branch`' | |
# ############################## |