Skip to content

Instantly share code, notes, and snippets.

View kylegibson's full-sized avatar

Kyle Gibson kylegibson

View GitHub Profile
@kylegibson
kylegibson / dynupdate.sh
Created October 9, 2011 18:26
Simple bash script to update a dyndns host entry
#!/bin/bash
HOST=foo.example.com
USER=
PASS=
IPADDR=$(wget -q -O - checkip.dyndns.org|sed -e 's/.*Current IP Address: //' -e 's/<.*$//')
RESULT=$(wget -q -O- "https://$USER:$PASS@members.dyndns.org/nic/update?hostname=$HOST&myip=$IPADDR&wildcard=NOCHG&mx=NOCHG&backmx=NOCHG")
@kylegibson
kylegibson / btcguild.py
Created June 3, 2011 20:15
Script to display/email btcguild bitcoin miner progress on current round, and detect any idle workers
#!/usr/bin/python
# https://gist.github.com/gists/1007083
# Donate: 1BdWJEUCkm6on231iX2ThXZHXZDfQny69R
from __future__ import division
import json
import urllib2
from smtplib import SMTP
from email.mime.text import MIMEText
from cStringIO import StringIO
from pprint import pprint
@kylegibson
kylegibson / RSBOTS_DOWNLOAD_AND_INSTALL_CLIENT.sh
Created February 8, 2011 02:44
A bash script to download the nexus botclient installer
#!/bin/bash
# Latest version is always available at: https://gist.github.com/815751
#
# The MIT License
#
# Copyright (c) 2011 Kyle Gibson
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
@kylegibson
kylegibson / async_server.py
Created October 28, 2010 07:29
Python Asynchronous Server
#!/usr/bin/python
from __future__ import with_statement
import sys
import asyncore
import socket
import time
def loop(addrs, klass, args):
servers = []
@kylegibson
kylegibson / linux_kernel_frequency_test.c
Created October 28, 2010 06:45
Print Linux Kernel Frequency
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#define USECREQ 250
#define LOOPS 1000
void event_handler (int signum)
@kylegibson
kylegibson / generate_email_with_attachment.py
Created October 28, 2010 06:43
Python Generate Email with Attachment
#!/usr/bin/python
# ./generate_email_with_attachment.py files.tar.bz2 user_to@domain.com > email_output
from email.encoders import encode_base64
from email.mime import Base, Multipart
from mimetypes import guess_type
def main(args):
file_path = args[1]
to = args[2]
@kylegibson
kylegibson / echo_server.py
Created October 28, 2010 06:33
Python Single Connection Echo Server
#!/usr/bin/python
import socket
import os
HOST = '' # Symbolic name meaning all available interfaces
PORT = 50007 # Arbitrary non-privileged port
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind((HOST, PORT))
s.listen(1)
@kylegibson
kylegibson / nginx.conf
Created October 26, 2010 09:56
nginx WordPress pretty URLs
server {
index index.php;
server_name .kyle-gibson.com;
location /blog {
if (!-e $request_filename) {
rewrite ^/blog/(.+)$ /blog/index.php/$1 last;
}
}
location ~* \.php(/.*)?$ {
include /etc/nginx/fastcgi_params;
@kylegibson
kylegibson / cpu_usage.py
Created October 26, 2010 09:50
Single Process CPU Usage
#!/usr/bin/python
def get_current_cpu(pid):
d = open("/proc/%s/stat" % pid, "r").readline().split()
return int(d[13]), int(d[14])
def get_total_cpu():
d = open("/proc/stat", "r").readline()
return sum(map(int, d.split()[1:]))