I hereby claim:
- I am gordlea on github.
- I am gordtron (https://keybase.io/gordtron) on keybase.
- I have a public key ASANvou6M__LnUn4ySBZShNczzSatlcJnkDfwlTSoGkbkQo
To claim this, I am signing this object:
sudo apt-get update | |
sudo apt-get install -y python-software-properties python g++ make | |
sudo add-apt-repository -y ppa:chris-lea/node.js | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10 | |
echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list | |
wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add - | |
sudo sh -c 'echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list' | |
sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db | |
sudo add-apt-repository 'deb http://mirror.weathercity.com/mariadb/repo/5.5/ubuntu precise main' |
#!/bin/sh | |
echo `env` | |
echo `ls` | |
git fetch --tags | |
git checkout master | |
git pull origin master | |
git branch release-$PROMOTED_GIT_COMMIT $PROMOTED_GIT_COMMIT | |
git clean -f | |
case $INCREMENT_VERSION in |
git branch -m old_branch new_branch # Rename branch locally | |
# OR | |
git branch -m new_branch # Rename current branch | |
# THEN | |
git push origin :old_branch # Delete the old branch | |
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |
# scope - start weave after weave | |
# place under /etc/init/scope.conf | |
description "starts weave.scope" | |
author "Gord Lea <[email protected]>" | |
# Stanzas | |
# | |
# Stanzas control when and how a process is started and stopped | |
# See a list of stanzas here: http://upstart.ubuntu.com/wiki/Stanzas |
// Use this file as a starting point for your project's .eslintrc. | |
// Copy this file, and add rule overrides as needed. | |
{ | |
"extends": "airbnb", | |
"parserOptions": { | |
"ecmaFeatures": { | |
"experimentalObjectRestSpread": true | |
} | |
}, | |
"rules": { |
/* | |
* DOMParser HTML extension | |
* 2012-09-04 | |
* | |
* By Eli Grey, http://eligrey.com | |
* Public domain. | |
* NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | |
*/ | |
/*! @source https://gist.github.com/1129031 */ |
#!/bin/bash | |
# taken from https://coderwall.com/p/guqrca/remove-all-node_module-folders-recursively | |
find . -name "node_modules" -exec rm -rf '{}' + |
I hereby claim:
To claim this, I am signing this object:
license: mit |
# current as of edgeos v1.10.5 | |
# cobbled together from: | |
# https://medium.com/@nurblieh/ipv6-on-the-edgerouter-lite-c95e3cc8d49d | |
# https://heald.ca/configuring-telus-optik-ipv6-ubiquiti-edgerouter/ | |
configure | |
edit firewall ipv6-name WANv6_IN | |
set default-action drop | |
set rule 10 action accept |