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/bash | |
pid_file="/path/to/destination/rsync.pid" | |
rsync_pid=$(cat $pid_file) | |
if [[ -z "${rsync_pid// }" ]] ; then | |
echo "[$(date)] no PID for seedbox rsync, exiting" | |
exit | |
else |
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
function Clone() { } | |
function clone(obj) { | |
Clone.prototype = obj; | |
return new Clone(); | |
} | |
//load sprintf | |
//importScripts('sprintf.js') |
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
from struct import pack, unpack | |
#============================================================================================ | |
# RubyMarshal | |
#-------------------------------------------------------------------------------------------- | |
# This class is able to read and write Ruby Marshal format. | |
#============================================================================================ | |
class RubyMarshal: |
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
""" | |
LICENSE | |
Copyright (c) 2014, Rachel Powers All rights reserved. | |
This program is free software; you can redistribute it and/or modify it under | |
the terms of the BSD license: http://opensource.org/licenses/BSD-3-Clause | |
""" | |
import wx |
NewerOlder