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
# | |
# clip_sorter.py | |
# | |
# code to help sort through folder of videos (e.g. video game clips) | |
# to determine which ones you want to keep and which to delete | |
# | |
# "yes" to move into new folder | |
# "no" to do nothing, then delete original folder | |
# |
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
# | |
# how_did_you_lose_cfb.py | |
# | |
# code to determine games where teams favored by X points (spread) lost | |
# e.g. OSU losing to Michigan (2024) as 22.5pt favorites | |
# | |
import requests | |
SPREAD = 20.0 # spread to compare against |
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
add $t2, $t0, $t0 | |
lw $t1, 0($t2) | |
addi $t3, $t1, 20 | |
add $t1, $t2, $t0 | |
or $t1, $t2, $t0 |
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
# | |
# rename_arxiv_pdf.py - rename arXiv pdf to the contents of the first line (hopefully the title) | |
# | |
# (C) 2024 Gabe DiFiore <[email protected]> | |
# | |
import PyPDF2 | |
import os | |
import sys |