This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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) | |
| # |
NewerOlder