sudo add-apt-repository ppa:gnome-terminator
sudo apt-get update
sudo apt-get install terminatorTerminator should be setup as default now. Restart your terminal (shortcut: "Ctrl+Alt+T").
| # Redis Cheatsheet | |
| # All the commands you need to know | |
| redis-server /path/redis.conf # start redis with the related configuration file | |
| redis-cli # opens a redis prompt | |
| # Strings. |
The purpose of design is to allow you to do design later, and it's primary goal is to reduce the cost of change.
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| # Phillip Koebbe from Ruby on Rails suggested inserting following code between the "bootstrap" and | |
| # "initialize" sections of enviroment.rb. This hack fixes the problem. | |
| if Gem::VERSION >= "1.3.6" | |
| module Rails | |
| class GemDependency | |
| def requirement | |
| r = super | |
| (r == Gem::Requirement.default) ? nil : r | |
| end |