start new:
tmux
start new with session name:
tmux new -s myname
<snippet> | |
<content><![CDATA[ | |
Mussum ipsum cacilds, vidis litro abertis. Consetis adipiscings elitis. | |
Pra lá , depois divoltis porris, paradis. Paisis, filhis, espiritis santis. | |
Mé faiz elementum girarzis, nisi eros vermeio, in elementis mé pra quem é amistosis quis leo. | |
Manduma pindureta quium dia nois paga. Sapien in monti palavris qui num significa nadis i pareci latim. | |
Interessantiss quisso pudia ce receita de bolis, mais bolis eu num gostis | |
]]></content> | |
<tabTrigger>mussum</tabTrigger> | |
</snippet> |
# ~/Gemfile | |
source "http://rubygems.org" | |
group :development do | |
# CSS Preprocessing | |
gem 'sass' | |
gem 'compass' | |
gem 'jekyll' |
var Person = {} || ''; | |
Person.name = function(name) { | |
return this.name; | |
} | |
Person.set_name = function(name) { | |
this.name = name; | |
} |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
<?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 | |
*/ | |
<?php | |
/** | |
* Odin_Post_Status Class. | |
* | |
* Build Custom Post Status | |
* | |
* @package Odin | |
* @category Post Status | |
* @author WPBrasil | |
* @version 2.1.4 |
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 |
# 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 |