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 pprint import pprint | |
class Week: | |
def __init__(self, week): | |
self.week = week | |
def __str__(self): | |
matches = [] | |
for t in self.week: | |
matches.append(f"{t[0]}v{t[1]}") |
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
import csv | |
def read_csv_reverse(filepath): | |
with open(filepath, mode='r') as file: | |
reader = csv.reader(file) | |
rows = list(reader) | |
return reversed(rows) | |
rows_reversed = read_csv_reverse('bklaas.csv') |
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
aback | |
abase | |
abate | |
abbey | |
abbot | |
abhor | |
abide | |
abled | |
abode | |
abort |
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
### Keybase proof | |
I hereby claim: | |
* I am bklaas on github. | |
* I am bklaas (https://keybase.io/bklaas) on keybase. | |
* I have a public key ASADOuVDrqq8JK3cV6_P3qBidb-0LkZfQjT67NAstAVaXQo | |
To claim this, I am signing this 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
#!/usr/bin/perl | |
use strict; | |
$| = 1; | |
use Blitz; | |
use Data::Dumper; | |
my $blitz = Blitz->new( { | |
username => '[email protected]', |