I hereby claim:
- I am bmacauley on github.
- I am bmacauley (https://keybase.io/bmacauley) on keybase.
- I have a public key ASCyfdH4Zlin78U_kBKno5qw4OE3as4vFUBBULpnjm5xPwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# export GITHUB_ORG=<github org>;curl -s https://$GITHUB_TOKEN@api.github.com/orgs/$GITHUB_ORG/repos | jq '.[].ssh_url' | xargs -n 1 git clone | |
curl -s https://api.github.com/orgs/$GITHUB_ORG/repos | jq '.[].ssh_url' | xargs -n 1 git clone |
# export GITHUB_URL=<ghe url>;export GITHUB_ORG=<github org>;export GITHUB_TOKEN=<github token>;curl -s https://$GITHUB_TOKEN@$GITHUB_URL/api/v3/orgs/$GITHUB_ORG/repos | jq '.[].ssh_url' | xargs -n 1 git clone | |
curl -s https://$GITHUB_TOKEN@$GITHUB_URL/api/v3/orgs/$GITHUB_ORG/repos | jq '.[].ssh_url' | xargs -n 1 git clone |
# Hello, and welcome to makefile basics. | |
# | |
# You will learn why `make` is so great, and why, despite its "weird" syntax, | |
# it is actually a highly expressive, efficient, and powerful way to build | |
# programs. | |
# | |
# Once you're done here, go to | |
# http://www.gnu.org/software/make/manual/make.html | |
# to learn SOOOO much more. |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
"""Kenneth Reitz's GitHub Syncer | |
This script uses the GitHub API to get a list of all forked, mirrored, public, and | |
private repos in your GitHub account. If the repo already exists locally, it will | |
update it via git-pull. Otherwise, it will properly clone the repo. | |
It will organize your repos into the following directory structure: |
Taken from here
Add remonte branch:
git remote add --track master mleung git://github.com/mleung/feather.git
Verify:
git remote
Taken from here
Add remonte branch:
git remote add --track master mleung git://github.com/mleung/feather.git
Verify:
git remote
# Module Source - https://github.com/vkhatri/aws-transit-vpc/tree/feature-vrf | |
# Change Module Source accordingly, currently | |
import os | |
import ast | |
import logging | |
import sys | |
# symlink transit-vpc-poller.py module for import workaround | |
# ln -s transit-vpc-poller.py transit_vpc_poller.py | |
import transit_vpc_poller |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python | |
# Run this script as a cron job on a machine inside your network that is always on | |
# Prerequisites: | |
# - Python | |
# - boto3 module for AWS access | |
# - Route 53 DNS hosted zone that you use as the target | |
# - SNS topic to send notifications when the DNS is updated (IP changed) | |
# |