Skip to content

Instantly share code, notes, and snippets.

View drandreaskrueger's full-sized avatar

drandreaskrueger

View GitHub Profile
@drandreaskrueger
drandreaskrueger / gist:556d019a7a0fd9648403
Created February 15, 2015 22:26
GIT player: lockbyfile
import subprocess
subprocess.check_call("git clone https://github.com/drandreaskrueger/lockbyfile", shell=True)
import sys
sys.path.append(".")
import lockbyfile.testFLock
lockbyfile.testFLock()
@drandreaskrueger
drandreaskrueger / gist:75fe37dff5bff5e8f7f6
Created February 15, 2015 22:29
GIT player for: lockbyfile
import subprocess
subprocess.check_call("git clone https://github.com/drandreaskrueger/lockbyfile", shell=True)
import sys
sys.path.append(".")
import lockbyfile.testFLock
lockbyfile.testFLock()
@drandreaskrueger
drandreaskrueger / gist:a22ae54e3e79828b0449
Created February 15, 2015 22:31
GIT player for: lockbyfile
import subprocess
subprocess.check_call("git clone https://github.com/drandreaskrueger/lockbyfile", shell=True)
import sys
sys.path.append(".")
import lockbyfile.testFLock
lockbyfile.testFLock()
@drandreaskrueger
drandreaskrueger / gist:08438b44cfbc031217f1
Created February 15, 2015 22:32
GIT player for: lockbyfile
import subprocess
subprocess.check_call("git clone https://github.com/drandreaskrueger/lockbyfile", shell=True)
import sys
sys.path.append(".")
import lockbyfile
lockbyfile.testFLock()
@drandreaskrueger
drandreaskrueger / gist:2c7c0c471a335c40c126
Created February 15, 2015 22:39
GIT player for: lockbyfile
import subprocess
subprocess.check_call("git clone https://github.com/drandreaskrueger/lockbyfile", shell=True)
import sys
sys.path.append(".")
import lockbyfile.lockbyfile
lockbyfile.lockbyfile.testFLock()
@drandreaskrueger
drandreaskrueger / gist:8e5c4f11874d8295d0f1
Created February 15, 2015 22:45
GIT player for: lockbyfile_concurrent
import subprocess
subprocess.check_call("git clone https://github.com/drandreaskrueger/lockbyfile", shell=True)
import sys
sys.path.append(".")
import lockbyfile.lockbyfile_concurrent
lockbyfile.lockbyfile_concurrent.startSpawner()
import subprocess
subprocess.check_call("git clone https://github.com/drandreaskrueger/lockbydir", shell=True)
import sys
sys.path.append(".")
import lockbydir.lockbydir
lockbydir.lockbydir.testDLock()
import subprocess
subprocess.check_call("git clone https://github.com/drandreaskrueger/lockbydir", shell=True)
import sys
sys.path.append(".")
import lockbydir.lockbydir_concurrent
lockbydir.lockbydir_concurrent.startSpawner()
import subprocess
subprocess.check_call("git clone https://github.com/drandreaskrueger/lockbydir", shell=True)
import sys
sys.path.append(".")
import lockbydir.lockbydir_concurrent
lockbydir.lockbydir_concurrent.startMassive()
import subprocess
subprocess.check_call("git clone https://github.com/drandreaskrueger/lockbydir", shell=True)
import sys
sys.path.append(".")
import lockbydir.lockbydir_concurrent
lockbydir.lockbydir_concurrent.startMassive_ForGitPlayer()