Keybase proof
I hereby claim:
- I am cpsubrian on github.
- I am cpsubrian (https://keybase.io/cpsubrian) on keybase.
- I have a public key whose fingerprint is 98C5 3702 B9D9 0B60 46B0 0E8E 4B6E 728A 3FF3 9D1C
To claim this, I am signing this object:
#!/bin/bash | |
USER=ubuntu | |
HOME=/home/ubuntu | |
# install pubkeys | |
mkdir -p $HOME/.ssh | |
chmod 700 $HOME/.ssh | |
curl --silent --location [url to an authorized keys file] > $HOME/.ssh/authorized_keys | |
chmod 600 $HOME/.ssh/authorized_keys |
I hereby claim:
To claim this, I am signing this object:
Atom.app |
variables.first = makeFirst(variables.first); | |
function makeFirst (first) { | |
return first + '(made)'; | |
} |
" be iMproved, required | |
set nocompatible | |
" required | |
filetype off | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" alternatively, pass a path where Vundle should install plugins | |
"call vundle#begin('~/some/path/here') |
/** | |
* History action creators. | |
*/ | |
import * as types from '../types' | |
export function resetHistory () { | |
return {type: types.HISTORY_RESET} | |
} |
$ [clone this gist]
$ hipley --dev
$ open http://localhost:3000
``
// Constants | |
var API_HOST = 'api.instagram.com'; | |
var API_BASE_URL = '/v1'; | |
var CLIENT_ID = 'the id'; | |
var CLIENT_SECRET = 'the secret'; | |
var OAuth= require('oauth').OAuth; | |
var https = require('https'); | |
var util = require('util'); |
var vows = require('vows') | |
, tobi = require('tobi') | |
, port = 80 | |
, host = 'www.google.com'; | |
/** | |
* Topic macro to GET a url. | |
*/ | |
var getUrl = function(url) { | |
return function() { |
/** | |
* When I try to test with my app ... I get the error below. | |
*/ | |
process.env['NODE_ENV'] = 'test'; | |
var vows = require('vows'), | |
tobi = require('tobi'), | |
should = require('should'), | |
app = require('../app'), | |
conf = require('../conf'); |