This file contains hidden or 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
127.0.0.1 localhost | |
255.255.255.255 broadcasthost | |
::1 localhost | |
fe80::1%lo0 localhost | |
127.0.0.1 auth.dev-ob.forgerock.financial metrics.dev-ob.forgerock.financial service.metrics.dev-ob.forgerock.financial bank-ui.dev-ob.forgerock.financial dev-ob.forgerock.financial service.directory.dev-ob.forgerock.financial directory.dev-ob.forgerock.financial jwkms.dev-ob.forgerock.financial shop-store.dev-ob.forgerock.financial zuul.forgerock.financial rs-store.aspsp.dev-ob.forgerock.financial rs.aspsp.dev-ob.forgerock.financial shop.dev-ob.forgerock.financial zuul.dev-ob.forgerock.financial account.dev-ob.forgerock.financial aspsp.dev-ob.forgerock.financial db.dev-ob.forgerock.financial bank.dev-ob.forgerock.financial rcs.aspsp.dev-ob.forgerock.financial tpp-core.dev-ob.forgerock.financial rs.dev-ob.forgerock.financial payment.rs.dev-ob.forgerock.financial zipkin.dev-ob.forgerock.financial config.dev-ob.forgerock.financial payments-store.rs.dev-ob.forgerock.financial eureka.dev-ob.forgerock.financial admin. |
This file contains hidden or 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 | |
# store the current dir | |
CUR_DIR=$(pwd) | |
# Let the person running the script know what's going on. | |
echo "Pulling in latest changes for all repositories..." | |
# Find all git repositories and update it to the master latest revision | |
for i in $(find . -name ".git" | cut -c 3-); do |
This file contains hidden or 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 | |
# downloads latest version of an artifact from artifactory | |
set -e | |
usage(){ | |
echo "Usage: $*" >&2 | |
exit 64 | |
} |
This file contains hidden or 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
[ | |
{ | |
"repo": "rm-action-service", | |
"userName": "ONSDigital" | |
}, | |
{ | |
"repo": "rm-actionsvc-api", | |
"userName": "ONSDigital" | |
}, | |
{ |
This file contains hidden or 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 org.powerbot.script.*; | |
import org.powerbot.script.rt6.ClientContext; | |
import org.powerbot.script.rt6.MobileIdNameQuery; | |
import org.powerbot.script.rt6.Npc; | |
import java.awt.*; | |
import java.util.ArrayList; | |
import java.util.Collection; | |
import java.util.HashMap; | |
import java.util.Map; |