Skip to content

Instantly share code, notes, and snippets.

@muellermartin
muellermartin / sysmon.py
Created February 18, 2013 01:45
Python ws4py WebSocket Client
import time
from ws4py.client.threadedclient import WebSocketClient
class SysMon(object):
def __init__(self, host):
self.running = False
self.client = SysMonWebSocketClient(host)
self.client.connect()
def run(self):
" Disable vi compatibility mode for more functionality
set nocompatible
" Clear filetype flags before changing runtimepath to force Vim to reload them
" Required by Vundle
filetype off
filetype plugin indent off
" Vundle setup
" set the runtime path to include Vundle and initialize
@muellermartin
muellermartin / hdr.sh
Created November 28, 2012 16:28
Exposure fusion (a.k.a. "Fake HDR") workflow for Magic Lantern
#!/bin/sh
# Exposure fusion (a.k.a. "Fake HDR") workflow for Magic Lantern
# 2012-11-28 17:20:30
# Martin Müller <[email protected]>
#
# REQUIREMENTS:
# ffmpeg
# enfuse
# hugin (for align_image_stack)
#