Skip to content

Instantly share code, notes, and snippets.

View mattbillenstein's full-sized avatar

Matt Billenstein mattbillenstein

View GitHub Profile
@mattbillenstein
mattbillenstein / s3put
Created December 13, 2011 10:02
boto parallel s3 upload script
#!/usr/bin/env python
import gevent.monkey
gevent.monkey.patch_all()
import boto
import config
import gevent
import gevent.pool
import os
@mattbillenstein
mattbillenstein / gist:1052184
Created June 28, 2011 20:57
First Linux kernel patch
`From 2d32f746223bfd89994edc0d16716e90e7836e74 Mon Sep 17 00:00:00 2001
From: Matt Billenstein <[email protected]>
Date: Wed, 1 Jun 2011 09:17:06 +0000
Subject: staging: comedi (adv_pci1723): coding style, fix whitespace before
quoted newline
Small fix in adv_pci1723.c for a "whitespace before quoted newline" warning
from checkpatch.pl
Signed-off-by: Matt Billenstein <[email protected]>
@mattbillenstein
mattbillenstein / cron.py
Created April 29, 2011 17:58
A simple cron job parser...
#!/usr/bin/env python
import sys
import datetime
class cronjob(object):
def __init__(self, line):
self.process_line(line)
def process_line(self, line):