Put flip somewhere in your $PATH and chmod a+x it.
Copy fuck into ~/.bashrc.
| [PROFILE] | |
| [TITLE:WELL-PREPPED (0XABADIDEA STYLE)] | |
| [SKILL:1:MINING:5] | |
| [SKILL:1:HAMMER:2] | |
| [SKILL:1:SWIMMING:2] | |
| [SKILL:1:MELEE_COMBAT:1] | |
| [SKILL:2:MINING:5] | |
| [SKILL:2:SWORD:2] | |
| [SKILL:2:CROSSBOW:2] | |
| [SKILL:2:SWIMMING:1] |
| # Hello, and welcome to makefile basics. | |
| # | |
| # You will learn why `make` is so great, and why, despite its "weird" syntax, | |
| # it is actually a highly expressive, efficient, and powerful way to build | |
| # programs. | |
| # | |
| # Once you're done here, go to | |
| # http://www.gnu.org/software/make/manual/make.html | |
| # to learn SOOOO much more. |
| /** | |
| * Module dependencies. | |
| */ | |
| var express = require('express'), | |
| http = require('http'); | |
| var app = express(); | |
| app.configure(function(){ | |
| app.use(express.favicon()); |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this: