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
Bootstrap: docker | |
From: fedora:42 | |
%post | |
# Update the base system | |
dnf -y update | |
# Install basic dependencies | |
dnf -y install wget dnf-plugins-core python3 python3-pygame | |
dnf -y install libX11 SDL2 SDL2_ttf mesa-dri-drivers xorg-x11-xauth |
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
bye_weeks={"ARI":13, "ATL":14, "BAL":10, "BUF":7, "CAR":13, "CHI":14, "CIN":10, "CLE":9, "DAL":9, "DEN":9, "DET":6, "GB":14, "HOU":6, "IND":14, "JAX":11, "KC":8, "LAC":8, "LAR":7, "MIA":11, "MIN":7, "NE":10, "NO":14, "NYG":9, "NYJ":10, "LV":6, "PHI":7, "PIT":9, "SEA":11, "SF":9, "TB":11, "TEN":6, "WAS":14} |
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
:./^$/d | |
To repeate @: |
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/python | |
# -*- coding: utf-8 -*- | |
import urllib | |
import urllib2 | |
import sys; | |
import BeautifulSoup; | |
import re ; | |
from tabulate import tabulate | |
import prettytable |