Skip to content

Instantly share code, notes, and snippets.

@foospidy
foospidy / example_redis_reset_request_count.php
Last active February 25, 2019 13:37
Example script to reset the value to 0 for all keys in Redis.
<?php
if($redis->connect($GLOBALS['REDIS_HOST'], $GLOBALS['REDIS_PORT'])) {
if($redis->auth($GLOBALS['REDIS_PASSWORD'])) {
$keys = $redis->keys('*');
foreach($keys as $key) {
$redis->set($key, 0);
}
} else {
error_log('Error authenticating to redis!');
@foospidy
foospidy / example_redis_api_limit_exceeded.php
Created May 2, 2018 10:18
Example function for checking the count value based on the key of $id in Redis against the value of $limit.
<?php
function api_limit_exceeded($id='nobody', $limit=1500) {
$redis = new Redis();
$usage = 0;
if($redis->connect($GLOBALS['REDIS_HOST'], $GLOBALS['REDIS_PORT'])) {
if($redis->auth($GLOBALS['REDIS_PASSWORD'])) {
$usage = $redis->get($id);
} else {
error_log('Error authenticating to redis!');
@foospidy
foospidy / example_redis_api_request.php
Created May 2, 2018 10:14
Example function for incrementing a counter based on the key of $id in Redis.
<?php
function api_request($id='nobody') {
$redis = new Redis();
if($redis->connect($GLOBALS['REDIS_HOST'], $GLOBALS['REDIS_PORT'])) {
if($redis->auth($GLOBALS['REDIS_PASSWORD'])) {
$redis->incr($id);
} else {
error_log('Error authenticating to redis!');
}
@foospidy
foospidy / honeydb-agent-install.sh
Last active February 25, 2019 13:37
honeydb-agent install script.
#!/usr/bin/env bash
#
# Installs/upgrades the latest version of honeydb-agent.
# An existing configuration will be backed up, and applied
# to the new install/upgrade.
#
# sudo ./honeydb-agent-install.sh
#
ARCHITECTURE=`uname -m`
#!/usr/bin/env bash
# clock_skew.sh - Check remote hosts for clock skew (time drift), and
# output a warning or alert message based on defined thresholds.
#
# Instructions:
# Create a hosts.txt file that contains the list of hosts to be checked.
#
# hosts.txt should contain one host entry per line, and username and
# port fields are optional. Format:
#
#!/usr/bin/env python
#
# clock_skew.py
# This script reads json data from /tmp/sigsci-agents.json
# and prints a message if an agent's clock skew is greater
# or equal to the defined thresholds.
#
# SigSciApiPy (https://github.com/signalsciences/SigSciApiPy) is
# an easy way to pull agent data from the Signal Sciences API and
# save it to /tmp/sigsci-agents.json
@foospidy
foospidy / str2implode.py
Created September 29, 2016 03:50
Convert a string to a PHP array in the implode function.
#!/usr/bin/python
#
# str2implode.py
#
# Usage: python str2implody.py "example string with spaces"
#
import sys
out = ""

Keybase proof

I hereby claim:

  • I am foospidy on github.
  • I am foospidy (https://keybase.io/foospidy) on keybase.
  • I have a public key whose fingerprint is 5FA9 F16A 1FC7 051D EB93 A6DA CAEA 3613 5AFB E6D9

To claim this, I am signing this object: