This file contains hidden or 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
#!/usr/bin/env node | |
// Before running install | |
// -- npm install -g optimist oauth step colors express | |
var serverPort = 8008; | |
var argv = require('optimist') | |
.usage('Usage: --key=[consumer key] -secret=[consumer secret]') | |
.demand(['key', 'secret']) |
This file contains hidden or 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
#include <stdio.h> | |
#define RESET 0 | |
#define BRIGHT 1 | |
#define DIM 2 | |
#define UNDERLINE 3 | |
#define BLINK 4 | |
#define REVERSE 7 | |
#define HIDDEN 8 |
NewerOlder