I hereby claim:
- I am mvargeson on github.
- I am mvargeson (https://keybase.io/mvargeson) on keybase.
- I have a public key ASCHF0ISnyZJ-XDiT4BziJzkvOj7PrDYmjVbGY2iHrZBbgo
To claim this, I am signing this object:
| #!/bin/bash | |
| set -euo pipefail | |
| # === CONFIGURATION === | |
| REMOTE_NAME="api-remote" # The name of the API remote | |
| SUBTREE_PREFIX="api" # Where to merge in the subtree | |
| BASE_BRANCH="develop" # What monorepo branch to base off | |
| MERGE_BRANCH_PREFIX="remote" # Local prefix for merge branches | |
| PR_TITLE_PREFIX="Subtree Merge:" # PR title prefix |
| Mon Apr 30 22:05:18 UTC 2018 |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python3 | |
| from argparse import ArgumentParser | |
| from glob import glob | |
| from os.path import join, split, splitext, realpath | |
| from re import compile, search | |
| def main(): | |
| parser = ArgumentParser(description="Find orphaned source files by looking at list of children and checking all possible parents.") | |
| parser.add_argument( | |
| "src", |
http://www.nextbus.com/xmlFeedDocs/NextBusXMLFeed.pdf
http://webservices.nextbus.com/service/publicXMLFeed?command=agencyList
Obtain a list of available transit agencies.
| #!/bin/bash | |
| bash -c 'while ! </dev/tcp/db/5432; do sleep 1; done; nodal db:bootstrap && nodal s;' |
| #!/bin/bash | |
| # | |
| # Watchdog Script | |
| # | |
| # This script is meant to be run as a cron job. This needs to be run as root or a user | |
| # that can start system services. | |
| # | |
| # It looks to see if $NAME is running. If $NAME is not running then it attempts to start | |
| # the process and send notifications. | |
| # |