I hereby claim:
- I am tzermias on github.
- I am tzermias (https://keybase.io/tzermias) on keybase.
- I have a public key whose fingerprint is C6A3 E3A1 97EA B1A9 61D1 439C DAE7 114A 665B 86AE
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/php | |
<?php | |
# Senderbase Monitoring Plugin for Nagios | |
# Dan Miller <[email protected]> | |
error_reporting(E_ERROR | E_PARSE); | |
# Function to swap the octets of an IP... | |
# ..address around in to ARPA formatting. |
rate_limit = api.rate_limit_status() | |
[key2 for key in rate_limit['resources'] for key2 in rate_limit['resources'][key].keys() if rate_limit['resources'][key][key2]['remaining']==0] |
#! /usr/bin/env python | |
import urllib2 | |
import json | |
import sys | |
def main(args): | |
if len(args) != 2: | |
print "%s IPADDR" % args[0] | |
exit(255) |
#!/usr/bin/env python | |
# encoding: utf-8 | |
import tweepy #https://github.com/tweepy/tweepy | |
import csv | |
#Twitter API credentials | |
consumer_key = "" | |
consumer_secret = "" | |
access_key = "" |
import MySQLdb.cursors | |
from twisted.enterprise import adbapi | |
from scrapy.xlib.pydispatch import dispatcher | |
from scrapy import signals | |
from scrapy.utils.project import get_project_settings | |
from scrapy import log | |
SETTINGS = get_project_settings() |
#!ipxe | |
# Set server where image will be downloaded. | |
# archive.ubuntu.com works fine but you can use your own. | |
set server archive.ubuntu.com | |
# Specify a distro | |
# Just type the distro codename here... | |
set distro quantal |