I hereby claim:
- I am matzegebbe on github.
- I am mgebbe (https://keybase.io/mgebbe) on keybase.
- I have a public key ASDpDdVMS-xGHnRbUoAj-k0kP4lon9HeyRdmmT7fED-oqAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| public class ApiGatewayApplication { | |
| private static final Logger LOGGER = LoggerFactory.getLogger(ApiGatewayApplication.class); | |
| public static void main(String[] args) { | |
| SpringApplication.run(ApiGatewayApplication.class, args); | |
| } | |
| @Bean | |
| public RouteLocator customRouteLocator(RouteLocatorBuilder builder) { |
| #!/bin/bash | |
| pivx-cli listaddressgroupings | grep \" | cut -d \" -f2 | awk /./ | grep -v MN1 > tmp | |
| DATE=`date '+%Y-%m-%d %H:%M:%S'` | |
| for i in `cat tmp` ; | |
| do | |
| DVALUE=`curl --silent http://www.presstab.pw/phpexplorer/PIVX/address.php?address=$i | grep -o '<th>Minted</th><td>.*</td>' | cut -d '>' -f 4 | cut -d '<' -f 1` | |
| VALUE=${DVALUE%.*} | |
| if [ $VALUE -ne 0 ]; then |
| #!/bin/bash | |
| REPO_URL="https://repository.xxx.net/repository/" | |
| USER="admin" | |
| PASSWORD="datpassword" | |
| BUCKET="portal-docker" | |
| KEEP_IMAGES=10 | |
| IMAGES=$(curl --silent -X GET -H 'Accept: application/vnd.docker.distribution.manifest.v2+json' -u ${USER}:${PASSWORD} "${REPO_URL}${BUCKET}/v2/_catalog" | jq .repositories | jq -r '.[]' ) |