This file contains 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 itertools import product | |
def score(self, other): | |
first = len([speg for speg, opeg in zip(self, other) if speg == opeg]) | |
return first, sum([min(self.count(j), other.count(j)) for j in 'ABCDEF']) - first | |
possible = [''.join(p) for p in product('ABCDEF', repeat=4)] | |
results = [(right, wrong) for right in range(5) for wrong in range(5 - right) if not (right == 3 and wrong == 1)] | |
def solve(scorefun): |
This file contains 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 tictactoe import * | |
class FluffHeuristic(Computer): | |
a = [0, 2, 8, 6] | |
b = [1, 5, 7, 3] | |
def play(self, board): | |
if not self.other.name: | |
for i in range(9): | |
x = board.get(i) | |
if x and x != self: |
This file contains 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
func some function: | |
a test | |
catch handler: | |
some mistake | |
if this is wrong: | |
tell me why | |
elseif this should not fail: | |
hello | |
if hi: | |
bye |
This file contains 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
def doc(f): | |
newdoc = f.__doc__ and [f.__doc__, ''] or [] | |
c = f.__code__ | |
ann = f.__annotations__ | |
max_i = c.co_argcount + c.co_kwonlyargcount | |
for arg_index in range(max_i): | |
name = c.co_varnames[arg_index] | |
if name in ann: | |
newdoc.append(name + ': ' + str(ann[name])) | |
else: |
This file contains 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
#By Robin Wellner (gvx) | |
#I hereby waive copyright and related or neighboring rights to this work | |
#See the Creative Commons Zero Waiver at <http://creativecommons.org/publicdomain/zero/1.0/> | |
#a simple way to create one object without having to maintain it's class | |
#only works in Python 3.x | |
@apply | |
class oneObject: | |
x = 6 |
This file contains 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
#By Robin Wellner (gvx) | |
#I hereby waive copyright and related or neighboring rights to this work | |
#See the Creative Commons Zero Waiver at <http://creativecommons.org/publicdomain/zero/1.0/> | |
import sys | |
import subprocess | |
f = open (sys.argv[1], "r") | |
r = f.readline()[:-1] | |
f.close() |
This file contains 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
#By Robin Wellner (gvx) | |
#I hereby waive copyright and related or neighboring rights to this work | |
#See the Creative Commons Zero Waiver at <http://creativecommons.org/publicdomain/zero/1.0/> | |
import sys | |
diff_file = sys.stdin.read().split('\n') | |
if len(sys.argv) > 1: | |
filename = sys.argv[1] | |
else: |
This file contains 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
-- defdef.lua | |
-- default definitions for lua | |
-- By Robin Wellner (gvx) | |
-- I hereby waive copyright and related or neighboring rights to this work | |
-- See the Creative Commons Zero Waiver at <http://creativecommons.org/publicdomain/zero/1.0/> | |
-- Evaluate truth like in Python | |
function is_true (arg) | |
if arg == '' or arg == 0 then |
This file contains 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
#Listtools 0.1 | |
#By Robin Wellner (gvx) | |
#Functions for lists | |
#I hereby waive copyright and related or neighboring rights to this work | |
#See the Creative Commons Zero Waiver at <http://creativecommons.org/publicdomain/zero/1.0/> | |
def append(lst, object): | |
"listtools.append(lst, object) -- append object to end" | |
lst.append(object) |
This file contains 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
#namespace | |
#By Robin Wellner (gvx) | |
#I hereby waive copyright and related or neighboring rights to this work | |
#See the Creative Commons Zero Waiver at <http://creativecommons.org/publicdomain/zero/1.0/> | |
#Simulation of modules containing one or more function/class/object. | |
#Warning: modules are named differently than what you would expect. | |
def namespace(name): | |
class namespace: |