This file contains 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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains 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
#!/bin/bash | |
PROFILE=~/.bashrc | |
curl -sSL https://gist.github.com/raw/4673740/init.sh >> "$PROFILE" | |
echo "Sparkbox init function appended to $PROFILE" | |
echo 'Run "sb_init [project-name]" to get started!' | |
exec bash |
This file contains 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
function sb_init { | |
local RED="\033[0;31m" | |
local NC="\033[0m" | |
if [ ! $# == 1 ]; then | |
echo -e "${RED}Please specify a project name.${NC}" | |
echo -e "Usage: init project-name\n" | |
else | |
if ! type "ruby" > /dev/null; then | |
echo -e "${RED}Please install Ruby:${NC}" |