View 2021-02-23_boardcandidates.txt
Elected by acclamation | |
Michael Kozakewich | |
Kyle Martin | |
Edwin Amsler | |
Thor Robinson | |
Pietra Shirley |
View contact.html
<p> | |
<a href="https://markjenkins.ca">Return to markjenkins.ca</a> | |
</p> | |
<p> | |
This contact form submits to my | |
<a href="mailto:mark@markjenkins.ca">mark@markjenkins.ca</a> email address. | |
</p> |
View example_ballots.txt
Voter code yS2MuD4+iPrmZOoSIY76qLCMQWS/wQxnql8MmpN9AUY= votes for Pirates | |
non interactively | |
echo -e "yS2MuD4+iPrmZOoSIY76qLCMQWS/wQxnql8MmpN9AUY=\nPirates" | python3 hmac_vote.py | |
interactively | |
python3 hmac_vote.py | |
What's your code? > yS2MuD4+iPrmZOoSIY76qLCMQWS/wQxnql8MmpN9AUY= | |
Your code is: | |
yS2MuD4+iPrmZOoSIY76qLCMQWS/wQxnql8MmpN9AUY= |
View map_using_reduce.py
from functools import reduce | |
def map( func, iterable): | |
def f(a, b): | |
return a + [func(b)] | |
return reduce( f, iterable, [] ) |
View d4p1.py
#!/usr/bin/env python3 | |
# Solution to http://adventofcode.com/2016/day/4 part 1 | |
# Mark Jenkins <mark@markjenkins.ca> | |
from sys import stdin | |
from collections import Counter | |
from itertools import islice | |
CHECKSUM_SIZE = 5 |
View d3p1.py
#!/usr/bin/env python3 | |
# functional solution to http://adventofcode.com/2016/day/3 part 1 | |
# Mark Jenkins <mark@markjenkins.ca> | |
from sys import stdin | |
def possible_triangle(args): | |
assert(len(args)==3) | |
sum_args = sum(args) |
View d2p1.py
#!/usr/bin/env python3 | |
# Solution to http://adventofcode.com/2016/day/2 part 1 | |
# using reduce and accumulate for awesome functional programing style points | |
# Mark Jenkins <mark@markjenkins.ca> | |
from sys import stdin | |
from functools import reduce | |
from itertools import chain, accumulate, islice |
View d1p2.py
#!/usr/bin/env python3 | |
# solution to https://adventofcode.com/2016/day/1 part 2 | |
# in a functional style with python 3.3+ enhanced accumulate() and dropwhile() | |
# Mark Jenkins <mark@markjenkins.ca> | |
from itertools import accumulate, dropwhile, chain | |
MOVEMENTS = ((0,1), (1,0), (0,-1), (-1,0)) | |
DIRECTION_CHANGES = {"R": 1, "L": -1} |
View d1p1.py
#!/usr/bin/env python3 | |
# Functional solution to https://adventofcode.com/2016/day/1 part 1 | |
# with reduce() and lambda vs no lambda | |
# Mark Jenkins <mark@markjenkins.ca> | |
from functools import reduce | |
MOVEMENTS = ((0,1), (1,0), (0,-1), (-1,0)) | |
DIRECTION_CHANGES = {"R": 1, "L": -1} |
View first_querry_by_ip.py
from sys import argv | |
# tab separated input from processing apache logs with awk to just have relevant fields and tab separation | |
ips = set() | |
with file(argv[1]) as f: | |
for line in f: | |
ip, date, url = line.split('\t') | |
if ip not in ips: | |
print "%s\t%s" % (ip, date) |
NewerOlder