https://devcenter.heroku.com/articles/custom-domains http://thenomadicfreelancer.blogspot.com/2012/08/pointing-godaddy-domain-to-your-heroku.html
For each custom subdomain use domains:add
in the Terminal.
https://devcenter.heroku.com/articles/custom-domains http://thenomadicfreelancer.blogspot.com/2012/08/pointing-godaddy-domain-to-your-heroku.html
For each custom subdomain use domains:add
in the Terminal.
# install homebrew | |
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)" | |
brew install git | |
brew install node | |
brew install wget | |
brew install z | |
brew install ag | |
brew install ack | |
brew install ffind |
# cURL | |
apt-get install curl | |
# Git | |
apt-get install git | |
git config --global user.name "Randson Oliveira" | |
git config --global user.email "[email protected]" | |
git config --global color.ui auto | |
# ZSH and Oh My ZSH |
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
. ~/.bashrc | |
mkdir ~/local | |
mkdir ~/node-latest-install | |
cd ~/node-latest-install | |
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
./configure --prefix=~/local | |
make install # ok, fine, this step probably takes more than 30 seconds... | |
curl https://www.npmjs.org/install.sh | sh |
<?php | |
/** | |
* Odin_Post_Status Class. | |
* | |
* Build Custom Post Status | |
* | |
* @package Odin | |
* @category Post Status | |
* @author WPBrasil | |
* @version 2.1.4 |
<?php | |
/* | |
Plugin Name: Cusotm Post Status | |
Description: Easily create custom post statuses within WordPress for one or more custom post types. | |
Author: Jen Wachter | |
Version: 0.1 | |
*/ | |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
var Person = {} || ''; | |
Person.name = function(name) { | |
return this.name; | |
} | |
Person.set_name = function(name) { | |
this.name = name; | |
} |