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
var fs = require('fs') | |
, path = require('path'); | |
var rem = require('rem') | |
, FormData = require('form-data'); | |
rem.connect('facebook.com').prompt({ | |
scope: ['publish_stream'] | |
}, function (err, user) { | |
var form = new FormData(); |
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
alias twag='echo "That was a joke." | say' | |
alias ga='git add' | |
alias gp='git push' | |
alias gl='git log' | |
alias gs='git status' | |
alias gd='git diff' | |
alias gc='git commit -am' | |
alias gma='git commit -am' | |
alias gb='git branch' | |
alias gco='git checkout' |
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
//Paul Booth | |
//June 01, 2009 | |
//Programming 3 final program | |
//Trinomial factoring program | |
//inputs a trinomial, displays factored form | |
#include <iostream> | |
#include <windows.h> |
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
/* Paul Booth | |
Guitar Hero clone in ascii. (mary had a little lamb) | |
*/ | |
#include <iostream> | |
#include <windows.h> | |
#define G 392 | |
#define A 440 | |
#define B 494 | |
#define D 587 |