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
#Clean everything like a brand new checkout | |
#Don't remove "jenkins-upstream" directory | |
if test -t 1 ; then | |
echo "stdout is a tty. Are you sure you want to continue? This operation will clean any uncommitted files." | |
read -p "CTRL-C to exit. Enter to continue:" | |
fi | |
git clean -dxf -e "jenkins-upstream" | |
#Unlink any current development d |
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
asdfasdf | |
as | |
dfasd | |
fs | |
d |
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
import urllib2 | |
import json | |
import textwrap | |
def google_search(search_string): | |
google= 'http://ajax.googleapis.com/ajax/services/search' | |
msg = urllib2.quote(search_string) | |
soc = urllib2.urlopen('{google}/web?v=1.0&q={msg}'.format(google=google, msg=msg)) |
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
fs = require('fs'); | |
// Syslog = require('node-syslog'); | |
// Syslog.init("node-syslog", Syslog.LOG_PID | Syslog.LOG_ODELAY, Syslog.LOG_LOCAL0); | |
parser = require("optimist") | |
.alias("r", "router") | |
.demand("router") | |
.boolean('https') | |
.describe('https', 'Use https instead of http') | |
.describe('key', 'Path to keyfile (https only)') |
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
import boto | |
import requests | |
from datetime import datetime, timedelta | |
import base64 | |
import json | |
import hmac | |
import hashlib | |
REQUIRED_FIELDS = 'key', 'AWSAccessKeyId', 'acl', 'success_action_status' |
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
sudo iptables -t nat -F | |
sudo iptables -t nat -A OUTPUT -d localhost -p tcp --dport 80 -j REDIRECT --to-ports 8080 | |
sudo iptables -t nat -I PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080 |
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
This build is in the build queue ... | |
... Build popped off queue | |
Start build sean/libdynd_build_test 1.0 -- id:52f3ce1cf53f2a4d0d9fc031 | |
Start build | |
Setting engine | |
conda install --quiet --yes python=2 | |
# All requested packages already installed. | |
# packages in environment at /opt/anaconda: | |
# | |
python 2.7.6 1 |
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
Build 14.0 Sumitted id:530cbd35f53f2a3ebc615bb4 | |
This build is in the build queue ... | |
... Build popped off queue | |
Start build binstar/binstar 14.0 -- id:530cbd35f53f2a3ebc615bb4 | |
Start build | |
Setting engine | |
conda create -n install --quiet --yes python=2 | |
Package plan for installation in environment /opt/anaconda/envs/install: |
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
mr_chomps:express-blueprints sean$ npm publish | |
npm http PUT https://registry.npmjs.org/express-blueprints | |
npm http 503 https://registry.npmjs.org/express-blueprints | |
npm ERR! registry error parsing json | |
npm http PUT https://registry.npmjs.org/express-blueprints | |
^Cmr_chomps:express-blueprints sean$ npm publish | |
npm http PUT https://registry.npmjs.org/express-blueprints | |
npm http 201 https://registry.npmjs.org/express-blueprints | |
npm http GET https://registry.npmjs.org/express-blueprints | |
npm http 200 https://registry.npmjs.org/express-blueprints |
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
mr_chomps:express-blueprints sean$ npm publish | |
npm http PUT https://registry.npmjs.org/express-blueprints | |
npm http 403 https://registry.npmjs.org/express-blueprints | |
npm ERR! publish Failed PUT 403 | |
npm ERR! Error: forbidden Cannot replace previously published version: 0.0.1: express-blueprints | |
npm ERR! at RegClient.<anonymous> (/Users/sean/anaconda/lib/node_modules/npm/node_modules/npm-registry-client/lib/request.js:237:14) | |
npm ERR! at Request.self.callback (/Users/sean/anaconda/lib/node_modules/npm/node_modules/request/request.js:123:22) | |
npm ERR! at Request.EventEmitter.emit (events.js:98:17) | |
npm ERR! at Request.<anonymous> (/Users/sean/anaconda/lib/node_modules/npm/node_modules/request/request.js:893:14) | |
npm ERR! at Request.EventEmitter.emit (events.js:117:20) |
OlderNewer