I hereby claim:
- I am utdrmac on github.
- I am utdrmac (https://keybase.io/utdrmac) on keybase.
- I have a public key ASBe9_sYtgbqJWYn6uB5b2tkVuDEvqzD3zH8Y9uJ2qTcWAo
To claim this, I am signing this object:
| #!/bin/bash | |
| # | |
| # 20210119 - Use the new --endpoint flag | |
| # - Added verbose logging | |
| # | |
| # 20200608 - Updated to TzKt API | |
| # | |
| # 20191029 - Added /v3/network back in. | |
| # Thanks to Baking-Bad and their Mystique API |
| /* | |
| Copyright (c) 2014, Percona LLC and/or its affiliates. All rights reserved. | |
| This program is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU Affero General Public License as published by | |
| the Free Software Foundation, either version 3 of the License, or | |
| (at your option) any later version. | |
| This program is distributed in the hope that it will be useful, | |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| #!/usr/bin/python | |
| import random | |
| import time | |
| import string | |
| from threading import Thread | |
| from mysql.utilities.common import (database, options, server, table) |
| #!/bin/bash | |
| MYSQL_CMDLINE="mysql -nNE --connect-timeout=5" | |
| AVAILABLE_WHEN_DONOR=1 | |
| function getSession() { | |
| local retry=0 | |
| local __dummy="" | |
| #!/usr/bin/python | |
| import os, sys | |
| import random | |
| import time | |
| import string | |
| import mysql.connector | |
| import threading | |
| from mysql.connector import errorcode |
| #!/usr/bin/python | |
| import time | |
| import signal, sys, os, re | |
| import rrdtool | |
| import requests | |
| # | |
| # Add data points every second (step) | |
| # Keep: |
| #!/bin/bash | |
| # Redirect STDOUT/STDERR to journalctl | |
| # journalctl -f SYSLOG_IDENTIFIER=pushBulletSSH | |
| exec > >(logger -t pushBulletSSH) 2> >(logger -t pushBulletSSH -p user.warn) | |
| # Config | |
| GASGIANT_ID="XXXXXX" | |
| PORTFILE=/tmp/.sshport |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env php | |
| <?php | |
| include 'config.php'; | |
| /* This is the EC2 API Client object */ | |
| $sqs = Aws\Sqs\SqsClient::factory(array( | |
| 'key' => $aws_key, | |
| 'secret' => $aws_secret, | |
| 'region' => 'us-west-2', |
| SELECT CONCAT((@@key_buffer_size + @@query_cache_size + (@@innodb_buffer_pool_size * 1.05 + 20*1024*1024) + @@innodb_additional_mem_pool_size + @@innodb_log_buffer_size | |
| + @@max_connections * (@@read_buffer_size + @@read_rnd_buffer_size + @@sort_buffer_size + @@join_buffer_size + @@binlog_cache_size + @@tmp_table_size | |
| + @@thread_stack)) / 1024/1024/1024, ' GB') AS "POTENTIAL MEMORY USAGE"; |