I hereby claim:
- I am scr34m on github.
- I am scr34m (https://keybase.io/scr34m) on keybase.
- I have a public key whose fingerprint is C18E 6363 58DE EF8A 5DEE 909F 86B8 A589 3469 E5B4
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python2 | |
| import base64 | |
| import json | |
| import logging | |
| import requests | |
| import sys | |
| from swiftclient import client | |
| class AuthenticationHubic: |
| #!/usr/bin/env python | |
| import xmlrpclib | |
| import sys | |
| # Simple Nagios/Icinga check for a process under Supervisord. | |
| # Requires XML-RPC interface (inet) enabled | |
| __author__ = 'Jan-Piet Mens <jpmens()gmail.com>' |
| #!/usr/bin/env python3 | |
| import sys | |
| import os | |
| try: | |
| import json | |
| except ImportError: | |
| import simplejson as json | |
| from urllib import request, error |
| #!/usr/bin/perl | |
| # -*- perl -*- | |
| # | |
| # varnish_ - Munin plugin to for Varnish | |
| # Copyright (C) 2009 Redpill Linpro AS | |
| # | |
| # Author: Kristian Lyngstøl <kristian@redpill-linpro.com> | |
| # | |
| # This program is free software; you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by |
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: svnserve | |
| # Required-Start: $network $local_fs $remote_fs | |
| # Required-Stop: $network $local_fs $remote_fs | |
| # Should-Start: $all | |
| # Should-Stop: $all | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 |
| require "logstash/outputs/base" | |
| require "logstash/namespace" | |
| require "thread" | |
| # Write events over a UDP socket. | |
| # | |
| # Each event json is separated by a newline. | |
| class LogStash::Outputs::Udp < LogStash::Outputs::Base |
| #!/bin/sh | |
| export PATH=${PATH}:/usr/local/bin:/usr/bin | |
| mysqldir="/data/backup/mysql" | |
| date=`date +%Y-%m-%d` | |
| dbdir="/var/lib/mysql" | |
| if [ ! -d "${mysqldir}/${date}" ]; then | |
| mkdir -p ${mysqldir}/${date} | |
| fi |
| <?php | |
| class soapclientd extends soapclient | |
| { | |
| public $action = false; | |
| public function __construct($wsdl, $options = array()) | |
| { | |
| parent::__construct($wsdl, $options); | |
| } |