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
"""Pong. | |
In Nuke. | |
""" | |
import nuke | |
import time | |
from random import random | |
import threading |
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
#!/usr/bin/env python | |
# | |
# Self contained version of: | |
# http://github.com/dustin/py-github/blob/master/src/githubsync.py | |
# (simply has github.py merged into githubsync.py) | |
# | |
# Copyright (c) 2005-2008 Dustin Sallings <[email protected]> | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal |
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
set cut_paste_input [stack 0] | |
version 6.1 v1 | |
push $cut_paste_input | |
Remove { | |
name Remove2 | |
selected true | |
xpos -40 | |
ypos -187 | |
} | |
Ramp { |
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
#!/usr/bin/env python | |
# | |
# Self contained version of: | |
# http://github.com/dustin/py-github/blob/master/src/githubsync.py | |
# (simply has github.py merged into githubsync.py) | |
# | |
# Copyright (c) 2005-2008 Dustin Sallings <[email protected]> | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal |
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
"""An attempt at obfuscated Python | |
""" | |
class _: | |
_ = [] | |
__ = [] | |
___ = None | |
____ = None | |
_____ = 0 |
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
"""Get highest ratest artwork for a series, using tvdb_api | |
""" | |
import tvdb_api | |
def sort_by_rating(k): | |
"""Given a banner dictionary, returns | |
""" | |
if 'rating' in k: | |
return float(k['rating']) |
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
use rvtypes; | |
use app_utils; | |
use commands; | |
use extra_commands; | |
use rvui; | |
require math; | |
require io; | |
require qt; | |
require system; |
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
# Diff from | |
# https://github.com/malcolmhumphreys/OpenColorIO/commit/3cad3b5c9e41f2938c1d7d9f50f786464a69f3f7 | |
diff --git a/CMakeLists.txt b/CMakeLists.txt | |
index 7b9abd5..9688d78 100644 | |
--- a/CMakeLists.txt | |
+++ b/CMakeLists.txt | |
@@ -151,8 +151,8 @@ set(YAML_CPP_STATIC_LIBRARIES ${PROJECT_BINARY_DIR}/ext/dist/lib/libyaml-cpp.a) | |
### Externals ### |
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
startup_message off | |
vbell off | |
hardstatus alwayslastline | |
hardstatus string '%{gk}[ %{G}%H %{g}][%= %{wk}%?%-Lw%?%{=b kR}(%{W}%n*%f %t%?(%u)%?%{=b kR})%{= kw}%?%+Lw%?%?%= %{g}]%{=y C}[%d/%m %c]%{W}' | |
# screen -t sometitle 0 somecommand | |
# screen -t secondtitle 1 anothercommand |