Verifying that +dralbert is my blockchain ID. https://onename.com/dralbert
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
# Automated AMI and Snapshot Deletion | |
# | |
# @author Robert Kozora <[email protected]> | |
# | |
# This script will search for all instances having a tag with "Backup" or "backup" | |
# on it. As soon as we have the instances list, we loop through each instance | |
# and reference the AMIs of that instance. We check that the latest daily backup | |
# succeeded then we store every image that's reached its DeleteOn tag's date for | |
# deletion. We then loop through the AMIs, deregister them and remove all the | |
# snapshots associated with that AMI. |
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 | |
# | |
# Updates docker-compose to the latest release | |
# | |
# Author: Emiliano Gabrielli <[email protected]> | |
DESTINATION_FILE="${DESTINATION_FILE:-$(command -v docker-compose)}" | |
set -e -o pipefail |
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
SELECT | |
tmp.ipAddress, | |
-- Calculate how many connections are being held by this IP address. | |
COUNT( * ) AS ipAddressCount, | |
-- For each connection, the TIME column represent how many SECONDS it has been in | |
-- its current state. Running some aggregates will give us a fuzzy picture of what | |
-- the connections from this IP address is doing. | |
FLOOR( AVG( tmp.time ) ) AS timeAVG, |
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 | |
FIXER_BIN=$(which php-cs-fixer.phar) | |
CFG_FILE=".php_cs" | |
COMMAND="${FIXER_BIN} fix --config=${CFG_FILE} -vvv --path-mode=intersection --dry-run --no-ansi" | |
TMP_DIR="$(mktemp -d -t CS-FIX.XXXXXXXXX)" | |
function do_cleanup { |
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 | |
# Shell script to make a locally browseable version of a given URL | |
# | |
# @author Emiliano Gabrielli <[email protected]> | |
# @license MIT | |
LC_ALL=C | |
LANG=C | |
FONT_DEF=$'\033[0m' |
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
<?php | |
define('FORCE_HTTPS', true); //set true if you want only https | |
//@see https://github.com/maxmind/geoip-api-php | |
define('GI_INCLUDE_PATH', __DIR__.'/includes/geoip'); | |
require_once GI_INCLUDE_PATH.'/geoip.inc.php'; | |
//XXX to be improved | |
$languages = array('en', 'it', 'de'); //first is default |
ufw [--dry-run] enable|disable|reload
ufw [--dry-run] default allow|deny|reject [incoming|outgoing]
ufw [--dry-run] logging on|off|LEVEL
toggle logging. Logged packets use the LOG_KERN syslog facility. Systems configured for rsyslog
support may also log to /var/log/ufw.log. Specifying a LEVEL turns logging on for the specified LEVEL.
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
# | |
# /usr/local/bin/listAliasByDomain | |
# | |
# Lists all aliases for mailboxes and distribution lists associated with a particular domain | |
# | |
# Syntax: listAliasByDomain someMailDomain.com | |
# | |
# The settings for the LDAP queries are guesses. They work for me, but if I have overlooked | |
# something, please let me know! | |
# |