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
// ==UserScript== | |
// @name Prev/Next Github comment | |
// @namespace justinjc | |
// @description Userscript that adds prev/next comment hotkeys for Github. | |
// @include https://github.com* | |
// @version 0.1 | |
// @author Justin Chan | |
// @copyright 2019 Justin Chan | |
// ==/UserScript== |
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
coordinator: | |
listenAddress: 0.0.0.0:7201 | |
metrics: | |
scope: | |
prefix: "coordinator" | |
prometheus: | |
handlerPath: /metrics | |
listenAddress: 0.0.0.0:7203 # until https://github.com/m3db/m3db/issues/682 is resolved | |
sanitization: prometheus |
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
#!/bin/bash | |
set -euo pipefail | |
usage() { | |
echo "usage: $0 <repo> <name>" | |
echo | |
echo "<repo>" | |
echo " The repo link, e.g. https://github.com/m3db/m3coordinator.git" | |
echo |